@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans', sans-serif;
  scroll-behavior: smooth;
}
ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
a{
  text-decoration: none;
}
#top-search{
  background-color: #2196f3;
  padding: 0px 5%;
  height: 0;
}
.input-box{
  position: relative;
}
#top-search .search{
  width: 100%;
  height: 40px;
  padding: 0px 30px 0px 30px;
  border: none;
  background-color: transparent;
  color: #fff;
  font-size: 17px;
}
#top-search .search::placeholder{
  font-size: 17px;
   color: #fff;
}
#top-search .search:focus{
  outline: none;
}
.topser-icon {
  position: absolute;
  top: 8px;
  left:0;
  bottom: 0;
  background-color: transparent;
  color: #fff;
  font-size: 20px;
  border: none;
}
#topsercross-icon{
  position: absolute;
  right: 0;
  top: 3px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}
.header{
  background: rgba(0,0,0,0.6);
  padding: 0 5%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.header-fixed.sticky{
  z-index: 999999;
  top: 0px !important;
  box-shadow: 0px 3px 6px 3px rgb(0 0 0 / 6%);
  background: #163b6d;
  animation: sticky 1s;
}
@keyframes sticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.logo{
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  margin: 5px 0;
  display: none;
}
.logo a{
  text-decoration: none;
  color: #fff;
  font-size: 35px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.logo a img{
  width: 70px;
}
.navbar{
  position: unset;
  padding: 0;
}
.navbar ul{
  list-style: none;
  margin-bottom: 0;
}
.navbar>ul{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.navbar ul li{
  position: relative;
}
.navbar ul li a{
  position: relative;
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  padding: 4px 20px;
  letter-spacing: 0.5px;
  transition: all 0.5s;
}
.header-fixed .navbar ul li a.logo-item{
  background-color: #fff;
/*  border-radius: 50%;*/
  padding: 0px 3px;
  margin: 0 20px;
}
.header-fixed.sticky .navbar ul li a.logo-item{
  background-color: #fff;
/*  border-radius: 50%;*/
  padding: 0px 3px;
  margin: 0 20px;
}
.navbar ul li a.active ,.navbar ul li a:hover{
  color: #0cc0df;
}
.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;
}
#bar-icon{
  display: none;
}
.down-arrow{
  position: absolute;
  right: 0;
  top: 26px;
  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: 250px;
    background-color: #152733;
    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: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 10px;
    line-height: 1.8rem;
    border-bottom: 1px solid #ddd;
    transition: all 0.5s;
  }
  .navbar ul ul li a:hover{
    color: #fff;
    background-color: #0d6efd;
    border-color: transparent;
    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: #152733;
    left: 0;
    right: 0;
    top: 60px;
    width: 90%;
    margin: auto;
    flex-direction: column;
  }
  .header{
    height: 90px;
  }
  .ser-btn .enquiry-btn{
    display: none;
  }
  .ser-btn #bar-icon{
    display: block;
  }
  .ser-btn #bar-icon a{
    background-color: #0cc0df;
    color: #fff;
    font-size: 27px;
    padding: 2px 13px;
  }
  .logo a{
    font-size: 30px;
    font-weight: 800;
  }
  .navbar ul li {
    border-top: 1px solid #e6e6e6;
  }
  .navbar ul li a{
    padding: 15px 16px;
  }
  .navbar ul li>ul{
    background-color: #2b5570;
  }
  .navbar ul li>ul li a{
    font-size: 13px;
    padding: 10px 25px;
  }
  .navbar ul ul li a .down-arrow{
    font-size: 18px;
    transform: rotate(0deg);
  }
  .navbar ul li a .down-arrow{
    right: 10px;
    top: 9px;
    font-size: 35px;
  }
  .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;
  }
}
.hero{
  height: 700px;
  background-image: url(../../assets/img/home-bg1.jpg);
  background-size: cover;
  background-position: center center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0cc0df;
}
/*.hero:before{
  background-image: linear-gradient(60deg,#0cc0df,#07cf8c);
  content: "";
  height: 100%;
  left: 0;
  opacity: .4;
  position: absolute;
  top: 0;
  width: 100%;
}*/
.hero-text{
  position: relative;
  padding: 30px 30px;
  margin-top: 70px;
}
.hero-text:before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.5;
  border-radius: 4px;
}
.hero .hero-text .slide-caption{
  text-align: center;
  color: #fff;
  position: relative;
}
.hero .hero-text .slide-caption h2{
  font-size: 45px;
  font-weight: 700;
  font-family: 'Ubuntu', sans-serif;
}
.hero .hero-text .slide-caption p{
  font-size: 18px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
}
.carousel-image{
 padding: 35px;
  width: 420px;
  margin: auto;
  height: 420px;
}
.carousel-image:before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #163b6d;
  opacity: 0.7;
  border-radius: 50%;
}
.carousel-image .owl-dots {
    margin-top: 15px;
    text-align: center;
}
.carousel-image .owl-dots .owl-dot:hover span, .carousel-image .owl-dots .owl-dot.active span {
    background: #163b6d !important;
    width: 30px;
    border-radius: 30px;
}
.carousel-image .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background-color: #99FFCC!important;
    transition: .6s;
    border-radius: 50%;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    margin: 0 5px;
    display: block;
    border: none;
}
.carousel-image .owl-item img {
    width: 240px;
    height: 240px;
    margin: auto;
}
.slide-content{
  text-align: center;
  color: #fff;
}
.slide-content h4{
  font-size: 28px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.slide-content p{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0;
  font-family: 'Ubuntu', sans-serif;
}
.about-us{
  position: relative;
  padding-top: 100px;
  z-index: 1;
  background-image: url(../../assets/img/chose-us-bg.png);
}
.about-us:before{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top:0;
  
}
/*.about-us:before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #152042;
  opacity: 0.4;
}*/
.about-img-box{
  position: relative;
  display: block;
  z-index: 1;
}
.about-img-box .about-img-big{
  position: relative;
  display: block;
  overflow: hidden;
}
.about-img-box .about-img-small{
  position: absolute;
  bottom: -148px;
  left: -96px;
}
.happy-clients{
  position: absolute;
  background-color: #163b6d;
  padding: 15px 22px;
  z-index: 1;
  border-left: 5px solid #0cc0df;
  border-right: 5px solid #0cc0df;
  top: -45px;
  left: -99px;
  text-align: center;
}
.happy-clients h4{
  font-family: 'Ubuntu', sans-serif;
  font-size: 25px;
  color: #fff;
  font-weight: 700;
}
.happy-clients span{
  font-weight: 500;
  color: #fff;
  font-size: 18px;
  font-family: 'Ubuntu', sans-serif;
}
.about-content{
  padding: 20px 40px;
  position: relative;
  background-image: url(../../assets/img/about-content-bg.png);
  border-radius: 5px;
}
.about-content h2{
  font-family: 'Ubuntu', sans-serif;
  font-size: 35px;
  font-weight: 700;
}
.about-content p{
  font-size: 16px;
}
.about-content .about-list li{
  position: relative;
  margin-bottom: 10px;
  padding-left: 35px;
}
.about-content .about-list li:before{
  position: absolute;
  content: "\f068";
  font-family: "Fontawesome";
  background-color: #163b6d;
  color:#0cc0df;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
  left: 0;
  top: 2px;
}
.about-us-bottom{
  padding: 80px 0;
  position: relative;
}
.feature-box{
  padding: 30px;
  background-color: #163b6d;
  display: flex;
  border-radius: 5px;
  border-bottom: 4px solid #0cc0df;
  margin-bottom: 30px;
}
.feature-box .icon i {
  font-size: 36px;
  color: #fff;
  line-height: 80px;
  border: 2px solid #fff;
  width: 80px;
  height: 80px;
  text-align: center;
  transition: all .6s ease;
  background-color: #0cc0df;
}
.feature-content {
  color: #fff;
  margin-left: 30px;
}
.feature-content h4{
  font-family: 'Ubuntu', sans-serif;
  font-size: 25px;
}
.feature-content p{
  font-size: 14px;
}
.services{
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}
.services:before{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: #163b6d;
  height: 505px;
  z-index: -1;
}
.section-heading{
  text-align: center;
  z-index: 1;
  position: relative;
  background-color: #0cc0df;
  display: inline-block;
  margin-bottom: 25px;
  font-weight: 500;
  color: #000;
  padding: 7px 30px;
  border-radius: 50px;
}

.section-heading h2{
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 0;
}
.section-heading-content p{
  color: #1c1b1f;
  font-size: 16px;
}
.service-box{
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.service-img{
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  z-index: 1;
}
.service-img:before{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(28, 27, 31, .30);
  opacity: 1;
  transition: .5s;
  transform: perspective(400px) rotateX(-90deg) scale(0.2);
  transform-origin: top;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  z-index: 1;
}
.service-box:hover .service-img:before{
  opacity: 1;
  transform: perspective(400px) rotateX(0deg) scale(1.0);
}
.service-box .service-img img{
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}
.service-box:hover .service-img img{
  transform: scale(1.1) rotate(2deg);
}
.service-content{
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 7%);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 22px 30px 19px;
  z-index: 1;
}
.service-icon{
  position: absolute;
  top: -60px;
  right: 20px;
  background-color: #0cc0df;
  height: 80px;
  width: 80px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.service-content h4{
  font-size: 22px;
  font-weight: 700;
  font-family: 'Ubuntu', sans-serif;
}
.service-content p{
  font-size: 15px;
  color: #6c6b6f;
  font-weight: 500;
}
.process{
  padding: 60px 0;
  background-color: #edfdf2;
  margin-bottom: 80px;
}
.process .process-box{
    overflow: hidden;
    position: relative;
    padding: 33px 35px 28px;
    background: #fff;
    transition: all 0.3s linear;
    border: 1px solid #e7e7e7;
    margin-bottom: 30px;
}
.process .process-box:hover{
    box-shadow: 15px 15px 38px 0 rgb(0 0 0 / 10%);
    border-color: transparent;
}
.process .process-box .big-number{
    position: absolute;
    right: -7px;
    bottom: 0;
    font-size: 72px;
    font-weight: bold;
    font-family: 'Ubuntu', sans-serif;
    line-height: 52px;
    color: #f2f2f2;
}
.process .process-box .icon-main{
    background: #0cc0df;
    float: left;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-top: 5px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
}
.process .process-box .content-box{
    padding-left: 73px;
    position: relative;
}
.process .process-box .content-box h5{
    font-size: 18px;
    margin-bottom: 5px;
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.2;
    margin: 0 0 5px;
    color: #1b1d21;
    font-weight: bold;
}
.counter{
  position: relative;
  display: block;
  background-color: #163b6d;
  overflow: hidden;
  padding: 120px 0 120px;
  z-index: 1;
  /*background-image: url(../../assets/img/chose-us-bg.png);
  background-size: cover;
  background-position: center center;*/
}
.counter-left{
  position: relative;
  display: block;
}
.counter-list-one{
  position: relative;
  display: block;
}
.counter-list-one li{
  position: relative;
  display: block;
  padding-left: 130px;
}
.counter-list-one li .icon{
  height: 100px;
  width: 100px;
  background-color: #0cc0df;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 500ms ease;
}
.counter-list-one li .icon:before{
  position: absolute;
  top: 50%;
  right: -10px;
  content: "";
  border-top: 18px solid transparent;
  border-left: 10px solid #0cc0df;
  border-bottom: 18px solid transparent;
  transform: translateY(-50%);
  transition: all 500ms ease;
}
.counter-list-one li .icon i{
  font-size: 65px;
  color: #fff;
  position: relative;
  display: inline-block;
  transition: all 500ms ease;
}
.counter-list-one li .content h4{
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  line-height: 34px;
  font-family: 'Ubuntu', sans-serif;
}
.counter-list-one li .content p{
  font-size: 13px;
  color: #817e87;
  line-height: 26px;
  padding-bottom: 13px;
}
.counter-list-two{
  position: relative;
  display: block;
}
.counter-list-two li{
  position: relative;
  display: block;
  min-height: 226px;
  padding-left: 265px;
}
.counter-list-two li .content{
  position: absolute;
  top: -8px;
  left: 0;
  max-width: 235px;
  width: 100%;
  text-align: right;
}
.counter-list-two li .content h4{
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  line-height: 34px;
  font-family: 'Ubuntu', sans-serif;
}
.counter-list-two li .content p{
  font-size: 13px;
  color: #817e87;
  line-height: 26px;
  padding-bottom: 13px;
}
.counter-list-two li .icon{
  height: 100px;
  width: 100px;
  background-color: #0cc0df;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 500ms ease;
}
.counter-list-two li .icon:before{
  position: absolute;
  top: 50%;
  left: -10px;
  content: "";
  border-top: 18px solid transparent;
  border-right: 10px solid #0cc0df;
  border-bottom: 18px solid transparent;
  transform: translateY(-50%);
  transition: all 500ms ease;
}
.counter-list-two li .icon i{
  font-size: 65px;
  color: #fff;
  position: relative;
  display: inline-block;
  transition: all 500ms ease;
}
.counter-img{
  border: 5px solid #fff;
}
.career{
  background-image: url(../../assets/img/career-bg.jpg);
  margin: 80px 0;
  padding: 50px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 0;
}
.career:before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(14, 16, 48,.7);
  z-index: -1;
}
.career-content{
  margin-top: 20px;
  text-align: center;
  position: relative;
  padding: 20px;
}
.career-content:before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(0, 0, 0, .20);
  transition: all 500ms ease;
  z-index: -1;
  border-radius: 10px;
}
.career-content h2{
  color: #fff;
  text-align: center;
  font-family: 'Ubuntu', sans-serif;
  font-size: 36px;
}
.career-content p{
  color: #fff;
}
.career-content h3{
  color: #fff;
  background-color: #0cc0df;
  margin-bottom: 0;
  padding: 8px 24px;
  display: inline-block;
  border-radius: 2px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 24px;
}
.contact{
  background-image: url(../../assets/img/contact-bg.jpg);
  position: relative;
  padding: 80px 0px 20px;
  background-attachment: fixed;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.contact:before{
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0,0,0,0.80);
  z-index: -1;
}
.contact-inner{
  position: relative;
  padding: 60px 40px 40px;
  border: 1px solid rgba(255,255,255,0.10);
  background-color: rgba(255,255,255,0.05);
}
.contact-form{
  position: relative;
}
.contact-form{
  position: relative;
}
.contact-form .form-control{
  position: relative;
  display: block;
  width: 100%;
  color: #a5a5a5;
  line-height: 26px;
  padding: 10px 20px;
  height: 48px;
  font-size: 14px;
  background: rgba(0,0,0,0.70);
  border: 1px solid rgba(255,255,255,0.20);
  transition: all 300ms ease;
  border-radius: unset;
  box-shadow: none;
}
.contact-form .form-control:focus{
  border: 1px solid #0cc0df;
}
.contact-form textarea{
  height: 193px!important;
}
.site-btn{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  outline: none !important;
  background-color: #0cc0df;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 5px;
  padding: 15px 40px 15px;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
}
.site-btn:hover{
  color: #fff;
}
.site-btn:before{
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
  background-color: #163b6d;
}
.site-btn:hover:before {
    top: -40%;
}
.contact-inner h2{
  position: relative;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 28px;
  font-family: 'Ubuntu', sans-serif;
}
.contact-list{
  position: relative;
}
.contact-list li{
  position: relative;
  color: #bbbbbb;
  font-size: 14px;
  padding-left: 55px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.6em;
  transition: all 0.3s ease;
}
.contact-list li i{
  position: absolute;
  left: 0px;
  top: 6px;
  font-size: 20px;
  color: #0cc0df;
  line-height: 1em;
}
.contact-list li span{
  display: block;
  font-weight: 700;
  color: #fff;
}
.footer{
  background-color: #163b6d;
  padding: 20px 0;
  margin-top: 80px;
}
.footer-icons{
  position: relative;
}
.footer-icons li{
  display: inline-block;
  margin: 0 10px;
}
.footer-icons li a{
  color: #fff;
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  line-height: 40px;
  transition: all 300ms ease;
  border-radius: 2px;
}
.footer-icons li .facebook{
  background-color: #3b5999;
}
.footer-icons li .facebook:hover{
  background-color: #84a5eb;
}
.footer-icons li .instagram{
  background-color: #D6274D;
}
.footer-icons li .instagram:hover{
  background-color: #e96784;
}
.footer-icons li .twitter{
  background-color: #4A9CEC;
}
.footer-icons li .twitter:hover{
  background-color: #82b6e9;
}
.footer-icons li .linkedin{
  background-color: #1260A2;
}
.footer-icons li .linkedin:hover{
  background-color: #5ca9e9;
}
.footer h5{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Ubuntu', sans-serif;
  margin-bottom: 0;
  margin-top: 8px;
}