@import url('https://fonts.googleapis.com/css2?family=Alata&family=Catamaran:wght@300;400;500;600;700;800&family=Nunito:wght@300;400;600;700;800&family=Oswald:wght@300;400;500;600&family=Saira+Condensed:wght@400;500;600;700;800&family=Signika:wght@500;600;700&display=swap');

body {
	background-color: #f3f3f3;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
p {
	margin-bottom: 0px;
	font-size: 16px;
	color: #666666;
	line-height: 30px;
}
a {
	text-decoration: none!important;
}
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

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

a.filled-button {
	background-color: #5cbef3;
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
}

a.filled-button:hover {
	background-color: #fff;
	color: #5cbef3;
	border: 1px solid #5cbef3;
}

a.border-button {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 10px 28px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
}

a.border-button:hover {
	background-color: #fff;
	color: #5cbef3;
}

.section-heading {
	text-align: center;
	margin-bottom: 40px;
}

.section-heading h2 {
	font-size: 33px;
	font-weight: 600;
	text-transform: uppercase;
	color: #727272;
	/* font-family: 'Signika', sans-serif; */
	font-family: 'Poppins', sans-serif;

}

.section-heading em {
	font-style: normal;
	color: #5cbef3;
}
.section-heading .span-heading{
	display: unset;
	font-size: 36px;
	font-weight: 600;
	color: #5cbef3;
	/* font-family: 'Signika', sans-serif; */
	font-family: 'Poppins', sans-serif;
}
 .span-heading{
	display: unset;
	font-size: 36px;
	font-weight: 600;
	color: #5cbef3;
	/* font-family: 'Signika', sans-serif; */
	font-family: 'Poppins', sans-serif;
}
.section-heading span {
	font-family: 'Alata', sans-serif;
	display: block;
	margin-top: 15px;
	font-size: 15px;
	color: #666;
	letter-spacing: 1px;
}

#preloader {
  overflow: hidden;
  background: #5cbef3;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 9999999;
  color: #fff;
}

#preloader .jumper {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
}

#preloader .jumper > div {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 50px;
  height: 50px;
  -webkit-animation: jumper 1s 0s linear infinite;
  animation: jumper 1s 0s linear infinite;
}

#preloader .jumper > div:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
  animation-delay: 0.33333s;
}

#preloader .jumper > div:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
  animation-delay: 0.66666s;
}

@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #5cbef3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #5cbef37e;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #ffffff;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
}
#header.header-scrolled {
	background: #ffffff;
  padding: 15px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
/* #header.header-scrolled .navbar .nav-link{
	color: #000000;
} */
#header .logo {
	display: flex;
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  align-items: center;
}

#header .logo img {
  max-height: 80px;
  border-radius: 50%;
}

@media (max-width: 992px){
	#header {
		padding: 10px 0;
		transition: 0.5s;
	  }
	#header.header-scrolled {
		padding: 15px 0;
	  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
#navbar .logo{
	display: none;
}
 .navbar-brand h2 {
	color: #5cbef3;
	text-transform: uppercase;
	font-size: 30px;
	font-weight: 700;
	-webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}
.navbar-brand h2 em {
	font-style: normal;
	font-size: 16px;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  text-align: center;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar ul li {
	
	position: relative;
	/* margin: 0px 15px; */
	text-align: center;

}
.navbar ul li a{
	text-transform: uppercase;
}
.navbar .nav-link {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.5px;
	color: #000000;
	transition: all 0.5s;
	margin-top: 5px;
}
.navbar .active{
	color: #5cbef3;
}
.navbar .nav-link:hover,
.navbar .active>.nav-link,
.navbar .nav-link.current,
.navbar .nav-link.show,
.navbar  .show>.nav-link {
	color: #5cbef3;
	border-bottom: 3px solid #5cbef3;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  color: #000000;
  text-transform: uppercase;
}
.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: #5bb0ff;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #5cbef3;
  font-size: 34px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: rgb(0, 0, 0);
}

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

  .navbar ul {
    display: none;
  }
  .navbar .nav-link:hover,
