@font-face {
  font-family: "semiBold";
  src: url(../Fonts/cairo/Cairo-SemiBold.ttf);
}

@font-face {
  font-family: "regular";
  src: url(../Fonts/cairo/Cairo-Regular.ttf);
}

@font-face {
  font-family: "bold";
  src: url(../Fonts/cairo/Cairo-Bold.ttf);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  direction: rtl;
  text-decoration: none;
  font-family: 'regular';
}

/***************************** Global Style *****************************/
h1, h2, h3 {
  font-family: "bold";
}

h4, h5, h6 {
  font-family: "semiBold";
}

p {
  font-size: 12px;
  font-family: 'regular';
}

a {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  outline: 0;
}

.form-control::-webkit-input-placeholder {
  font-size: 12px;
}

.form-control:-ms-input-placeholder {
  font-size: 12px;
}

.form-control::-ms-input-placeholder {
  font-size: 12px;
}

.form-control::placeholder {
  font-size: 12px;
}

.form-control:focus {
  border: 1px solid #3a5e79;
  outline-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.scroll-top-btn {
  display: inline-block;
  width: 50px;
  height: 50px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#59cfe0), to(#59cfe0));
  background: linear-gradient(#59cfe0, #59cfe0);
  color: #000;
  text-align: center;
  line-height: 50px;
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 1000;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#3a5e79), to(#3a5e79));
  background: linear-gradient(#3a5e79, #3a5e79);
  color: #fff;
}

.scroll-top-btn i {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  position: relative;
  right: 9px;
  top: 10px;
}

@-webkit-keyframes third {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
    height: 5px;
  }
  100% {
    height: 100%;
    width: 100%;
  }
}

@keyframes third {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
    height: 5px;
  }
  100% {
    height: 100%;
    width: 100%;
  }
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.bg-light {
  background-color: #fff !important;
}

.navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  right: 10px;
  background-color: transparent;
  border: none;
}

.navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navbar .navbar-toggler:focus {
  outline-color: transparent;
}

.navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 3px;
  background: #3a5e79;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after, .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 3px;
  background: #3a5e79;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -10px;
  right: 0px;
}

.navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 10px;
  right: 0px;
}

.navbar .nav-item {
  margin: 0px 8px;
  text-align: center;
}

.navbar .nav-item .nav-link {
  position: relative;
}

.navbar .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 12px;
  height: 12px;
  border: 2px solid #3a5e79;
  border-width: 0 0 2px 2px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
}

.navbar .nav-item .nav-link::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 12px;
  height: 12px;
  border: 2px solid #3a5e79;
  border-width: 2px 2px  0 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
}

.navbar .nav-item .nav-link:hover, .navbar .nav-item .nav-link.active {
  background-color: #3a5e79;
  color: #fff;
}

.navbar .nav-item .nav-link:hover::before, .navbar .nav-item .nav-link.active::before {
  bottom: -5px;
  left: -5px;
  opacity: 1;
}

.navbar .nav-item .nav-link:hover::after, .navbar .nav-item .nav-link.active::after {
  top: -5px;
  right: -5px;
  opacity: 1;
}

header {
  position: relative;
}

