@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  color: #212529;
}
a{
  text-decoration: none;
}
ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.banner-outer {
  background-image: linear-gradient(to right, #00a9f5 0%, #ef8b33 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.banner-outer:before{
  content: "";
  width: 65%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 0 600px 0;
  background: #010521;
}
.banner-outer .header {
  padding: 0 252px;
  position: relative;
  z-index: 2;
}
.header.header-sticky {
  position: fixed;
  width: 100%;
  top: 0;
  box-shadow: 0px 7px 18px rgb(24 16 16 / 5%);
  animation: sticky 1s;
  z-index: 999;
  background-color: #010521;
}
.header.header-sticky .navbar{
  padding: 13px 0;
}
.header.header-sticky .call-now {
  margin-top: 15px;
}
@keyframes sticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.header{
  position: relative;
  /*background-color: #152733;*/
  padding: 0 5%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.logo a{
  text-decoration: none;
  color: #fff;
  font-size: 35px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.navbar{
  padding: 25px 0;
  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: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  padding: 22px 20px;
  letter-spacing: 0.5px;
  transition: all 0.5s;
  /*margin: 0px 8px;*/
}
.navbar ul li a.active ,.navbar ul li a:hover{
  color: #f86823;
}
.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: 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;
    list-style: none;
    min-width: 250px;
    background-color: #fff;
    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: #010521;
    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: #f86823;
    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;
    border-top: 8px solid #fa6220;

  }
  .header{
    height: 60px;
  }
  .ser-btn .enquiry-btn{
    display: none;
  }
  .ser-btn #bar-icon{
    display: block;
  }
  .ser-btn #bar-icon a{
    background-image: linear-gradient(to right, #00a9f5 0%, #ef8b33 100%);
    color: #fff;
    font-size: 27px;
    padding: 2px 10px;
  }
  .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: 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-outer .banner-layerright {
  position: absolute;
  right: 0;
  top: 0;
}
.banner-section {
  position: relative;
  padding: 202px 200px 290px 246px;
  z-index: 1;
}
.banner-outer:after {
  content: "";
  background-image: url(../../assets/img/banner-background.jpg);
  border-radius: 0 0 600px 0;
  width: 65%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 15%;
}
.call-now{
  margin-left: 68px;
}
.call-now figure{
  background: #ffffff;
  border-radius: 100px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  float: left;
  transition: all 0.3s ease-in-out;
}
.call-now .content {
  padding-left: 75px;
  padding-top: 5px;
}
.call-now .content p{
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 26px;
  color: #fff!important;
  font-weight: 500;
}
.call-now .content a{
  color: #fff !important;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}
.banner-section{
  position: relative;
  z-index: 1
}
.banner-section .social-icons{
  position: relative;
}
.banner-section .social-icons ul {
  position: absolute;
  left: -214px;
  top: 94px;
}
.banner-section .social-icons ul li i{
  font-size: 20px;
  margin-top: 2px;
  color: #fff;
  border-radius: 100px;
  text-align: center;
  width: 55px;
  height: 55px;
  line-height: 55px;
  transition: transform ease 300ms;
}
.banner-section .social-icons ul li i:hover{
  background-image: linear-gradient(to right, #00a9f5 0%, #ef8b33 100%);
  color: #fff;
  transform: translateY(-5px);
}
.banner-content{
  position: relative;
}
.banner-content h6{
  margin-bottom: 18px;
  color: #fff!important;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3.0px;
}
.banner-content h1{
  margin-bottom: 14px;
  color: #fff!important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 55px !important;
  line-height: 72px !important;
}
.banner-content p{
  font-size: 22px;
  line-height: 33px;
  font-weight: 500;
  margin-bottom: 28px;
  color: #d6d8e2;
  margin-right: -45px;
}
.site-btn{
  background-image: linear-gradient(to right, #00a9f5 0%, #ef8b33 100%);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  border-radius: 30px;
  padding: 15px 40px 15px 40px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: #fff!important;
  cursor: pointer;
}
.site-btn:hover{
  background-image: linear-gradient(to right, #353956 0%, #353956 100%);
  border: 1px solid #01a9f4;
}
.banner-section .banner-content .banner-circleleft{
  position: absolute;
  left: -50px;
  bottom: -78px;
}
.banner-section .banner-content .banner-dotleft {
  position: absolute;
  bottom: -106px;
  left: 26px;
}
.banner-section .banner-wrapper {
  position: relative;
  z-index: 0;
}
.banner-section .banner-wrapper .banner-image {
  z-index: 1;
  position: absolute;
  right: 0;
  top: -84px;
}
.banner-section .banner-wrapper .banner-image img{
  width: 500px;
  border-radius: 200px 200px 0 200px;
}
.banner-section .banner-wrapper .banner-vedioimage {
  left: 115px;
  top: -60px;
  position: absolute;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.banner-section .banner-wrapper .banner-vedioimage img{
    width: 116px;
    cursor: pointer;
    border: 6px solid #01a9f4;
    border-radius: 50%;
}
.banner-section .banner-wrapper .banner-dotright{
  position: absolute;
  right: -56px;
  top: 280px;
}
.banner-section .banner-wrapper .banner-dotright img{
  width: 120px;
}
.service-section{
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.service-section .service-leftlayer {
  position: absolute;
  top: 0;
  left: 78px;
  z-index: -1
}
.service-section .service-dotimage {
  position: absolute;
  left: -8px;
  bottom: 132px;
  z-index: -1
}
.service-section .service-box{
  background: #fff;
  border-radius: 10px;
  padding: 38px 24px 28px 30px;
  margin-bottom: -12px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  box-shadow: 1px 21px 46px rgb(0 0 0 / 4%);
}
.service-section .service-box figure{
  background: #fff7f4;
  border-radius: 100px;
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  margin-bottom: 20px;
  display: inline-block;
  margin-left: 4px;
  transition: all 0.3s ease-in-out;
}
.service-section .service-box h4{
  padding-right: 65px;
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
  color: #202020;
}
.service-section .service-box p{
  margin-bottom: 10px;
  color: #656565;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}
.service-section .box-top{
  padding-top: 40px;
}
.service-section .service-box .service-btn i{
  background-image: linear-gradient(to right, #00a9f5 0%, #ef8b33 100%);
  border-radius: 100px;
  height: 45px;
  width: 45px;
  line-height: 45px;
  margin-left: -2px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  color: #fff;
}
.service-section .service-content{
  position: relative;
  padding-left: 48px;
  padding-top: 100px;
}
.service-section .service-content .service-rightcircle {
  position: absolute;
  right: -38px;
  top: 40px;
}
.section-title{
  position: relative;
}
.section-title h6{
  letter-spacing: 3.0px;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  text-transform: uppercase;
  color: #f86823;
}
.section-title h2{
  margin-bottom: 18px;
  padding-right: 10px;
  font-size: 56px;
  line-height: 54px;
  font-weight: 700;
  text-transform: uppercase;
  color: #202020;
}
.section-title p{
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #656565;
}
.service-content ul li{
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #656565;
  padding-left: 30px;
  position: relative;
}
.service-content ul li:before{
  content: "\f00c";
  font-family: "fontawesome";
  position: absolute;
  top: 5px;
  left: 0;
  background-image: linear-gradient(to right, #00a9f5 0%, #ef8b33 100%);
  border-radius: 100px;
  height: 18px;
  width: 18px;
  line-height: 18px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: #fff;
  font-size: 14px;
}
.service-section .service-rightlayer {
  position: absolute;
  bottom: -172px;
  right: 82px;
  z-index: -1
}
.about-section {
  padding: 277px 0 130px;
  background-image: linear-gradient(to right, #00a9f5 0%, #ef8b33 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.about-section:before{
  content: "";
  width: 65%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0 0 0 600px;
  background-color: #010521;
}
.about-section:after{
  content: "";
  background-image: url(../../assets/img/about-background.jpg);
  border-radius: 0 0 0 600px;
  width: 65%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 10%;
}
.about-wrapper{
  position: relative;
}
.about-section .about-wrapper .about-image1 {
  left: 70px;
  top: -136px;
  position: absolute;
  z-index: 1;
}
.about-section .about-wrapper .about-image2 {
  /*left: 26px;
  top: 190px;*/
  position: absolute;
  z-index: 1;
}
.about-section .about-wrapper .about-image1 img {
  width: 520px;
  border-radius: 0 200px 200px 200px;
}
.about-section .about-wrapper .about-image2 img {
  width: 220px;
  border-radius: 80px 0 80px 80px;
  border-top: 5px solid #ffffff;
  border-right: 5px solid #ffffff;
}
.about-section .about-wrapper .years {
  right: -250px;
  top: -126px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.about-section .about-wrapper .years .value {
  font-size: 56px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
}
.about-section .about-wrapper .years .plus {
  font-size: 34px;
  line-height: 34px;
  font-weight: 700;
  display: inline-block;
}
.about-section .about-wrapper .years .text {
  font-size: 18px;
  line-height: 17px;
  font-weight: 600;
  display: block;
  padding: 0 200px;
}
.about-section .about-wrapper .about-imagecircle {
  position: absolute;
  right: -54px;
  top: -170px;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.about-section .about-wrapper .about-dot {
  left: 8px;
  top: -208px;
  position: absolute;
}
.about-section .about-wrapper .about-layer {
  left: -114px;
  top: 300px;
  position: absolute;
}
.about-section .about-wrapper .about-layer img {
    width: 360px;
}
.about-section .about-content {
  padding-left: 55px;
  position: relative;
  z-index: 1;
}
.blog-section{
  background-color: #f9f9f9;
  position: relative;
  padding: 120px 0;
}
.blog-section .offer-toplayer {
  position: absolute;
  left: -36px;
  top: 0;
}
.blog-box{
  width: 100%;
  border-radius: 10px;
  background: #fff;
  transition: all 0.3s ease-in-out;
}
.blog-box .blog-box-upper{
  position: relative;
}
.blog-box .blog-box-upper figure img{
  border-radius: 10px 10px 0 0;
}
.blog-box .blog-box-upper .image-content{
  background-image: linear-gradient(to right, #00a9f5 0%, #ef8b33 100%);
  box-shadow: 8px 2px 20px rgb(0 0 0 / 10%);
  border-radius: 100px;
  height: 93px;
  width: 93px;
  line-height: 93px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
  margin-top: -42px;
  position: relative;
}
.blog-box .blog-box-upper .image-content .content{
  position: relative;
  top: 22px;
}
.blog-box .blog-box-upper .image-content .content h3{
  color: #fff!important;
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 0
}
.blog-box .blog-box-upper .image-content .content span{
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  display: block;
  color: #fff!important;
}
.blog-box .blog-box-lower{
  text-align: center;
  padding: 20px 40px 30px;
}
.blog-box .blog-box-lower h4{
  font-size: 23px;
  line-height: 30px;
  font-weight: 700;
  color: #202020;
}
.blog-box .blog-box-lower p{
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 26px;
  color: #656565
}
.achievement-section{
  position: relative;
  padding: 170px 0 182px;
  overflow: hidden;
}
.achievement-section .service-rightlayer{
  position: absolute;
  top: -168px;
  right: 20px;
}
.achievement-section .achievement-content {
  position: relative;
  margin-right: -8px;
}
.aboutoffer-section .achievement-wrapper{
  padding: 0px;
}
.achievement-section .section-title h2{
  font-size: 56px;
}
.achievement-section .service-leftlayer {
  position: absolute;
  bottom: -200px;
  left: 20px;
}
.achievement-wrapper{
  position: relative;
}
.achievement-box {
  background: #fff;
  border-radius: 100px;
  width: 210px;
  height: 210px;
  line-height: 210px;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 1px 21px 46px rgb(0 0 0 / 2%);
  position: absolute;
}
.achievement-box:hover{
  background-image: linear-gradient(to right, #00a9f5 0%, #ef8b33 100%);
  transform: translateY(-5px);
}
.achievement-box.box1{
  top: 58px;
  left: 22px;
}
.achievement-box.box2{
  top: -42px;
  left: 226px;
}
.achievement-box.box3{
  top: 58px;
  right: 0;
}
.achievement-box.box4{
  top: 180px;
  left: 222px;
}
.achievement-box .achievement-icon{
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.achievement-box .wrapper {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.achievement-box .wrapper h3{
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  color: #202020;
}
.achievement-box:hover .wrapper h3{
  color: #ffffff;
}
.achievement-box .wrapper p{
  padding: 0 65px;
  margin-top: -8px;
  line-height: 20px;
  font-size: 18px;
  color: #656565;
}
.achievement-box:hover .wrapper p{
  color: #ffffff;
}
.footer-section {
  background-image: linear-gradient(to right, #00a9f5 0%, #ef8b33 100%);
  position: relative;
  padding: 94px 0 0;
}
.footer-section::before {
  content: "";
  width: 70%;
  height: 487px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 0 100px 0;
  background: #010521;
}
.footer-top{
  margin-bottom: 10px;
  position: relative;
}
.footer-top .footer-logo {
  margin-bottom: 4px;
  position: relative;
  top: -12px;
}
.footer-top .first-column{
  margin-right: -25px;
}
.footer-top .first-column p {
  margin-bottom: 18px;
  color: #d6d8e2;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}
.footer-top .first-column .lower {
  display: flex;
}
.footer-top .first-column .lower .lower-content{
  display: contents;
}
.footer-top .first-column .lower .icon {
  position: relative;
  top: 12px;
  transition: all 0.3s ease-in-out;
}
.footer-top .first-column .lower .content{
  padding-left: 10px;
}
.footer-top .first-column .lower .content span {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0;
  font-weight: 700;
  display: block;
  color: #fff!important;
}
.footer-top .first-column .lower .content .text{
  margin-right: 22px;
  color: #d6d8e2;
  font-size: 18px;
  line-height: 26px;
}
.footer-top .links{
  padding-left: 28px;
}
.footer-top .links h4{
  margin-bottom: 16px;
  color: #fff!important;
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
}
.footer-top .links ul li{
  margin-bottom: 5px;
}
.footer-top .links ul li a{
  color: #d6d8e2;
  padding-left: 20px;
  position: relative;
  font-size: 18px;
  line-height: 26px;
}
.footer-top .links ul li a:before{
  content: "\2022";
  color: #f86823;
  font-weight: bold;
  display: inline-block;
  margin-left: 0;
  position: absolute;
  top: -3px;
  left: 0;
  font-size: 30px;
  line-height: 30px;
}
.footer-top .subscribe{
  padding-left: 30px;
  margin-right: -16px;
}
.footer-top .subscribe h4{
  color: #fff!important;
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
}
.footer-top .subscribe p{
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 26px;
  color: #fff!important;
}
.footer-top .subscribe input{
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  box-shadow: 1px 1px 50px rgb(0 0 0 / 10%);
  background-color: #ffffff;
  color: #656565;
  border: 1px solid #dae7fb;
  border-radius: 30px;
  padding: 16px 25px;
  margin-bottom: 20px;
  width: 96%;
  overflow: visible;
  outline: none;
}
.footer-top .subscribe button{
  border:none;
  border: 1px solid #ffffff;
  padding: 15px 30px 15px 30px;
}
.footer-section .footer-bottom {
  border-top: 1px solid #34374d;
  padding: 17px 0;
  position: relative;
  width: 67%;
}
.footer-section .footer-bottom .column{
  padding: 0;
}
.footer-section .footer-bottom .column p{
  font-size: 16px;
  line-height: 26px;
  position: relative;
  display: inline-block;
  margin-bottom: 0px;
  margin-right: -84px;
  color: #d6d8e2;
}
.footer-section .footer-bottom .social-icons {
  float: right;
  right: 166px;
  top: -10px;
}
.footer-section .footer-bottom .social-icons ul{
  margin-bottom: 0;
  display: flex;
  position: absolute!important;
}
.footer-section .footer-bottom .social-icons ul li i{
  font-size: 16px;
  color: #ffffff;
  background: #010521;
  border-radius: 100px;
  text-align: center;
  transition: all ease-in-out 0.3s;
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.footer-section .footer-bottom .social-icons ul li i:hover{
  background: #1b1e38;
  color: #ffffff;
  transform: translate(0, -5px);
}
.offer-section {
  background-color: #f9f9f9;
  position: relative;
  padding: 120px 0;
}
.offer-section .offer-toplayer {
  position: absolute;
  left: -24px;
  top: 0;
}
.offer-box{
  box-shadow: 1px 1px 50px rgb(0 0 0 / 10%);
  width: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  background: #ffffff;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
}
.offer-box:hover{
  background: #202020;
}
.offer-box .upper{
  position: relative;
}
.offer-box .upper img{
  border-radius: 10px 10px 0 0;
}
.offer-box .upper .article_img{
  width: 100%;
}
.offer-box .upper .image-content{
  background-image: linear-gradient(to right, #00a9f5 0%, #ef8b33 100%);
  box-shadow: 8px 2px 20px rgb(0 0 0 / 10%);
  border-radius: 100px;
  height: 105px;
  width: 105px;
  line-height: 105px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
  margin-top: -58px;
  position: relative;

}
.offer-box .lower{
  text-align: center;
  padding: 36px 45px 36px;
  border-radius: 0 0 10px 10px;
  border-top: none;
}
.offer-box .lower h4{
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
  color: #202020;
}
.offer-box:hover .lower h4{
  color: #ffffff;
}
.sub-banner {
  background-image: linear-gradient(to right, #00a9f5 0%, #ef8b33 100%);
  position: relative;
}
.sub-banner:before {
  content: "";
  width: 100% !important;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 0 600px 0;
  background: #010521;
}
.sub-banner::after {
  content: "";
  background-image: url(../../assets/img/sub-banner.jpg);
  border-radius: 0 0 600px 0;
  width: 100% !important;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 15%;
}
.sub-banner .sub-bannerleftlayer {
  position: absolute;
  left: 0;
  top: 0;
}
.sub-banner .banner-section {
  padding: 116px 0 120px;
}
.sub-banner .banner-section .banner-content {
  position: relative;
  text-align: center;
  z-index: 1;
}
.sub-banner .banner-section .banner-content .about-rightcircle {
  position: absolute;
  left: 268px;
  top: -44px;
}
.sub-banner .banner-section .banner-content h1 {
  margin-bottom: 12px;
  color: #fff!important;
  font-size: 66px;
  line-height: 72px;
  font-weight: 700;
  text-transform: uppercase;
}
.sub-banner .banner-section .banner-content p{
  font-size: 22px;
  line-height: 30px;
  padding: 0 76px;
  margin-bottom: 34px;
  color: #d6d8e2;
}
.sub-banner .box {
  border-radius: 25px;
  padding: 10px 28px;
  text-align: center;
  background-color: #353956;
  display: inline-block;
}
.sub-banner .box span {
  font-size: 22px;
  line-height: 30px;
  display: inline-block;
  color: #d6d8e2;
}
.sub-banner .arrow {
  display: inline-block;
  margin: 0 12px 0 10px;
}
.sub-banner .arrow i{
  color: #d6d8e2
}
.sub-banner .sub-bannerrightlayer {
  position: absolute;
  right: 0;
  bottom: 0;
}
.about-section.page{
  margin: 100px 0;
}
.aboutoffer-section {
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}
.aboutoffer-section .service-rightlayer {
  position: absolute;
  top: -178px;
  right: 20px;
}
.aboutoffer-section .service-leftlayer {
  bottom: -200px;
  left: 20px;
}
.aboutoffer-section .achievement-box {
  margin-left: 25px;
}
.aboutoffer-section .achievement-box{
  box-shadow: 1px 21px 46px rgb(0 0 0 / 10%);
}
.testimonial-section{
  background-color: #f9f9f9;
  position: relative;
  padding: 130px 0 100px;
}
.testimonial-section .offer-toplayer {
  position: absolute;
  left: -24px;
  top: 0;
}
.testimonial-section .offer-bottomlayer {
  position: absolute;
  right: 0;
  bottom: 0;
}
.testimonial-section .circle-wrapper {
  position: relative!important;
  height: 380px;
  width: 380px;
  border-radius: 100%;
  margin-left: 54px;
  margin-top: 18px;
  background: #fffaf8;
}
.testimonial-section .circle-wrapper .center-circle {
  height: 155px;
  width: 155px;
  border-radius: 100%;
  background: #fff;
  position: relative;
  left: -4px;
  right: 0;
  margin: 0 auto;
  top: 120px;
}
.testimonial-section .circle-wrapper .center-circle .testimonial-centerimage {
  position: absolute;
  top: 6px;
  left: -4px;
  transition: all 0.3s ease-in-out;
}
.testimonial-section .circle-wrapper .testimonial-image1 {
  position: absolute;
  right: -54px;
  top: -78px;
  transition: all 0.3s ease-in-out;
}
.testimonial-section .circle-wrapper .testimonial-image2{
  position: absolute;
  left: -42px;
  top: 32px;
  transition: all 0.3s ease-in-out;
}
.testimonial-section .circle-wrapper .testimonial-image3{
  position: absolute;
  left: 20px;
  bottom: -100px;
  transition: all 0.3s ease-in-out;
}
.testimonial-section .circle-wrapper .testimonial-image4{
  position: absolute;
  right: -58px;
  bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.testimonial-contentwrapper{
  padding-left: 80px;
}
.testimonial-carousel .content-box p{
  margin-bottom: 26px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #656565;
}
.testimonial-section .content-box .content{
  display: flex;
}
.testimonial-section .content-box .content .circle {
  background-image: linear-gradient(to right, #00a9f5 0%, #ef8b33 100%);
  border-radius: 100px;
  height: 64px;
  width: 64px;
  line-height: 64px;
  text-align: center;
  display: inline-block;
  border: 1px solid transparent;
  position: relative;
  margin-right: 16px;
  top: -4px;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-section .content-box .content .circle img{
  width: unset;
}
.testimonial-section .content-box .content  span {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  color: #202020;
  margin-bottom: -2px;
  display: block;
}
.testimonial-section .content-box .content .circle p{
  font-size: 18px;
  line-height: 26px;
  color: #656565;
  font-weight: 500;
}
.testimonial-section .owl-nav{
  position: relative;
  display: inline-block;
  top: 24px;
  right: -16px;
}
.testimonial-section .owl-nav .owl-prev{
  position: absolute;
  left: 0;
  top: 0;
  font-size: 30px !important;
  line-height: 30px !important;
  color: #010521 !important;
  opacity: 1;
}
.testimonial-section .owl-nav .owl-next{
  position: absolute;
  left: 58px !important;
  top: 0;
  font-size: 30px !important;
  line-height: 30px !important;
  color: #f86823 !important;
  opacity: 1;
}
.contact-section {
  padding: 120px 0 112px;
  background-color: #f9f9f9;
  position: relative;
}
.contact-section .offer-toplayer {
  position: absolute;
  left: -24px;
  top: 0;
}
.contact-section .offer-bottomlayer {
  position: absolute;
  right: 0;
  bottom: 0;
}
.contact-section .contact-box{
  box-shadow: 1px 1px 57px rgb(0 0 0/ 2%);
  background: #ffffff;
  border-radius: 10px;
  padding: 18px 30px 26px 30px;
  margin-bottom: 28px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  width: 100%;
  position: relative;
}
.contact-section .contact-box .box-image {
  float: left;
  width: 26%;
}
.contact-section .contact-box figure {
  background: #fff7f4;
  border-radius: 100px;
  height: 105px;
  width: 105px;
  line-height: 105px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.contact-section .contact-box .box-content {
  position: relative;
  padding-left: 34px;
  margin-top: 14px;
  display: inline-block;
  width: 74%;
}
.contact-section .contact-box .box-content h4{
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 26px;
  line-height: 30px;
  color: #202020;
}
.contact-section .contact-box .box-content p{
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 4px;
  color: #656565;
  font-weight: 500;
}
.contact-section .contact-form{
  box-shadow: 1px 1px 57px rgb(95 208 243 / 10%);
  border-radius: 10px;
  width: 100%;
  margin-top: 40px;
  padding: 56px 50px;
  background-image: linear-gradient(to right, #00a9f5 0%, #ef8b33 100%);
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}
.contact-section .contact-form h6{
  margin-bottom: 26px;
  color: #fff!important;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 3.0px;
  text-transform: uppercase;
}
.contact-section .contact-form h2{
  color: #fff!important;
  margin-bottom: 26px;
  font-size: 56px;
  line-height: 54px;
  font-weight: 700;
  text-transform: uppercase;
}
.contact-section .contact-form input , .contact-section .contact-form textarea{
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  box-shadow: 1px 1px 57px rgba(95 208 243 / 7%);
  background-color: #ffffff;
  color: #656565;
  border: 1px solid #dae7fb;
  border-radius: 30px;
  padding: 16px 28px;
  margin-bottom: 20px;
  width: 100%;
  overflow: visible;
  outline: none;
}
.contact-section .contact-form textarea{
  height: 150px;
}
.contact-section .contact-form .site-btn{
  border:1px solid #fff;
  width: 100%;
}
.technology-partners{
  padding: 100px 0;
  position: relative;
}
.partners-box{
  position: relative;
  overflow: hidden;
  border: 1.5px solid #010521;
  padding: 10px;
  margin-bottom: 40px;
}
.partners-box:before{
  content: "";
  background-color: #010521;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0.5;
  z-index: 1;
  transition: all 0.3s linear;
}
.partners-box:after{
  content: "";
  background-color: #010521;
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: 0;
  height: 100%;
  opacity: 0.5;
  z-index: 1;
  transition: all 0.3s linear;
}
.partners-box:hover::after{
  width: 100%;
  opacity: 0.5;
}
.partners-box:hover::before{
  width: 100%;
  opacity: 0.5;
}
.partners-box .img-box img{
  width: 100%;
}
.partners-box .content{
  position: absolute;
  top: 60%;
  left: 50%;
  background-color: #fff;
  width: 200px;
  height: 200px;
  text-align: center;
  /*border-radius: 50%;*/
  transform: translate(-50% , -50%);
  font-size: 36px;
  z-index: 2;
  color: #0f4bb9;
  transition: all 0.4s linear;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-box:hover .content{
  opacity: 1;
  top: 50%;
}
.partners-box .content h4{
  color: #010521;
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
}
.service-detail{
  padding: 100px 0;
  position: relative;
}
.service-details-content h2{
  margin-bottom: 18px;
  padding-right: 10px;
  font-size: 56px;
  line-height: 54px;
  font-weight: 700;
  text-transform: uppercase;
  color: #202020;
}
.service-details-content .img-box{
  margin-bottom: 30px
}
.service-details-content h4{
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  color: #202020;
  margin-bottom: 0px;
}
.service-details-content p{
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #656565;
}
.service-sidebar .widget{
  margin-bottom: 40px;
  padding: 40px;
  background: #f7f7f9;
}
.service-sidebar .widget h4{
  border-bottom: none;
  margin-bottom: 10px;
  font-size: 24px;
  color: #202020;
  padding-bottom: 15px;
  font-weight: 700;
}
.service-sidebar .widget ul li{
  margin-bottom: 10px;
}
.service-sidebar .widget ul li a{
  color: #1b1f2e;
  font-size: 20px;
  width: 100%;
  font-weight: 700;
  background: white;
  padding: 11px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-sidebar .widget ul li a:hover{
  color: white;
  background-image: linear-gradient(to right, #00a9f5 0%, #ef8b33 100%);
}
.service-sidebar .widget ul li a:after{
  content: "\f101";
  font-family: 'Fontawesome';
}
.widget.background{
  background-image: url(../../assets/img/cta-widget-bg.jpg);
  padding-top: 85px;
  padding-bottom: 85px;
  background-size: cover;
  background-position: center;
  z-index: 1;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 40px;
}
.widget.background:before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  opacity: 0.8;
  background-color: #1b1f2e;
}
.widget.background span{
  color: white;
  margin-bottom: 12px;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
}
.widget.background h2{
  color: white;
  line-height: 1;
  font-size: 55px;
  margin-bottom: 45px;
  font-weight: 700
}
.blog-sidebar .widget{
  padding: 40px;
  background: #f7f7f9;
  border: 1px solid #ddd;
  margin-bottom: 30px;
}
.blog-sidebar .widget h4{
  border-bottom: none;
  margin-bottom: 10px;
  font-size: 24px;
  color: #202020;
  padding-bottom: 15px;
  font-weight: 700;
}
.blog-detail-box{
  display: flex;
  gap: 15px;
}
.blog-detail-box .blog-detail-box-img{
  width: 95px;
  flex: 0 0 95px;
}
.blog-detail-box .blog-detail-box-content{
  font-size: 14px;
  display: inline-block;
  margin-bottom: 5px;
}
.blog-detail-box .blog-detail-box-content span{
  font-size: 15px;
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 500;
  font-style: normal;
  color: #7d7f85;
}
.blog-detail-box .blog-detail-box-content span i{
  font-size: 13px;
  margin-right: 10px;
  color: #fa6220;
}
.blog-detail-box .blog-detail-box-content h4 a{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
  color: #1f2126;
  margin-top: 0px;
}
.blog-sidebar .widget ul li{
  display: block;
  margin-bottom: 10px;
}
.blog-sidebar .widget ul li a{
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-left: 30px;
  color: #7d7f85;
  font-weight: 700;
}
.blog-sidebar .widget ul li a:before{
  position: absolute;
  left: 0;
  top: 0;
  content: "\f30b";
  font-family: "Fontawesome";
  font-size: 17px;
  font-weight: 500;
}
.blog-section.detail-page .blog-box .blog-box-lower{
  text-align: left;
}
.blog-section.detail-page .blog-box .blog-box-upper .image-content{
  left: 312px;
}
.career{
  background-color: #f9f9f9;
  position: relative;
  padding: 130px 0 100px;
  background-image: url(../../assets/img/career-bg.jpg);
  background-size: cover;
  background-position: center;
  margin: 100px 0;
}
.career:before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #010521;
  opacity: 0.5;
}
.career .offer-toplayer {
  position: absolute;
  left: -24px;
  top: 0;
}
.career .offer-bottomlayer {
  position: absolute;
  right: 0;
  bottom: 0;
}
.career-form{
  box-shadow: 1px 1px 57px rgb(95 208 243 / 10%);
  border-radius: 10px;
  width: 100%;
  margin-top: 40px;
  padding: 56px 50px;
  background-color: rgba(250, 98, 32, 0.5);
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}
.career-form input, .career-form textarea{
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  box-shadow: 1px 1px 57px rgba(95 208 243 / 7%);
  background-color: #ffffff;
  color: #656565;
  border: 1px solid #dae7fb;
  border-radius: 30px;
  padding: 16px 28px;
  margin-bottom: 20px;
  width: 100%;
  overflow: visible;
  outline: none;
}
.career-form textarea{
  height: 150px;
}
.career-form span{
  color: #fff;
  font-weight: 500;
  margin-top: -10px;
}
.job-list{
  padding:100px 0;
  position: relative;
}
.job-box{
  display: block;
  margin-bottom: 15px;
  background: #fff none repeat scroll 0 0;
  border: 1px solid #eee;
  transition: all 0.4s ease 0s;
  padding: 20px;
  border-radius: 4px;
}
.job-box:hover{
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.job-box .job-box-inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  position: relative;
}
.job-box .job-box-inner .job-box-img{
  flex: 1;
  max-width: 120px;
  margin-right: 25px;
  position: relative;
  top: 3px;
}
.job-box .job-box-inner .job-box-detail{
  flex: 1;
  padding-top: 3px;
}
.job-box .job-box-inner .job-box-detail h3 a{
  font-size: 26px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 10px;
  color: #202020;
}
.job-box .job-box-inner .job-box-detail ul li{
  display: inline-block;
  margin-left :10px;
  color: #010521;
  font-size: 16px;
  font-weight: 500;
}
.job-box .job-box-inner .job-box-detail ul li strong{
  color: #fa6220;
}
.job-box .job-box-inner .job-box-detail ul li i{
  color: #fa6220;
}
.job-list .site-btn{
  padding: 5px 25px 5px 25px;
  margin-top: 50px;
}
.job-type{
  background-color: #fff7f4;
  position: absolute;
  font-weight: 700;
  padding: 3px 10px;
  right: 0;
  bottom: 72px;
}
.job-detail-pg{
  margin: 100px 0;
}
.job-detail-box h4{
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.job-detail-box p{
  color: #777;
  font-weight: 500;
  font-size:16px;
  line-height: 26px;
}
.job-detail-box ul li{
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #777;
  margin-bottom: 20px;
}
.job-detail-box ul li:before{
  content: "\f00c";
  font-family: "fontawesome";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  line-height: 22px;
  text-align: center;
  background-image: linear-gradient(to right, #00a9f5 0%, #ef8b33 100%);
  color: #fff;
  margin-right: 5px;
  border-radius: 50%;
  font-size: 11px;
}
.job-sidebar h4{
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.job-sidebar ul{
  padding: 20px;
  border-radius: 5px;
  background: #f0f3fa;
}
.job-sidebar ul li{
  font-size: 16px;
  color: #333;
  display: block !important;
  margin: 15px 0 !important;
}
.job-sidebar ul h3{
  font-size: 20px;
  font-weight: 700;
}
.job-sidebar ul li h5{
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 0;
}
.job-sidebar ul li p{
  margin-bottom: 0 !important;
  margin-left: 40px;
}
 .job-sidebar ul li h5 i{
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-image: linear-gradient(to right, #00a9f5 0%, #ef8b33 100%);
  color: #fff;
  margin-right: 5px;
  border-radius: 50%;
  font-size: 14px;
}