.navbar .active>.nav-link,
.navbar .nav-link.current,
.navbar .nav-link.show,
.navbar  .show>.nav-link {
	color: #5cbef3;
	border-bottom: none;
}
#navbar .logo{
	display: flex;
	align-items: center;
}
#navbar .logo .navbar-brand{
	padding: 0px;
}
.navbar ul li{
	margin: 15px 5px;
}

}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 12, 21, 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: 0px;
  right: 0px;
  /* bottom: 15px; */
  left: 0px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  height: 100%;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0b2341;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #5cbef3;
}
.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: #5cbef3;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  position: relative;
}
#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
#hero .carousel-item::before {
  content: "";
  background-color: rgba(4, 12, 21, 0.5);
}
#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 82px;
  left: 30px;
  right: 30px;
}

#hero .text-content {
	text-align: left;
  	width: 85%;
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
}

#hero h6 {
  margin-bottom: 15px;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color:#5cbef3;
}

#hero h4 {
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color:#FFF;
  overflow:hidden;
}

#hero p {
	max-width: 570px;
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	line-height: 30px;
	margin-bottom: 40px;
}
#hero a {
  margin: 0 5px;
}

#hero h2 {
  color: #fff;
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}
#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
}
@media (min-width: 1200px) {
  #hero p {
    width: 50%;
  }
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 15px;
  line-height: 0;
  width: auto;
  height: auto;
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
 
  color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}
#hero .carousel-indicators li.active {
  opacity: 1;
  background: #2c2a2a;
}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #5cbef3;
  margin-top: 15px;
}
#hero .btn-get-started:hover {
  background: #ef6445;
}
@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }
  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 30px;
  }
  
#hero h6 {
	margin-bottom: 15px;
    font-size: 16px;
  }
  
  #hero h4 {
    margin-bottom: 25px;
    font-size: 27px;
    line-height: 36px;
    letter-spacing: 1px;
  }
  
  #hero p {
	  max-width: 570px;
	  color: #fff;
	  font-size: 15px;
	  font-weight: 400;
	  line-height: 30px;
	  margin-bottom: 40px;
  }
  #hero a {
	margin: 0 5px;
  }
}
@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}




/* Request Form */

.request-form {
	background-color: #5cbef3;
	padding: 40px 0px;
	color: #fff;
}

.request-form h4 {
	font-size: 20px;
	font-weight: 600;
}

.request-form span {
	font-size: 15px;
	font-weight: 400;
	display: inline-block;
	margin-top: 10px;
}

.request-form a.border-button {
	margin-top: 12px;
	float: right;
}




/* Services */

.services {
	margin-top: 75px;
}
.service-item:hover{
	box-shadow: 5px 5px #cdcdcd73;
}

.service-item img {
	width: 100%;
	overflow: hidden;
}
.hrms-service-image{
	margin: 15px 0px 15px 0px;

}
.service-item .down-content {
	background-color: #f7f7f7;
	padding: 30px;
}

.service-item .down-content h4 {
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.25px;
	margin-bottom: 15px;
}

.service-item .down-content p {
	margin-bottom: 20px;
}



/* Fun Facts */

.fun-facts {
	margin-top: 70px;
	background-image: url(../images/fun-facts-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	padding: 90px 0px;
	color: #fff;
}

.fun-facts span {
	text-transform: uppercase;
	font-size: 15px;
	color: #fff;
	letter-spacing: 1px;
	margin-bottom: 10px;
	display: block;
}

.fun-facts h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 35px;
}

.fun-facts em {
	font-style: normal;
	color: #5cbef3;
}

.fun-facts p {
	color: #fff;
	margin-bottom: 40px;
}

.fun-facts .left-content {
	margin-right: 45px;
}

.count-area-content {
	text-align: center;
	background-color: rgba(250,250,250,0.1);
	padding: 25px 30px 35px 30px;
	margin: 15px 0px;
}

.purecounter {
	margin: 5px 0px;
    color: #5cbef3;
    font-weight: 700;
    font-size: 36px;
}
.count-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}



