/**
* Template Name: BizLand
* Updated: May 30 2023 with Bootstrap v5.3.0
* Template URL: https://bootstrapmade.com/bizland-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  overflow-x: hidden;
}

a {
  color: #17bce3;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
}

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #17bce3;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #17bce3;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #49494A;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

#header.fixed-top {
  height: 70px;
 }

 #header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
} 
/* 
#header .logo a {
  color: #222222; 
}

#header .logo a span {
  color: #17bce3;
}*/

#header .logo img {
  max-height: 60px;
  width: 140px !important;
} 

/* .scrolled-offset {
  margin-top: 70px;
}   */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/

nav{
  /* position: fixed; */
  z-index: 99;
  width: 100%;
  background: #fff;
}
nav .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: rgb(34, 34, 34);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  background: #3A3B3C;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}
 
@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}

.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  color: rgb(34, 34, 34);
  position: relative;
  padding: 0px 3px;
  white-space: nowrap;
  transition: all 0.3s ease 0s;
}











/* .navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 16px;
  line-height: 0;
  margin-left: 6px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #BB186A;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #BB186A;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 150px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #BB186A;
  background-color: unset;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: unset !important;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 50px;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 0px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.dropdown-item.active,
.dropdown-item:active {
  color: unset;
  text-decoration: none;
  background-color: unset;
} */


@media (max-width: 1366px) {
  /* .navbar .dropdown .dropdown ul {
    left: -90%;
  } */
  /* 
  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  } */
}

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

.mobile-nav-toggle.bi-x {
  color: #fff;
}

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

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #17bce3;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #17bce3;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
} */

/*--------------------------------------------------------------
# home Section
--------------------------------------------------------------*/
/* #home {
  width: 100%;
  height: 480px;
  background-image: url('../img/home-banner.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0%;
  background: #222;
  position: relative;
} */

#home {
  position: relative;
  height: 490px;
  width: 100vw;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
  /* overflow-x: hidden; */

}

#home video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.banner-align {
  position: relative;
  top: 100px;
}

.banner-align .main-title {
  font-weight: 600;
  font-size: 50px;
  letter-spacing: -0.018em;
  color: #EAE149;
  margin-top: 10px;
  padding: 0;
}

.banner-align .main-content {
  font-weight: 600;
  font-size: 50px;
  letter-spacing: -0.018em;
  color: #fff;
  margin: 0;
  padding: 0;
}

.main-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  top: 170px;

}

.main-connect-btn {
  /* width: 350px;
  height: 60px; */
  background: #fff;
  font-size: 20px;
  font-weight: 700;
  color: #B61667;
  padding: 10px 50px;
  border-radius: 25px;
  border: 0;

}

.main-text {
  font-size: 32px;
  font-weight: 600;
  margin-left: 10px;
  color: #EAE149;
  position: relative;
  text-transform: uppercase;
}

.main-bottom a:hover {
  color: rgb(182, 22, 103);
  text-decoration: none;
}

.main-text-slider {
  color: #16BCE6;
  text-transform: uppercase;
  position: absolute;
  top: 1px;
  left: 190px;
  font-size: 32px;
  font-weight: 600;
}




/* #home:before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
} */

/* #home .container {
  position: relative;
} */

/* #home h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 56px;
  color: #222222;
  font-family: "Poppins", sans-serif;
}


#home h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
} */

#home .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #17bce3;
}

#home .btn-get-started:hover {
  background: #e1d94c;
}

#home .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}

#home .btn-watch-video i {
  color: #17bce3;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

#home .btn-watch-video:hover {
  color: #17bce3;
}

#home .btn-watch-video:hover i {
  color: #3b8af2;
}

.carousel-control-prev {
  left: -45px;
}

.carousel-control-next {
  right: -45px;
}

.dropdown-item:active {
  background-color: #17bce3;
}

.dropdown-item:focus {
  background-color: unset !important;

}

.carousel-item {
  position: relative;
}

.banner-content {
  position: absolute;
  top: 80px;
  left: 65px;
}

.banner-title {
  font-size: 18px;
  font-weight: 500;
  width: 450px;
  line-height: 28px;
  padding-top: 10px;
}

/* .hero {
  height: 100vh;
  position: relative;
  color: #fff;
}

.hero .hero-content {
  text-align: center;
  position: absolute;
}

.hero .overlay-itro {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0px;
  padding: 0;
  height: 100%;
  width: 100%;
  opacity: 0.9;
}

.hero .hero-title {
  color: #fff;
  font-weight: 600;
  font-size: 3rem;
} */



/* 
@media (min-width: 1024px) {
  #home {
    background-attachment: fixed;
  }
} */

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

  #home h1 {
    font-size: 28px;
    line-height: 36px;
  }

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

  #home .btn-get-started,
  #home .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-width: 578px) {
  .banner-content {
    position: unset;
    padding: 10px;
  }

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

  .main-content {
    font-size: 26px;
  }

  .main-bottom {
    top: 140px;
  }

  .main-text-slider {
    font-size: 26px;
    font-weight: 600;
  }

  .carousel-control-prev {
    left: 0;
  }

  .carousel-control-next {
    right: 0;
  }

  .banner-title {
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    line-height: 24px;
    padding-top: 0;
  }

  .mobile-banner {
    height: 480px;
  }

  .main-bottom {
    display: inline-block;
  }

  .main-text {
    margin-bottom: 20px;
  }

  /* .main-title{
    font-size: 26px;
  } */
  .main-connect-btn {
    display: inline-block;
    margin-top: 25px;
  }

  .client_section {
    padding-top: 0px;

  }

  .clients img {
    max-width: 50%;
  }



}





/*-------Technology---------*/
.technologies-start {
  padding: 70px 0 80px 0;
}

