/**
* Template Name: BizLand - v3.7.0
* Template URL: https://bootstrapmade.com/bizland-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Poppins', sans-serif;
  color: #444444;
}

a {
  color: #25c0d5;
  text-decoration: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

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

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

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #25c0d5;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  /*box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);*/
}
#header.fixed-top {
  height: 70px;
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}
#header .logo a {
  color: #222222;
}
#header .logo a span {
  color: #25c0d5;
}
#header .logo img {
  max-height: 80px;
}

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

/*--------------------------------------------------------------
# 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 > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  font-size: 20px;
  font-weight: 500;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: none;
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #25c0d5;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #25c0d5;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 7px 20px;
  font-weight: 400;
  font-size: 16px;
}
.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: #25c0d5;
}
.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: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

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

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #25c0d5;
}
.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: #25c0d5;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}





.banner-sec .row, .wht-sec .row {
    display: flex;
    align-items: center;
}
.banner-sec .banner-cnt{
  padding: 120px 0;
}
.banner-sec h2 {
    font-size: 34px;
    line-height: 48px;
    margin-bottom: 20px;
    color: #000;
}
.banner-sec h2 span {
    color: #25c0d5;
    display: inline-block;
}

.banner-sec p {
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 20px;
}
.bnr-btn a {
    display: inline-block;
    padding: 15px 30px;
    font-size: 22px;
    border-radius: 35px;
    background-color: #25c0d5;
    color: #fff;
    text-transform: uppercase;
  transition-duration: 0.5s;
}

.bnr-btn a:hover{
  background-color: #000;
  transition-duration: 0.5s;
}

.banner-sec img{
  display: block;
  width: 100%;
}


.wht-sec{
  background-color: #f5f9ff;
  padding: 40px 0;
}

.wht-sec img {
    display: block;
    width: 100%;
}
.wht-sec h2{
  font-size: 38px;
  color: #25c0d5;
  margin-bottom: 20px;
}

.wht-sec p{
  font-size: 17px;
  line-height: 26px;
}

.wht-cnt{
  padding-left: 40px;
}

.wht-cnt p:last-child{
  font-style: italic;
  color: #000;
  font-size: 18px;
}


.prdct-sec {
    padding: 60px 0;
}
.prdct-sec h2 {
    font-size: 42px;
    line-height: 54px;
    margin-bottom: 30px;
}

.prdct-sec .prdct-cnt{
  padding: 20px;
  border: 2px solid #f1f1f1;
  border-radius: 5px;
  min-height: 270px;
}
.prdct-sec h3{
  color: #25c0d5;
  margin-bottom: 20px;
}
.prdct-sec p{
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}
.prdct-sec a{
  display: inline-block;
  padding: 15px 40px;
  text-transform: uppercase;
  background-color: #25c0d5;
  color: #fff;
  border-radius: 30px;
}

.prdct-btn{
  text-align: left;
}

.prdct-btn a{
  display: inline-block;
  padding: 10px 30px;
  border-radius: 25px;
}

.smart-sec{
  padding: 80px 0;
  background-color: #25c0d5;
}

.smart-sec h3{
  color: #fff;
  font-size: 34px;
  line-height: 44px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.smart-sec .smart-btn{
  display: inline-block;
  width: 100%;
  display: inline-block;
  text-align: center;
}
.smart-sec .smart-btn a{
  display: inline-block;
  background-color: #fff;
  color: #25c0d5;
  font-size: 20px;
  text-transform: uppercase;
  border-radius: 35px;
  padding: 20px 30px;
  font-weight: 500;
  transition-duration: 0.5s;
}

.smart-sec .smart-btn a:hover{
  background-color: #000;
  color: #fff;
  transition-duration: 0.5s;
}

.blog-sec{
    display: none!important;
  padding: 40px 0;
}

.blog-sec h2{
  margin-bottom: 30px;
  font-size: 36px;
  line-height: 48px;
}

.blog-sec .blog-cnt{
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 30px;
}
.blog-sec .blog-cnt img{
  display: block;
  width: 100%;
}
.blog-sec .blog-cnt .blog-desc{
  padding: 20px;
}
.blog-sec .blog-cnt .blog-desc span{
  color: #999;
  margin-bottom: 15px;
  display: inline-table;
}
.blog-sec .blog-cnt .blog-desc h3{
  font-size: 22px;
  margin-bottom: 20px;
}
.blog-sec .blog-cnt .blog-desc p{
  margin-bottom: 20px;
}


.blog-btn a{
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  background-color: #25c0d5;
  padding: 15px 30px;
  border-radius: 35px;
  display: inline-block;
  transition-duration: 0.5s;
}
.blog-btn a:hover{
  transition-duration: 0.5s;
  background-color: #000;
}

#footer{
  padding: 60px 0 30px;
  background-color: #f5f9ff;
}
#footer ul{
  padding: 0;
}
#footer ul li{
  list-style: none;
  padding: 5px 0;
  display: inline-block;
  width: 100%;
}
#footer ul li a{
  color: #6a6969;
  font-size: 15px;
}

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

.ftr-form input {
    padding: 15px 20px;
    border-radius: 30px;
    border: navajowhite;
    margin-bottom: 15px;
    color: #bebebe;
}

.ftr-form input[type=submit] {
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
    background-color: #25c0d5;
    display: inline-block;
    margin-bottom: 0;
}

.ftr-bottom .copyright{
  border-top: 1px solid #c4c7cc;
}





.inner-banner {
    padding: 80px 0;
    background-color: #f5f9ff;
    background-image: url(../img/innerbanner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.inner-banner img{display:none;}
.inner-banner .row{
  display: flex;
  align-items: center;
}
.inner-banner h2{
  font-size: 48px;
  color: #fff;
}
.inner-banner p{
  font-size: 16px;
  line-height: 28px;
}


.vision-sec{
  padding: 30px 0;
  background-color: #f1f1f1;
}
.vision-sec h4{
  font-size: 26px;
  color: #000;
  line-height: 32px;
}
.vision-sec p{
  font-size: 18px;
  color: #000;
}

.team-sec{
  padding: 40px 0;
}

.team-sec h2{
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}

.team-img{
  margin-bottom: 20px;
  border-radius: 100%;
}
.team-img img{
  border-radius: 100%;
  border: 1px solid #f1f1f1;
  display: block;
  width: 90%;
  margin:  0 auto;
}
.team-sec h4{
  font-size: 18px;
  margin-bottom: 10px;
}
.team-sec span {
    font-size: 13px;
    line-height: 20px;
    min-height: 100px;
    display: inline-block;
}

.add-sec {
    padding: 60px 0 20px;
}
.loc-title h3 {
    border-bottom: 1px solid #cfcfcf;
    padding-bottom: 10px;
    margin-bottom: 25px;
}
.add-cnt {
    padding: 0 30px;
}

.add-cnt p {
    margin-bottom: 0;
}

.add-cnt h4 {
    color: #25c0d5;
    font-size: 20px;
}

.cntct-form{
  padding: 40px;
}
.cntct-form h2{
  font-size: 26px;
  margin-bottom: 20px;
}
.cntct-form input, .cntct-form textarea{
  width: 100%;
  padding: 10px 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
}
.cntct-form textarea{
  height: 150px;
}
.cntct-form input:focus-visible, .cntct-form textarea:focus-visible{
  outline: none;
}
.cntct-form input[type=submit]{
  background-color: #25c0d5;
  text-transform: uppercase;
  color: #fff;
  font-size: 18px;
  border-radius: 25px;
}


.form-sec{
  padding: 40px 0 60px;
}
.form-inr-cnt {
    margin: 0 50px;
    
}
.form-inr-cnt .cntct-form{
    box-shadow: 0px 0px 25px 10px #cdcdcd;
}

.form-inr-cnt img{
  display: block;
  width: 100%;
}

.color-bg{
  background-color: #f5f9ff;
}

.prdct-sec{
  padding: 60px 0 40px;
}

.prdct-sec h2 {
    color: #000000;
    margin-bottom: 30px;
    font-size: 48px;
    line-height: 53px;
}

.prdct-sec sup {
    font-size: 16px;
    top: -20px;
}

.color-bg-dark{
  background-color: #25c0d5;
}

.prdct-list-title{
  text-align: center;
  color: #fff!important;
}

.prdct-sec ul{
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}
.prdct-sec ul li{
  color: #fff;
  font-size: 18px;
  padding: 5px 0 5px 30px;
  list-style: none;

}
.prdct-sec img {
    display: block;
    width: 100%;
}


/*Landing CSS*/
.land-logo{
  margin-bottom: 10px;
}
.land-sec{
  background-color: #f2f2f2;
  min-height: 100vh;
}