/* More Info */

.more-info {
	margin-top: 50px;
}
.more-info .left-image{
	padding: 25px 25px 25px 25px;
}
.more-info .left-image img {
	width: 100%;
	overflow: hidden;
}

.more-info .more-info-content {
	background-color: #f7f7f7;
}

.about-info .more-info-content {
	background-color: transparent;
}

.about-info .right-content {
	padding: 0px!important;
	margin-right: 30px;
}

.more-info .right-content {
	padding: 45px 45px 45px 30px;
}

.more-info .right-content span {
	text-transform: uppercase;
	font-size: 15px;
	color: #666;
	letter-spacing: 1px;
	margin-bottom: 10px;
	display: block;
}

.more-info .right-content h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 35px;
}

.more-info .right-content em {
	font-style: normal;
	color: #5cbef3;
}

.more-info .right-content p {
	margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
#portfolio{
	margin-top: 50px;
}
.portfolio #portfolio-flters {
	padding: 0;
	margin: 0 auto 25px auto;
	list-style: none;
	text-align: center;
	border-radius: 50px;
  }
  .portfolio #portfolio-flters li {
	cursor: pointer;
	display: inline-block;
	padding: 10px 15px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	color: #0b2341;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
  }
  .portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
	color: #5cbef3;
  }
  .portfolio #portfolio-flters li:last-child {
	margin-right: 0;
  }
  .portfolio .portfolio-item {
	margin-bottom: 30px;
  }
  .portfolio .portfolio-item img{
	  border-radius: 5px;
  }
  .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: #0b2341;
  }
  .portfolio .portfolio-item .portfolio-info p {
	color: #1a5298;
	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: #123a6d;
  }
  .portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
	color: #5cbef3;
  }
  .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: #f59f8c;
  }
  .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 #5cbef3;
  }
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #5cbef3;
  }
  .portfolio-details .portfolio-info {
	padding: 30px;
	box-shadow: 0px 0 30px rgba(11, 35, 65, 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;
  }

/* testimonials */

.testim-heading{
    display: flex;
	justify-content: center;
	margin-top: 30px;
}

.testim-heading h3{
	text-transform: uppercase;
	padding: 10px 0px;
	font-family: 'Poppins';
    color: #aa759c;
    font-weight: 600;
	font-size: 26px;
}
#testim .testimonial-wrap{
	text-align: center;
	padding: 40px 0px;
}
#testim .testimonial-item img{
	border-radius: 50%;
	width: 100px;
	height: 100px;
}
#testim .testimonial-item h2{
	text-transform: uppercase;
    font-family: 'Poppins';
    font-size: 24px;
    font-weight: 600;
    margin-top: 15px;
}
#testim .testimonial-item p{
	font-size: 16px;
}

/* Call Back Style */

.callback-services {
	border-top: 1px solid #eee;
	padding-top: 100px;
}

.contact-us {
	background-color: #f7f7f7;
	padding: 100px 0px;
}

.contact-us .contact-form {
	background-color: transparent!important;
	padding: 0!important;
}

.callback-form {
	margin-top: 100px;
}

.callback-form .contact-form {
	background-color: #5cbef3;
	padding: 60px;
	border-radius: 5px;
	text-align: center;
}

.callback-form .contact-form input {
	border-radius: 20px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0px 15px;
	color: #6a6a6a;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 35px;
}

.callback-form .contact-form input:focus {
	outline: none;
	box-shadow: none;
	border: none;
}

.callback-form .contact-form textarea {
	border-radius: 20px;
	height: 120px;
	max-height: 200px;
	min-height: 120px;
	display: inline-block;
	padding: 15px;
	color: #6a6a6a;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 35px;
}

.callback-form .contact-form textarea:focus {
	outline: none;
	box-shadow: none;
	border: none;
}

.callback-form .contact-form ::-webkit-input-placeholder { /* Edge */
  color: #aaa;
}
.callback-form .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #aaa;
}
.callback-form .contact-form ::placeholder {
  color: #aaa;
}

