/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background-color: transparent !important;
  color: #212427;
  font-family: "Open Sans", sans-serif;
  font-family: 'Raleway', Arial, sans-serif;
  width: 100%;
}
a {
  color: #FF8A00;
  text-decoration: none;
  transition: 0.5s;
}
a:hover, a:active, a:focus {
  color: #3CC6F4;
  outline: none;
  text-decoration: none;
}
p {
  padding: 0;
  margin: 0 0 20px 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin: 0 0 10px 0;
  padding: 0;
}
h1, h2, h3 {
  color: #174F8B;
}
.subHeader {
  font-size: 16px;
  color: #5C5D61;
  padding-bottom: 15px;
}
@media (max-width: 562px) {
  .subHeader {
    font-size: 14px !important;
  }
  h6, p {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 5%;
  bottom: 3%;
  z-index: 996;
  background: #FF8A00;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #3CC6F4;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  padding: 120px 0px 0px 0px;
  position: relative;
  background: url("../img/main/hero-bg.png");
  background-size: cover;
  background-color: white;
  background-position: right;
  flex-direction: row;
}
@media (max-width: 991px) {
  #hero {
    padding: 140px 0 60px 0;
  }
}
@media (max-width: 574px) {
  #hero {
    padding: 100px 0 20px 0;
  }
  #hero .hero-info h3 {
    margin-bottom: 50px !important;
  }
  #hero .hero-info h2 {
    margin-bottom: 10px !important;
  }
}

#hero .container{
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  #hero .container{
    flex-direction: column-reverse;
  }
}

#hero .hero-img {
  width: 150%;
}
@media (max-width: 991px) {
  #hero .hero-img {
    width: 100%;
    float: none;
    margin: 0 auto 25px auto;
  }
}

@media (max-width: 991px) {
  #hero .hero-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }
}
@media (max-width: 767px) {
  #hero .hero-info {
    width: 100%;
  }
}
#hero .hero-info h2 {
  color: #000;
  font-size: 48px;
  font-weight: 700;
}
#hero .hero-info h2 span {
  color: #FF8A00;
}
#hero .hero-info h3 {
  margin-bottom: 50px;
  color: #212427;
}

@media (max-width: 1399px) {
  #hero .hero-info h2 {
    font-size: 34px;
    margin-bottom: 10px;
  }

  #hero .hero-info h3 {
    margin-bottom: 50px;
    font-size: 1.2rem;
  }
}

#hero .hero-info .btn-get-started, #hero .hero-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 0 20px 0;
  color: #fff;
}
#hero .hero-info .btn-get-started {
  background: #FF8A00;
  color: #fff;
}
#hero .hero-info .btn-get-started:hover {
  background: #3EC6F3;
  color: #fff;
}
#hero .hero-info .btn-services {
  border: 2px solid #fff;
}
#hero .hero-info .btn-services:hover {
  background: #007bff;
  border-color: #007bff;
  color: #fff;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
body {
  background-color: transparent !important;
}
#header {
  height: 80px;
  z-index: 9999;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
  width: 100%;
  position: fixed;
}
#header.header-scrolled {
  display: none;
}
#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  #header .logo h1 {
    font-size: 28px;
  }
  #header.header-scrolled {
    display: block;
  }
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  max-height: 65px;
  margin-top: 8px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar li:nth-child(5) {
  background-color: #FF8A00;
  border-radius: 50px;
  margin-left: 30px;
  width: fit-content;
}
.navbar li:nth-child(5) a {
  color: white;
}
.navbar li:nth-child(5) a:hover {
  background-color: #3EC6F3;
  border-radius: 50px;
  color: white;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: black;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar li:hover > a {
  color: #3CC6F4;
}
.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;
  font-size: 14px;
  text-transform: none;
}
.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: #007bff;
}
.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%;
  }
}
.navbar li:nth-child(6), .navbar li:nth-child(7), .navbar li:nth-child(8) {
  display: none;
  top: 29%;
}
.navbar li:nth-child(6) a, .navbar li:nth-child(7) a {
  color: white;
  text-decoration: none;
  justify-content: flex-start;
  font-size: 14px;
  padding: 5px 20px;
}
.navbar li:nth-child(6) h6, .navbar li:nth-child(7) h6 {
  color: #3CC6F4;
  margin-bottom: 0px;
  padding-right: 10px;
}
.navbar li:nth-child(8) {
  background-color: #FF8A00;
  border-radius: 50px;
  margin-left: 20px;
  margin-right: 20px;
}
.navbar li:nth-child(8) a {
  color: white;
  justify-content: center;
  font-size: 14px;
  padding: 10px 20px;
  margin-top: 20px;
}
.navbar li:nth-child(8) a:hover {
  background-color: #3EC6F3;
  border-radius: 50px;
  color: white;
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #283d50;
  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(23, 35, 46, 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: 0;
  right: 0;
  bottom: 0;
  padding: 10px 0;
  background-color: #174F8B;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 20px;
  font-size: 18px;
  color: #fff;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #3CC6F4;
}
.navbar-mobile li:nth-child(5) a:hover {
  color: #3EC6F3;
  background-color: transparent;
}
.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: #007bff;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
.navbar-mobile li {
  top: 15%;
}
.navbar-mobile li:nth-child(5) {
  display: none;
}
.navbar-mobile li:nth-child(6), .navbar-mobile li:nth-child(7), .navbar-mobile li:nth-child(8) {
  display: block;
}
.navbar-mobile .copyright {
	display: block;
	float: left;
	color: #ffffff !important;
	font-size: 12px;
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}
/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 36px;
  color: #283d50;
  text-align: center;
  font-weight: 500;
  position: relative;
}
.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
  width: 50%;
}
@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}
/* Section with background
--------------------------------*/
.section-bg {
  background: #ecf5ff;
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f5faff;
  min-height: 40px;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
}
.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;
  }
}
/* Services Section
--------------------------------*/
#services {
  padding: 20px 0px 30px 0px;
  background: #EDFAFF;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}