.land-cnt img{
  display: block;
  width: 100%;
}

.land-sec .land-box{
  background-color: #fff;
  padding:20px;
  text-align: center;
}

.land-sec .land-box .land-img{
  margin-bottom: 0px;
}
.land-sec .land-box h2{
  font-family: 'Rubik', sans-serif;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 400;
}

.land-sec .land-box p{
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.land-sec .land-box .land-btn{
  display: inline-block;
  width: 100%;
  text-align: center;
}
.land-sec .land-box .land-btn a{
  text-transform: uppercase;
  padding: 15px 30px;
  background-color: #25c0d8;
  color: #fff;
  display: inline-block;
}

.digital a{
  background-color: #4941a2!important;
}

.serv-page{
  padding: 60px 0 20px;
}

.serv-page .serv-cnt h2{
  margin-bottom: 20px;
  color: #25c0d8;
}

.serv-page img{
  display: block;
  width: 100%;
}

.serv-page .serv-cnt ul li {
    list-style: none;
    padding-left: 35px;
    /* background-image: url(../img/arrow-light.png); */
    margin-bottom: 15px;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: top 3px left;
    position: relative;
}

.serv-page .serv-cnt ul li:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 3px;
    background-color: #3ec7d9;
    top: 10px;
    left: 0;
}

