/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  --var(--primary): #0095DB;
  --secondary: #6610f2;
}

[dir="rtl"] body {
  text-align: right;
}

body {
  direction: rtl;
  font-family: 'Helvetica Neue W23 for SKY Reg';
  color: #98AAB2;
  font-size: 14px;
  line-height: 30px;
}

body.home {
  margin-top: 0;
}

a {
  color: var(--primary);
}

a:hover {
  color: #206bfb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Helvetica Neue W23 for SKY Reg';

}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--primary);
  border-top-color: #d1e6f9;
  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;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--primary);
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #206bfb;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /*background: #fff;*/
  transition: all 0.5s;
  z-index: 99999;
  padding: 16px 0;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  background: #fff;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: 'Helvetica Neue W23 for SKY Bd';
  letter-spacing: 0.5px;
}

#header .logo a {
  color: #5f687b;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 991px) {
  #header {
    padding: 12px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul {
  display: flex;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 14px;
  font-family: 'Helvetica Neue W23 for SKY Bd';
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: #26D7FF;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  right: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0 4px 10px rgb(0 149 219 / 30%);
  border-radius: 6px;
  transition: 0.3s;
}

.nav-menu .drop-down ul:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  position: absolute;
  top: -6px;
  right: 20px;
}

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #5f687b;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
  color: var(--primary);
}

.nav-menu .drop-down>a:before {
  content: "\ea99";
  font-family: 'icomoon';
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down>a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:before {
  content: none;
}

.nav-menu .drop-down .drop-down>a:after {
  content: "\eaa0";
  font-family: 'icomoon';
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }

  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%;
  }

  .nav-menu .drop-down .drop-down>a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-right: 25px;
  background: transparent;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 1px solid #fff;
  font-family: 'Helvetica Neue W23 for SKY Bd';
}

.get-started-btn:hover {
  background: #fff;
  color: #206bfb;
  border-color: #fff;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 21px;
  right: 15px;
  z-index: 999999;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #ffffff;
}

body.home .mobile-nav-toggle i {
  color: #fff;
}

.header-scrolled-btn.mobile-nav-toggle i,
body.home .header-scrolled-btn.mobile-nav-toggle i,
body .mobile-nav-toggle i {
  color: #007bff;
}



.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #5f687b;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: var(--primary);
  text-decoration: none;
}

.mobile-nav .drop-down>a:after {
  content: "";
  padding-left: 0;
  position: absolute;
  right: 15px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333333;
  top: 50%;
  transform: translate(0, -50%);
}


.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 99999;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(73, 80, 94, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /*height: 80vh;*/
  padding-top: 82px;
  background: rgb(8, 82, 219);
  background: -moz-linear-gradient(340deg, rgba(8, 82, 219, 1) 0%, rgba(0, 167, 245, 1) 100%);
  background: -webkit-linear-gradient(340deg, rgba(8, 82, 219, 1) 0%, rgba(0, 167, 245, 1) 100%);
  background: linear-gradient(340deg, rgba(8, 82, 219, 1) 0%, rgba(0, 167, 245, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0852db", endColorstr="#00a7f5", GradientType=1);
}

#hero h1 {
  margin: 0;
  font-size: 41px;
  font-weight: 700;
  line-height: 60px;
  color: #fff;
}

#hero h2 {
  color: #ffff;
  margin: 10px 0 30px 0;
  font-size: 18px;
  font-family: 'Helvetica Neue W23 for SKY Reg';
}

#hero .btn-get-started {

  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #009DFF;
  font-family: 'Helvetica Neue W23 for SKY Bd';

}

#hero .btn-get-started:hover {
  background: #206bfb;
  box-shadow: 0 8px 28px rgba(32, 107, 251, 0.45);
}

#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  padding: 8px 35px 8px 25px;
  transition: 0.5s;
  margin-left: 10px;
  color: #5f687b;
  position: relative;
}

#hero .btn-watch-video i {
  color: #949cac;
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 8px;
}

#hero .btn-watch-video:hover i {
  color: var(--primary);
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    /*height: 100vh;*/
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    /*width: 50%;*/
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    /*width: 70%;*/
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    /*width: 80%;*/
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f9f9fa;
}

.section-title {
  margin: 0 0 30px 0;
  position: relative;
}

.section-title h2 {
  font-size: 28px;
  font-family: 'Helvetica Neue W23 for SKY Bd';
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #333333;
  position: relative;
  z-index: 2;
}

.section-title span:after {
  content: "";
  height: 1px;
  background: #0095DB;
  position: absolute;
  width: 45px;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.section-title span {
  position: relative;
  width: 100%;
  color: #0095DB;
  font-family: 'Helvetica Neue W23 for SKY Reg';
  font-size: 24px;
  margin-bottom: 30px;
  display: inline-block;
  padding-right: 70px;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box-col {
  text-align: center;
  border: 1px solid #fff;
  padding: 45px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border-radius: 6px;
  font-family: 'Helvetica Neue W23 for SKY Reg' !important;
}


.services .icon-box-col .icon {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  height: 76px;
  width: 76px;
  border-radius: 50%;
  background: #0095DB;
}

.services .icon-box-col.icon-box-col-2 .icon {
  background: #26D7FF;
}

.services .icon-box-col .icon i {
  color: #fff;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box-col h4 {
  font-family: 'Helvetica Neue W23 for SKY Bd';
  margin-bottom: 15px;
  font-size: 18px;
  color: #333333;
  min-height: 57px;
  position: relative;
  padding-bottom: 15px;
}

.services .icon-box-col h4:after {
  content: "";
  height: 1px;
  width: 30px;
  background: #0095db;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  position: absolute;
}

.services .icon-box-col.icon-box-col-2 h4:after {
  background: #26d7ff;
}

.services .icon-box-col h4 a {
  color: #5f687b;
  transition: ease-in-out 0.3s;
}

.services .icon-box-col p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box-col:hover {
  box-shadow: 0 7px 20px rgb(0 149 219 / 12%);
}

.services .icon-box-col:hover h4 a {
  color: #5f687b;
}



/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f9f9fa;
  min-height: 40px;
  margin-top: 82px;
}

.breadcrumbs h2 {
  font-size: 36px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #778196;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background-color: #333333;
  color: #98AAB2;
  font-size: 14px;
  position: relative;
}

#footer .footer-bottom {
  background: #2E2E2E;
  z-index: 2;
  position: relative;
  padding-top: 24px;
  padding-bottom: 24px;
}