header .carousel-item {
  background: url(../images/header.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 200px 0px;
}

header .carousel-item .text-content {
  color: #fff;
}

header .carousel-item .text-content p {
  padding-top: 1rem;
}

header .select-service {
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  padding: 15px;
  -webkit-box-shadow: 0px 0px 10px 0px #999;
          box-shadow: 0px 0px 10px 0px #999;
  bottom: -55px;
  background-color: #fff;
  width: 40%;
  padding-top: 1.375rem;
}

header .select-service .form-inline .form-group {
  position: relative;
  width: 75%;
}

header .select-service .form-inline .form-group .form-control {
  width: 100%;
  padding: 0px 10px;
  border-radius: 0px;
}

header .select-service .form-inline .btn-primary {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#59cfe0), to(#3a5e79));
  background-image: linear-gradient(to bottom, #59cfe0, #3a5e79);
  border-color: #59cfe0;
  border-radius: 0px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

header .select-service .form-inline .btn-primary:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3a5e79), to(#59cfe0));
  background-image: linear-gradient(to bottom, #3a5e79, #59cfe0);
}

.services {
  padding: 140px 0px 50px;
  background-color: #f5f5f5;
}

.services .services-carousel.owl-theme .owl-nav {
  display: none;
}

.services .services-carousel.owl-theme .owl-dots {
  padding: 20px 0px;
}

.services .services-carousel.owl-theme .owl-dots .owl-dot.active span {
  background: #3a5e79;
}

.services .services-carousel .card::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 5px;
  width: 0px;
  content: '';
  z-index: 1;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.services .services-carousel .card:hover::after {
  background: #3a5e79;
  -webkit-animation: third 1.5s ease-in-out forwards;
          animation: third 1.5s ease-in-out forwards;
}

.services .services-carousel .card:hover .card-icon {
  -webkit-filter: invert(100%) sepia(7%) saturate(19%) hue-rotate(209deg) brightness(225%) contrast(95%);
          filter: invert(100%) sepia(7%) saturate(19%) hue-rotate(209deg) brightness(225%) contrast(95%);
}

.services .services-carousel .card:hover h6 {
  color: #fff;
}

.services .services-carousel .card:hover .card-body {
  color: #ccc;
}

.services .services-carousel .card .card-header {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: transparent;
  border-bottom: none;
  padding: 1.75rem 1.25rem;
  z-index: 9;
}

.services .services-carousel .card .card-header .card-icon {
  width: 50px;
  height: 50px;
  margin-left: 50px;
  -webkit-transition: all 1.5s ease-in;
  transition: all 1.5s ease-in;
}

.services .services-carousel .card .card-header h6 {
  padding-top: 5px;
  -webkit-transition: all 1.5s ease-in;
  transition: all 1.5s ease-in;
}

.services .services-carousel .card .card-body {
  padding: 0rem 1.25rem 1.25rem 1.25rem;
  line-height: 1.8rem;
  color: #666;
  z-index: 9;
  -webkit-transition: all 1.5s ease-in;
  transition: all 1.5s ease-in;
}

.brief {
  padding: 50px 0px;
  background-color: #f5f5f5;
  overflow-x: hidden;
}

.brief .image-content {
  width: 100%;
  height: 450px;
  -webkit-box-shadow: -4px 3px 10px 0px #999;
          box-shadow: -4px 3px 10px 0px #999;
}

.brief .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.brief .image-content .overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #3a5e79;
  opacity: .4;
}

.brief .brief-text {
  padding: 50px;
  background-image: -webkit-gradient(linear, right top, left top, from(#3a5e79), to(#59cfe0));
  background-image: linear-gradient(to left, #3a5e79, #59cfe0);
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.brief .brief-text h6 {
  color: #fff;
}

.brief .brief-text p {
  color: #eee;
  line-height: 1.6rem;
  margin: 1.8rem 0px;
}

.brief .brief-text .more-btn {
  color: #fff;
  font-size: 14px;
  border: 1px solid transparent;
  padding: .375rem;
}

.brief .brief-text .more-btn:hover {
  border: 1px solid #f5f5f5;
}

.latest-projects {
  padding: 50px 0px;
  background-color: #f5f5f5;
}

.latest-projects .item {
  margin-bottom: 25px;
}

.latest-projects .item figure {
  width: 100%;
}

.latest-projects .item figure img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.latest-projects .item figure figcaption .text-content {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.latest-projects .item figure figcaption .text-content p {
  color: #ccc;
}

.latest-projects .item [class*=" imghvr-"], .latest-projects .item [class^=imghvr-] {
  background-color: #4b9ab0;
}

.latest-projects .item [class*=" imghvr-"] figcaption, .latest-projects .item [class^=imghvr-] figcaption {
  background-color: #3a5e79;
}

.clients {
  padding: 50px 0px;
  background-color: #f5f5f5;
}

.clients .clients-carousel.owl-theme .owl-nav {
  display: none;
}

.clients .clients-carousel.owl-theme .owl-dots {
  padding: 20px 0px;
}

.clients .clients-carousel.owl-theme .owl-dots .owl-dot.active span {
  background: #3a5e79;
}

.clients .clients-carousel .item {
  height: 200px;
  position: relative;
}

.clients .clients-carousel .item img {
  width: 100%;
  height: 100%;
}

.clients .clients-carousel .item .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .5;
  background-color: #eee;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.clients .clients-carousel .item:hover .overlay {
  opacity: 0;
}

footer {
  padding: 50px 0px;
  background-color: #3E6C85;
}

footer .content {
  display: -ms-grid;
  display: grid;
  color: #fff;
  margin: 5px;
}

footer .content h6 {
  margin-bottom: 1rem;
}

footer .content a {
  color: #ccc;
  margin: 2px 0px;
  font-size: 12px;
}

footer .content .btn-primary {
  background-color: #3a5e79;
  border-color: #3a5e79;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

footer .content .btn-primary:hover {
  background-color: #59cfe0;
  color: #3a5e79;
}

.copywrite {
  background-color: #3a5e79;
  padding: 10px 0px;
  color: #fff;
}

.copywrite p {
  margin-bottom: 0px;
}

.copywrite a {
  margin: 0px 10px;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  color: #fff;
}

.copywrite a:hover {
  color: #59cfe0;
}

/************************* Start edit page of IT ***************************/
.it-header .carousel-item {
  background: url(../images/it-header.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.control-system .image-content .overlay {
  background-color: #000;
}

.video {
  padding: 50px 0px;
}

.video .video-inner {
  background: url(../images/access-control-1.jpg);
  height: 60vh;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.video .video-inner .overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  opacity: .4;
}

.video .video-inner .play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  display: block;
  text-align: center;
}

.video .video-inner .play-video::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #3E6C85;
  border-radius: 50%;
  border: 2px solid #fff;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
}

.video .video-inner .play-video i {
  position: relative;
  top: 13px;
}

.video .video-inner .play-video:hover {
  background-color: #fff;
  color: #3a5e79;
}

/************************* Start edit page of Sensors ***************************/
.sensors-header {
  position: relative;
  padding: 130px 0px;
  background: url(../images/sensors-header.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom;
}

.sensors-header .overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #eee;
  opacity: .3;
  z-index: 9;
}

.sensors-header .sensors-carousel {
  position: relative;
  z-index: 99;
}

.sensors-header .sensors-carousel.owl-theme .owl-nav {
  display: none;
}

.sensors-header .sensors-carousel.owl-theme .owl-dots {
  padding: 20px 0px;
}

.sensors-header .sensors-carousel.owl-theme .owl-dots .owl-dot.active span {
  background: #3a5e79;
}

.sensors-header .sensors-carousel .card {
  background-color: #fff;
}

.sensors-header .sensors-carousel .card .image-content {
  width: 100%;
  height: 200px;
}

.sensors-header .sensors-carousel .card .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.lg-video {
  height: 50vh;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  position: relative;
  overflow-x: hidden !important;
}

.lg-video .overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  opacity: .3;
}

.lg-video .play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #3a5e79;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  display: block;
  text-align: center;
}

.lg-video .play-video::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
}

.lg-video .play-video i {
  position: relative;
  top: 13px;
}

.lg-video .play-video:hover {
  background-color: #3a5e79;
  color: #fff;
}

.sensor-description {
  padding: 50px 0px;
  overflow-x: hidden;
}

.sensor-description .image-content {
  width: 100%;
  height: 420px;
}

.sensor-description .image-content img {
  width: inherit;
  height: inherit;
  -o-object-fit: contain;
     object-fit: contain;
}

.tasks .brief-text {
  background-image: -webkit-gradient(linear, right top, left top, from(#fff), to(#fff));
  background-image: linear-gradient(to left, #fff, #fff);
}

.tasks .brief-text h6 {
  color: #000;
}

.tasks .brief-text p {
  color: #555;
}

.tasks .image-content {
  -webkit-box-shadow: none;
          box-shadow: none;
}
/*# sourceMappingURL=style.css.map */