#services .box:hover {
  transform: translateY(-5px);
}
#services .icon {
  position: absolute;
  left: -15px;
  top: calc(50% - 32px);
}
#services .icon i {
  font-size: 64px;
  line-height: 0;
  transition: 0.5s;
}
#services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
#services .title a {
  color: #111;
}
#services .box:hover .title a {
  color: #007bff;
}
#services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  #services .tagline h1 {
    font-size: 23px !important;
  }
}
@media (max-width: 562px) {
  #services .serviceContainer {
    height: 90px !important;
    width: 150px !important;
  }
  #services .rectangle {
    font-size: 8px !important;
  }
  #services .tagline h3 {
    font-size: 17px !important;
  }
  #services .arrow h6 {
    font-size: 9px !important;
  }
}
#services .tagline h1 {
  margin-top: 0px;
}
#services .services_image {
  display: flex;
  justify-content: space-between;
}
#services .serviceContainer {
  position: relative;
  height: 156px;
  width: 202px;
  text-align: center;
  margin-right: 10px;
}
#services .serviceContainer img {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
@keyframes containerFadeInOut {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#services .container .top {
  animation-name: containerFadeInOut;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 10s;
  animation-direction: alternate;
}
#services .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}
#services .arrow2 {
  text-align: center;
}
#services .arrow i {
  font-size: 30px;
  color: #FF8A00;
}
#services .arrow h6 {
  margin-top: 10px;
  font-size: 13px;
  color: #FF8A00;
  font-weight: 100
}
#services .rectangle {
  position: absolute;
  top: 88%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  min-width: 200px;
}
/* Testimonials Section
--------------------------------*/
#testimonials {
  padding: 20px 0px 30px 0px;
  height: auto;
  width: 100%;
  background-color: white;
}
@media (max-width: 992px) {
  #testimonials {
    height: 358px;
  }
  #testimonials .testimonial-section {
    display: inline-block !important;
  }
  #testimonials .testi-user-img {
    height: 30%;
    text-align: center;
  }
  #testimonials .user-saying {
    height: 70% !important;
  }
  #testimonials .swiper-pagination {
    top: 460px !important;
  }
}
@media (max-width: 552px) {
  #testimonials {
    height: 300px;
  }
  #testimonials .gallery-thumbs .swiper-slide img {
    width: 40% !important;
    height: 40% !important;
  }
  #testimonials .gallery-thumbs .swiper-slide-active img {
    width: 70% !important;
    height: 70% !important;
  }
  #testimonials .testimonial-section .quote p {
    font-size: 14px !important;
  }
  #testimonials .testimonial .name {
    font-size: 10px !important;
  }
  #testimonials .quote-icon {
    width: 15px !important;
  }
  #testimonials .swiper-pagination {
    top: 400px !important;
  }
}
#testimonials .testimonial p {
  font-size: 28px;
  letter-spacing: 0.02em;
  line-height: 35px;
}
#testimonials .testimonial .name {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 35px;
  text-align: left;
}
#testimonials .testimonial .designation {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: left;
  color: #fff;
  opacity: 0.65;
}
#testimonials .gallery-thumbs {
  height: 26%;
  margin: 0 auto;
  display: inline-block;
}
#testimonials .gallery-thumbs .swiper-wrapper {
  align-items: center;
  transform: none !important;
  transform-style: flat !important;
}
#testimonials .gallery-thumbs .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 122px !important;
  height: 122px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
}
#testimonials .gallery-thumbs .swiper-slide img {
  filter: contrast(0.5) blur(1px);
  width: 50%;
  height: 50%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #FF8A00;
}
#testimonials .gallery-thumbs .swiper-slide-active img {
  filter: contrast(1) blur(0px) !important;
  width: 100%;
  height: 100%;
}
#testimonials .flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 105px;
  margin-left: 105px;
}
#testimonials .flex-row .flex-col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
#testimonials .gallery-thumbs .swiper-wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#testimonials .testimonial-section .quote {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#testimonials .swiper-container.testimonial {
  height: 100vh;
}
#testimonials .testimonial-section .user-saying {
  background: #FFF;
  color: #212427;
  height: 100%;
  overflow: hidden;
}
#testimonials .testimonial-section {
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  width: 100%;
  height: 80%;
}
#testimonials .testimonial-section .quote p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
  padding-bottom: 10px;
}
#testimonials .quote-icon {
  width: 38px;
  display: block;
  margin-bottom: 20px;
}
#testimonials .swiper-pagination {
  padding-bottom: 30px;
  padding-top: 0px;
  position: absolute;
  top: 340px;
}
#testimonials .swiper-pagination-bullet {
  margin-right: 10px;
  margin-left: 10px;
  padding: 2px;
}
#testimonials .swiper-pagination-bullet-active {
  opacity: 1;
  background: #FF8A00;
}
#testimonials .partner img {
	width: 160px;
	float: left;
	margin-top: 4%;
	margin-bottom: 4%;
	text-align: center;
}
@media (max-width: 400px){
	#testimonials .swiper-pagination {
	top: 380px !important;
	}

}
@media (max-width: 568px){
	#testimonials .col-sm-6 {
		width: 50%;
		float: left;
	}
	#testimonials .col-sm-6 img {
		width: 120px;
	}
}