.callback-form .contact-form button.border-button {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 10px 28px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
}

.callback-form .contact-form button.border-button:hover {
	background-color: #fff;
	color: #5cbef3;
}

.contact-us .contact-form button.filled-button {
	background-color: #5cbef3;
	color: #fff;
	border: none;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
}

.contact-us .contact-form button.filled-button:hover {
	background-color: #fff;
	color: #5cbef3;
}



/* Partners Style */

.contact-partners {
	margin-top: -8px!important;
}

.partners {
	margin-top: 30px;
	background-color: #ffffff;
	padding: 70px 0px;
}
.partners-heading {
	text-align: center;
	margin-bottom: 40px;
}

.partners-heading h2 {
	font-size: 33px;
	text-transform: uppercase;
	font-weight: 600;
	color: #727272;
	/* font-family: 'Signika', sans-serif; */
	font-family: 'Poppins', sans-serif;
}


.partners-heading .span-heading{
	display: unset;
	font-size: 36px;
	font-weight: 600;
	color: #5cbef3;
	/* font-family: 'Signika', sans-serif; */
	font-family: 'Poppins', sans-serif;
}

.partners-heading span {
	font-family: 'Alata', sans-serif;
	display: block;
	margin-top: 15px;
	font-size: 15px;
	color: #666;
	letter-spacing: 1px;
}

.partners .owl-item {
	text-align: center;
	cursor: pointer;
}

.partners .partner-item img {
	max-width: 200px;
	margin: auto;
}
.partners .slick-slide {
    margin: 0px 20px;
}

.partners .slick-slide img {
    width: 100%;
}

.partners .slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.partners.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.partners .slick-list:focus
{
    outline: none;
}
.partners .slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.partners .slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.partners .slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.partners .slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}



.page-heading {
	text-align: center;
	background-image: url(../images/background-pages.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 230px 0px 150px 0px;
	color: #fff;
}
.cloud-page-heading {
	text-align: center;
	background-image: url(../images/cloud-computing-freepik-1.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 230px 0px 150px 0px;
	color: #fff;
}
.hrms-page-heading {
	text-align: center;
	background-image: url(../images/christina-wocintechchat-com-Q80LYxv_Tbs-unsplash.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 230px 0px 150px 0px;
	color: #fff;
}
.managed-it-page-heading {
	text-align: center;
	background-image: url(../images/industry.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 230px 0px 150px 0px;
	color: #fff;
}
.it-outsourcing-page-heading {
	text-align: center;
	background-image: url(../images/hrms3.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 230px 0px 150px 0px;
	color: #fff;
}
.enterprise-page-heading {
	text-align: center;
	background-image: url(../images/erp-banner.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 230px 0px 150px 0px;
	color: #fff;
}
.contact-page-heading {
	text-align: center;
	background-image: url(../images/jonathan-velasquez-4mta-DkJUAg-unsplash.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 230px 0px 150px 0px;
	color: #fff;
}
.about-page-heading {
	text-align: center;
	background-image: url(../images/background-pages.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 230px 0px 150px 0px;
	color: #fff;
}
.portfolio-page-heading {
	text-align: center;
	background-image: url(../images/services-cloud-solutions-header-2732x1536_1.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 230px 0px 150px 0px;
	color: #fff;
}
.about-page-heading h1 {
	text-transform: uppercase;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 18px;
	font-family: 'Alata';
}
.portfolio-page-heading h1 {
	text-transform: uppercase;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 18px;
	font-family: 'Alata';
}
.contact-page-heading h1 {
	text-transform: uppercase;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 18px;
	font-family: 'Alata';
}
.page-heading h1 {
	text-transform: uppercase;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 18px;
	font-family: 'Alata';
}
.cloud-page-heading h1 {
	text-transform: uppercase;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 18px;
	font-family: 'Alata';
}
.hrms-page-heading h1 {
	text-transform: uppercase;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 18px;
	font-family: 'Alata';
}
.it-outsourcing-page-heading h1 {
	text-transform: uppercase;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 18px;
	font-family: 'Alata';
}
.managed-it-page-heading h1 {
	text-transform: uppercase;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 18px;
	font-family: 'Alata';
}
.enterprise-page-heading h1 {
	text-transform: uppercase;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 18px;
	font-family: 'Alata';
}

.about-page-heading span {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	display: block;
}
.cloud-page-heading span {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	display: block;
}
.contact-page-heading span {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	display: block;
}
.enterprise-page-heading span {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	display: block;
}
.hrms-page-heading span {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	display: block;
}
.it-outsourcing-page-heading span {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	display: block;
}

.managed-it-page-heading span {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	display: block;
}
.portfolio-page-heading span {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	display: block;
}
.page-heading span {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	display: block;
}



/* Single Service */

.single-services {
	margin-top: 45px;
}

#tabs ul {
  margin: 0;
  padding: 0;
}
#tabs ul li {
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
}
#tabs ul li:last-child {
  margin-bottom: 0px;
}
#tabs ul li a {
	text-transform: uppercase;
	width: 100%;
	padding: 15px 15px;
	display: inline-block;
	background-color: #5cbef3;
  	font-size: 20px;
  	color: #ffffff;
  	letter-spacing: 0.5px;
  	font-weight: 600;
  	transition: all 0.3s;
}
#tabs ul li a i {
	float: right;
	margin-top: 5px;
}
#tabs ul .ui-tabs-active span {
  background: #faf5b2;
  border: #faf5b2;
  line-height: 90px;
  border-bottom: none;
}
#tabs ul .ui-tabs-active a {
  color: #fff;
}
#tabs ul .ui-tabs-active span {
  color: #1e1e1e;
}
.tabs-content {
  text-align: left;
  display: inline-block;
  transition: all 0.3s;
  padding-bottom: 40px;
}

#tabs .service-sidebar h3{
	text-transform: uppercase;
	width: 100%;
	text-align: center;
	padding-bottom: 20px;
	display: inline-block;
	/* background-color: #5cbef3; */
  	font-size: 24px;
  	color: #5cbef3;
  	letter-spacing: 0.5px;
  	font-weight: 600;
  	transition: all 0.3s;
}
#tabs .service-sidebar ul li a.active{
	background: #ffffff;
	color: #5cbef3;
}