#footer .copyright {
  width: 100%;
  text-align: center;
  color: #fff;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

.footer-top {
  padding: 75px 0;
}

.footer-logo {
  margin-bottom: 35px;
  opacity: 0.4;
}

.footer-social label {
  color: #fff;
  margin-bottom: 16px;
  width: 100%;
}

.footer-social ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.footer-social ul li a {
  height: 30px;
  width: 30px;
  color: #fff;
  border: 1px solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  font-size: 18px;
}

.hs-brdr-footer {
  border-right: 1px solid #4A4A4A;
}

.footer-social {
  padding-right: 100px;
}

.footer-menu h4 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
}

.footer-menu ul {
  padding: 0;
  list-style: none;
}

.footer-menu ul li {
  margin-bottom: 15px;
}

.footer-menu ul li a {
  color: #98AAB2;
}

.footer-menu ul.menu-col-2 li {
  width: 50%;
  float: right;
}

.footer-menu ul li a:hover {
  color: #009DFF;
}

.footer-menu ul.with-icon li a {
  display: flex;
  align-items: center;
}

.footer-menu ul.with-icon li a i {
  color: #fff;
  margin-left: 15px;
  font-size: 16px;
}

@media (max-width: 992px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
  }
}









.header-scrolled .nav-menu a {
  color: #333333;
}

.header-scrolled .nav-menu .drop-down>a:before {
  border-top: .3em solid #333333;
}

.nav-menu>ul>li.drop-down:hover>a:before {
  border-top: .3em solid #26D7FF;
}

.header-scrolled .get-started-btn {
  color: #0095DB;
  border-color: #0095DB;
}

header .get-started-btn i {
  font-size: 20px;
  margin-right: 8px;
  order: 1;
}

header .get-started-btn {
  display: flex;
  align-items: center;
}

header .logo .logo2 {
  display: none;
}

header.header-scrolled .logo .logo1 {
  display: none;
}

header.header-scrolled .logo .logo2 {
  display: inline-block;
}

.nav-menu .drop-down ul a {
  font-family: 'Helvetica Neue W23 for SKY Reg';
  line-height: 1;
}

.banner-slider .item {
  padding: 160px 0 100px;
}

.banner-slider .owl-dots {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  padding: 0 22%;
  text-align: left;
  z-index: 999;
}

.banner-slider .owl-dots .owl-dot {
  height: 7px;
  width: 7px;
  background: #26D7FF;
  margin: 0 4px;
  border-radius: 50%;
}

.banner-slider .owl-dots .owl-dot.active {
  height: 10px;
  width: 10px;
}

#hero {
  position: relative;
}

.bannerd {
  position: absolute;
  -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  -webkit-animation-name: animateUpDown;
  animation-name: animateUpDown;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.bannerd img {
  width: 100%;
}

.bannerd1 {
  left: 7%;
  top: 20%;
  animation-delay: 0.5s;
  width: 18%;

}

.bannerd2 {
  left: 42%;
  top: 27%;
  animation-delay: 1s;
  width: 7%;

}

.bannerd3 {
  bottom: -17%;
  right: -2%;
  animation-delay: 1.5s;
  width: 50%;

}

.bannerd4 {
  top: 25%;
  right: 34%;
  animation-delay: 2s;
  width: 8%;

}

.bannerd5 {
  top: -60%;
  right: -7%;
  animation-delay: 2.5s;
  width: 41%;

}





@-webkit-keyframes animateUpDown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes animateUpDown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}



.site-btn {
  background: #26D7FF;
  color: #fff;
}

.site-btn {
  background: #26D7FF;
  color: #fff;
  padding: 15px 32px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgb(38 215 255 / 30%);
  transition: 0.4s all;
  border: 1px solid #26D7FF;
  font-size: 14px;
  font-family: 'Helvetica Neue W23 for SKY Bd';
  display: inline-block;
  line-height: 1;
}

.site-btn:hover {
  background: transparent;
  color: #26D7FF;
}

.section-body {
  margin-bottom: 30px;
}

.counter-main {
  padding: 47px 30px;
  box-shadow: 0 7px 20px rgb(0 149 219 / 12%);
  border-radius: 6px;
  margin-top: 30px;
}

.counter-box {
  display: flex;
  align-items: center;
  padding: 0 25px 0 40px;
}

.counter-box.hs-brdr {
  border-left: 1px solid #E7ECEF;
}

.counter-box .counter-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 64px;
  border: 3px solid #0095DB;
  border-radius: 50%;
  margin-left: 30px;
  font-size: 32px;
  color: #0095DB;
  transition: 0.4s all;
}

.counter-info>span {
  font-size: 28px;
  font-family: 'Helvetica Neue W23 for SKY Bd';
  margin-bottom: 0px;
  color: #333333;
  display: inline-block;
  line-height: 1;
}

.counter-info p {
  margin: 0;
  color: #333333;
}

.counter-box .counter-icon.counter-icon2 {
  border: 3px solid #26D7FF;
  color: #26D7FF;
}

.counter-main:hover .counter-box .counter-icon {
  background: #0095DB;
  color: #fff;
}

.counter-main:hover .counter-box .counter-icon2 {
  background: #26D7FF;
}






.prod-box {
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 7px 20px rgb(0 149 219 / 12%);
  padding: 40px 30px 0;
  border-top: 4px solid !important;
  transition: 0.4s all;
  border-width: 1px;
}

.prod-box:hover {
  box-shadow: none;
  border-style: solid;
}

.box-color1,
.box-color1 h4 {
  color: #2D93F2;
}

.box-color2,
.box-color2 h4 {
  color: #725FE1;
}

.box-color3,
.box-color3 h4 {
  color: #F7637D;
}

.box-color4,
.box-color4 h4 {
  color: #FF6752;
}

.box-color5,
.box-color5 h4 {
  color: #FBC245;
}