/*.serv-page .serv-cnt:nth-child(2) ul li{
  background-image: url(../img/arrow-dark.png);
}*/

.solution-page{
  padding: 80px 0;
}

.value-sec{
  padding-bottom: 40px;
}

.value-sec .value-box .value-cnt {
    padding: 80px 15px 15px;
    min-height: 290px;
    margin-bottom: 20px;
    position: relative;
}

.value-sec .value-box:nth-child(1) .value-cnt{
  background-color: #d9d9d9;
}

.value-sec .value-box:nth-child(2) .value-cnt{
  background-color: #ddd9c3;
}

.value-sec .value-box:nth-child(3) .value-cnt{
  background-color: #b7dee8;
}

.value-sec .value-box:nth-child(4) .value-cnt{
  background-color: #ccc1da;
}

.value-sec .value-box h3{
  margin-bottom: 10px;
  text-align: center;
  font-weight: 400;
}

.value-sec .value-box ul li{
  margin-bottom: 5px;
}

.value-sec .value-box .value-cnt p {
    position: absolute;
    top: 15px;
    left: 0px;
    padding: 7px 10px 7px 20px;
    background-color: #eeeeee;
}

.value-sec .value-box .value-cnt p:after {
    content: '';
    position: absolute;
    right: -24px;
    top: 0;
    width: 30px;
    height: 38px;
    background-image: url(../img/val-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.solution-page .sec-title h2{
  font-size: 48px;
  margin-bottom: 30px;
}

.domain-sec{
  padding: 60px 0;
  background-color: #f5f9ff;
}

.domain-sec .domain-cnt{
  padding: 0 30px;
  margin-bottom: 20px;
}

.domain-sec .domain-cnt h3{
  color: #25c0d8;
  margin-bottom: 20px;
}

.domain-sec .domain-cnt p{
  margin-bottom: 20px;
}

.domain-sec .domain-cnt a{
  font-size: 15px;
  color: #fff;
  padding: 10px 25px;
  background-color: #25c0d8;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 20px;
  font-weight: 600;
}

.product-page .prdct-sec ul li {
    background-image: url(../img/arrow-white.png);
    background-repeat: no-repeat;
    background-position: top 10px left;
    background-size: 18px;
}

.product-page .prdct-btn{
  text-align: center;
}
.product-page .prdct-btn a{
  background-color: #fff;
  color: #25c0d8;
}

.value-sec .value-box .value-cnt ul li {
    padding-left: 0;
    position: relative;
    list-style: none;
    font-size: 13px;
}

.value-sec .value-box .value-cnt ul {
    padding: 0;
    display: inline-block;
}

.value-sec .value-box .value-cnt ul li:after {
    content: '';
    position: absolute;
    width: 4px;
    height: 2px;
    background-color: #000;
    left: -10px;
    top: 12px;
}

.sol-head h2 {
    margin: 0;
    color: #fff;
    font-size: 48px;
}

.sol-head {
    padding: 80px 0;
    background-color: #f5f9ff;
    background-image: url(../img/innerbanner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.sol-head img{display:none;}

.sol-img{
  padding: 30px 0;
}

.sol-img img{
  display: block;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .land-box{margin-bottom: 30px;}
  .banner-sec .banner-cnt {padding: 40px 0;}
  .prdct-sec .prdct-cnt {margin-bottom: 20px;}
  .ftr-form input {width: 100%;display: inline-block;}
  .bnr-btn a{padding: 10px 24px;font-size: 16px;}
  .prdct-sec h2{font-size: 36px;margin-bottom: 15px;}
  .solution-page .sec-title h2{font-size: 32px;}
  .form-inr-cnt{margin: 0 15px;}
  .cntct-form{padding: 25px;}
}

.banner-sec{
    padding: 100px 0;
}

.domain-sec .domain-cnt img {
    max-width: 95px;
    margin-bottom: 10px;
    padding: 10px;
    opacity: 0.7;
    transition-duration: 0.5s;
}

.domain-sec .domain-cnt:hover img{
    background-color: #25c0d8;
    opacity: 1;
    transition-duration: 0.5s;
}




.popup{
    margin: auto;
    text-align: center
}
.popup img{
    cursor: pointer
}
.show {
    z-index: 999;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.show .overlay{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.66);
    position: absolute;
    top: 0;
    left: 0;
}
.show .img-show {
    width: 100%;
    max-width: 1200px;
    height: auto;
    background: #FFF;
    position: absolute;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 50%;
    transform: translate(0%,-50%);
}
.img-show span{
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 99;
    cursor: pointer;
}
.img-show img {
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
}


.team-sec a {
    background-color: #25c0d5;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
}

.team-sec {
    padding: 40px 0;
}



/*Careers*/
.career-sec form{margin-bottom: 30px;}
.career-sec form .form-control {
    height: 50px;
    border: 1px solid #dde6ef;
    margin-bottom: 10px;
    box-shadow: none;
    border-radius: 0;
    background: #fbfdff;
    font-size: 15px;
    color: #445461;
    font-weight: 400;
}

.career-sec form button:hover {
    background-color: #25c0d5;
    border-color: #25c0d5;
}
.career-sec form button {
    width: 100%;
    padding: 11px 0;
    background-color: #25c0d5;
    border: 1px solid #25c0d5;
    color: #fff;
}
.widget h4 {
    margin-bottom: 18px;
}
.widget input {
    width: 100%;
    padding: 10px 5px;
    margin-bottom: 15px;
    border-radius: 3px;
    border: 1px solid #8b8b8b;
    font-size: 15px;
}
.widget ul{padding: 0;}
.widget ul li input {
    display: inline-block;
    width: auto;
    margin-right: 10px;
}

.widget ul li {
    list-style: none;
}

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

ul.job-list > li.job-preview {
  background: #fff;
  border: 1px solid #d7e2e9;
  -webkit-border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  border-radius: 0.4rem;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  float: left;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

ul.job-list > li.job-preview:hover {
  cursor: pointer;
  -webkit-box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  -moz-box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}
.job-content h6 {
    color: #25c0d5;
}
.job-content a{
    border: 1px solid #444;
    padding: 10px 25px;
    display: inline-block;
    border-radius: 30px;
    background-color: #444;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}
.job-content a:hover{background-color: transparent; color: #444;}
.job-btn a {
    border: 1px solid #25c0d5;
    padding: 10px 25px;
    display: inline-block;
    border-radius: 30px;
    background-color: #25c0d5;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}
.job-btn a:hover{background-color: transparent; color: #25c0d5;}
.btn-apply {
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 1px;
  background-color: transparent;
  color:  #393a5f;
  border: 2px solid #393a5f;
  padding: 0.6rem 2rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  border-radius: 2rem;
}

.btn-apply:hover {
  background-color: #393a5f;
  color:  #fff;
  border: 2px solid #393a5f;
}

@media (max-width: 575px) {
  .job-preview .content {
    width: 100%;
  }
}

.inner-banner p{color: #fff;}

.custom-model-main {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
}

.model-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}
.custom-model-inner {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  margin: 30px auto;
  max-width: 850px;
}
.custom-model-inner img{
  display: block;
  width: 100%;
}
.custom-model-wrap {
  display: block;
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.model-open .custom-model-inner {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
}
.model-open .bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}
.bg-overlay {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
}
.close-btn {
  position: absolute;
  right: 0;
  top: -30px;
  cursor: pointer;
  z-index: 99;
  font-size: 30px;
  color: #fff;
}

@media screen and (min-width:800px){
  .custom-model-main:before {
    content: "";
    display: inline-block;
    height: auto;
    vertical-align: middle;
    margin-right: -0px;
    height: 100%;
  }
}
@media screen and (max-width:799px){
  .custom-model-inner{margin-top: 45px;}
}

.career-cnt{padding: 40px 0;}

.career-cnt figure img{display: block; width: 100%;}
.career-job {
    padding: 50px 0 0;
}
.career-job h3 {
    color: #25c0d5;
    margin-bottom: 40px;
}
.filter-form {
    margin-bottom: 30px;
    display: flex;
}
.filter-form input {
    width: 28%;
    padding: 10px;
    margin-right: 2%;
}
.filter-form button {
    width: 10%;
    border: none;
    color: #fff;
    background-color: #25c0d5;
}
.career-job h2 {
    font-weight: 400;
    margin-bottom: 40px;
}
.job-post-box {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.job-card {
    width: 43%;
    margin-right: 2%;
    min-height: 280px;
    padding: 20px;
    box-shadow: 0 0 18px 0px rgb(0 0 0 / 20%);
    position: relative;
}
.job-com{    
    background-image: url(../img/card1-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    text-align: left;
}
.job-com figure, .job-com figure img {
    display: inline-block;
    width: auto;
}
.job-loc {
    background-image: url(../img/card2-2.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto;
}
.job-loc:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../img/card2-1.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: auto;
    top: 0;
    left: 0;
    z-index: -1;
}
.job-details-btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
}
.job-details{
    margin-left: 140px;
}
.job-details h4{
    color: #444;
    font-size: 24px;
    font-weight: 500;
}
.job-details h5{
    font-weight: 500;
    color: #25c0d5;
}
.job-details-btn a {
    padding: 10px 30px;
    background-color: #25c0d5;
    color: #fff!important;
    border-radius: 30px;
    box-shadow: 5px 5px 5px 1px #00000047;
    text-transform: uppercase;
}
.job-details-btn a:hover{
    cursor: pointer;
}
.job-btn{
    width: 10%;
}
.job-btn button{
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background-color: #25c0d5;
    color: #fff;
    border-radius: 30px;
    box-shadow: 5px 5px 5px 1px #00000047;
    border: none;
    text-transform: uppercase;
}

.career-join-sec {
    padding: 70px 0;
    text-align: center;
}
.career-join-sec h3 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 30px;
}
.career-join-sec a {
    background-color: #fff;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 40px;
    font-size: 22px;
}

/* POPUP Styles */

.custom-model-main {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
}

.model-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}
.custom-model-inner {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 800px;
  margin: 30px auto;
  max-width: 97%;
}
.custom-model-wrap {
  display: block;
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
	overflow-y: auto;
}
.model-open .custom-model-inner {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
}
.model-open .bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}
.bg-overlay {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
}
.close-btn {
    position: absolute;
    right: 20px;
    top: 10px;
    cursor: pointer;
    z-index: 99;
    font-size: 30px;
    color: #fff;
    background-color: #25c0d8;
    padding: 0 15px;
    line-height: 45px;
    border-radius: 5px;
}

@media screen and (min-width:800px){
	.custom-model-main:before {
	  content: "";
	  display: inline-block;
	  height: auto;
	  vertical-align: middle;
	  margin-right: -0px;
	  height: 100%;
	}
}
@media screen and (max-width:799px){
  .custom-model-inner{margin-top: 45px;}
}

.job-content h3 span {
    color: #000;
    font-size: 16px;
    font-weight: 300;
}

.job-content h3 {
    font-size: 17px;
    margin-bottom: 20px;
    color: #25c0d5;
}

.custom-model-wrap::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.custom-model-wrap::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

.custom-model-wrap::-webkit-scrollbar-thumb
{
	background-color: #25c0d5;
}

.apply-btn a {
    background-color: #25c0d8;
    border: none;
    color: #fff!important;
}

.apply-btn a:hover {
    background-color: #25c0d8;
    cursor: pointer;
}

.job-content form input, .job-content form textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid #e3e3e3;
}

.job-content form .btn {
    background-color: #25c0d8;
    border: none;
    color: #fff!important;
    padding: 12px 30px;
    border-radius: 30px;
}

@media screen and (max-width:799px){
    .custom-model-inner{
        width: 100%;
    }
    .job-post-box {
        display: block;
    }
    .job-post-box .job-card, .job-post-box .job-btn {
        width: 100%;
        margin-bottom: 20px;
    }
    .job-details{
        margin: 0!important;
    }
}