.tabs-content img {
	max-width: 100%;
	overflow: hidden;
}
.tabs-content h4 {
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.25px;
	margin-bottom: 15px;
	margin-top: 30px;
}
.tabs-content h5{
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.25px;
	margin-bottom: 15px;
	margin-top: 30px;
}
.tabs-content p {
	font-size: 16px;
    color: #7a7a7a;
    line-height: 34px;
	margin-bottom: 5px;
}
.tabs-content li{
	font-size: 16px;
    color: #7a7a7a;
    line-height: 30px;
}
#tabs-2 .card {
	margin-top: 20px;
	border-radius: 20px;
	background-color: #f0f0f0;
}
#tabs-2 .card p{
	font-family: 'Alata';
	font-style: italic;
}
#tabs-2 .card p span{
	font-size: 35px;
	position: relative;
	top: 10px;
	margin-right: 15px;
}

@media (max-width: 768px){
	#tabs ul li a {
		  font-size: 16px;
	}
}

/* Contact Information */

.contact-information {
	margin-top: 50px;
}

.contact-information .contact-item {
	padding: 60px 30px;
	background-color: #ffffff;
	text-align: center;
}

.contact-information .contact-item i {
	color: #5cbef3;
	font-size: 48px;
	margin-bottom: 40px;
}

.contact-information .contact-item h4 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.25px;
	margin-bottom: 15px;
}

.contact-information .contact-item p {
	margin-bottom: 20px;
}