.box-color6,
.box-color6 h4 {
  color: #13CA94;
}

.box-color1 .icon {
  background: #2D93F2;
}

.box-color2 .icon {
  background: #725FE1;
}

.box-color3 .icon {
  background: #F7637D;
}

.box-color4 .icon {
  background: #FF6752;
}

.box-color5 .icon {
  background: #FBC245;
}

.box-color6 .icon {
  background: #13CA94;
}

.prod-box .icon {
  height: 128px;
  width: 128px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 50%;

}

.prod-box p {
  color: #98AAB2;
}

.prod-box h4 {
  font-size: 18px;
  margin-bottom: 22px;
}

.prod-box-link {
  padding: 20px 0 25px;
  border-top: 1px solid #E7ECEF;
}

.prod-box-link a {
  color: #333333;
  font-family: 'Helvetica Neue W23 for SKY Bd';
}

.nav-menu .drop-down>a:before {
  content: "";
  width: 0;
  height: 0;
  border-left: .3em solid transparent;
  border-right: .3em solid transparent;
  border-top: .3em solid #fff;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  padding: 0;
}

.nav-menu>ul>li.drop-down>a {
  padding-left: 15px;
}







.client-logo {
  padding-top: 0;
}

.client-logo img {
  max-width: 140px;
  max-height: 90px;
  transition: 0.4s all;
}

.client-logo img:hover {
  transform: scale(1.1);
}







.header-scrolled .nav-menu .active a {
  color: #26D7FF;
}


.fixed-top.inr-page-header {
  background: #fff;
}

.fixed-top.inr-page-header .nav-menu a {
  color: #333333;
}

.fixed-top.inr-page-header .get-started-btn {
  color: #0095DB;
  border-color: #0095DB;
}

header.fixed-top.inr-page-header .logo .logo2 {
  display: inline-block;
}

header.fixed-top.inr-page-header .logo .logo1 {
  display: none;
}

.fixed-top.inr-page-header .nav-menu .drop-down>a:before {
  border-top: .3em solid #333333;
}

.fixed-top.inr-page-header .nav-menu .drop-down:hover>a:before,
.fixed-top.inr-page-header .nav-menu .drop-down.active>a:before {
  border-top: .3em solid #26D7FF;
}

.fixed-top.inr-page-header .nav-menu li:hover>a,
.fixed-top.inr-page-header .nav-menu li.active>a {
  color: #26D7FF;
}

.fixed-top.inr-page-header .nav-menu .drop-down ul a:hover,
.fixed-top.inr-page-header .nav-menu .drop-down ul .active>a,
.fixed-top.inr-page-header .nav-menu .drop-down ul li:hover>a {
  color: var(--primary);
}