.tech-title {
  font-size: 32px;
  font-weight: 600;
  /* text-transform: uppercase; */
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.tech-logo img {
  /* width: 100%;
  height: auto; */
  margin: 30px 20px;
  width: 90px;
  height: 90px;
}

/* .tech-slider{
  width: 1000px;
  display: flex;
  grid-gap: 116px;
  justify-content: flex-start;
  animation-name: techname;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  float: left;
  white-space: nowrap;
  animation: scroll 10s linear infinite;
} */
/* body {
  overflow-x:hidden;//add overflow hidden on body to hide the horizontal scroll bar
} */
.tech-slider {
  /* display: flex;
  grid-gap: 116px;
  justify-content: flex-start; */
  display: flex;
  animation: scroll 40s linear infinite;
}

.tech-logo {
  /* width: 100%;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease; */
  margin-top: 25px;
  margin-left: 10px;
  margin-right: 10px;
}

/* .tech-logo:hover {
  filter: grayscale(0%);
  opacity: 3;
} */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-230px * 9));
  }
}

/*--------------clients------------*/
.client_section {
  padding-top: 15px;
  padding-bottom: 15px;
}

.client_section .clients h2 {
  font-size: 32px;
  font-weight: 600;
  /* text-transform: uppercase; */
  color: #000;
  margin-bottom: 25px;
}

/*--------expertise-------*/

.expertise_section {
  /* background-color: #eae149d4; */
  padding-top: 30px;
  padding-bottom: 15px;
}

