* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}

@font-face {
  font-family: "cairo";
  src: url(../fonts/cairo.ttf);
}
a:hover,
a:focus {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

input,
textarea,
a,
button {
  outline: none !important;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a:hover {
  color: #888888;
}

body {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.428571429;
  direction: rtl;
  -webkit-transition: margin-left 0.5s;
  transition: margin-left 0.5s;
  text-align: right;
  background-color: #ffffff;
  width: 100%;
  font-family: "cairo";
}

button,
input,
optgroup,
select,
textarea {
  font-family: "cairo";
}

.main-wrapper {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.color-black {
  color: #000000 !important;
}

.color-white {
  color: #fff !important;
}

.bg-general {
  background-color: #1b8f99;
}

.bg-gray {
  background: #f9f9f9;
}

h2 {
  font-size: 28px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 14px;
}



.title_section {
  text-align: center;
  font-size: 30px;
  color: #12b8c4;
  margin-bottom: 5px;
}
/*

.info_section {
  text-align: center;
  font-size: 318x;
  color: #999999;
  margin-bottom: 5px;
}
*/

.layout {
  padding: 70px 0px;
  position: relative;
}

article {
  -webkit-box-shadow: 0px 3px 15px 0px rgba(114, 114, 114, 0.13);
  -moz-box-shadow: 0px 3px 15px 0px rgba(114, 114, 114, 0.13);
  -ms-box-shadow: 0px 3px 15px 0px rgba(114, 114, 114, 0.13);
  -o-box-shadow: 0px 3px 15px 0px rgba(114, 114, 114, 0.13);
  box-shadow: 0px 3px 15px 0px rgba(114, 114, 114, 0.13);
  border-radius: 15px;
  
}
.title_article {
  color: #3c3c3c;
}

.scroll-to-top {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0fb1bd;
  z-index: 2;
  color: #fff !important;
  font-size: 22px;
  text-align: center;
  line-height: 48px;
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.scroll-to-top:hover {
  background: #0d8e97;
}


/* ==========================================================================
   start animation
   ========================================================================== */
   .animated:nth-last-of-type(1) {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  
  .animated.infinite:not(:nth-of-type(1)) {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  
  @-webkit-keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  .fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
  }
  
  @-webkit-keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 20px, 0);
      transform: translate3d(0, 20px, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 20px, 0);
      transform: translate3d(0, 20px, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  .fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }
  
  @-webkit-keyframes fadeInDown {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, -20px, 0);
      transform: translate3d(0, -20px, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, -20px, 0);
      transform: translate3d(0, -20px, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  .fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
  }
  
  @-webkit-keyframes fadeInRight {
    from {
      opacity: 0;
      -webkit-transform: translateX(20px);
      transform: translateX(20px);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      -webkit-transform: translateX(20px);
      transform: translateX(20px);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  .fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
  }
  
  @-webkit-keyframes fadeInLeft {
    from {
      opacity: 0;
      -webkit-transform: translateX(-20px);
      transform: translateX(-20px);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      -webkit-transform: translateX(-20px);
      transform: translateX(-20px);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  .fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
  }
/* ==========================================================================
     end animation
     ========================================================================== */

/* ==========================================================================
   start menu mobile
   ========================================================================== */
   .toggleOpenNav {
    display: none;
    cursor: pointer;
    color: #fff !important;
    font-size: 22px;
  }
  .sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    background-color: #2ac5d0;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }
  
  .sidenav a {
    padding: 15px 20px;
    font-size: 16px;
    color: #ffffff !important;
    display: block;
    text-align: right;
    cursor: pointer;
  }
  
  .sidenav a:not(:first-of-type) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  
  .sidenav a:hover {
    color: #f1f1f1;
  }
  
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    left: 6px;
    font-size: 34px;
    padding: 0px 5px;
  }
/* ==========================================================================
     end menu mobile
     ========================================================================== */


/* ==========================================================================
   start main-header
   ========================================================================== */
.main-header {
  top: 0;
  right: 0;
  width: 100%;
  position: fixed;
  height: 70px;
  z-index: 3;
}
.main-header .logo {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  width: 123px;
}
.main-header img {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.main-header .menu-container {
  position: relative;
  align-items: center;
  z-index: 1;
}
.main-header .menu-container .main-menu li {
  display: inline-block;
  position: relative;
}
.main-header .menu-container .main-menu li a {
  display: block;
  margin: 0px 10px;
  font-size: 16px;
  color: #fff;
  line-height: 70px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.main-header .menu-container .main-menu li a i {
  padding-left: 5px;
}

.main-header .menu-container .main-menu li a::before {
  width: 0;
  height: 2px;
  position: absolute;
  left: 0%;
  bottom: 0px;
  content: "";
  background-color: #ffffff;
  -webkit-transition: all 500ms, color 200ms;
  -moz-transition: all 500ms, color 200ms;
  -ms-transition: all 500ms, color 200ms;
  -o-transition: all 500ms, color 200ms;
  transition: all 500ms, color 200ms;
}
.main-header .menu-container .main-menu li a:hover::before {
  width: 100%;
  left: auto;
  right: 0;
}
.main-header .menu-container .main-menu li a.active::before {
  width: 100%;
  left: auto;
  right: 0;
}

.main-header.fixed {
  background-color: #26b8c3;
  -webkit-box-shadow: 0px 3px 15px 0px rgba(114, 114, 114, 0.31);
  box-shadow: 0px 3px 15px 0px rgba(114, 114, 114, 0.31);
}

.main-header.fixed .logo img {
  max-width: 100px;
}
/* ==========================================================================
   end main-header
   ========================================================================== */


/* ==========================================================================
  start homeIntero
  ========================================================================== */
.homeIntero {
  position: relative;
  background: url(../images/img_homeIntro.png) center center no-repeat;
  background-size: 67% 100%;
  background-position: 100%;
}

.homeIntero .image {
  animation-name: animate1;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-delay: 0.2s;
}

@-webkit-keyframes animate1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes animate1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0px);
  }
}

.homeIntero .text .title {
  font-size: 50px;
  color: #242424;
  margin-bottom: 15px;
  font-weight: bold;
  visibility: hidden;
}
.homeIntero .text .info {
  color: #000;
  font-size: 18px;
  margin-bottom: 20px;
  visibility: hidden;
  line-height: 30px;
}
.homeIntero .general_btn {
  visibility: hidden;
}

.general_btn {
  width: 155px;
  height: 48px;
  border: 1px solid #000;
  color: #000;
  font-size: 18px;
  position: relative;
  display: block;
  line-height: 44px;
  border-radius: 30px;
  display: inline-block;
  text-align: center;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  margin: 0px 8px 5px;
}

.homeIntero .general_btn:hover {
  background-color: #000;
  color: #fff;
}
.section_downloading .general_btn {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.section_downloading .general_btn:hover {
  background-color: #000;
  border: 1px solid #000;
}

@media (min-width: 992px) {
  .homeIntero {
    padding: 130px 0px 10px !important;
  }
}
/* ==========================================================================
  end homeIntero
  ========================================================================== */


/* ==========================================================================
  start  section_features
  ========================================================================== */
.widght_1 {
  text-align: center;
  background-color: #fbfbfb;
  margin-bottom: 50px;
  padding: 60px 10px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.widght_1 .image_s {
  margin-bottom: 20px;
}
.widght_1 .image_s img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.widght_1:hover {
  transform: translateY(-10px);
}
/* ==========================================================================
  end section_features
  ========================================================================== */


/* ==========================================================================
  start  section_video
  ========================================================================== */
.text_video .title {
  color: #3c3c3c;
  font-size: 32x;
  margin-bottom: 15px;
}

.text_video .info {
  color: #999999;
  font-size: 16px;
  line-height: 24px;
}

.section_video {
  position: relative;
}

.play_video {
  cursor: pointer;
  position: relative;
}

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

.section_video::before {
  position: absolute;
  content: "";
  background: url(../images/overlay_1.png) right;
  background-size: cover;
  width: 300px;
  height: 480px;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
}

#showVideo button.close {
  position: absolute;
  left: 0;
  top: -40px;
  color: #fff;
  z-index: 1;
  text-shadow: none;
  opacity: 1;
  font-size: 35px;
}

.section_video::after {
  position: absolute;
  content: "";
  background: url(../images/overlay_2.png) right;
  background-size: 85%;
  width: 300px;
  height: 300px;
  left: 20px;
  top: 300px;
  background-repeat: no-repeat;
}
.play-button:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border: 5px solid #ddd;
  -webkit-animation: circle_zoom 0.8s linear 0.4s infinite;
  animation: circle_zoom 0.8s linear 0.4s infinite;
}

@-webkit-keyframes circle_zoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes circle_zoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}


/* ==========================================================================
  end section_video
  ========================================================================== */



/* ==========================================================================
  start section_advantages
  ========================================================================== */
.section_advantages {
  background: url(../images/overlay_3.png) bottom no-repeat;
  background-size: contain;
}
.section_advantages .nav-link {
  display: block;
  padding: 0.9rem 3rem;
  background-color: #eeeeee;
  border-radius: 0px;
  color: #000;
  margin-bottom: 10px;
}
.section_advantages .nav-pills .nav-link.active,
.section_advantages .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0fb1bd;
}

.section_advantages li:nth-of-type(1) .nav-link {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.section_advantages li:last-of-type .nav-link {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.content_text {
  color: #a0a0a0;
  font-size: 14px;
  line-height: 24px;
}

.content_text p {
  margin-bottom: 15px;
}

.content_text .title {
  color: #3c3c3c;
  font-size: 24px;
  margin-bottom: 10px;
}
/* ==========================================================================
  end section_advantages
  ========================================================================== */



/* ==========================================================================
  start section_slider 
  ========================================================================== */
  
.owl-nav {
  margin-top: 0px !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.owl-carousel .owl-nav button.owl-prev::before {
  right: -30px;
  color: #a0a0a0;
  margin: 0;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  font-size: 24px;
}
.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel .owl-nav button.owl-next span {
  display: none;
}
.owl-carousel .owl-nav button.owl-next::before {
  left: -30px;
  color: #a0a0a0;
  margin: 0;
  content: "\f053";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  font-size: 24px;
}
.section_slider .owl-stage {
  padding: 70px 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.section_slider .owl-stage img {
  width: 150px;
  margin: auto;
  height: 298px;
  -webkit-box-shadow: 0px 3px 15px 0px rgba(114, 114, 114, 0.31);
  box-shadow: 0px 3px 15px 0px rgba(114, 114, 114, 0.31);
}

.owl-item > div {
  cursor: pointer;
  transition: all 0.4s ease;
  margin: 0px 10%;
}
.owl-item.center > div {
  cursor: auto;
  transform: scale(1.15);
}

.owl-item.center > div img {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.mobile-mock {
  position: absolute;
  width: 200px;
  height: 395px;
  right: 50%;
  transform: translateX(50%);
  top: 150px;
  background: url(../images/bg-phone.png) center no-repeat;
  background-size: cover;
}
/* ==========================================================================
  end section_slider 
  ========================================================================== */


/* ==========================================================================
  start section_client
  ========================================================================== */
.comment {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 50px 0px rgba(112, 119, 133, 0.1);
  box-shadow: 0px 0px 50px 0px rgba(112, 119, 133, 0.1);
  padding: 30px;
  margin-bottom: 20px;
}
.comment .text-comment {
  color: #2d2d2d;
  font-size: 14px;
  line-height: 24px;
  height: 96px;
  overflow: hidden;
  margin-bottom: 15px;
}
.comment .img_person {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 10px;
}
.comment .name {
  color: #303030;
  font-size: 16px;
}
.comment .occupation {
  color: #979797;
  font-size: 12px;
}
/* ==========================================================================
  end section_client
  ========================================================================== */



/* ==========================================================================
  start section_downloading
  ========================================================================== */
.section_downloading {
  position: relative;
  background: url(../images/img_overlay.png) center center no-repeat;
  background-size: cover;
}
.content_downloading .title {
  color: #ffffff;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}
.content_downloading .info {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 15px;
}
/* ==========================================================================
  end section_downloading
  ========================================================================== */

/* ==========================================================================
  start main-footer 
  ========================================================================== */
  
.main-footer {
  padding: 80px 0px;
  background-color: #fff;
}

.main-footer .info {
  color: #878787;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px;
}
.main-footer .link-footer a {
  color: #4a4a4a;
  font-size: 14px;
  padding: 7px 0px;
  display: inline-block;
  position: relative;
  -webkit-transition: all 500ms, color 200ms;
  -moz-transition: all 500ms, color 200ms;
  -ms-transition: all 500ms, color 200ms;
  -o-transition: all 500ms, color 200ms;
  transition: all 500ms, color 200ms;
}
.main-footer .link-footer a::before {
  width: 0;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: 0;
  content: "";
  background-color: #25ade7;
  -webkit-transition: all 500ms, color 200ms;
  -moz-transition: all 500ms, color 200ms;
  -ms-transition: all 500ms, color 200ms;
  -o-transition: all 500ms, color 200ms;
  transition: all 500ms, color 200ms;
}
.main-footer .link-footer a:hover::before {
  width: 50%;
  left: auto;
  right: 0;
}
.main-footer li {
  display: inline-block;
  width: 49%;
}
.copyRight .socail {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  align-items: center;
}
.copyRight .socail a {
  display: inline-block;
  text-align: center;
  color: #12b8c4;
  font-size: 16px;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  margin: 0px 13px;
}
.main-footer .justify-content-evenly {
  justify-content: space-evenly;
}

.copyRight {
  position: relative;
  padding: 15px 0px;
  background-color: #f6f6f6;
}
.copyRight p {
  font-size: 12px;
  color: #67686d;
}
.copyRight h5 {
  font-size: 11px;
  color: #67686d;
  margin-bottom: 5px;
}
.copyRight a {
  color: #67686d;
}
/* ==========================================================================
  end main-footer 
  ========================================================================== */


/* ==========================================================================
  start responsive
  ========================================================================== */
@media (max-width: 991px) {
  .homeIntero {
    padding: 90px 0px 0px !important;
    background-size: 150%;
    background-position-y: 0;
  }
  article {
    margin-bottom: 35px;
  }
  .homeIntero .image img {
    max-width: 80%;
  }
  .phone-sm {
    max-width: 40%;
  }
  .homeIntero .text .title {
    font-size: 26px;
  }
  .homeIntero .text .info {
    font-size: 14px;
  }
  .section_video::before,
  .section_video::after {
    display: none;
  }
  .layout {
    padding: 30px 0px;
  }
  .main-footer {
    padding: 30px 0px;
  }

  .section_slider .owl-stage {
    display: inline-block;
  }

  .general_btn {
    width: 46%;
    margin: 0px 0px 5px;
  }
  .section_advantages .nav-link {
    padding: 0.9rem 1rem;
  }

  .toggleOpenNav {
    display: block;
  }
  #mobile-menu-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    visibility: hidden;
    background-color: rgba(51, 51, 51, 0.51);
  }
  .main-header {
    padding: 10px 0px;
  }
}

@media (max-width: 567px) {
  .mobile-mock {
    top: 120px;
  }
  .owl-carousel .owl-nav button.owl-prev::before {
    right: 0;
  }
  .owl-carousel .owl-nav button.owl-next::before {
    left: 0px;
  }
}

@media (min-width: 992px) {
  body {
    background-color: #fff !important;
    margin: 0px !important;
    overflow: auto !important;
  }
  .sidenav {
    width: 0px !important;
  }
}
/* ==========================================================================
  end responsive
  ========================================================================== */

.text-center.new-maroof {
    height: 100px;
}
h6.info_section span {
    font-family: cairo !important;
    line-height: 32px;
}