.inr-page-main-title {
  overflow: hidden;
  padding: 54px 0;
  background: rgb(8, 82, 219);
  background: -moz-linear-gradient(340deg, rgba(8, 82, 219, 1) 0%, rgba(0, 167, 245, 1) 100%);
  background: -webkit-linear-gradient(340deg, rgba(8, 82, 219, 1) 0%, rgba(0, 167, 245, 1) 100%);
  background: linear-gradient(340deg, rgba(8, 82, 219, 1) 0%, rgba(0, 167, 245, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0852db", endColorstr="#00a7f5", GradientType=1);
}

.inr-page-main-title-img {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.inr-page-main-title-img img {
  height: 112px;
  width: auto;
  opacity: 0.35;
}

.inr-page-main-title .section-title {
  margin: 0;
}

.inr-page-main-title .section-title span {
  font-size: 28px;
  font-family: 'Helvetica Neue W23 for SKY Bd';
  color: #26D7FF;
  margin-bottom: 13px;
}

.inr-page-main-title .section-title span:after {
  background: #26D7FF;
}

.inr-page-main-title .section-title h2 {
  margin: 0;
  font-size: 14px;
  font-family: 'Helvetica Neue W23 for SKY Reg';
  color: #fff;
  line-height: 19px;
}

.section-title .with-pd {
  padding-right: 70px;
}

.inr-page-text p {
  color: #333333;
}

hr {
  border-top-color: #E7ECEF;
}

.inr-page-info {
  padding: 90px 0;
}

.prod-full-info.mosyr2 {
  background: linear-gradient(340deg, rgb(88 50 109) 0%, rgb(131 75 164) 100%);
}

.prod-full-info-img-main.mosyr2:before {
  background: linear-gradient(30deg, rgb(130 75 163) 0%, rgba(0, 167, 245, 0) 50%);
}

a.btn-get-started.mosyr2 {
  background: #834ba4;
}

a.btn-get-started.mosyr2:hover {
  background: #5a3370;
  box-shadow: 0 8px 28px rgb(187 120 225 / 75%);
}



.prod-full-info {
  background: rgb(8, 82, 219);
  background: -moz-linear-gradient(340deg, rgba(8, 82, 219, 1) 0%, rgba(0, 167, 245, 1) 100%);
  background: -webkit-linear-gradient(340deg, rgba(8, 82, 219, 1) 0%, rgba(0, 167, 245, 1) 100%);
  background: linear-gradient(340deg, rgba(8, 82, 219, 1) 0%, rgba(0, 167, 245, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0852db", endColorstr="#00a7f5", GradientType=1);
  position: relative;
}

.prod-full-info .btn-get-started {
  font-family: 'Helvetica Neue W23 for SKY Reg';
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #009DFF;
  font-family: 'Helvetica Neue W23 for SKY Bd';
}

.prod-full-info .btn-get-started:hover {
  background: #206bfb;
  box-shadow: 0 8px 28px rgb(32 107 251 / 45%);
}

.prod-full-info-text h3 {
  font-size: 28px;
  color: #fff;
  font-family: 'Helvetica Neue W23 for SKY Bd';
  margin-bottom: 30px;
}

.prod-full-info-text ul {
  padding-right: 0;
  list-style: none;
  margin-bottom: 45px;
}

.prod-full-info-text ul li {
  padding-right: 50px;
  position: relative;
  color: #fff;
}

.prod-full-info-text ul li:after {
  content: "\eafa";
  font-family: 'icomoon' !important;
  position: absolute;
  right: 20px;
  top: 0;
}


.prod-full-info-img-main {
  position: relative;
  z-index: 99;
  width: 270px;
  height: 270px;
}

.prod-full-info-img-main .prod-full-info-img {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  padding: 40px;
}

.prod-full-info-img img {
  max-width: 100%;
  max-height: 100%;
}

.prod-full-info-img-main:before {
  content: "";
  height: calc(100% + 30px);
  width: calc(100% + 30px);
  background: rgb(19, 86, 203);
  background: -moz-linear-gradient(30deg, rgba(19, 86, 203, 1) 0%, rgba(0, 167, 245, 0) 50%);
  background: -webkit-linear-gradient(30deg, rgba(19, 86, 203, 1) 0%, rgba(0, 167, 245, 0) 50%);
  background: linear-gradient(30deg, rgba(19, 86, 203, 1) 0%, rgba(0, 167, 245, 0) 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1356cb", endColorstr="#00a7f5", GradientType=1);
  position: absolute;
  border-radius: 50%;
  left: -15px;
  bottom: -15px;
  z-index: -1;
}

.prod-full-info .bannerd2 {
  left: auto;
  right: 12%;
  z-index: 999;
  top: 240px;
  width: 8%;
}

.prod-full-info .bannerd3 {
  bottom: -25%;
  right: -10%;
}

.inr-page-main-title.mosyr2 {
  background: linear-gradient(340deg, rgb(88 50 109) 0%, rgb(131 75 164) 100%);
}


.mobile-nav .drop-down.active>a:after,
.mobile-nav .drop-down:hover>a:after {
  border-top: 6px solid var(--primary);
}

.section-title.mosyr2 span {
  color: #c461ff;
}

.section-title-c2 span {
  color: #26D7FF;
}

.section-title-c2 span:after {
  background: #26D7FF;
}

.section-title.mosyr2 span:after {
  background: #cf81ff;
}


#cf81ff .prod-full-info-text h5 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 30px;
}

.client-logo-inr {
  padding-top: 80px;
}



.ghaith-cat-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 27px 20px;
  box-shadow: 0 7px 20px rgb(0 149 219 / 12%);
  border-radius: 6px;
  margin: 10px 0;
}

.ghaith-cat-box>img {
  height: 56px;
  width: auto;
  margin-bottom: 20px;
}

a.ghaith-cat-box {
  color: #333333;
  transition: 0.4s all;
}

.ghaith-cat-box:hover {
  transform: translate(0px, -10px);
}


.gstrm {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.gstrm .gstrm-icon {
  margin-left: 15px;
  color: #0095DB;
  height: 48px;
  width: 48px;
  border: 2px solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.4s all;
}

.gstrm p {
  margin: 0;
  width: calc(100% - 63px);
}

.gstrm.gstrm-c2 .gstrm-icon {
  color: #26D7FF;
}

.gstrm:hover .gstrm-icon {
  color: #fff;
  background: #0095DB;
}

.gstrm.gstrm-c2:hover .gstrm-icon {
  color: #fff;
  background: #26D7FF;
}

.about-page-text {
  box-shadow: 0 7px 20px rgb(0 149 219 / 12%);
  border-radius: 10px;
  padding: 45px;
  margin-bottom: 20px;
  height: calc(100% - 20px);
}

.about-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  margin-bottom: 45px;
  border-bottom: 1px solid #E7ECEF;
}

.about-title-icon {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  border-radius: 50%;
  color: #0095DB;
  border: 3px solid;
}

.about-section-title span {
  color: #0095DB;
  font-size: 18px;
  font-family: 'Helvetica Neue W23 for SKY Bd';
}

.about-fullwidth-title {
  position: relative;
  margin-bottom: 50px;
  display: flex;
}

.about-fullwidth-title-inr {
  display: flex;
  align-items: center;
  background: #fff;
  position: relative;
  padding-left: 33px;
  position: relative;
}

.about-fullwidth-icon {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  border-radius: 50%;
  color: #0095DB;
  border: 3px solid;
  margin-left: 20px;
}

.about-fullwidth-title-inr span {
  font-size: 28px;
  font-family: 'Helvetica Neue W23 for SKY Bd';
  color: #0095DB;
}

.about-fullwidth-title:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  background: #E7ECEF;
  left: 0;
  right: 0;
  height: 1px;
}

.about-fullwidth-body {
  color: #333333;
}

.inr-page-main-title-img img.contect-us-title-img {
  margin-top: -40px;
  margin-bottom: -40px;
}

.section-title h4 {
  font-size: 18px;
  font-family: 'Helvetica Neue W23 for SKY Bd';
  color: #0095DB;
}

.contact-info {
  display: flex;
  margin-bottom: 30px;
}

.contact-info .contact-info-box {
  margin-left: 30px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: 0 7px 20px rgb(0 149 219 / 12%);
  border-radius: 10px;
  text-align: center;
  padding: 25px 15px;
}

.contact-info .contact-info-box:last-child {
  margin-left: 0;
}

.contact-info .contact-info-box h4 {
  font-size: 14px;
  font-family: 'Helvetica Neue W23 for SKY Reg';
  margin-bottom: 5px;
  color: #333333;
}

.contact-info .contact-info-box>i {
  font-size: 24px;
  color: #0095DB;
  margin-bottom: 7px;
}

.contact-info .contact-info-box strong {
  font-size: 12px;
  color: #333333;
  font-family: 'Helvetica Neue W23 for SKY Bd';
}

.contact-form .form-control {
  font-size: 14px;
  padding: 16px 25px;
  border: 1px solid #E7ECEF;
  height: auto;
}

.contact-form {
  border-radius: 10px;
  box-shadow: 0 7px 20px rgb(102 167 197 / 81%);
  padding: 48px 30px;
}

.contact-form iframe {
  border: 2px solid #E7ECEF;
  border-radius: 6px;
  margin-bottom: 20px;
}

section._404 {
  background: #F4F7F8;
  text-align: center;
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
}

._404-img {
  margin-bottom: 36px;
}

._404-inr h3 {
  margin: 0 0 5px;
  color: #333333;
  font-family: 'Helvetica Neue W23 for SKY Bd';
  font-size: 18px;
}

._404-inr p {
  width: 100%;
  margin-bottom: 59px;
  color: #333333;
}


.site-btn-border {
  background: transparent;
  border: 2px solid #26D7FF;
  color: #26D7FF;
  padding: 15px 32px;
  border-radius: 6px;
  /*box-shadow: 0 5px 15px rgb(38 215 255 / 30%);*/
  transition: 0.4s all;
  border: 1px solid #26D7FF;
  font-size: 14px;
  font-family: 'Helvetica Neue W23 for SKY Bd';
  display: inline-block;
  line-height: 1;
}

.site-btn-border:hover {
  background: #26D7FF;
  color: #fff;
}


form#user-login-form .form-item-name , form#user-login-form .form-item-pass {
  width: 250px;
}

form#user-login-form {
  text-align: -webkit-center;
}

@media (max-width:1000px) {
  body {
   padding-top: 0px!important;   
  }
}

@media (min-width: 1024px) {
  form#user-login-form {
    padding: 30px 200px;
  }
}