.expertise-title h2 {
  font-size: 32px;
  font-weight: 600;
  /* text-transform: uppercase; */
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.details {
  text-align: center;
}

.details .expertise-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.details p {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-top: 10px;
}

.expertise-content {
  padding: 15px;
  width: 330px;
  background-color: #222;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.3);
  /* transform: translateX(400%); */
  transition: transform 0.4s ease;

}


.at-industries .at-industries-list .at-industries-des {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.at-industries .at-industries-list .at-industries-des .at-industries-overlay {
  position: absolute;
  left: 20px;
  z-index: 1;
  bottom: 20px;
}

.at-industries .at-industries-list .at-industries-des::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.at-head-60 {
  line-height: 1.24;
  font-size: 32px;
  color: #132948;
  font-weight: 700;
}

.at-common-des p {
  line-height: 1.6;
  color: #666766;
}

@media only screen and (max-width: 1440px) {
  .at-industries .at-industries-list .at-industries-des .at-industries-overlay {
    left: 10px;
    bottom: 10px;
  }
}

.at-industries .at-industries-list .at-industries-des .at-industries-overlay .at-icon {
  background: rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width: 1440px) {
  .at-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}

.at-icon {
  width: 72px;
  height: 72px;
  line-height: 72px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 15px;
  background: rgba(30, 104, 178, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.at-industries .at-industries-list .at-industries-des .at-industries-overlay .at-head-18 {
  color: #ffffff;
}

@media only screen and (max-width: 1660px) {
  .at-head-18 {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1440px) {
  .at-icon img {
    width: 40px !important;
    height: 40px !important;
  }
}

.at-head-18 {
  line-height: 1.2;
  font-size: 18px;
}

.at-industries-des:hover .at-industries-img img {
  transform: scale(1.2);
  cursor: pointer;
}

.at-industries-des img {
  transition: all ease 0.3s;
}



@media (max-width: 578px) {
  .grid-container {
    grid-template-columns: unset !important;
  }

  .expertise_section {
    padding-bottom: 0;
  }

}


/*------------achievements------------*/
.achievements {
  padding: 90px 0 120px 0;
  max-height: 680px;
}

.experience-title h2 {
  font-size: 32px;
  font-weight: 600;
  /* text-transform: uppercase; */
  color: #000;
}

.experience-content {
  line-height: 1.6;
  color: #666766;
}

.experience {
  padding-left: 60px;
}

.experience-box {
  margin-top: 25px;
}

.experience-box-list {
  padding: 30px 15px;
  text-align: center;
  border-radius: 10px;
  background: #77c4d81a;
  border: 1px solid #77c4d81a;
  margin-bottom: 25px;
}

.experience-box-list h3 {
  font-size: 32px;
  color: #332C39;
  font-weight: 700;
  margin-bottom: 10px;
}

.experience-box-list p {
  color: #16BCE6;
  line-height: 1.2;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

.achievements-app-img img {
  object-fit: cover;
  border-radius: 0 345px 345px 0;
}

.achieve-img {
  width: 530px;
  height: 380px;
  margin: auto;
}

.achievements-process {
  position: relative;
  top: 20px
}

.achievements-bottom-img img {
  width: 265px;
  height: 265px;
}

.achievements-bottom-img img {
  object-fit: cover;
  border-radius: 300px 0 300px 300px;
}

.achievements-bottom-img {
  position: absolute;
  left: -5px;
  bottom: -120px;
  filter: drop-shadow(15px 10px 10px rgba(0, 0, 0, 0.05));
}

@media (max-width: 576px) {
  .achieve-img {
    width: 360px;
    height: 300px
  }

  .achievements-bottom-img {
    bottom: -165px;
  }

  .experience {
    padding-left: 10px;
  }

  .achievements {
    padding: 20px 0;
    min-height: 1330px;
  }

  .software-cycle {
    padding: 20px 0;
  }
}



/*------softwarecycle---------*/
.software-cycle {
  padding: 60px 0;
  background-color: #77c4d81a;
}

.software-img img {
  width: 530px;
  height: auto;
}

.software-title h2 {
  font-size: 42px;
  font-weight: 700;
  /* text-transform: uppercase; */
  color: #000;
  /* text-align: center; */
}

@media (max-width: 576px) {
  .software-title h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .software-img img {
    width: 100%;
    height: auto;
  }
}




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

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

.section-title {
  padding-top: 10px;
  text-align: center;
  padding-bottom: 10px;
}

.section-title h2 {
  letter-spacing: 1px;
  font-weight: 600;
  padding: 8px 20px;
  margin: 0;
  color: #000;
  display: inline-block;
  /* text-transform: uppercase; */
  border-radius: 50px;
}

.section-title h3 {
  font-size: 32px;
  font-weight: 600;
  color: #000;
}

.section-title h2 span {
  color: #17bce3;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
  color: #000;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

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

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

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

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

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

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
  padding-top: 30px;
  padding-bottom: 30px;
}



.featured-services .icon-box {
  padding: 20px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #17bce3;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #17bce3;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: justify;
}

.featured-services .icon-box:hover .title a,
.featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

@media (max-width: 578px) {

  .featured-services {
    padding-top: 10px;
  }

  /* .section-title {
    padding-bottom: 20px;
  } */

  .section-title h2 {
    font-weight: 600;
    font-size: 26px;
  }
}

/*--------------------------------------------------------------
# products products
--------------------------------------------------------------*/
.featured-products {
  margin-top: 20px;
  padding-top: 35px;
  padding-bottom: 35px;
}

.featured-products .icon-box {
  padding: 20px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-products .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-products .icon-box:hover::before {
  background: #17bce3;
  top: 0;
  border-radius: 0px;
}

.featured-products .icon {
  margin-bottom: 15px;
  text-align: center;
}

.featured-products .icon img {
  width: 70px;
  transition: all 0.3s ease-in-out;
}

.featured-products .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-products .title a {
  color: #111;
}

.featured-products .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: justify;
}

.featured-products .icon-box:hover .title a,
.featured-products .icon-box:hover .description {
  color: #fff;
}

.featured-products .icon-box:hover .icon i {
  color: #fff;
}

.product-btn {
  text-align: center;
  padding: 10px;
}

.product-btn button {
  padding: 8px 10px;
  border: none;
  margin-top: 20px;
  border-radius: 5px;
  font-size: 14px;
}

.product-btn button a {
  color: #000;
}

.product-btn button :hover {
  color: #17bce3;
  font-weight: 600;

}

/*-----partners-------*/
.partners {
  padding-top: 5px;
  padding-bottom: 15px;
}

/* .circle {
  width: 230px; 
 height: 145px;
  animation: CircularScroll 30s linear infinite;
} */

/* .slide-track-1 {
  width: 100%;
  display: flex;
  gap: 5em;
  overflow: hidden;
  top: 100px;
} */

/* 
@keyframes CircularScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-230px * 5));
  } */
/* } */
@media (max-width: 578px) {
  .circle {
    height: 165px;
    animation: CircularScroll 20s linear infinite;
  }

  @keyframes CircularScroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-200px * 3));
    }
  }

  .section-title {
    padding-top: 0;
    padding-bottom: 10px;
  }

  .partners {
    padding-bottom: 0;
  }

  .about {
    padding: 0 !important;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 15px 0;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .content ul li:first-child {
  margin-top: 35px;
}

.about .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #17bce3;
  border-radius: 50px;
}

.about .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about-content ul li {
  position: relative;
  padding-left: 25px;
  list-style-type: none;
}

.about-content ul li::after,
.about-content ul li::before {
  position: absolute;
  top: 6px;
  left: 0;
  content: "";
  border-radius: 50%;
  background: #C61E71;
}

.about-content ul li::before {
  top: 10px;
  left: 4px;
  width: 8px;
  height: 8px;
}

.about-content ul li::after {
  width: 16px;
  height: 16px;
  opacity: 0.25;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #222222;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e2eefd;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #17bce3;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f1f6fe;
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #17bce3;
  color: #fff;
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #062b5b;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

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

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

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover .icon i {
  color: #17bce3;
}

.services .icon-box:hover .icon {
  border-color: #17bce3;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #17bce3;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #17bce3;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #222222;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #3c3c3c;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #17bce3;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #6ba7f5;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #17bce3;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #17bce3;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #3b8af2;
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing .box h4 {
  font-size: 36px;
  color: #17bce3;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #17bce3;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #17bce3;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #3b8af2;
}

.pricing .featured h3 {
  color: #fff;
  background: #17bce3;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #17bce3;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #d4e5fc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #17bce3;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #0d58ba;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #17bce3;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  padding: 5px 0 5px 10px;
  display: flex;
  align-items: center;
}

.info-box-align {
  padding-left: 10px;
}

.contact .info-box i {
  font-size: 32px;
  color: #17bce3;
  border-radius: 50%;
  padding: 8px;
  width: 50px;
  border: 2px dotted #b3d1fa;
  height: 50px;
}

.send-text {
  text-align: center;
}

.send-text .send-btn {
  background-color: #17bce3;
  border-radius: 25px;
  border: 0;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}

.contact .info-box span {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 20px #ddd;
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #17bce3;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #17bce3;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #3b8af2;
}

.error-txt {
  display: none;
  color: #d93025;
}

.error .form-control {
  border-color: #d93025;
}

.error .error-txt {
  display: block;
}

.error .inputdata {
  border-color: #d93025;
}




@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 578px) {
  .contact {
    padding: 0 0 30px 0;
  }

}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0 0 30px 0;
  color: #444444;
  font-size: 14px;
  background: #77c4d81a;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #17bce3;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #0d58ba;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #17bce3;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #17bce3;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #17bce3;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #17bce3;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}

.iso-logo {
  margin-top: 20px;
}

.iso-logo img {
  margin: 0 15px;
}

.partnerus h2 {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
  color: #222;

}

.partner-submit {
  text-align: center;
  margin-top: 20px;
}

.btn-submit {
  padding: 5px 20px;
  color: #fff;
  background: #16BCE6;
  font-size: 16px;
  border: 0;
  border-radius: 20px;
  font-weight: 600;
}

.form-control:focus {
  border-color: unset;
  box-shadow: unset;
}

.social-media {
  text-align: center;
}

.social-icon {
  margin-top: 20px;
}

.social-icon a {

  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 48px;
  display: inline-block;
  background: #fff;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin: 0 3px;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}

/** social media sticky **/
.sticky-icon {
  z-index: 1;
  position: fixed;
  top: 35%;
  right: 0%;
  width: 150px;
  display: flex;
  flex-direction: column;
}

.sticky-icon a {
  transform: translate(160px, 0px);
  border-radius: 50px 0px 0px 50px;
  text-align: left;
  margin: 2px;
  text-decoration: none;
  padding: 5px;
  font-size: 18px;
  font-family: 'Oswald', sans-serif;
  transition: all 0.8s;
}

.sticky-icon a:hover {
  color: #FFF;
  transform: translate(0px, 0px);
}

.sticky-icon a:hover i {
  transform: rotate(360deg);
}

/*.search_icon a:hover i  {
	transform:rotate(360deg);}*/
.Facebook {
  background-color: #2C80D3;
  color: #FFF;
}

.Youtube {
  background-color: #fa0910;
  color: #FFF;
}

.Twitter {
  background-color: #53c5ff;
  color: #FFF;
}

.Instagram {
  background-color: #FD1D1D;
  color: #FFF;
}

.Google {
  background-color: #d34836;
  color: #FFF;
}

.LinkedIn {
  background-color: #0A66C2;
  color: #FFF;
}

.sticky-icon a i {
  background-color: #FFF;
  height: 40px;
  width: 40px;
  color: #000;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.5s;
}

.sticky-icon a i.fa-facebook-f {
  background-color: #FFF;
  color: #2C80D3;
}

.sticky-icon a i.fa-google-plus-g {
  background-color: #FFF;
  color: #d34836;
}

.sticky-icon a i.fa-instagram {
  background-color: #FFF;
  color: #FD1D1D;
}

.sticky-icon a i.fa-youtube {
  background-color: #FFF;
  color: #fa0910;
}

.sticky-icon a i.fa-twitter {
  background-color: #FFF;
  color: #53c5ff;
}

.sticky-icon a i.fa-linkedin {
  background-color: #FFF;
  color: #0A66C2;
}

.fas fa-shopping-cart {
  background-color: #FFF;
}

#myBtn {
  height: 50px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  text-align: center;
  padding: 10px;
  text-align: center;
  line-height: 40px;
  border: none;
  outline: none;
  background-color: #1e88e5;
  color: white;
  cursor: pointer;
  border-radius: 50%;
}

.fa-arrow-circle-up {
  font-size: 30px;
}

#myBtn:hover {
  background-color: #555;
}

/*-----------Training---------*/

.courses {
  padding-top: 30px;
}

.training {
  background-image: url('../img/courses/training-placement.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
  height: 490px;
}

.training-about {
  margin-top: 60px;
}

.training-title {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.training-placement {
  color: #fff;
  list-style: none;
}

.training-placement li {
  margin: 20px 0;
  font-size: 18px;
  font-weight: 500;
}

/* .courses-title {
  border-bottom: 2px solid #17bce3a8;
} */
.courses-title h3 {
  font-size: 32px;
  font-weight: 600;
}

.star-logo {
  color: #FDCC0D;
}

.training-modes h5 {
  font-size: 16px;
  color: #000;

}

.modes-online {
  font-size: 12px;
  color: #000;
}

.courses-nav {
  padding-top: 20px;
}

.btn-list {
  border: 0;
  background: unset;
  padding-bottom: 20px;
  margin: 0 10px;
  font-size: 16px;
}

.courses-list {
  display: none;
  margin: 45px 0;
}

.courses-list.active {
  display: block;
  /* padding: 40px; */
}

.courses-btn {
  position: relative;
}

.courses-btn::after {
  content: "";
  position: absolute;
  top: 46px;
  left: 27px;
  width: 95%;
  height: 1px;
  background-color: #80808038
}

.line {
  position: absolute;
  left: 22px;
  top: 44px;
  width: 110px;
  height: 3px;
  background-color: #A9326E;
  transition: all .3s ease-in-out;
}

.courses-card-img img {
  width: 100%;
  height: 160px;
}

.courses-card {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 5px 15px rgb(0 0 0 / 8%);
  padding: 10px;
  margin-bottom: 50px;
  min-height: 360px;
}

.ca-space {
  padding-left: 25px;
}

.star-icon {
  margin: 10px 0;
}

.star-icon i {
  color: #FDCC0D;
  font-size: 12px;
  padding: 0 2px;
}

.rating {
  margin-left: 25px;
  font-size: 14px;
  color: #697889;
}

.courses-training-title {
  margin: 25px 0;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.courses-level span {
  padding-left: 6px;
  color: #000;
  font-size: 14px;
}

.courses-level i {
  font-size: 14px;
  color: #000;
}

.btn-enroll {
  border: 1px solid #17B4DB;
  float: right;
  background: #17B4DB;
  border-radius: 20px;
  font-size: 16px;
  padding: 5px 15px;
  color: #fff;
  font-weight: 600;

}

.courses-level {
  margin: 30px 0;
  display: flex;
  align-items: center;
  color: #808080;
}

.btn-right {
  position: relative;
  left: 40%;
}

.mobile-training {
  background-image: url(../img/background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
  height: 430px;
}

.mobile-training-title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 0;
}

.mobile-training-placement {
  color: #fff;
  list-style: none;
  padding-left: 20px;
}

.mobile-training-placement li {
  margin: 20px 0;
  font-size: 16px;
  font-weight: 500;
}

.accordion {
  margin: 20px 0;
}

.accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: unset;
}



@media (max-width: 576px) {
  .btn-right {
    position: relative;
    left: 30%;
  }

  .accordion-button:focus {
    z-index: 3;
    border-color: var(--bs-accordion-btn-focus-border-color);
    outline: 0;
    box-shadow: unset;
  }
}







/*-----ios----*/

.mobile-banner {
  /* background: linear-gradient(#000, #737373); */
  background-image: url(../img/mobile-ios.png);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.mobile-content h2 {
  position: absolute;
  top: 125px;
  left: 8%;
  font-size: 60px;
  width: 500px;
  font-weight: 600;
  color: #fff;
}

.mobile-text {
  margin-top: 20px;
}

.mobile-brief h2 {
  font-size: 32px;
  font-weight: 600;
}

.mobile-brief p {
  font-size: 18px;
  font-weight: 500;
  margin-top: 0;
  color: #000;
}

.mobile-list {
  margin-bottom: 15px;
}

.mobile-list-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-list-show h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 50px;
  margin: 15px 0;
}

.mobile-icon {
  display: flex;
  align-items: center;
}


.domain-nav {
  padding-top: 20px;
}

.btnDomain {
  border: 0;
  background: unset;
  padding-bottom: 20px;
  margin: 0 10px;
}

.domain-list {
  display: none;
}

/* .domain-list.active{
  display: block;
  padding: 40px;
} */

.domain-main {
  position: relative;
}

.domain-main::after {
  content: "";
  position: absolute;
  top: 46px;
  left: 27px;
  width: 95%;
  height: 1px;
  background-color: #80808038
}

.line {
  position: absolute;
  left: 22px;
  top: 44px;
  width: 110px;
  height: 3px;
  background-color: #A9326E;
  transition: all .3s ease-in-out;
}

.ios-solutions {
  padding: 20px 0;
}

.ios-solutions .mobile-solutions-list .mobile-solution-des {
  display: flex;
}


.ios-solutions .mobile-solutions-list .mobile-solution-des {
  padding: 24px 15px;
  margin-bottom: 30px;
  background: #ffffff;
  /* box-shadow: 0px 0px 10px rgba(30, 104, 178, 0.1); */
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.ios-solutions .mobile-solutions-list .mobile-solution-des .mobile-solution-no h2,
.ios-solutions .mobile-solutions-list .mobile-solution-des .mobile-solution-no .h2 {
  position: relative;
  line-height: 25px;
  color: #cb3780;
  font-size: 20px;
  padding-right: 35px;
  font-weight: 800;
}

.ios-solutions .mobile-solutions-list .mobile-solution-des .mobile-solution-no h2::after,
.ios-solutions .mobile-solutions-list .mobile-solution-des .mobile-solution-no .h2::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 25px;
  height: 1px;
  margin: auto;
  background: #cb3780;
}

.ios-solutions .mobile-solutions-list .mobile-solution-head {
  padding-left: 10px;
}

.ios-solutions .mobile-solutions-list .mobile-solution-head h3,
.ios-solutions .mobile-solutions-list .at-solution-head .h3 {
  color: #16bce6;
  line-height: 1.2;
  font-size: 20px;
  font-weight: 600;
}

.ios-solutions .mobile-solutions-list .mobile-solution-head h3 a,
.ios-solutions .mobile-solutions-list .at-solution-head .h3 a {
  display: block;
  color: #16bce6;
}

.ios-solutions .mobile-solutions-list .mobile-solution-head p {
  color: #666766;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
}


/*------Android-----*/

.mobile-android-banner {
  background-image: url(../img/android.png);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

/* .android-list {
  position: relative;
}

.items-grid__item {
  padding: 15px 15px 0 15px;
  margin: 0;
}

.android-choose-start {
  margin: 5px 0;
}

.android-choose-start h2 {
  font-weight: 600;
}

.choose-content p {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.choose-highlight {
  font-size: 18px;
  font-weight: 600
}

.android-build {
  margin: 15px 0;
}

.android-build h2 {
  font-weight: 600;
}

.android-content {
  font-size: 16px;
  color: #000;
} */
.mobile-solutions {
  padding: 20px 0;
}

.mobile-solutions .mobile-solutions-list .mobile-solution-des {
  display: flex;
}


.mobile-solutions .mobile-solutions-list .mobile-solution-des {
  padding: 24px 15px;
  margin-bottom: 30px;
  background: #ffffff;
  /* box-shadow: 0px 0px 10px rgba(30, 104, 178, 0.1); */
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.mobile-solutions .mobile-solutions-list .mobile-solution-des .mobile-solution-no h2,
.mobile-solutions .mobile-solutions-list .mobile-solution-des .mobile-solution-no .h2 {
  position: relative;
  line-height: 25px;
  color: #cb3780;
  font-size: 20px;
  padding-right: 35px;
  font-weight: 800;
}

.mobile-solutions .mobile-solutions-list .mobile-solution-des .mobile-solution-no h2::after,
.mobile-solutions .mobile-solutions-list .mobile-solution-des .mobile-solution-no .h2::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 25px;
  height: 1px;
  margin: auto;
  background: #cb3780;
}

.mobile-solutions .mobile-solutions-list .mobile-solution-head {
  padding-left: 10px;
}

.mobile-solutions .mobile-solutions-list .mobile-solution-head h3,
.mobile-solutions .mobile-solutions-list .at-solution-head .h3 {
  color: #16bce6;
  line-height: 1.2;
  font-size: 20px;
  font-weight: 600;
}

.mobile-solutions .mobile-solutions-list .mobile-solution-head h3 a,
.mobile-solutions .mobile-solutions-list .at-solution-head .h3 a {
  display: block;
  color: #16bce6;
}

.mobile-solutions .mobile-solutions-list .mobile-solution-head p {
  color: #666766;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
}

/*.items-grid__item:before {
  bottom: 0;
  width: calc(100% - 28px);
  height: 1px;
}
.items-grid__item:after {
  right: 0;
  width: 1px;
  height: calc(100% - 28px);
}
.items-grid__item:before {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  background-color: #ffdb3b;
}
.items-grid__item:after, .items-grid__item:before {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  background-color: #ffdb3b;
}*/
.items-grid__title {
  font-size: 20px;
  font-weight: 600;
  min-height: 60px;
}

.items-grid__title p {
  color: #000;
}


/*------web application-----*/

.mobile-web-banner {
  background-image: url(../img/web-development.png);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.web-start {
  margin-top: 20px;
  margin-bottom: 30px;
}

.web-card-img img {
  width: 100%;
  height: 160px;
}

.web-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}

.web-card {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 5px 15px rgb(0 0 0 / 8%);
  padding: 10px;
  margin-bottom: 30px;
  min-height: 555px;
}

.web-card p {
  font-size: 16px;
}

/*-------cross-platform------*/

.cross-platform-banner {
  background-image: url(../img/cross-platform.png);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.cross-platform-banner .mobile-content h2 {
  position: absolute;
  top: 80px;
}

.cross-platform-content {
  margin-top: 20px;
  margin-bottom: 20px;
}

.cross-title {
  font-size: 22px;
  font-weight: 600;
}

.cross-platform p {
  padding-left: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/*-------saas-----*/

.saas-banner {
  background-image: url(../img/saas-development.png);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.approach-content {
  margin-bottom: 20px;
}

.approach-start h2 {
  font-size: 20px;
  font-weight: 600;
}

.approach-start p {
  font-size: 16px;
  font-weight: 500;
}

.approach-design h2 {
  font-size: 20px;
  font-weight: 600;
}

.approach-design p {
  font-size: 16px;
  font-weight: 500;
}

/*-------backend-------*/

.backend-banner {
  background-image: url(../img/backend.png);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.backend-start {
  margin-top: 20px;
  margin-bottom: 30px;
}

.backend-card-img img {
  width: 100%;
  height: 160px;
}

.backend-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 5px;
}

.backend-card {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 5px 15px rgb(0 0 0 / 8%);
  padding: 10px;
  margin-bottom: 10px;
  min-height: 400px;

}



/*------cloud-------*/

.cloud-banner {
  background-image: url(../img/cloud-devops.png);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}


.cloud-list {
  margin-bottom: 20px;
}

.cloud-list-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cloud-list-show h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 50px;
  margin: 15px 0;
}

.cloud-icon {
  display: flex;
  align-items: center;
}


/*------Testing------*/
.testing-banner {
  background-image: url(../img/testing.png);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

/* .testing-list {
  margin-top: 25px;
  margin-bottom: 25px;
} */

.testing-list-content {
  display: flex;
  justify-content: center;
}

.testing-list-show {
  text-align: center;
}

.testing-icon {
  padding: 20px;
}

.testing-icon h4 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
}


/*------IOT-----*/
.iot-banner {
  background-image: url(../img/iot.png);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.iot-start {
  margin-bottom: 30px;
}

.iot-card-img img {
  width: 100%;
  height: 160px;
}

.iot-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
}

.iot-card p {
  font-size: 16px;
  font-weight: 500;
}

.iot-card {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 5px 15px rgb(0 0 0 / 8%);
  padding: 10px;
  margin-bottom: 10px;
  min-height: 440px;
}

/*------uiux------*/

.uiux-banner {
  background-image: url(../img/ui-ux.png);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.uiux-card h3 {
  font-size: 20px;
  font-weight: 600;
}

.uiux-banner p {
  font-size: 16px;
  font-weight: 500;
}


/*-----mobile app------*/
.mobile-main-banner {
  background-image: url(../img/mobile-application.png);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.mobile-main-start {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-card-img img {
  width: 100%;
  height: 160px;
}

.mobile-main-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 20px;
}

.mobile-main-card {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 5px 15px rgb(0 0 0 / 8%);
  padding: 10px;
  margin-bottom: 20px;
  min-height: 390px;
}

.mobile-app-heading h2 {
  font-size: 32px;
  font-weight: 600;
  color: #000;
}

.mobile-app-content ul li {
  position: relative;
  padding-left: 25px;
  list-style-type: none;
}

.mobile-app-content p {
  line-height: 1.6;
  color: #222;
}

.mobile-app-content p strong {
  color: #000;
  font-weight: 600;
}

.mobile-app-content ul li::after,
.mobile-app-content ul li::before {
  position: absolute;
  top: 6px;
  left: 0;
  content: "";
  border-radius: 50%;
  background: #C61E71
}

.mobile-app-content ul li::after {
  width: 16px;
  height: 16px;
  opacity: 0.25;
}

.mobile-app-content ul li::before {
  top: 10px;
  left: 4px;
  width: 8px;
  height: 8px;
}

.mobile-app-content {
  padding: 20px 0;
}

.mobile-app-img img {
  object-fit: cover;
  border-radius: 0 345px 345px 0;
}

.mobile-img {
  width: 530px;
  height: 380px;
  margin: auto;
}

.mobile-process {
  position: relative;
  top: -30px
}

.mobile-bottom-img img {
  width: 265px;
  height: 265px;
}

.mobile-bottom-img img {
  object-fit: cover;
  border-radius: 300px 0 300px 300px;
}

.mobile-bottom-img {
  position: absolute;
  left: 0;
  bottom: -120px;
  filter: drop-shadow(15px 10px 10px rgba(0, 0, 0, 0.05));
}

@media (max-width: 576px) {
  .mobile-img {
    width: 360px;
    height: 300px
  }

  .mobile-bottom-img {
    bottom: -165px;
  }

  .mobile-process {
    margin: 0 0 135px 0;
  }

  .mobile-app-content {
    padding: 0 0 20px 0;
  }
}

















/* .mobile-app {
  margin-top: 20px;
  background-image: url('../img/background.png');
  background-repeat: no-repeat;
  background-size: cover;
  height: 495px;
}

.mobile-app-heading {
  display: flex;
  align-items: center;
}

.mobile-app-heading h2 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
}

.mobile-app-list {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.mobile-left {
  margin: 20px 0;

}

.mobile-app-list {
  list-style: none;
}

.line-alignment {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.list-group-item span {
  font-size: 20px;
  font-weight: 600;
}

.list-group-item {
  font-size: 16px;
} */

@media (max-width: 576px) {
  .mobile-content h2 {
    font-size: 50px;
    width: 0;
  }

  .mobile-brief p {
    padding-top: 10px;
  }

  .mobile-main-card p {
    font-size: 18px;
  }
}

/* .mobile-left::before{
  content: url('../img/icons8-tick.gif');
  position: absolute;
  top:0;
  left:0;
} */

/*------Android-----*/

.support-banner {
  background-image: url(../img/support-maintenance.png);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 576px) {
  .mobile-list-content {
    display: flex;
    justify-content: left;
    align-items: center;
  }

  .mobile-brief p {
    padding-top: 0;
  }

  .mobile-list {
    margin-bottom: 0;
  }

  .mobile-solutions .mobile-solutions-list .mobile-solution-des {
    margin-bottom: 20px;
  }
}



/*----------Business-Analytics---------*/

.business_analytics-banner {
  background-image: url(../img/business-app.png);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}










/* ----- about us ----- */

.about-banner {
  background-image: url(../img/about-us.jpg);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-banner::before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about-banner-content h2 {
  position: absolute;
  top: 175px;
  left: 8%;
  font-size: 60px;
  width: 500px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}


.about-intro {
  padding: 60px 0;
  /* background-color: #222; */
}

.about-content ul {
  color: #222;
}

.about-title {
  margin-bottom: 10px;
  color: #000;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}

.why-choose {
  padding: 40px 0;
  background-color: #f1f6fe;
}

.choose-content h2 {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}

.choose-content h5 {
  font-size: 20px;
  font-weight: 600;
}

.choose-service-img img {
  width: 100%;
  height: 400px;
}


/* .choose-content p {
  line-height: 30px;
} */

.principles {
  padding: 10px 0;
}

.principles-content h5 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

/* ----- career ------ */

.careers-banner {
  background-image: url(../img/career-banner.jpg);
  height: 490px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.careers-banner::before {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.careers-banner-content h2 {
  position: absolute;
  top: 175px;
  left: 8%;
  font-size: 60px;
  width: 500px;
  font-weight: 600;
  color: #fff;
}


.careers-intro {
  padding: 10px 0;
}

.careers-content h2 {
  font-weight: 600;
  margin-bottom: 10px;
}

.careers-content h5 {
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 0;
}

.careers-content p {
  line-height: 30px;
  /* text-indent: 50px; */
}

.opportunities {
  padding: 10px 0 20px 0;
}

.opportunities h5 {
  font-weight: 600;
  margin-bottom: 20px;
}

/* job cards */


.job-cards a {
  display: block;
  padding: 10px 20px;
  color: #000;
  transition: all 0.3s ease;
}

.job-cards a:hover {
  background-color: #f1f6fe;
}


/* job cards */

.careers-benefits {
  background-color: #f1f6fe;
  padding: 10px 0;
}

.benefits-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.benefits-content h6 {
  font-weight: 600;
  margin-bottom: 15px;
}

.careers-enquiry {
  padding: 10px 10px;
  text-align: center;
}

.enquiry-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* .enquiry-content p {
  line-height: 30px;
} */


/* ------ products ------ */


/* ------ DriveZ ------ */

.drivez-banner {
  background-image: url(../img/DriveZ/drivez-banner.jpg);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.drivez-banner::before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.drivez-banner-content h2 {
  position: absolute;
  top: 175px;
  left: 8%;
  font-size: 60px;
  width: 500px;
  font-weight: 600;
  color: #fff;
}

.drivez-intro {
  padding: 20px 0;
}

.drivez-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 30px;
  font-size: 32px;
}

.drivez-content h6 {
  line-height: 30px;
  font-size: 18px;
  font-weight: 600;
}

.drivez-content p {
  line-height: 30px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}



/* LiveEZ */

.liveez-banner {
  background-image: url(../img/LiveEZ/livez-banner.jpg);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.liveez-banner::before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.liveez-banner-content h2 {
  position: absolute;
  top: 175px;
  left: 8%;
  font-size: 60px;
  width: 500px;
  font-weight: 600;
  color: #fff;
}

.liveez-intro {
  padding: 20px 0;
}

.liveez-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 30px;
  font-size: 32px;

}

.liveez-content h6 {
  line-height: 30px;
  font-size: 18px;
  font-weight: 600;
}

.liveez-content p {
  line-height: 30px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}


/* LiveEZ */

.gemez-banner {
  background-image: url(../img/GemEZ/gemez-banner.jpg);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.gemez-banner::before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.gemez-banner-content h2 {
  position: absolute;
  top: 175px;
  left: 8%;
  font-size: 60px;
  width: 500px;
  font-weight: 600;
  color: #fff;
}

.gemez-intro {
  padding: 20px 0;
}

.gemez-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 30px;
  font-size: 32px;
}

.gemez-content h6 {
  line-height: 30px;
  font-size: 18px;
  font-weight: 600;
}

.gemez-content p {
  line-height: 30px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}



/* ----- Menu EZ ------ */

.menuez-banner {
  background-image: url(../img/MenuEZ/menuez-banner.jpg);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.menuez-banner::before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.menuez-banner-content h2 {
  position: absolute;
  top: 175px;
  left: 8%;
  font-size: 60px;
  width: 500px;
  font-weight: 600;
  color: #fff;
}

.menuez-intro {
  padding: 20px 0;
}

.menuez-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 30px;
  font-size: 32px;
}

.menuez-content h6 {
  line-height: 30px;
  font-size: 18px;
  font-weight: 600;
}

.menuez-content p {
  line-height: 30px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}


/* ----- Medi EZ ------ */

.mediez-banner {
  background-image: url(../img/MediEZ/mediez-banner.jpg);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.mediez-banner::before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.mediez-banner-content h2 {
  position: absolute;
  top: 175px;
  left: 8%;
  font-size: 60px;
  width: 500px;
  font-weight: 600;
  color: #fff;
}

.mediez-intro {
  padding: 20px 0;
}

.mediez-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 30px;
  font-size: 32px;
}

.mediez-content h6 {
  line-height: 30px;
  font-size: 18px;
  font-weight: 600;
}

.mediez-content p {
  line-height: 30px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}


/* ----- Fit EZ ------ */

.fitez-banner {
  background-image: url(../img/FitEZ/fitez-banner.jpg);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.fitez-banner::before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.fitez-banner-content h2 {
  position: absolute;
  top: 175px;
  left: 8%;
  font-size: 60px;
  width: 500px;
  font-weight: 600;
  color: #fff;
}

.fitez-intro {
  padding: 20px 0;
}

.fitez-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 30px;
  font-size: 32px;
}

.fitez-content h6 {
  line-height: 30px;
  font-size: 18px;
  font-weight: 600;
}

.fitez-content p {
  line-height: 30px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}


/* ----- Doc EZ ------ */

.docez-banner {
  background-image: url(../img/DocEZ/docez-banner.jpg);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.docez-banner::before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.docez-banner-content h2 {
  position: absolute;
  top: 175px;
  left: 8%;
  font-size: 60px;
  width: 500px;
  font-weight: 600;
  color: #fff;
}

.docez-intro {
  padding: 20px 0;
}

.docez-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 30px;
  font-size: 32px;
}

.docez-content h6 {
  line-height: 30px;
  font-size: 18px;
  font-weight: 600;
}

.docez-content p {
  line-height: 30px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

/* ----- Verify EZ ------ */

.verifyez-banner {
  background-image: url(../img/VerifyEZ/verifyez-banner.jpg);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.verifyez-banner::before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.verifyez-banner-content h2 {
  position: absolute;
  top: 175px;
  left: 8%;
  font-size: 60px;
  width: 500px;
  font-weight: 600;
  color: #fff;
}

.verifyez-intro {
  padding: 20px 0;
}

.verifyez-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 30px;
  font-size: 32px;
}

.verifyez-content h6 {
  line-height: 30px;
  font-size: 18px;
  font-weight: 600;

}

.verifyez-content p {
  line-height: 30px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

/* ----- Queue EZ ------ */

.queueez-banner {
  background-image: url(../img/QueueEZ/queueez-banner.jpg);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.queueez-banner::before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.queueez-banner-content h2 {
  position: absolute;
  top: 175px;
  left: 8%;
  font-size: 60px;
  width: 500px;
  font-weight: 600;
  color: #fff;
}

.queueez-intro {
  padding: 20px 0;
}

.queueez-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 30px;
  font-size: 32px;
}

.queueez-content h6 {
  line-height: 30px;
  font-size: 18px;
  font-weight: 600;
}

.queueez-content p {
  line-height: 30px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

/* ----- Read EZ ------ */

.readez-banner {
  background-image: url(../img/ReadEZ/readez-banner.jpg);
  height: 490px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.readez-banner::before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.readez-banner-content h2 {
  position: absolute;
  top: 175px;
  left: 8%;
  font-size: 60px;
  width: 500px;
  font-weight: 600;
  color: #fff;
}

.readez-intro {
  padding: 20px 0;
}

.readez-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 30px;
  font-size: 32px;
}

.readez-content h6 {
  line-height: 30px;
  font-size: 18px;
  font-weight: 600;
}

.readez-content p {
  line-height: 30px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

/* 
.services-shadow{
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #eee;
} */
.services-box {
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #eee;
}

.services-card a {
  text-decoration: none;
  background-color: transparent;
}

.services-card {
  /* text-align: center; */
  margin-top: 30px;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #eee;

}

/* .services-box h5{
  margin-top: 15px;
} */
/* .services-box :hover{
  transform: translateY(-10px);
} */
/* .services-shadow{
  padding: 20px;
}
.services-shadow h5{
  margin-top: 15px;
}
 .col-right {
  border-left: 1px solid #eee;
  border-top: 1px solid #eee;
 }
 .services-shadow:hover{
  transform: translateY(-10px);
 } */

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 10px;
}

.grid-item {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #eeeeee94;
  text-align: center;
  width: 100%;
}

.services-shadow {
  padding: 20px;
}

.services-shadow h5 {
  margin-top: 10px;
  color: #222;
  font-size: 18px;
  font-weight: 600
}

.services-shadow:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}