/* Contact Section
--------------------------------*/
#contact {
  padding: 20px 0px 30px 0px;
  overflow: hidden;
  background: #EDFAFF;
  background-image: url("../img/contact/contact-bg.png");
  background-position: left;
  background-repeat: no-repeat;
}
#contact .section-header {
  padding-bottom: 30px;
}
#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #007bff;
}
#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}
#contact .social-links {
  padding-bottom: 20px;
}
#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #007bff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #007bff;
}
#contact .social-links a:hover {
  background: #007bff;
  color: #fff;
}
#contact .info i {
  font-size: 32px;
  color: #007bff;
  float: left;
  line-height: 0;
}
#contact .info p {
  line-height: 28px;
  font-size: 14px;
}
#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;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
#contact .php-email-form input, #contact .php-email-form textarea {
  border-radius: 10px;
  box-shadow: none;
  font-size: 14px;
}
#contact .php-email-form input:focus, #contact .php-email-form textarea:focus {
  border-color: #007bff;
}
#contact .php-email-form input {
  padding: 10px 15px;
}
#contact .php-email-form textarea {
  padding: 12px 15px;
  border-radius: 10px;
}
#contact .php-email-form button[type=submit] {
  background: #FF8A00;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
  margin-top: 20px;
}
#contact .php-email-form button[type=submit]:hover {
  background: #3EC6F3;
  cursor: pointer;
}
@media (max-width: 992px) {
  #contact {
    background-image: url("../img/contact/contact-bg-mobile.png");
    background-position: top;
    background-size: cover;
  }
  #contactUs .map {
    text-align: center;
  }
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #174F8B;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}
#footer .footer-top {
  background: #174F8B;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #FF8A00;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#footer .footer-top .footer-links h3, #footer .footer-top .footer-contact h3 {
  font-family: "Montserrat", sans-serif;
  color: #FF8A00;
}
#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #ecf5ff;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #007bff;
  color: #fff;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a i {
  line-height: 0;
}
#footer .footer-top .social-links a:hover {
  background: #0067d5;
  color: #fff;
}
#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}
#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 li {
  padding: 8px 0;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #ecf5ff;
}
#footer .footer-top .footer-links ul a:hover {
  color: #74b5fc;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact p {
  line-height: 26px;
}
#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}
#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}
#footer .footer-top .footer-newsletter input[type=submit] {
  background: #007bff;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}