@media (min-width: 300px) {
  form#user-login-form {
    padding: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {

  .counter-box {
    padding: 0;
  }

}

@media only screen and (max-width: 991px) {

  header#header {
    padding-right: 50px !important;
  }

  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }


}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  body {
    margin-top: 68px;
  }

  .banner-slider .item {
    padding: 40px 0 10px;
  }

  .counter-info>span {
    font-size: 20px;
  }

  .counter-box .counter-icon {
    height: 50px;
    width: 50px;
    margin-left: 0;
    font-size: 25px;
    margin-bottom: 20px;
  }

  .counter-box {
    padding: 0 0 0 20px;
    flex-direction: column;
  }

  .counter-info {
    text-align: center;
  }

  .footer-social {
    padding-right: 0;
    margin-top: 40px;
  }

  .hs-brdr-footer {
    border: none;
  }

  .banner-slider .owl-dots {
    bottom: 0;
    position: unset;
  }

  .section-title .with-pd {
    padding-right: 0;
  }

  .inr-page-info {
    padding: 60px 0;
  }

  .prod-full-info-img-main {
    margin: 0 auto;
  }

  .prod-full-info .bannerd4 {
    right: 74%;
    width: 28%;
  }

  .prod-full-info .bannerd2 {
    right: 27%;
    top: 19%;
    width: 14%;
  }

  .prod-full-info .bannerd3 {
    bottom: -20%;
    right: -5%;
    width: 60%;
  }



}

@media only screen and (max-width: 767px) {

  section {
    padding: 50px 0;
    overflow: hidden;
  }

  .banner-slider .item {
    padding: 50px 0 0;
  }

  .banner-slider .owl-dots {
    position: unset;
    margin-top: 20px;
    text-align: center;
    padding: 0;
  }

  .counter-box {
    padding: 15px 10px;
  }

  .counter-box.hs-brdr {
    border: none;
  }

  .footer-menu {
    margin: 0 0 50px;
  }

  .footer-social {
    padding-right: 0;
  }

  .inr-page-main-title-img {
    margin-top: 20px;
    justify-content: center;
  }

  .section-title span {
    padding-right: 50px;
  }

  .section-title span:after {
    width: 35px;
  }

  .section-title .with-pd {
    padding-right: 50px;
  }

  .inr-page-main-title-img img {
    height: 80px !important;
  }

  .inr-page-main-title {
    padding: 30px 0;
  }

  body {
    margin-top: 68px;
  }

  .section-title span {
    font-size: 25px;
    margin-bottom: 20px;
    line-height: 35px;
  }

  .inr-page-info {
    padding: 50px 0;
  }

  .reverse-mobile .inr-page-img {
    margin-bottom: 30px;
  }

  .prod-full-info-img-main {
    margin: 0 auto;
  }

  .prod-full-info-img-main {
    width: 200px;
    height: 200px;
  }

  .client-logo-inr {
    padding-top: 50px;
  }

  .prod-full-info .bannerd2 {
    top: 160px;
    width: 25%;
  }

  .reverse-mobile {
    flex-direction: column-reverse;
  }

  .inr-page-main-title-img img.contect-us-title-img {
    margin-top: 0;
    margin-bottom: 0;
  }


}



@media only screen and (max-width: 480px) {

  .inr-page-main-title .section-title h2 br {
    display: none;
  }

  .contact-info .contact-info-box {
    margin-left: 0;
  }

  .contact-info {
    flex-wrap: wrap;
  }

}



.open-button {
  background-color: #555;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 280px;
}

.form-popup {
  display: none;
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  width: 20%;
  position: relative;
  transition: all 5s ease-in-out;
}

.form-container {
  max-width: 300px;
  padding: 10px;
  background-color: white;
}

.form-container .btn {
  background-color: #04AA6D;
  color: white;
  border: none;
  cursor: pointer;
  width: 50%;
  margin: 0px 50px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.form-container .cancel {
  background-color: red;
}


.form-container .btn:hover,
.open-button:hover {
  opacity: 1;
}






.video_btn .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  color: #38b449;
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  margin-right: 18px;
  vertical-align: middle;
  -webkit-box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.19);
  box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.19);
}

.video_btn span {
  display: inline-block;
  position: relative;
}

.video_btn span:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background: #fff;
}

.video_btn:hover {
  color: #fff;
}




/*--------------------------------------------------------------
# custom css for extra designs 
--------------------------------------------------------------*/

.bg_color {
  background: #fbfbfd;
}

.f_size_30 {
  font-size: 30px;
}

.f_600 {
  font-weight: 600;
}

.t_color3 {
  color: #222d39;
}

.l_height40 {
  line-height: 40px;
}


.process_area .features_info {
  padding-bottom: 185px;
}

.features_info {
  position: relative;
  padding-bottom: 170px;
}

.features_info .dot_img {
  position: absolute;
  left: 0;
  top: 28px;
}

.features_info.feature_info_two {
  padding-bottom: 70px;
}


.agency_featured_item {
  margin-top: 130px;
}

.agency_featured_item .agency_featured_content {
  position: relative;
}

