@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,200;6..12,300;6..12,400;6..12,500;6..12,600;6..12,700;6..12,800;6..12,900;6..12,1000&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul{
  margin: 0;
  padding: 0;
  list-style-type: none;
}
body{
  font-family: 'Nunito Sans', sans-serif;
}
a{
  text-decoration: none;
  transition: all 0.5s ease;
}
a:hover{
  color: #15DAE8!important;
}
p{
  color: #1e272e;
  font-size: 16px;
  font-weight: 500;
}
.header{
  border-top: 5px solid #15DAE8;
  position: relative;
  background-color: #fff;
  padding: 0 8%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
}
.main-header.header-sticky .header {
  position: fixed;
  width: 100%;
  top: 0;
  box-shadow: 0px 7px 18px rgb(24 16 16 / 5%);
  animation: sticky 1s;
  z-index: 999;
  /*background: rgba(0, 0, 0, 1);*/
  border-top:transparent;
}
@keyframes sticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.logo img{
  width: 150px;
}
.navbar{
  position: unset;
}
.navbar ul{
  list-style: none;
}
.navbar>ul{
  display: flex;
  flex-direction: row;
}
.navbar ul li{
  position: relative;
}
.navbar ul li a{
  position: relative;
  display: block;
  color: #1e272e;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  padding: 22px 20px;
  letter-spacing: 0.5px;
  transition: all 0.5s;
}
.navbar ul li a.active ,.navbar ul li a:hover{
  color: #15DAE8;
}
.ser-btn ul{
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  gap: 20px;
}
.ser-btn ul li a{
  text-decoration: none;
}
.ser-btn #ser-btn-icon{
  display: inline-block;
  font-size: 28px;
  color: #fff;
  font-weight: 700;
}
.ser-btn .enquiry-btn a{
  padding: 10px 15px;
  color: #fff;
  font-size: 15px;
  display: block;
  background-color: #0093FF;
  border: 2px solid #0093FF;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.5s;
}
.ser-btn .enquiry-btn a:hover{
  color: #152733;
  background-color: #fff;
  border: 2px solid #152733;
}
.ser-btn{
  display: none;
}
.down-arrow{
  position: absolute;
  right: 0;
  top: 25px;
  display: inline-block;
  font-size: 15px;
}
.navbar ul ul li a .down-arrow{
  display: block;
  position: absolute;
  right: 10px;
  top: 8px;
}
@media(min-width:992px){
  .navbar ul li ul{
    position: absolute;
    /*border-top: 3px solid #0093ff;*/
    list-style: none;
    min-width: 215px;
    background-color: #ffffff;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 20%);
    transition: all 0.3s;
    transform: translateY(20px);
    visibility: hidden;
    opacity: 0;
  }
  .navbar ul>li:hover>ul{
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .navbar ul ul li{
    position: relative;
  }
  .navbar ul ul li a{
    display: block;
    color: #1e272e;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 10px;
    line-height: 1.8rem;
    border-bottom: 1px solid #ddd;
    transition: all 0.5s;
    position: relative;
  }
  /*.navbar ul ul li a:after{
    position: absolute;
    font-family: "fontawesome";
    content: "\f061";
    right: 10px;
    opacity: 0;
  }*/
  .navbar ul ul li a:hover::after{
    opacity: 1;
  }
  .navbar ul ul li a:hover{
    color: #15DAE8;
   /* background-color: #15DAE8;*/
    padding-left: 25px;
  }
  .navbar ul li ul ul{
    position: absolute;
    left: 100%;
    top: 0;
  }

}

@media(max-width:1200px){
  .logo a{
    font-size: 20px;

  }
  .navbar ul li a{
    font-size: 15px;
    padding: 22px 16px;
  }
  .ser-btn .enquiry-btn{
    padding: 10px 3px;
    font-size: 12px;

  }
}

@media(max-width:992px){
  .navbar>ul{
    position: absolute;
    background-color: #1e272e;
    left: 0;
    right: 0;
    top: 60px;
    width: 90%;
    margin: auto;
    flex-direction: column;
    border-top: 8px solid #15DAE8;

  }
  .header{
    height: 90px;
  }
  .ser-btn .enquiry-btn{
    display: none;
  }
  .ser-btn{
    display: block;
  }
  .ser-btn #bar-icon a{
    color: #15DAE8;
    font-size: 27px;
    padding: 1px 17px;
    border: 2px solid #15DAE8;
  }
  .logo a{
    font-size: 30px;
    font-weight: 800;
  }
  .navbar ul li {
    border-top: 1px solid #15DAE8;
  }
  .navbar ul li a{
    padding: 15px 16px;
    color: #15DAE8;
  }
  .navbar ul li>ul{
    background-color: #1e272e;
  }
  .navbar ul li>ul li a{
    font-size: 13px;
    padding: 10px 25px;
    position: relative;
    padding-left: 50px;
  }
  .navbar ul li>ul li a:before{
    position: absolute;
    content: "\f061";
    font-family:fontawesome;
    left: 30px;
  }
  .navbar ul ul li a .down-arrow{
    font-size: 18px;
    transform: rotate(0deg);
  }
  .navbar ul li a .down-arrow{
    right: 10px;
    top: 19px;
    font-size: 16px;
  }
  .navbar ul li ul li>ul{
    background-color: #0162cA;
  }

  #menu{
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
  }
  #menu.show{
    overflow-y: scroll;
    visibility: visible;
    opacity: 1;
    max-height: 100vh;
  }
  .submenu{
    display: none;
  }
  .submenushow{
    display: block;
  }
}
.banner{
  background-image: url(../../assets/img/banner.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 600px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-container .box{
  width: 300px;
  height: 218px;
  background: #1e272e;
  position: absolute;
  padding: 15px;
  text-align: center;
  transition: all 0.5s ease;
}
.box-container .box:hover{
  background: #f4f4f4;
}
.box-container .box .box-inner{
  border: 2px solid #15DAE8;
  padding: 15px;
}
.box-container .box:hover .box-inner{
  border: 2px solid #1e272e;
}
.box-container .box h4{
  font-size: 26px;
  color: #ffffff;
  font-weight: 700;
}
.box-container .box:hover h4{
  color: #1e272e;
}
.box-container .box p{
  font-size: 15px;
  font-weight: 500;
  color: #dff9fb;
  margin: 0;
}
.box-container .box:hover p{
  color: #1e272e;
}
.box-container .box.box-1{
  top: 20px;
  left: 20px;
}
.box-container .box.box-2{
  top: 20px;
  right: 20px;
}
.box-container .box.box-3{
  bottom: 20px;
  left: 20px;
}
.box-container .box.box-4{
  bottom: 20px;
  right: 20px;
}
.banner-content span{
  font-size: 18px;
  font-weight: 500;
  background: linear-gradient(90deg, rgba(46,213,115,1) 34%, rgba(30, 39, 46, 1) 56%);
  padding: 5px 15px;
  color: #ffffff;
}
.banner-content h2{
  font-size: 40px;
  font-weight: 900;
  color: #ffffff;
  margin-top: 10px;
}
.banner-content p{
  color: #ffffff;
  font-size: 18px;
}
.about{
  padding: 100px 0;
  position: relative;
}
.about-images{
  position: relative;
}
.about-images .img1{
  padding-top: 50px; 
}
.about-images .img2{
  position: absolute;
  top: 0;
  left: 0;
}
.about-images .img3{
  position: absolute;
  top: 0;
  right: 0;
}
.about-content{
  background-color: #ffffff;
  padding: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-top: -50px;
  position: relative;
}
.section-title span{
  font-size: 18px;
  font-weight: 500;
  background: linear-gradient(90deg, rgba(21, 218, 232, 1) 34%, rgba(30, 39, 46, 1) 56%);
  padding: 5px 15px;
  color: #ffffff;
}
.section-title h2{
  font-size: 48px;
  font-weight: 900;
  color: #1e272e;
  margin-top: 10px;
}
.site-btn1{
  padding: 11px 40px;
  display: inline-flex;
  background-color: #15DAE8;
  border: 2px solid #15DAE8;
  color: #fff;
  text-align: center;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  transition: all 0.5s ease-out;
  font-size: 18px;
  overflow: hidden;
  z-index: 2;
}
.site-btn1:before{
  position: absolute;
  left: -20%;
  top: 0;
  height: 100%;
  width: 0;
  content: "";
  background-color: #1e272e;
  z-index: -1;
  transform: skew(45deg);
  transition: all 0.5s ease-out;
}
.site-btn1:hover::before{
  width: 150%;
  transition: all 0.5s ease-out;
}
.services{
  position: relative;
  padding-top: 100px;
}
.service-box{
  padding: 20px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 12px;
  top: 0;
  z-index: 2;
  transition: all 0.5s ease-out;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid #dfe2e9;
}
.service-box .service-box-inner{
  border: 2px solid #15DAE8;
  padding: 30px;
}
.service-box:hover .service-box-inner{
  border: unset;
}
.service-box:before{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  background-color: #1e272e;
  z-index: -1;
  content: "";
  transform: translate(-50%, -50%) rotate(0deg);
  transition: 0.8s;
}
.service-box:hover::before{
  visibility: hidden;
  opacity: 0;
  transition: 0.8s;
}
.service-box .service-btn-wrap{
  text-align: right;
  visibility: hidden;
  opacity: 0;
  margin-right: -30px;
  transition: all 0.5s ease-out;
  transform: translate(-30%, 100%) scale(0.3);
}
.service-box:hover .service-btn-wrap{
  visibility: visible;
  opacity: 1;
  transform: translate(0) scale(1);
  transition: all 0.5s ease-out;
}
.service-box .service-btn-wrap .service-btn{
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #15DAE8;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.5s ease-out;
}
.service-box .service-btn-wrap .service-btn:hover{
  background-color: #130f40;
  transition: all 0.5s ease-out;
}
.service-box .service-btn-wrap .service-btn i{
  transform: rotate(-40deg);
  transition: all 0.5s ease-out;
}
.service-box .service-btn-wrap .service-btn:hover i{
  transform: rotate(0);
  transition: all 0.5s ease-out;
}
.service-box .service-content .services-content-upper{
  display: flex;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: none;
  transition: all 0.6s ease;
  flex-direction: column;
  align-items: start;
}
.service-box .service-content .services-content-upper .icon img{
  width: 70px;
}
.service-box:hover .service-content .services-content-upper .img{
  transform: rotateY(360deg);
  transition: all 0.5s ease-out;
}
.service-box .service-content .services-content-upper .title{
  font-size: 21px;
  font-weight: 500;
  margin: 0;
  transition: all 0.6s ease;
  line-height: 36px;
  color: #ffffff;
}
.service-box .service-content .services-content-lower p{
  color: #ffffff;
  line-height: 26px;
  transition: all 0.6s ease;
  font-size: 18px;
  font-weight: 400;
}
.blog{
  padding: 100px 0;
}
.blog-box{
  transition: all 500ms ease;
    border-radius: 5px;
    box-shadow: 0 6px 25px rgba(12, 89, 219, 0.09);
    background: #fff;
    margin-bottom: 40px;
}
.blog-box .img{
  position: relative;
}
.blog-box .content{
  padding: 35px 35px 35px 35px;
    background: #fff;
}
.blog-box .content h3 a{
  font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 12px;
  color: #002129;
}
.blog-box .blog-meta{
  margin-bottom: 10px;
    display: flex;
}
.blog-box .blog-meta li{
  font-size: 14px;
    color: #454545;
}
.blog-box .blog-meta .admin{
  margin-left: 25px;
}
.blog-box .blog-meta li i{
  color: #15DAE8;
    padding-right: 5px;
}
.blog-box .blog-btn{
  font-size: 16px;
    color: #002129;
    font-weight: 600;
}
.blog-box .blog-btn:hover{
  color: #15DAE8;
}
.footer{
  background-color: #1e272e;
  padding: 40px 0;
}
.footer p{
  color: #ffffff;
}
.footer-nav{
  display: inline-flex;
  gap:40px;
  justify-content: center;
  margin: 20px 0;
}
.footer-nav li{
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}
.footer-nav li a{
  color: #ffffff;
  position: relative;
  border-bottom: 2px solid #15DAE8;
  padding-bottom: 10px;
}
.footer-social{
  display: inline-flex;
  gap:40px;
  justify-content: center;
  margin-top: 40px;
}
.footer-social li a{
  background-color: #15DAE8;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #ffffff;
  transition: all 0.5s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.footer-social li a:hover{
  background-color: #1e272e;
  border: 1px solid #15DAE8;
  transform: translateY(-10px);
}
.footer-bottom{
  background-color: #15DAE8;
  padding: 20px 0;
}
.footer-bottom p{
  color: #ffffff;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 600;
}
.home-bg{
  background-image: url(../../assets/img/home-bg.jpg);
  background-position:center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 20px;
}
.home-bg-inner{
  border: 2px solid #15DAE8;
  padding: 65px 0;
}
.home-bg-content h2{
  font-size: 42px;
  color: #ffffff;
  font-weight: 900;
}
.page-title{
  background-image: url(../../assets/img/pg-title.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
}
.page-title-inner{
  position: relative;
}
.page-title-inner h2{
  color: #ffffff;
  font-size: 44px;
  font-weight: 900;
  text-align: center;
}
.page-title-inner .breadcrumb li{
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
}
.page-title-inner .breadcrumb li a{
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
}
.page-title-inner .breadcrumb .breadcrumb-item+.breadcrumb-item::before{
  color: #ffffff;
  content: "\f178";
  font-family: "fontawesome";
}
.page-title-inner .breadcrumb .breadcrumb-item.active{
  color: #15DAE8;
  font-weight: 600;
}
.testimonial{
  background-color: #f4f4f4;
  padding: 100px 0;
}
.testi-box{
  background-color: #1e272e;
  padding: 20px;
  position: relative;
}
.testi-box-inner{
  border: 2px solid #15DAE8;
  padding: 20px;
}
.testi-box .text p{
  color: #ffffff;
}
.testi-box .tesi-info{
  display: flex;
  gap:20px;
  align-items: center;
  
}
.testi-box .tesi-info .img img{
  width: 85px;
}
.testi-box .tesi-info .content h4{
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
}
.testi-box .tesi-info .content span{
  color: #15DAE8;
  font-size: 16px;
  font-weight: 500;
}
.testi-box .quote{
  position: absolute;
  right: 60px;
  bottom: 40px;
}
.testi-box .quote {
  color: #ffffff;
  font-size: 40px;
  background:#15DAE8; 
  width :60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 10px;
}
.contact{
  padding: 100px 0;
}
.contact-box{
  background: #1e272e;
  padding: 20px;
  transition: all 0.5s ease;
}
.contact-box:hover{
  background: #f4f4f4;
}
.contact-box .contact-box-inner{
  border: 2px solid #15DAE8;
  padding: 20px;
  display: flex;
  align-items: center;
  gap:20px;
  transition: all 0.5s ease;
}
.contact-box:hover .contact-box-inner{
  border: 2px solid #1e272e;
}
.contact-box .contact-box-inner .icon i{
  color: #ffffff;
  font-size: 25px;
  background: #15DAE8;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%
}
.contact-box .contact-box-inner .content h5{
  color: #ffffff;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
}
.contact-box:hover .contact-box-inner .content h5{
  color: #1e272e;
}
.contact-box .contact-box-inner .content p{
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 500;
}
.contact-box .contact-box-inner .content p a{
  color: #ffffff;
}
.contact-box:hover .contact-box-inner .content p{
  color: #1e272e;
}
.contact-box:hover .contact-box-inner .content p a{
  color: #1e272e;
}
.map{
  margin-bottom: -10px;
  position: relative;
}
.contact-form{
  margin-top: -650px;
  position: relative;
  z-index: 3;
  margin-bottom: 84px;
}
.contact-form .contact-form-inner{
  box-shadow: 0px 3px 20px rgb(0 33 71 / 5%);
  padding: 20px;
  background: #1e272e;
}
.contact-form .contact-form-inner h3{
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
}
.contact-form .contact-form-inner .contact-form-content{
  border: 2px solid #15DAE8;
  padding: 20px;
}
.contact-form .contact-form-inner .form-control{
  background: #f4f4f4;
  border-radius: unset;
  width: 100%;
  height: 48px;
  padding: 0 18px;
  font-weight: 400;
  color: #0f0f0f;
  transition: all 0.5s ease;
}
.contact-form .contact-form-inner .form-control:focus{
  box-shadow: none;
  border-color: #15DAE8!important;
}
.contact-form .contact-form-inner textarea{
  height: 180px!important;
}
.testimonial-carousel .owl-dots{
  text-align: center;
  margin-top: 10px;
}
.testimonial-carousel .owl-dots .owl-dot.active{
  width: 30px;
  background: #15DAE8;
  border-radius: 30px;
}
.testimonial-carousel .owl-dots .owl-dot{
  background-color: #1e272e;
  width: 10px;
  height: 10px;
  line-height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  text-align: center;
}
.blog-widget{
  background: #f4f4f4;
  padding: 15px;
  margin-bottom: 40px;
}
.blog-widget-inner{
  border: 2px solid #15DAE8;
  padding: 15px;
}
.blog-widget h4{
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  background: #15DAE8;
  padding:4px 20px;
  display: unset;
  margin-bottom: 10px;
}
.blog-widget ul{
  margin-top: 30px;
}
.blog-widget ul li{
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
.blog-widget ul li:before{
  position: absolute;
  content: "\f061";
  font-family: fontawesome;
  left: 0;
}
.blog-widget ul li a{
  color: #1e272e;
  font-size: 17px;
  border-bottom: 1px solid #1e272e;
}

.blog-widget ul li a:hover{
  color: #15DAE8;
}
.posts-box{
  display: flex;
  gap:20px;
  align-items: center;
  margin-bottom: 20px;
}
.posts-box .image{
  width: 160px;
}
.posts-box .info h5{
  margin-bottom: 0;
}
.posts-box .info h5 a{
  color: #1e272e;
  font-size: 18px;
  font-weight: 700;
}
.posts-box .info span{
  color: #15DAE8;
  font-size: 14px;
}
.blog-detail{
  padding: 100px 0;
  position: relative;
}
.blog-detail .blog-box{
  text-align: left;
  background: #f4f4f4;
}
.blog-detail .blog-box .blog-img{
  border: 2px solid #15DAE8;
  padding: 20px;
}
.blog-detail .blog-box::before{
  background: transparent!important;
}
.blog-detail .blog-box .content{
  margin-top: 10px;
}
.blog-detail .blog-box .content ul{
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.blog-detail .blog-box .content ul li{
  color: #15DAE8;
}
.blog-detail .blog-box .content ul li i{
  margin-right: 5px;
}
.blog-detail .blog-box .content h4{
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  color: #1e272e;
}
.blog-sidebar .recent-posts{
  background: #fff;
    padding: 40px 30px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
}
.blog-sidebar h3{
  color: #002129;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    padding-bottom: 12px;
    margin: 0;
}
.blog-sidebar h3:before{
  content: "";
    position: absolute;
    border: 0;
    width: 50px;
    height: 2px;
    background: #15DAE8;
    z-index: 1;
    margin-left: 0;
    bottom: 0;
    left: 0;
}
.blog-sidebar .recent-posts .recent-post-box{
  margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.blog-sidebar .recent-posts .recent-post-box .img{
  width: 100px;
    float: left;
    padding-right: 15px;
}
.blog-sidebar .recent-posts .recent-post-box .desc{
  display: block;
    font-size: 12px;
    color: #888;
    overflow: hidden;
}
.blog-sidebar .recent-posts .recent-post-box .desc a{
  font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    color: #002129;
    display: block;
}
.blog-sidebar .recent-posts .recent-post-box .desc a:hover{
  color: #15DAE8;
}
.blog-sidebar .recent-posts .recent-post-box .desc .date{
  display: block;
}
.service-detail-content{
  background: #f4f4f4;
  padding: 20px;
}
.service-detail{
  padding: 100px 0;
  position: relative;
}
.service-detail .service-detail-img{
  margin-bottom: 20px;
}
.service-detail .service-detail-img img{
  padding: 20px;
  border: 2px solid #15DAE8; 
}
.service-detail h2{
  font-size: 32px;
  font-weight: 800;
  color: #1e272e;
}
.service-detail h4{
  font-size: 24px;
  font-weight: 700;
  color: #1e272e;
}
.service-detail p{
  font-size: 16px;
  font-weight: 500;
  color: #1e272e;
}
.service-detail ul li{
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #1e272e;
  padding-left: 30px;
  margin-bottom: 10px;
}
.service-detail ul li:before{
  content: "\f061";
  position: absolute;
  left: 0;
  font-family: fontawesome;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  background: #15DAE8;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
}
.service-sidebar .service-wideget{
  background: #f4f4f4;
  padding: 20px;
  margin-bottom: 40px;
}
.service-sidebar .service-wideget h4{
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  background: #15DAE8;
  padding: 4px 20px;
  display: unset;
  margin-bottom: 10px;
}
.service-sidebar .service-wideget ul{
  margin-top: 30px;
}
.service-sidebar .service-wideget ul li{
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}
.service-sidebar .service-wideget ul li:before{
  position: absolute;
  content: "\f061";
  font-family: fontawesome;
  left: 0;
}
.service-sidebar .service-wideget ul li a{
  color: #1e272e;
  font-size: 17px;
  border-bottom: 1px solid #1e272e;
}
.service-wideget.bg{
  background-image: url(../../assets/img/service-sidebar.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px;
}
.service-wideget .service-wideget-inner{
  padding: 20px;
  border: 2px solid #15DAE8;
}
.service-wideget.bg .service-wideget-inner{
  padding: 40px 10px;
  border: 2px solid #15DAE8;
  text-align: center;
}
.service-wideget.bg .service-wideget-inner h3{
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
.career{
  position: relative;
  padding: 100px 0;
  background-color: #f4f4f4;
}
.career-img{
  background-image: url(../../assets/img/career-img.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px;
  height: 600px;
}
.career .career-img h2{
  font-weight: 800;
  font-size: 44px;
  color: #ffffff;
}
.career .career-img p{
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
}
.career-form{
  box-shadow: 0px 3px 20px rgb(0 33 71 / 5%);
  padding: 20px;
  background: #1e272e;
}
.career-form form{
  border: 2px solid #15DAE8;
  padding: 20px;
}
.career-form .form-control{
  background: #f4f4f4;
  border-radius: unset;
  width: 100%;
  height: 48px;
  padding: 0 18px;
  font-weight: 400;
  color: #0f0f0f;
  transition: all 0.5s ease;
}
.career-form .form-control:focus{
  box-shadow: none;
  border-color: #15DAE8!important;
}
.career-form textarea{
  height: 180px!important;
}
.choose-us{
  padding: 124px 0 100px;
  background: url(../../assets/img/choose-us-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.choose-us ul li{
  font-size: 18px;
  color: #041424;
  font-weight: 400;
  font-family: "Nunito";
  margin-bottom: 19px;
  margin-left: 27px;
  position: relative;
}
.choose-us ul li:before{
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  left: -20px;
  top: 9px;
  background: #15DAE8;
  border-radius: 50%;
}
.mission-vision{
  padding: 0px 0 123px;
}
.mission-vision-box{
  background: #f3f8fd;
  padding: 107px 25px 22px 23px;
  margin-left: -24px;
}
.left.mission-vision-box{
  margin-right: -24px;
  margin-left: 0;
}
.mission-vision-box .content h4{
  font-size: 42px;
  margin: 0 0 46px;
  color: #041424;
  font-family: "Rajdhani", sans-serif;
  line-height: 1.2;
  font-weight: 700;
}
.mission-vision-box .content .box{
  margin-bottom: 25px;
}
.mission-vision-box .content .box .icon i{
  width: 45px;
  height: 45px;
  border-radius: 23px;
  filter: drop-shadow(0px 10px 10px rgba(207, 218, 235, 0.2));
  background-color: #ffffff;
  display: inline-block;
  float: left;
  text-align: center;
  line-height: 45px;
  font-size: 25px;
  color: #0C59DB;
  margin-right: 16px;
}
.mission-vision-box .content .box .desc p{

}