#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: #0062cc;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}
#footer .credits a {
  color: #bfddfe;
}
#footer .credits a:hover {
  color: #f1f7ff;
}
/*object {
	width: 100%;
	position: relative;
	float: left;
	min-height: 510px;
	height: auto;
}

object .header {
	height: -webkit-fill-available;
	min-height: auto;
	position: fixed;
	z-index: 9999;
}*/
@media (max-width: 991px) {
  #footer {
    display: none;
  }
}
/*--------------------------------------------------------------
# Services List
--------------------------------------------------------------*/
#servicesList {
  padding: 120px 0px 30px 0px;
  position: relative;
  overflow: visible;
  background-color: white;
  z-index: 99;
}
#servicesList h1 {
  color: #174F8B;
}
#servicesList h6 {
  margin-bottom: 12px;
}
#servicesList .row {
  margin: 0;
  justify-content: space-between;
}
#servicesList .serviceBox {
  background-color: #EDFAFF;
  position: relative;
  margin-top: 20px;
  border-radius: 10px;
}
#servicesList .serviceBox i {
  position: absolute;
  right: 0;
  top: 15px;
}
#servicesList .serviceTitle {
  position: relative;
  padding-top: 15px;
  text-align: center;
}
#servicesList .serviceHover p {
  margin-bottom: 0px !important;
}
#servicesList .serviceTitle h6 {
  padding-top: 15px;
}
#servicesList .serviceHover {
  min-width: 200%;
  background-color: #FF8A00;
  padding: 10px;
  position: absolute;
  top: inherit;
  transition: all 0.25s ease;
  opacity: 0;
  display: none;
  z-index: 99;
  left: 0;
  color: white;
}
.serviceBox:hover .serviceHover {
  opacity: 1 !important;
  display: block !important;
  border-radius: 0px 10px 10px 10px;
  width: 266%;
  font-size: small;
}
#servicesList .row .serviceBox:hover:nth-child(4) .serviceHover {
  right: 0px;
  left: auto;
  border-radius: 10px 0px 10px 10px;
}
#servicesList .serviceBox:hover {
  background-color: #FF8A00;
  color: white;
  border-radius: 10px 10px 0px 0px;
}
.serviceBox svg {
  width: 50%;
}
/*health - web*/
.serviceBox .st0 {
  fill: #174F8B;
}
.serviceBox:hover .st0 {
  fill: #ffffff;
}
/*mobile*/
.cls-1 {
  fill: none;
  stroke: #174f8b;
  stroke-width: 3px;
}
.cls-2 {
  fill: #174f8b;
}
.serviceBox:hover .cls-1 {
  stroke: #ffffff;
}
.serviceBox:hover .cls-2 {
  fill: #ffffff;
}
/*ict - data*/
.cls-3 {
  fill: none;
  stroke: #174f8b;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.5px;
}
.serviceBox:hover .cls-3 {
  stroke: #ffffff;
}
/*services*/
.cls-4 {
  fill: none;
  stroke: #174f8b;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4px;
}
.serviceBox:hover .cls-4 {
  stroke: #ffffff;
}
@media screen and (max-width: 992px) {
  #servicesList .serviceTitle i {
    display: none;
  }
  #servicesList .serviceHover {
    display: none !important;
    opacity: 0 !important;
  }
}
/*--------------------------------------------------------------
# Expertise
--------------------------------------------------------------*/
#expertise {
  padding: 60px 0px 30px 0px;
  background-image: url("../img/services/expertise_bg.png");
  background-position: right;
  background-repeat: no-repeat;
  background-color: white;
}
#expertise h1 {
  color: #174F8B;
}
#expertise h5 {
  color: #174F8B;
  margin-bottom: 10px;
}
#expertise hr {
  color: #D7EAFF;
  width: 80%;
  height: 2px;
}
#expertise img {
  height: 19px;
  padding-right: 15px;
}
@media (max-width: 1200px) {
  #expertise hr {
    width: 80%;
  }
}
@media (max-width: 992px) {
  #expertise {
    background-image: none;
  }
  #expertise hr {
    width: 100%;
  }
}
/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
#product {
  width: 100%;
  padding: 230px 0px 30px 0px;
  background: white;
}
#product .productList {
  margin-bottom: 100px;
}
#product .row {
  justify-content: space-between;
}
#product p {
  color: #3CC6F4;
  text-align: center;
}
#product .techTools {
  margin-left: 0;
}
#product .productDesc .row {
  justify-content: flex-start;
}
#product .roundOutline {
  border-radius: 25px;
  border: 1px solid #3CC6F4;
  padding: 5px 15px;
  margin-right: 12px;
  max-width: fit-content;
  min-width: 40px;
}
@media (max-width: 576px) {
  #product .roundOutline {
    font-size: 11px;
    padding: 5px;
  }
}
#product h1 {
  color: #174F8B;
}
#product .btn-read-more {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 20px 20px 0 0;
  color: #fff;
  background: #FF8A00;
}
#product .btn-read-more:hover {
  background: #3EC6F3;
  color: #fff;
}
#product .img-container {
  position: relative;
}
#product .img-container .item1 {
  float: left;
  position: relative;
  left: -70px;
  top: -36px;
}
#product .img-container .item2 {
  float: right;
  position: fixed;
  right: 60px;
  top: 25px;
}
#product .img-container .item3 {
  float: left;
  position: relative;
  top: -20px;
}
#product .img-container .item4 {
  float: right;
  position: absolute;
  right: -70px;
  top: 70px;
}
#product .img-container .item5 {
  float: left;
  position: absolute;
  left: -20px;
  top: 50px;
}
#product .img-container .item6 {
  float: right;
  position: fixed;
  right: 0px;
}
#product .img-container .item7 {
  float: left;
  position: relative;
  left: -140px;
  top: 50px;
}
@media (max-width: 992px) {
  #product .img-container .item1 {
    left: 20%;
    top: -36px;
  }
  #product .img-container .item2 {
    right: 20%;
    top: 25px;
  }
  #product .img-container .item4 {
    right: 0px;
    top: 70px;
  }
  #product .img-container .item5 {
    left: 0px;
    top: 50px;
  }
  #product .img-container .item6 {
    right: 2%;
    top: -55px;
  }
  #product .img-container .item7 {
    left: 2%;
    top: -20px;
  }
}
@media (max-width: 552px) {
  #product .img-container .item1 {
    left: 2%;
    top: -36px;
  }
  #product .img-container .item2 {
    right: 2%;
    top: 25px;
  }
  #product .img-container .item3 {
    top: -65px;
  }
  #product .img-container .item4 {
    width: 50%;
    top: 105px;
  }
  #product .img-container .item5 {
    width: 25%;
    top: 80px;
  }
  #product .img-container .item6 {
    right: 2%;
    top: -55px;
    width: 80%;
  }
  #product .img-container .item7 {
    left: 0;
    top: -20px;
    width: 50%;
  }
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
  width: 100%;
  padding: 120px 0px 0px 0px;
}
#about .why {
  margin-bottom: 90px;
}
#about2 .counts {
  margin-bottom: 90px;
}
#about2 .countsRight img {
  border-radius: 20px 0px 0px 20px;
  width: 100%;
  object-fit: cover;
}
#about2 .countsLeft img {
  border-radius: 0px 20px 20px 0px;
  width: 100%;
  object-fit: cover;
}
#about2 .counter {
  margin-top: 30px;
}
#about2 .counter span {
  color: #174F8B;
  font-weight: 500;
}
#about3 .vision {
  padding: 30px 40px 30px 30px;
  background-color: #174F8B;
  color: white;
  border-radius: 20px 0px 0px 0px;
}
#about3 .vision h1 {
  color: white;
}
#about3 .mission {
  padding: 30px 30px 30px 40px;
}
@media (max-width: 992px) {
  #about2 .countsRight img {
    border-radius: 0;
  }
  #about2 .countsLeft img {
    border-radius: 0;
  }
  #about2 .counter h6 {
    font-size: 14px;
  }
  #about3 .vision {
    border-radius: 0 !important;
  }
  #about2 .counts {
    margin-bottom: 40px;
  }
}
/*--------------------------------------------------------------
# Career
--------------------------------------------------------------*/
#career {
  width: 100%;
  padding: 120px 0px 30px 0px;
  background: white;
}
#career h1 {
  color: #174F8B;
}
#career .btn-joblist {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #FF8A00;
}
#career .btn-joblist:hover {
  background: #3EC6F3;
  color: #fff;
}
#career h6 {
  padding-bottom: 20px;
}
#career .video {
  position: relative;
}
#career .video video {
  width: 100%;
  margin-top: 50px;
  border-radius: 20px;
}
#values {
  width: 100%;
  padding: 40px 0px 30px 0px;
  justify-content: center;
  background-color: #EDFAFF;
}
#values .valuesHeader {
  padding-bottom: 20px;
}
#values .row {
  justify-content: space-between;
}
#values .valuesBox {
  margin-bottom: 40px;
}
#values .valuesBox img {
  margin-bottom: 25px;
}
@media (max-width: 574px) {
  #career .video video {
    border-radius: 10px;
  }
  #values .valuesBox img {
    width: 30%;
  }
}
#benefits {
  width: 100%;
  padding: 40px 0px 30px 0px;
  background: white;
}
/* Hide every HTML inside .hover that would render outside*/
#benefits .hover {
  overflow: hidden;
}
/*Animate overlay and move it 'above'*/
#benefits .hover .overlay {
  transform: translate3d(-100%, 0, 0);
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* Mouse enter event */
.hover.mouseenter.top .overlay {
  animation-name: slide--enter-top;
}
.hover.mouseenter.right .overlay {
  animation-name: slide--enter-right;
}
.hover.mouseenter.bottom .overlay {
  animation-name: slide--enter-bottom;
}
.hover.mouseenter.left .overlay {
  animation-name: slide--enter-left;
}
/* Mouse leave event */
.hover.mouseleave.top .overlay {
  animation-name: slide--leave-top;
}
.hover.mouseleave.right .overlay {
  animation-name: slide--leave-right;
}
.hover.mouseleave.bottom .overlay {
  animation-name: slide--leave-bottom;
}
.hover.mouseleave.left .overlay {
  animation-name: slide--leave-left;
}
/* Sliding animations ! */
@keyframes slide--enter-top {
  0% {
    transform: translate3d(0, -100%, 0);
  }
  100% {
    transform: none;
  }
}
@keyframes slide--enter-right {
  0% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: none;
  }
}
@keyframes slide--enter-bottom {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  100% {
    transform: none;
  }
}
@keyframes slide--enter-left {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: none;
  }
}
@keyframes slide--leave-top {
  0% {
    transform: none;
  }
  100% {
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slide--leave-right {
  0% {
    transform: none;
  }
  100% {
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slide--leave-bottom {
  0% {
    transform: none;
  }
  100% {
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slide--leave-left {
  0% {
    transform: none;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
#benefits .layout {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
#benefits .hover {
  background-color: #174F8B;
  position: relative;
  display: flex;
  flex: 0 0 30%;
  margin: 50px 0 20px 0;
  z-index: 0;
  border-radius: 10px;
}
#benefits .content {
  flex: 1;
  text-align: left;
  z-index: 10;
  padding: 20px;
}
#benefits h2 {
  color: white;
}
#benefits p {
  color: white;
  margin-bottom: 0px;
}
#benefits .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  text-align: center;
  z-index: -10;
}
#benefits .overlay.bg1 {
  background-color: #EA4C88;
}
#benefits .overlay.bg2 {
  background-color: #EABE4C;
}
#benefits .overlay.bg3 {
  background-color: #924CEA;
}
#benefits .overlay.bg4 {
  background-color: #EA684C;
}
#benefits .overlay.bg5 {
  background-color: #4F4CEA;
}
#benefits .overlay.bg6 {
  background-color: #4CA8EA;
}
@media (max-width: 992px) {
  #benefits .hover {
    flex: 0 0 48%;
  }
}
@media (max-width: 574px) {
  #benefits .content {
    padding: 10px;
  }
  #benefits h2 {
    font-size: 20px;
  }
}
#career2 {
  width: 100%;
  padding: 35px 40px 35px 40px;
  background-color: #EDFAFF;
}
#career2 p {
  margin-bottom: 0;
}
#career2 .row {
  justify-content: space-between;
  align-items: center;
}
#career2 .career2Btn {
  text-align: right;
}
#career2 .btn-applyJob {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #FF8A00;
}
#career2 .btn-applyJob:hover {
  background: #3EC6F3;
  color: #fff;
}
@media (max-width: 992px) {
  #career2 .career2Btn {
    text-align: left;
    padding-top: 20px;
  }
}
#photo {
  width: 100%;
  background: white;
}
#photo .photoWrap {
  overflow: hidden;
  padding-top: 60px;
}
#photo .photoContainer {
  width: 150%;
  align-self: center;
  height: fit-content !important;
  background-image: url("../img/career/gallery-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
}
#photo img {
  border-radius: 20px;
}
#photo h6 {
  margin-bottom: 0;
  color: white;
}
#photo .bintan h6 {
  padding: 10px;
  background-color: #FF8A00;
  max-width: fit-content;
  bottom: 56%;
  right: 12px;
  position: absolute;
}
#photo .dnd h6 {
  padding: 10px;
  background-color: #FF8A00;
  max-width: fit-content;
  top: -20px;
  right: 12px;
  position: absolute;
}
#photo .birthday h6 {
  padding: 10px;
  background-color: #FF8A00;
  max-width: fit-content;
  top: 0;
  left: 12px;
  position: absolute;
}
@media (max-width: 992px) {
  #photo .photoItem {
    padding-bottom: 40px;
  }
  #photo .bintan h6 {
    top: 0;
    bottom: auto;
  }
  #photo .dnd h6 {
    top: 0;
  }
}
@media (max-width: 574px) {
  #photo img {
    border-radius: 10px;
  }
}
/*--------------------------------------------------------------
# Joblist
--------------------------------------------------------------*/
#jobList {
  width: 100%;
  padding: 120px 0px 40px 0px;
}
#jobList .jobBox {
  padding: 0 20px 0 20px;
}
#jobList .jobBoxBg {
  background-color: #EDFAFF;
  padding: 20px;
  border-radius: 10px;
  height: 100%;
}
#jobList .jobBoxHeader {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#jobList .jobBoxHeader h6 {
  margin-bottom: 0;
  margin-left: 10px;
  text-align: left;
}
#jobList hr {
  color: #C9D9FF;
}
#jobList .jobBoxDesc p {
  text-align: left;
  font-size: 14px;
}
#jobList .requirements {
  margin: 0;
}
#jobList .roundOutline {
  font-size: 11px !important;
  color: #3CC6F4;
  border-radius: 25px;
  border: 1px solid #3CC6F4;
  padding: 5px 7px;
  margin-right: 6px;
  max-width: fit-content;
  min-width: 40px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  #jobList .roundOutline {
    padding: 5px;
  }
}
#hiringProcess {
  width: 100%;
  padding: 60px 0px 0px 0px;
  background-color: #EDFAFF;
}
#hiringProcess .hiringSteps {
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 30px;
}
#hiringProcess .hiringBox {
  text-align: center;
  padding: 0 20px;
  z-index: 9;
  position: relative;
}
#hiringProcess .hiringBoxStep {
  border-radius: 50%;
  height: 65px;
  width: 65px;
  background-color: #174F8B;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  z-index: 9;
  position: relative;
}
#hiringProcess .hiringBoxStep h1 {
  color: white;
  margin-bottom: 0 !important;
}
#hiringProcess .hiringRectangle {
  border: 3px solid #174F8B;
  background-color: white;
  border-radius: 10px;
  padding: 40px 15px 15px 15px;
  margin-top: -30px;
  height: 85%;
}
#hiringProcess .hiringRectangle p {
  margin-bottom: 0;
}
#hiringProcess hr {
  margin-top: -70px;
  color: #174F8B;
  height: 3px;
  opacity: 100%;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