.agency_featured_item .agency_featured_content h3 {
  font-family: 'Helvetica Neue W23 for SKY Reg';
  color: #222d39;
  margin: 32px 0px 25px;
}

.agency_featured_item .agency_featured_content p {
  font-size: 15px;
}

.agency_featured_item .agency_featured_content .icon {
  width: 46px;
  height: 46px;
  line-height: 46px;
  border-radius: 50%;
  background-image: -moz-linear-gradient(40deg, #5e2ced 0%, #a485fd 100%);
  background-image: -webkit-linear-gradient(40deg, #5e2ced 0%, #a485fd 100%);
  background-image: -ms-linear-gradient(40deg, #5e2ced 0%, #a485fd 100%);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(94, 44, 237, 0.2);
  box-shadow: 0px 10px 20px 0px rgba(94, 44, 237, 0.2);
  font-size: 20px;
  color: #fff;
  display: inline-block;
  text-align: center;
}

.agency_featured_item.agency_featured_item_two .agency_featured_content .dot {
  left: 30px;
}

.pr_70 {
  padding-right: 70px;
}

.pl_70 {
  padding-left: 70px;
}

.dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(255, 161, 39, 0.161);
  display: block;
  position: absolute;
  left: -9px;
  top: 15px;
}

.dot .dot1 {
  position: absolute;
  left: 50%;
  margin-top: -4px;
  margin-left: -4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #feb85d;
}

.dot .dot2 {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(254, 184, 93, 0.8);
  -webkit-animation: pulsate 3s infinite;
  animation: pulsate 3s infinite;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  will-change: transform;
}

.mt_30 {
  margin-top: 30px;
}


.dot.middle_dot {
  left: 54.8%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  top: auto;
}

.row.agency_featured_item.flex-row-reverse {
  flex-direction: unset;
}

@media (min-width: 1250px) {
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

.container.custom_container {
  max-width: 1520px;
}


.feature_info .feature_img img {
  max-width: 100%;
}


img.project {
  width: 500px;
  padding-top: 50px;
}



/*.dot.middle_dot.last {
  left: 54.8%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  top: auto;
}


.dot .dot1.last {
  position: absolute;
  left: 50%;
  margin-top: 80px;
  margin-left: -4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #feb85d;
}

.dot .dot2.last {
  position: absolute;
  left: 50%;
  top: 466%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(254, 184, 93, 0.8);
  -webkit-animation: pulsate 3s infinite;
  animation: pulsate 3s infinite;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  will-change: transform;
}
*/

@media (max-width: 1550px) {
  .agency_featured_img img {
    max-width: 100%;
  }
}


@media (max-width:1199px) {
  .agency_featured_item .agency_featured_content {
    padding-right: 0px;
    padding-left: 20px;
  }

  .features_info .dot_img,
  .dot {
    display: none;
  }

  .agency_featured_item {
    margin-top: 80px;
  }

  .features_info {
    padding-bottom: 0px;
  }

  .agency_content h2 {
    font-size: 36px;
    line-height: 53px;
  }

}

@media (max-width:991px) {
  .feature_info .feature_img {
    margin-left: 0;
    margin-bottom: 30px;
  }

  .feature_info .feature_img.f_img_two {
    max-width: 570px;
    position: relative;
  }

  .feature_info .feature_img.f_img_two .one {
    right: 40%;
  }

  .features_area .mt_130 {
    margin-top: 80px;
  }

  .features_info.feature_info_two .agency_featured_img {
    text-align: left !important;
    margin-bottom: 50px;
  }

  .agency_featured_item .agency_featured_img {
    text-align: left !important;
  }

  .agency_content {
    max-width: 500px;
  }

  .agency_featured_item .agency_featured_content {
    padding-left: 0px;
    margin-top: 50px;
  }
}


@media (max-width:768px) {
  .agency_featured_item .agency_featured_img {
    text-align: center !important;
  }

  .agency_featured_item .agency_featured_content {
    padding-left: 0;
    margin-top: 50px;
  }

  .features_info.feature_info_two .agency_featured_img {
    margin-bottom: 0px;
  }

  .feature_info .f_content h2 {
    line-height: 33px;
    margin-bottom: 15px;
  }
}


@media (max-width:576px) {
  .feature_info .feature_img.f_img_one .one {
    left: 0;
    max-width: 80%;
  }

  .feature_info .feature_img.f_img_one .three {
    max-width: 69%;
  }

  .feature_info .feature_img.f_img_two .one {
    right: 131px;
    max-width: 43%;
  }
}

img.ghaith-clients {

  height: 200px;
  width: 200px;

}

span.phone {
  unicode-bidi: plaintext !important;
}

strong.phone {
  unicode-bidi: plaintext !important;
}

a.read {

  display: -webkit-inline-box;
}

a.floatwhats:hover {
  color: white;
}

.floatwhats {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}



li.pager__item {
  border: none;
  padding: 0;
  margin: 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  /*font-family: 'Noto Naskh Arabic';*/
  border: 1px solid #EAECEF;
  color: #157af6;
}

.pagination {
  justify-content: center;
}

li.pager__item.is-active.active {
  background-color: #157af6;
}

.pager__item.is-active.active a {
  color: #fff;
}


.service_promo_area {
  position: relative;
  overflow: hidden;
}

.service_promo_area .shape {
  position: absolute;
  width: 100%;
  height: 1320px;
}

.service_promo_area .shape.shape_one {
  opacity: 0.01;
  left: -25%;
  top: 350px;
}

.service_promo_area .shape.shape_two {
  opacity: 0.02;
  left: -15%;
  top: 400px;
}

.service_promo_area .shape.shape_three {
  right: -52%;
  bottom: -9%;
  opacity: 0.01;
}

.service_promo_area .shape.shape_four {
  right: -44%;
  bottom: -12%;
  opacity: 0.02;
}


.s_service_item {
  background-image: -moz-linear-gradient(40deg, #6754e2 0%, #19cce6 100%);
  background-image: -webkit-linear-gradient(40deg, #6754e2 0%, #19cce6 100%);
  background-image: -ms-linear-gradient(40deg, #6754e2 0%, #19cce6 100%);
  -webkit-box-shadow: 0px 20px 60px 0px rgba(0, 11, 40, 0.06);
  box-shadow: 0px 20px 60px 0px rgba(0, 11, 40, 0.06);
  padding: 50px 40px 40px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.s_service_item .icon {
  width: 82px;
  height: 82px;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  line-height: 82px;
  font-size: 30px;
  text-align: center;
  margin-bottom: 34px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.s_service_item .icon.icon_1 {
  background-color: rgba(10, 188, 123, 0.059);
  border-color: rgba(10, 188, 123, 0.3);
  color: #0abc7b;
}

.s_service_item .icon.icon_2 {
  border-color: rgba(231, 178, 18, 0.3);
  background-color: rgba(214, 167, 25, 0.059);
  color: #d6a719;
}

.s_service_item .icon.icon_3 {
  color: #6754e2;
  background-color: rgba(103, 84, 226, 0.059);
  border-color: rgba(103, 84, 226, 0.3);
}

.s_service_item .icon.icon_4 {
  color: #f91c60;
  background-color: rgba(248, 27, 95, 0.059);
  border-color: rgba(248, 27, 95, 0.3);
}

.s_service_item .solid_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: -1;
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.s_service_item h5 {
  margin-bottom: 18px;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.s_service_item:hover .solid_overlay {
  opacity: 0;
}

.s_service_item:hover .learn_btn_two,
.s_service_item:hover h5,
.s_service_item:hover p {
  color: #fff;
}

.s_service_item:hover .icon {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.059);
  color: #fff;
}


/*============= saas_service_area css =============*/
.saas_service_item .saas_service_content .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 64px;
  color: #fff;
  text-align: center;
  margin-bottom: 35px;
}

.saas_service_item .saas_service_content .icon.icon_one {
  background-image: -moz-linear-gradient(40deg, #5e2ced 0%, #a485fd 100%);
  background-image: -webkit-linear-gradient(40deg, #5e2ced 0%, #a485fd 100%);
  background-image: -ms-linear-gradient(40deg, #5e2ced 0%, #a485fd 100%);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(94, 44, 237, 0.2);
  box-shadow: 0px 10px 20px 0px rgba(94, 44, 237, 0.2);
}

.saas_service_item .saas_service_content .icon.icon_two {
  background-image: -moz-linear-gradient(40deg, #e03827 0%, #f9a47a 100%);
  background-image: -webkit-linear-gradient(40deg, #e03827 0%, #f9a47a 100%);
  background-image: -ms-linear-gradient(40deg, #e03827 0%, #f9a47a 100%);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(227, 69, 49, 0.2);
  box-shadow: 0px 10px 20px 0px rgba(227, 69, 49, 0.2);
}

.saas_service_item .saas_service_content .icon.icon_three {
  background-image: -moz-linear-gradient(40deg, #57b22a 0%, #77ea3d 100%);
  background-image: -webkit-linear-gradient(40deg, #57b22a 0%, #77ea3d 100%);
  background-image: -ms-linear-gradient(40deg, #57b22a 0%, #77ea3d 100%);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(92, 186, 45, 0.2);
  box-shadow: 0px 10px 20px 0px rgba(92, 186, 45, 0.2);
}

.saas_service_item .saas_service_content .icon.icon_four {
  background-image: -moz-linear-gradient(40deg, #2c82ed 0%, #38d0fc 100%);
  background-image: -webkit-linear-gradient(40deg, #2c82ed 0%, #38d0fc 100%);
  background-image: -ms-linear-gradient(40deg, #2c82ed 0%, #38d0fc 100%);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(45, 139, 239, 0.2);
  box-shadow: 0px 10px 20px 0px rgba(45, 139, 239, 0.2);
}

.saas_service_item .saas_service_content h4 {
  margin-bottom: 20px;
}

.saas_service_item .saas_service_content p {
  margin-bottom: 45px;
}

.saas_service_item+.saas_service_item {
  margin-top: 180px;
}

.container.custom_container {
  max-width: 1520px;
}



/*================= action area three css =================*/
.action_area_three {
  background-image: -moz-linear-gradient(0deg, #5e2ced 0%, #6c3cf4 100%);
  background-image: -webkit-linear-gradient(0deg, #5e2ced 0%, #6c3cf4 100%);
  background-image: -ms-linear-gradient(0deg, #5e2ced 0%, #6c3cf4 100%);
  position: relative;
  z-index: 1;
}

.action_area_three:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}

.action_area_three .curved {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  z-index: -1;
  background: url("../img/home4/action_shap.png") no-repeat scroll center top;
  top: 0;
  background-size: contain;
}

.action_area_three .action_content h2 {
  color: #fff;
}

.action_area_three .action_content .about_btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.action_area_three .action_content .about_btn:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #5e2ced;
  background: #fff;
}

.action_area_three .action_content .white_btn {
  color: #5e2ced;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #fff;
  margin-right: 25px;
}

.action_area_three .action_content .white_btn:hover {
  -webkit-box-shadow: 0px 20px 30px 0px rgba(12, 0, 46, 0.1);
  box-shadow: 0px 20px 30px 0px rgba(12, 0, 46, 0.1);
  color: #fff;
  background: #5e2ced;
}

/*====================================================*/


.fun_fact_area {
  padding-top: 150px;
  padding-bottom: 110px;
  overflow: hidden;
}

.fun_fact_area_two {
  background: #f7f6fa;
}

.fact_author_img {
  position: relative;
}

.fact_author_img .box_three {
  background-image: -moz-linear-gradient(90deg, #290a59 0%, #3d57f4 100%);
  background-image: -webkit-linear-gradient(90deg, #290a59 0%, #3d57f4 100%);
  background-image: -ms-linear-gradient(90deg, #290a59 0%, #3d57f4 100%);
  width: 500px;
  height: 630px;
  opacity: 1;
  top: -496px;
}

.fact_author_img .box_four {
  background-image: -moz-linear-gradient(90deg, #411881 0%, #9b2bdc 100%);
  background-image: -webkit-linear-gradient(90deg, #411881 0%, #9b2bdc 100%);
  background-image: -ms-linear-gradient(90deg, #411881 0%, #9b2bdc 100%);
  opacity: 1;
  width: 708px;
  height: 708px;
  top: -460px;
  left: 150px;
}

.fact_author_img img {
  margin-top: -70px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.fact_author_img_two .box_three {
  background-image: -moz-linear-gradient(-90deg, #fb862f 0%, #c640fd 100%);
  background-image: -webkit-linear-gradient(-90deg, #fb862f 0%, #c640fd 100%);
  background-image: -ms-linear-gradient(-90deg, #fb862f 0%, #c640fd 100%);
}

.fact_author_img_two .box_four {
  background-image: -moz-linear-gradient(90deg, #5e2ced 0%, #a485fd 100%);
  background-image: -webkit-linear-gradient(90deg, #5e2ced 0%, #a485fd 100%);
  background-image: -ms-linear-gradient(90deg, #5e2ced 0%, #a485fd 100%);
}

.square_box {
  position: absolute;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top-left-radius: 45px;
  opacity: 0.302;
}

.square_box.box_one {
  background-image: -moz-linear-gradient(140deg, #290a59 0%, #3d57f4 100%);
  background-image: -webkit-linear-gradient(140deg, #290a59 0%, #3d57f4 100%);
  background-image: -ms-linear-gradient(140deg, #290a59 0%, #3d57f4 100%);
  width: 382px;
  height: 382px;
  bottom: -191px;
  left: -50px;
}

.square_box.box_two {
  background-image: -moz-linear-gradient(140deg, #3c0f73 0%, #bc2280 100%);
  background-image: -webkit-linear-gradient(140deg, #3c0f73 0%, #bc2280 100%);
  background-image: -ms-linear-gradient(140deg, #3c0f73 0%, #bc2280 100%);
  width: 235px;
  height: 235px;
  bottom: -116px;
  left: 250px;
}

.square_box.box_three {
  background-image: -moz-linear-gradient(-90deg, #290a59 0%, #3d57f4 100%);
  background-image: -webkit-linear-gradient(-90deg, #290a59 0%, #3d57f4 100%);
  background-image: -ms-linear-gradient(-90deg, #290a59 0%, #3d57f4 100%);
  opacity: 0.059;
  left: -80px;
  top: -60px;
  width: 500px;
  height: 500px;
  border-radius: 45px;
}

.square_box.box_four {
  background-image: -moz-linear-gradient(-90deg, #290a59 0%, #3d57f4 100%);
  background-image: -webkit-linear-gradient(-90deg, #290a59 0%, #3d57f4 100%);
  background-image: -ms-linear-gradient(-90deg, #290a59 0%, #3d57f4 100%);
  opacity: 0.059;
  left: 150px;
  top: -25px;
  width: 550px;
  height: 550px;
  border-radius: 45px;
}

.fact_author_img .box_four {
  background-image: -moz-linear-gradient(90deg, #411881 0%, #9b2bdc 100%);
  background-image: -webkit-linear-gradient(90deg, #411881 0%, #9b2bdc 100%);
  background-image: -ms-linear-gradient(90deg, #411881 0%, #9b2bdc 100%);
  opacity: 1;
  width: 619px;
  height: 708px;
  top: -520px;
  left: 150px;
}

.fact_author_img img {
  margin-top: -70px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.fact_author_img_two .box_three {
  background-image: -moz-linear-gradient(-90deg, #fb862f 0%, #c640fd 100%);
  background-image: -webkit-linear-gradient(-90deg, #fb862f 0%, #c640fd 100%);
  background-image: -ms-linear-gradient(-90deg, #fb862f 0%, #c640fd 100%);
}

.fact_author_img_two .box_four {
  background-image: -moz-linear-gradient(90deg, #5e2ced 0%, #a485fd 100%);
  background-image: -webkit-linear-gradient(90deg, #5e2ced 0%, #a485fd 100%);
  background-image: -ms-linear-gradient(90deg, #5e2ced 0%, #a485fd 100%);
}


.icons-edit {
  max-width: 50px;
}

.editing {
  height: 500px;
}

p {
  text-align: right;
}

h1 {
  text-align: center;
}

.features_info .dot_img {
  left: -57px;
}

:is(.fact_author_img_two .box_four, .action_area_three) {
  background-image: linear-gradient(340deg, rgba(8, 82, 219, 1) 0%, rgba(0, 167, 245, 1) 100%);
}

.fact_author_img_two .box_three {
  background-image: -webkit-linear-gradient(310deg, #29D80D 0%, #29D7FF 50%);
}

img.step2 {
  width: 544px;
  height: 443px;
}

.fun_fact_content h1 {
  font-size: 60px;
}

.fun_fact_content .fact_item h1 {
  font-size: 70px;
  font-weight: 400;
}


.software_featured_item .s_icon {
  display: inline-block;
  position: relative;
}

.software_featured_item .s_icon .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-top: -22px;
}

.fact_author_img .box_three {
  width: 500px;
  height: 630px;
  opacity: 1;
  top: -496px;
}



@media (max-width:300px) {
  .s_service_item {
    padding: 30px 20px 40px;
  }
}


@media (min-width: 950px) and (max-width:1024px) {
  .s_service_item {
    padding: 20px 10px 20px;
  }
}


.sec_pad {
  padding: 120px 0px;
}

.blog_single .blog_content {
  padding-left: 0px;
  padding-right: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.blog_single .blockquote {
  color: #5e2ced;
  font-style: italic;
  border-left: 4px solid #5e2ced;
  padding-left: 35px;
}


.blog_content {
  background-color: white;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.06);
  box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.06);
  padding: 30px 47px 42px 50px;
  position: relative;
}


.blog_content p {
  font-weight: 300;
  font-size: 15px;
}


.blog_single .blog_content {
  padding-left: 0px;
  padding-right: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.mb_50 {
  margin-bottom: 50px;
}

h3.success-h3 {
  text-align:center;
  color:#000;
  padding-top: 20px;
}


.contact-message {
  text-align: right;
}

.contact-message p {
  font-size: 16px;
  font-weight: 300;
  color: #000;
  font-family: 'Noto Naskh Arabic';
}