.contact-information .contact-item a {
	font-weight: 600;
	color: #5cbef3;
	font-size: 15px;
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  /* margin-top: 30px; */
	background-color: #f3f3f3;
	padding: 70px 0px;
}
.clients .section-title{
  text-align: center;
	margin-bottom: 40px;
}
.clients .section-title h2 {
	font-size: 33px;
	text-transform: uppercase;
	font-weight: 600;
	color: #727272;
	/* font-family: 'Signika', sans-serif; */
	font-family: 'Poppins', sans-serif;
}
.clients .section-title p{
    font-family: 'Alata', sans-serif;
    display: block;
    margin-top: 15px;
    font-size: 15px;
    color: #666;
    letter-spacing: 1px;
}
.clients .swiper-slide{
	border: 1px solid #989898 ;
	padding: 10px;
}
.clients .client-area{
	height: 110px;
	border: 1px solid #989898;
	align-items: center;
	line-height: 110px;
	text-align: center;
	padding: 0px 5px;
}

.clients .swiper-slide img {
  transition: 0.3s;
}
.clients .swiper-slide img:hover {
  filter: none;
}
.clients .swiper-pagination {
	display: none;
}
.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}
.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #9e9e9e;
}


.breadcrumb-nav{
	margin: 30px 0px;
}
.breadcrumb {
	border-radius: .25em;
	background: none;
  }
  .breadcrumb::after::after {
	clear: both;
	content: "";
	display: table;
  }
  .breadcrumb li {
	display: inline-block;
	margin: 5px;
  }
  .breadcrumb li::after{
	/* this is the separator between items */
	display: inline-block;
	content: '\00bb';
	margin: 0 .6em;
	color: #959fa5;
  }
  .breadcrumb li:last-of-type::after{
	/* hide separator after the last item */
	display: none;
  }
  .breadcrumb li > *{
	display: inline-block;
	font-size: 16px;
	color: #2c3f4c;
	font-weight: 500;
  }
  .breadcrumb li.current > *{
	/* selected step */
	color: #a3a3a3;
  }

  @media (max-width: 768px){
	.breadcrumb li > *{
		font-size: 13px;
	  }
}

  .product-page-heading {
	text-align: center;
	background-image: url(../images/products/Biometric-Technologies.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 230px 0px 150px 0px;
	color: #fff;
}

.product-page-heading h1 {
	text-transform: uppercase;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 18px;
	font-family: 'Alata';
}

.product-page-heading span {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	display: block;
}

.about-essl .para p{
	font-size: 16px;
}
.about-essl .about-essl-image img{
	max-width: 100%;
}
.essl-pro{
	padding: 40px 0px;
}
.essl-pro p{
	font-size: 16px;
}
.essl-pro ul{
	padding: 30px 0px;

}
.essl-pro .pro-ul{
	padding: 30px 0px;
	display: flex;
	justify-content: space-between;
}
.essl-pro ul li{
	font-family: 'Poppins', sans-serif;
    color: #666666;
    margin: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.essl-pro ul li i{
	color: #5cbef3;
	position: relative;
	right: 10px;
	margin-right: 5px;
}
.essl-fprint{
	margin: 20px 0px;
}
.essl-fprint h3{
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 20px;
}
.essl-fprint img{
 max-width: 100%;
 border-radius: 5px;
}
.essl-face h3{
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 20px;
}
.essl-face{
	margin: 20px 0px;
}
.essl-face img{
 max-width: 100%;
}
.essl-product-models {
	padding: 15px 0px;
	margin: 20px 0px;
}
.essl-product-models .card {
	text-align: center;
	padding: 10px;
	margin: 10px 0px;
	transition: all ease .5s;
}
.essl-product-models .card-body{
	padding: 0;
}
.essl-product-models .card:hover {

	transition: box-shadow .5s;
}
.essl-product-models .card img{
	width: 100%;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.essl-product-models .card img:hover{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.essl-product-models h4{
	text-transform: uppercase;
	font-weight: 600;
	font-size: 18px;
}
.essl-product-models .card .card-body .product-name{
	position: relative;
	bottom: 0px;
	padding: 10px 0px;
	background: #c3d2da;
	margin-top: 20px;
}


.about-biomax .para p{
	font-size: 16px;
}
.about-biomax .about-biomax-image img{
	max-width: 100%;
}
.biomax-pro{
	padding: 40px 0px;
}
.biomax-pro p{
	font-size: 16px;
}
.biomax-pro ul{
	padding: 30px 0px;

}
.biomax-pro .pro-ul{
	padding: 30px 0px;
	display: flex;
	justify-content: space-between;
}
.biomax-pro ul li{
	font-family: 'Poppins', sans-serif;
    color: #666666;
    margin: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.biomax-pro ul li i{
	color: #5cbef3;
	position: relative;
	right: 10px;
	margin-right: 5px;
}
.biomax-fprint{
	margin: 20px 0px;
}
.biomax-fprint h3{
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 20px;
}
.biomax-fprint img{
 max-width: 100%;
 border-radius: 5px;
}

.biomax-face{
	margin: 20px 0px;
}
.biomax-face img{
 max-width: 100%;
}
.biomax-product-models {
	padding: 15px 0px;
	margin: 20px 0px;
}
.biomax-product-models h3{
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 20px;
}
.biomax-product-models h4{
	text-transform: uppercase;
	font-weight: 600;
	font-size: 18px;
}
.biomax-product-models .card {
	text-align: center;
	padding: 10px;
	margin: 10px 0px;
}
.biomax-product-models .card-body{
	padding: 0;
}
.biomax-product-models .card img{
	width: 100%;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.biomax-product-models .card img:hover{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.biomax-product-models .card .card-body .product-name{
	position: relative;
	padding: 10px 0px;
	background: #c3d2da;
	margin-top: 20px;
}

@media (max-width: 768px) {
	.essl-product-models h4{
		font-size: 15px;
	}
	.biomax-product-models h4{
		font-size: 15px;
	}
}

/* Footer Style */

footer {
	background-color: #232323;
	padding: 50px 0px;
	color: #fff;
}

footer h4 {
	text-transform: uppercase;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.25px;
	margin-bottom: 10px;
}
footer p {
	color: #fff;
}
.footer-item{
	padding: 30px 15px;
}
.footer-address a{
	color: white;
}
.footer-address a:hover{
	color:#5cbef3 ;
}
footer ul.social-icons {
	margin-top: 25px;
}

footer ul.social-icons li {
	display: inline-block;
	margin-right: 5px;
}

footer ul.social-icons li:last-child {
	margin-right: 0px;
}

footer ul.social-icons li a {
	width: 28px;
	height: 28px;
	display: inline-block;
	line-height: 28px;
	text-align: center;
	background-color: #fff;
	color: #232323;
	border-radius: 50%;
	transition: all 0.3s;
}

footer ul.social-icons li a:hover {
	background-color: #5cbef3;
}

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

footer ul.menu-list li:last-child {
	margin-bottom: 0px;
}

footer ul.menu-list li a {
	font-size: 14px;
	color: #fff;
	transition: all 0.3s;
}

footer ul.menu-list li a:hover {
	color: #5cbef3;
}

footer .contact-form input {
	border-radius: 20px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0px 15px;
	color: #aaa!important;
	background-color: #343434;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 15px;
}

footer .contact-form input:focus {
	outline: none;
	box-shadow: none;
	border: none;
	background-color: #343434;
}

footer .contact-form textarea {
	border-radius: 20px;
	height: 120px;
	max-height: 200px;
	min-height: 120px;
	display: inline-block;
	padding: 15px;
	color: #aaa!important;
	background-color: #343434;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 15px;
}

footer .contact-form textarea:focus {
	outline: none;
	box-shadow: none;
	border: none;
	background-color: #343434;
}

footer .contact-form ::-webkit-input-placeholder { /* Edge */
  color: #aaa;
}
footer .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #aaa;
}
footer .contact-form ::placeholder {
  color: #aaa;
}

footer .contact-form button.filled-button {
	background-color: transparent;
	color: #fff;
	background-color: #5cbef3;
	border: none;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
}

footer .contact-form button.filled-button:hover {
	background-color: #fff;
	color: #5cbef3;
}

footer .copyright {
	border-top: 1px solid #383838;
	text-align: center;
	padding-top: 15px;
  }