#hiringProcess .hiringBox:hover .hiringRectangle {
  border-color: #FF8A00;
}
#hiringProcess .hiringBox:hover .hiringBoxStep {
  background-color: #FF8A00;
}
@media (max-width: 992px) {
  #hiringProcess .hiringBox {
    margin-bottom: 40px;
  }
  #hiringProcess .hiringRight img {
    margin: 0 auto;
    display: block;
    max-width: 100%;
    height: auto;
  }
  #hiringProcess hr {
    transform: rotate(90deg);
    margin-top: -300px;
    width: 400px;
  }
}
.bl-main > section:nth-child(3) {
  top: 50%;
  left: 0;
  background: #72CCA7;
}
.bl-main > section:nth-child(4) {
  top: 50%;
  left: 50%;
  background: #10A296;
}
.bl-box {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 1;
}
.bl-box ul {
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-wrap: wrap;
}
.bl-box ul li {
  list-style-type: none;
  float: left;
  padding: 0 20px 0 20px;
  margin-top: 38px;
}
.bl-box ul li a {
  color: black;
}
.bl-icon {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
}
.bl-main > section .bl-icon-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
}
.bl-icon-close:before {
  /*content: "\e005";*/
}
.bl-content, div.bl-panel-items > div > div {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  overflow: hidden;
  overflow-y: auto;
  top: 0px;
  left: 0px;
  bottom: 0px;
  padding: 20px;
  width: 100%;
}
/* Custom content */
.bl-content p {
  margin: 0 auto;
  padding-bottom: 15px;
  font-size: 1.7em;
  line-height: 1.8;
}
.bl-content h2 {
  font-size: 3em;
  font-weight: 300;
  margin: 0 0 20px 0;
  color: white;
}
.bl-content article {
  padding: 20px 40px 20px 0px;
}
.bl-content article h3 {
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  padding-top: 20px;
  font-size: 1.4em;
}
.bl-content article a {
  color: rgba(0, 0, 0, 0.2);
}
.bl-content > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bl-content > ul li {
  display: inline-block;
  width: 20%;
  margin: 1%;
}
.bl-content > ul li a {
  display: block;
  padding: 0;
  border: 8px solid rgba(0, 0, 0, 0.1);
}
.bl-content > ul li a img {
  display: block;
  max-width: 100%;
}
/* Panel Items */
div.bl-panel-items, div.bl-panel-items > div {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
div.bl-panel-items > div > div {
  margin: 0 auto;
  opacity: 1;
  pointer-events: auto;
  overscroll-behavior-y: contain;
}
div.bl-panel-items > div > div h3 {
  font-size: 2.4em;
  font-weight: 400;
  margin: 0 0 20px 0;
  color: white;
}
div.bl-panel-items > div > div p {
  font-size: 1.3em;
}
div.bl-panel-items > div > div img {
  margin-bottom: 10px;
  max-width: 100%;
  align-items: center;
}
div.bl-panel-items {
  top: 100%;
  z-index: -9999;
  color: white;
}
div.bl-panel-items.bl-panel-items-show {
	position: fixed;
	z-index: 9999;
}
div.bl-panel-items a {
  color: white;
  text-decoration: underline;
}
div.bl-panel-items > div {
  background: #3ba5db;
  text-align: left;
  z-index: 0;
  opacity: 0;
  /*-webkit-transform: translateY(0);
  -webkit-transition: -webkit-transform 0.5s ease-in-out, opacity 0s linear 0.5s;
  -moz-transform: translateY(0);
  -moz-transition: -moz-transform 0.5s ease-in-out, opacity 0s linear 0.5s;
  transform: translateY(0);
  transition: transform 0.5s ease-in-out, opacity 0s linear 0.5s;
  -ms-transform: translateY(0);*/
}
div.bl-panel-items nav {
  position: absolute;
  z-index: 9999;
  bottom: 191%;
  right: 25px;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out 0.5s;
  -moz-transition: opacity 0.2s ease-in-out 0.5s;
  transition: opacity 0.2s ease-in-out 0.5s;
}
div.bl-panel-items ul {
	margin-right: 40px;
}
div.bl-panel-items li {
  line-height: 30px;
}
div.bl-panel-items.bl-panel-items-show nav span {
  float: left;
  margin: 5px;
  /*font-size: 2em;*/
  cursor: pointer;
}
div.bl-panel-items nav span.bl-next-work {
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  text-transform: uppercase;
  line-height: 2em;
  cursor: pointer;
  margin-right: 2em;
}
div.bl-panel-items.bl-panel-items-show nav {
  opacity: 1;
}
div.bl-panel-items.bl-panel-items-show nav i {
	font-size: 1.8em;
}
div.bl-panel-items > div.bl-show-work {
  z-index: 1000;
  opacity: 1;
  -webkit-transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  -moz-transform: translateY(-100%);
  -moz-transition: -moz-transform 0.5s ease-in-out;
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
  -ms-transform: translateY(-100%);
}
div.bl-panel-items > div.bl-hide-current-work {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  -webkit-transform: translateY(-100%) scale(0.5);
  -moz-transition: -moz-transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  -moz-transform: translateY(-100%) scale(0.5);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  transform: translateY(-100%) scale(0.5);
  -ms-transform: translateY(-100%) scale(0.5);
  z-index: 0;
}
/* Transition classes and properties */
/* Separated for a better overview and control */
.bl-main > section {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.bl-main > section.bl-expand {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.bl-main > section.bl-expand-top {
  z-index: 100;
}
div.bl-panel-items > div:nth-child(1) {
  background: #EA4C88;
  background-image: url("../img/joblist/pink.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
div.bl-panel-items > div:nth-child(2) {
  background: #EABE4C;
  background-image: url("../img/joblist/yellow.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
div.bl-panel-items > div:nth-child(3) {
  background: #924CEA;
  background-image: url("../img/joblist/purple.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
div.bl-panel-items > div:nth-child(4) {
  background: #EA684C;
  background-image: url("../img/joblist/red.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
div.bl-panel-items > div:nth-child(5) {
  background: #4F4CEA;
  background-image: url("../img/joblist/blue.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
div.bl-panel-items > div:nth-child(6) {
  background: #EABE4C;
  background-image: url("../img/joblist/yellow.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
.bl-main.bl-expand-item > section:not(.bl-expand), .bl-main.bl-expand-item > section.bl-scale-down {
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
}
.bl-box {
  -webkit-transition: opacity 0.2s linear 0.5s;
  -moz-transition: opacity 0.2s linear 0.5s;
  transition: opacity 0.2s linear 0.5s;
}
section.bl-expand .bl-box {
  opacity: 0;
  -webkit-transition: opacity 0s linear;
  -moz-transition: opacity 0s linear;
  transition: opacity 0s linear;
}
.bl-box h2 {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.no-touch section:not(.bl-expand) .bl-box:hover h2 {
  -webkit-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
}
.bl-content, .bl-icon-close {
  -webkit-transition: opacity 0.1s linear 0s;
  -moz-transition: opacity 0.1s linear 0s;
  transition: opacity 0.1s linear 0s;
}
section.bl-expand .bl-content, section.bl-expand .bl-icon-close {
  pointer-events: auto;
  opacity: 1;
  -webkit-transition: opacity 0.3s linear 0.5s;
  -moz-transition: opacity 0.3s linear 0.5s;
  transition: opacity 0.3s linear 0.5s;
}
@media screen and (max-width: 46.5em) {
  .bl-content, .bl-box {
    font-size: 75%;
  }
  .bl-expand .bl-box {
    height: 130px;
  }
  .bl-content > ul li {
    width: 40%;
  }
}
.require {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 120px;
  height: 120px;
  margin: 20px;
  padding: 20px;
  float: left;
  text-align: center;
}
.require span {
  display: inline-block;
  font-weight: 700;
}
@media screen and (max-width: 519px) {
  .require {
    width: 90px;
    height: 90px;
    margin: 10px 12px;
    padding: 16px;
  }
  .require img {
    height: 40px;
  }
  .require span {
    font-size: 13px;
  }
}
/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
#contactUs {
  width: 100%;
  padding: 120px 0px 30px 0px;
  background-color: #EDFAFF;
}
#contactUs h1 {
  margin-bottom: 20px;
}
#contactUs .row {
  justify-content: space-between;
}
#contactUs .method {
  margin-bottom: 60px;
}
#contactUs .method img {
  float: left;
}
#contactUs .methodDesc {
  margin-left: 60px;
}
#contactUs .methodDesc a {
  color: #212427;
}
@media (max-width: 992px) {
  #contactUs .contactInput {
    text-align: center
  }
  #contactUs .contactMethods {
    margin-top: 60px;
  }
  #contactUs .row {
    justify-content: center;
  }
}
#contactUs .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
#contactUs .php-email-form .error-message br + br {
  margin-top: 25px;
}
#contactUs .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
#contactUs .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
#contactUs .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;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
#contactUs .php-email-form input, #contact .php-email-form textarea {
  border-radius: 10px;
  box-shadow: none;
  font-size: 14px;
}
#contactUs .php-email-form input:focus, #contact .php-email-form textarea:focus {
  border-color: #007bff;
}
#contactUs .php-email-form input {
  padding: 10px 15px;
}
#contactUs .php-email-form textarea {
  padding: 12px 15px;
  border-radius: 10px;
}
#contactUs .php-email-form button[type=submit] {
  background: #FF8A00;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
  margin-top: 20px;
}
#contactUs .php-email-form button[type=submit]:hover {
  background: #3EC6F3;
  cursor: pointer;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.overlay1 {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  color: white;
  background-image: url("../img/System engineer bg.png");
}
.overlay2 {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  color: white;
  background-image: url("../img/Full stack developer bg.png");
}
.overlay-content {
  position: relative;
  top: 20px;
  width: 100%;
  text-align: left;
  margin-top: 30px;
  padding-left: 45px;
}
.overlay-content h1 {
  color: white;
  margin-bottom: 38px;
}
.closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  color: white;
  z-index: 99;
}
.icons {
  margin-left: 0;
  margin-bottom: 38px;
}
.iconBox {
  background-color: rgba(0, 0, 0, 0.1);
  margin-right: 30px;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
}
.iconBox h6 {
  padding-top: 10px;
  margin-bottom: 0;
}
.jobReq, .jobQua {
  margin-bottom: 38px;
}
/*--------------------------------------------------------------
# Product 1
--------------------------------------------------------------*/
#product_1 {
  width: 100%;
  padding: 80px 0px 40px 0px;
}
#product_1 .product_header {
  background-image: url("../img/products/product_header_img1.png");
  height: 358px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#product_1 .product_desc {
  margin-top: 50px;
}
#product_1 .product_img1 {
  margin-top: 100px;
}
#product_1 .product_img2 {
  margin-top: 100px;
}
#product_1 .product_tech {
  margin-top: 100px;
}
#product_1 .product_problem {
  margin-top: 100px;
}
#product_1 .product_result {
  margin-top: 100px;
}
#product_1 .btn-next {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: table;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 40px auto;
  color: #fff;
  background: #FF8A00;
}
#product_1 .btn-next:hover {
  background: #3EC6F3;
  color: #fff;
}
/*--------------------------------------------------------------
# Product 2
--------------------------------------------------------------*/
#product_2 {
  width: 100%;
  padding: 80px 0px 40px 0px;
}
#product_2 .product_header {
  background-image: url("../img/products/product_header_img2.png");
  height: 358px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#product_2 .product_desc {
  margin-top: 50px;
}
#product_2 .product_img1 {
  margin-top: 100px;
}
#product_2 .product_img2 {
  margin-top: 100px;
}
#product_2 .product_tech {
  margin-top: 100px;
}
#product_2 .product_problem {
  margin-top: 100px;
}
#product_2 .product_result {
  margin-top: 100px;
}
#product_2 .btn-next {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: table;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 40px auto;
  color: #fff;
  background: #FF8A00;
}
#product_2 .btn-next:hover {
  background: #3EC6F3;
  color: #fff;
}
/*--------------------------------------------------------------
# Product 3
--------------------------------------------------------------*/
#product_3 {
  width: 100%;
  padding: 80px 0px 40px 0px;
}
#product_3 .product_header {
  background-image: url("../img/products/product_header_img3.png");
  height: 358px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#product_3 .product_desc {
  margin-top: 50px;
}
#product_3 .product_img1 {
  margin-top: 100px;
}
#product_3 .product_img2 {
  margin-top: 100px;
}
#product_3 .product_tech {
  margin-top: 100px;
}
#product_3 .product_problem {
  margin-top: 100px;
}
#product_3 .product_result {
  margin-top: 100px;
}
#product_3 .btn-next {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: table;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 40px auto;
  color: #fff;
  background: #FF8A00;
}
#product_3 .btn-next:hover {
  background: #3EC6F3;
  color: #fff;
}