@import url('https://fonts.googleapis.com/css2?family=Saira:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  font-family: 'Saira', sans-serif;
  
}
ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
}
a{
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6{
  color: #2e2e2e;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
}
.header-top{
  background-color: #161735;
  overflow: hidden;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
  z-index: 1;
}
.header-top:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52%;
  height: 100%;
  background-color: #1b6ef0;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}
.header-top-left li{
  display: inline-block;
  margin-right: 30px;
}
.header-top-left li a{
  color: #ffffff;
  font-size: 16px;
}
.header-top-left li a i{
  font-size: 18px;
  position: relative;
  top: 1px;
  margin-right: 4px;
  color: #ffffff;
}
.header-top-right{
  text-align: right;
}
.header-top-right li{
  display: inline-block;
  margin-right: 5px;
}
.header-top-right li a{
  width: 35px;
  height: 35px;
  line-height: 37px;
  text-align: center;
  background-color: #ffffff;
  display: inline-block;
  color: #2e2e2e;
}
.header-top-right li a:hover{
  color: #00d0f5;
}
.hover-style{
  position: relative;
  transition: all ease 0.5s;
  z-index: 1;
}
.hover-style::before{
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #00d0f5;
  right: 0;
  top: 0;
  transition-delay: 0.2s;
  border-radius: 4px;
  z-index: -1;
}
.hover-style:hover::before{
  width: 100%;
  transition-delay: 0.4s;
}
.hover-style::after{
  right: auto;
  left: 0;
  top: auto;
  bottom: 0;
  transition-delay: 0.6s;
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #00d0f5;
  border-radius: 4px;
  z-index: -1;
}
.hover-style:hover::after{
  width: 100%;
  transition-delay: 0s;
}
.hover-style .inner-border{
  display: block;
}
.hover-style .inner-border::before{
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: #00d0f5;
  transition-delay: 0s;
  left: 0;
  top: 0;
  border-radius: 4px;
  z-index: -1;
}
.hover-style .inner-border:hover::before{
  height: 100%;
  transition-delay: 0.6s;
}
.hover-style .inner-border::after{
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: #00d0f5;
  transition-delay: 0.4s;
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  border-radius: 4px;
  z-index: -1;
}
.hover-style .inner-border:hover::after{
  height: 100%;
  transition-delay: 0.2s;
}
.hover-style .inner-border i{
  font-size: 18px;
  color: #2e2e2e;
}
.hover-style:hover .inner-border i{
  color: #00d0f5;
}
.header-bottom{
  position: relative;
  background-color: #ffffff;
  padding: 10px 5%;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.header.header-sticky .header-bottom{
  position: fixed;
  width: 100%;
  top: 0;
  box-shadow: 0px 7px 18px rgb(24 16 16 / 5%);
  animation: sticky 1s;
  z-index: 999;
}
@keyframes sticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.logo a{
  text-decoration: none;
  color: #fff;
  font-size: 35px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.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: #2e2e2e;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 20px;
  letter-spacing: 0.5px;
  transition: all 0.5s;
}
.navbar ul li a.active ,.navbar ul li a:hover{
  color: #00d0f5;
}
.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;
}
.main-btn{
  display: inline-block;
  position: relative;
  background-image: linear-gradient(to right, #237ece, #051b88);
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  line-height: 1;
  text-align: center;
  padding: 10px 10px 10px 20px;
  transition: all ease 0.5s;
}
.main-btn:hover{
  color: #ffffff;
  background-color: #088d79;
}
.main-btn::before{
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #00d0f5;
  right: 0;
  top: 0;
  transition-delay: 0.2s;
  border-radius: 4px;
}
.main-btn:hover::before{
  width: 100%;
  transition-delay: 0.4s;
}
.main-btn::after{
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #00d0f5;
  border-radius: 4px;
  right: auto;
  left: 0;
  top: auto;
  bottom: 0;
  transition-delay: 0.6s;
}
.main-btn:hover::after{
  width: 100%;
  transition-delay: 0s;
}
.main-btn span{
  display: block;
}
.main-btn span::before{
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: #00d0f5;
  transition-delay: 0s;
  left: 0;
  top: 0;
  border-radius: 4px;
}
.main-btn span:hover::before{
  height: 100%;
  transition-delay: 0.6s;
}
.main-btn span::after{
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: #00d0f5;
  border-radius: 4px;
  transition-delay: 0.4s;
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}
.main-btn span:hover::after{
  height: 100%;
  transition-delay: 0.2s;
}
.main-btn span .get{
  padding: 0;
  display: inline-block;
}
.main-btn span i{
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  color: #051b88;
  background-color: #ffffff;
  display: inline-block;
  margin-left: 20px;
  transition: all ease 0.5s;
}
.main-btn:hover span i{
  background-color: #00d0f5;
  color: #ffffff;
}
#bar-icon{
  display: none;
}
.down-arrow{
  position: absolute;
  right: 0;
  top: 17px;
  display: inline-block;
  font-size: 14px;
}
.navbar ul ul li a .down-arrow{
  display: block;
  position: absolute;
  right: 10px;
  top: 18px;
}
@media(min-width:992px){
  .navbar ul li ul{
    position: absolute;
    list-style: none;
    min-width: 250px;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    background: #ffffff;
    padding: 0;
    border-radius: 0;
    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: #2e2e2e;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 10px;
    line-height: 1.8rem;
    transition: all 0.5s;
  }
  .navbar ul ul li a:hover{
    color: #00d0f5;
    border-color: transparent;
  }
  .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: #ffffff;
    left: 0;
    right: 0;
    top: 60px;
    width: 90%;
    margin: auto;
    flex-direction: column;
  }
  .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, #237ece, #051b88);
    color: #fff;
    font-size: 27px;
    padding: 0px 14px;
  }
  .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: #ffffff;
  }
  .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: 16px;
    font-size: 16px;
  }
  .navbar ul li ul li>ul{
    background-color: #ffffff;
  }

  #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-section{
  background-image: url(../../assets/img/banner-img.jpg);
  padding: 50px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
.banner-content .top-title{
  font-size: 20px;
  color: #ffffff;
  display: block;
  margin-bottom: 10px;
  font-family: "Manrope", sans-serif;
}
.banner-content h1{
  font-size: 62px;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
}
.banner-content p{
  font-size: 18px;
  margin-bottom: 40px;
  color: #ffffff;
}
.banner-btn .main-btn{
  background-image: linear-gradient(to right, #ffffff, #ffffff);
}
.banner-btn .main-btn span{
  color: #051b88;
}
.banner-btn .main-btn span i{
  background-image: linear-gradient(to right, #237ece, #051b88);
  color: #ffffff;
}
.section-title{
  text-align: center;
  max-width: 800px;
  margin: -5px auto 50px;
}
.section-title span{
  color: #00d0f5;
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
}
.section-title h2{
  font-size: 42px;
  margin-bottom: 0;
}
.company-section{
  background-image: url(../../assets/img/company-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding-bottom: 70px;
  padding-top: 100px;
}
.company-box{
  background-color: #ffffff;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
  transition: all ease 0.5s;
}
.company-box:hover{
  transform: translateY(-5px);
}
.company-box .icon{
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  border-radius: 100px;
  font-size: 50px;
  margin-bottom: 20px;
  color: #1595bf;
  transition: all ease 0.5s;
}
.company-box:hover .icon{
  box-shadow: 0 0 3px 0px #00d0f5;
}
.company-box h3{
  font-size: 19px;
  margin-bottom: 18px;
}
.company-box p{
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 0;
}
.about{
  padding: 80px 0;
}
.about-img{
  text-align: right;
  position: relative;
  z-index: 1;
}
.about-img img{
  border-radius: 4px;
}
.about-img .about-img-2{
  text-align: left;
  margin-top: -350px;
}
.about-img .about-shape{
  position: absolute;
  bottom: 0;
  left: -200px;
  z-index: -1;
}
.about-content{
  margin-left: 50px;
}
.about .about-content h2{
  font-size: 42px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}
.about-content .about-item{
    padding-right: 50px;
}
.about-content .about-item img{
  margin-right: 20px;
}
.about-content .about-item h3{
  font-size: 20px;
  margin-bottom: 0;
}
.service{
  background-image: url(../../assets/img/services-bg.png);
  background-position: top center;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}
.service .shape{
  position: absolute;
}
.service .shape.shape-1{
  top: 100px;
  left: 200px;
  animation: moveScale 6s linear infinite;
}
.service .shape.shape-2{
  bottom: 30px;
  right: 150px;
  animation: moveScale 3s linear infinite;
}
@keyframes moveScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.service-box{
  background-color: #3685d1;
  border: 1px solid #a1bee3;
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  transition: all ease 0.5s;
  overflow: hidden;
  margin-bottom: 30px;
}
.service-box:hover{
  background-color: #051b88;
}
.service-box .icon{
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  display: inline-block;
  background-color: #6da5dc;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all ease 0.5s;
}
.service-box .icon:hover{
  transform: rotateY(360deg);
  background-color: #1040a2;
}
.service-box h3 a{
  margin-bottom: 20px;
  font-size: 22px;
  color: #fff;
}
.service-box p{
  font-size: 17px;
  margin-bottom: 15px;
  line-height: 1.8;
  color: #ffffff;
}
.service-box .ser-btn{
  font-size: 17px;
  color: #fff;
  display: block;
  position: relative;
}
.service-box .ser-btn i{
  position: relative;
  top: 2px;
  margin-left: 5px;
}
.analysis-section{
  background-image: url(../../assets/img/analysis-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding: 80px 0;
  margin-bottom: 80px;
}
.analysis-img{
  margin-bottom: -30px;
}
.analysis-content{
  margin-left: 30px;
  padding-bottom: 70px;
  padding-top: 100px;
}
.main-completed-item{
  border: 1px solid #a1b7dd;
  background-color: #5a7cbf;
  border-radius: 10px;
  margin-bottom: 30px;
}
.main-completed-item .icon{
  background-color: rgba(121, 204, 255, 0.5);
  padding: 25px 20px;
  border-radius: 10px 0 0 10px;
}
.main-completed-item .completed-content{
  padding: 20px;
}
.main-completed-item .completed-content span{
  color: #ffffff;
  font-size: 16px;
}
.main-completed-item .completed-content h3{
  color: #ffffff;
  font-size: 25px;
  margin-bottom: 0;
}
.blog{
  z-index: 1;
  overflow: hidden;
  position: relative;
  padding: 80px 0;
}
.blog .blog-shape-1 {
  position: absolute;
  top: 50px;
  left: 0;
  z-index: -1;
  animation: moveScale 6s linear infinite;
}
.blog .blog-shape-2 {
  position: absolute;
  top: 50px;
  right: 0;
  z-index: -1;
  animation: moveScale 6s linear infinite;
}
.blog-box{
  border-radius: 4px 4px 0 0;
  width: 100%;
  margin-bottom: 30px;
}
.blog-box .blog-box-content{
  background-color: #ffffff;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
}
.blog-box .blog-box-content ul{
  margin-bottom: 15px;
}
.blog-box .blog-box-content ul li{
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: #525252;
}
.blog-box .blog-box-content ul li i{
  color: #00d0f5;
  margin-right: 5px;
  font-size: 16px;
}
.blog-box .blog-box-content h3 a{
  font-size: 22px;
  margin-bottom: 15px;
  color: #2e2e2e;
}
.blog-box .blog-box-content p{
  font-size: 17px;
  margin-bottom: 15px;
  line-height: 1.8;
}
.blog-box .blog-box-content .blog-btn{
  font-size: 17px;
  color: #00d0f5;
  display: block;
  position: relative;
}
.partners{
  background-color: #f8f8f9;
  padding-top: 100px;
  padding-bottom: 100px
}
.partner-slide.owl-carousel .owl-item img {
  width: auto;
  margin: auto;
}
.footer{
  background-image: url(../../assets/img/footer-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  background-color: #12062c;
  padding-top: 100px;
}
.footer-top{
  padding-bottom: 70px;
}
.footer .main-widget{
  margin-bottom: 30px;
}
.footer .main-widget .footer-logo{
  margin-bottom: 20px;
  display: inline-block;
}
.footer .main-widget p{
  color: #ffffff;
  margin-bottom: 20px;
}
.footer .footer-social li{
  display: inline-block;
  margin-right: 5px
}
.footer .footer-social li a{
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  background-color: #00d0f5;
  color: #ffffff;
  transition: all ease 0.5s;
}
.footer .footer-social li a:hover{
  background-color: #051b88;
}
.footer .footer-social li a i{
  color: #ffffff;
}
.footer .footer-social li a:hover i{
  color: #ffffff;
}
.footer .main-widget h3{
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 20px;
}
.footer .main-widget .import-link li{
  position: relative;
  margin-bottom: 14px;
}
.footer .main-widget .import-link li a{
  color: #ffffff;
  position: relative;
  padding-left: 20px;
}
.footer .main-widget .import-link li a:before{
  font-family: "FontAwesome";
  position: absolute;
  content: "\f061";
  left: 0;
}
.footer .main-widget .contact-info li{
  position: relative;
  color: #ffffff;
  padding-left: 30px;
  margin-bottom: 15px;
}
.footer .main-widget .contact-info li i{
  position: absolute;
  top: 3px;
  left: 0;
  color: #00d0f5;
}
.footer .main-widget .contact-info li span{
  display: block;
  font-weight: 600;
  color: #ffffff;
}
.footer .main-widget .contact-info li a{
  color: #ffffff;
}
.footer .main-widget .contact-info li p{
  color: #ffffff;
}
.footer-bottom{
  text-align: center;
  border-top: 1px solid #3a3050;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
.footer-bottom p{
  color: #ffffff;
  font-size: 17px;
  margin-bottom: 15px;
  line-height: 1.8;
}
.footer-bottom p span{
  color: #00d0f5;
  font-weight: 600;
}
.footer-bottom p a{
  color: #00d0f5;
  font-weight: 600;
}
.solutions{
  background-image: url(../../assets/img/solutions-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}
.solutions-box{
  padding: 20px;
  position: relative;
  transition: all ease 0.5s;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
.solutions-box-content{
  background-color: rgba(5, 27, 136, 0.9);
  opacity: 1;
  transition: all ease 0.5s;
  padding: 15px;
}
.solutions-box-content .read-btn{
  text-align: right;
  padding-bottom: 35px;
}
.solutions-box-content .read-btn a{
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 4px;
  background-color: #ffffff;
  color: #051b88;
  transition: all ease 0.5s;
}
.solutions-box-content .read-btn a i{
  font-size: 14px;
}
.solutions-box-content p{
  color: #ffffff;
  display: block;
  margin-bottom: 15px;
  font-size: 17px;
}
.solutions-box-content h3 {
  font-size: 20px;
  color: #ffffff;
  transition: all ease 0.5s;
}
.breadcrumb{
  background-image: url(../../assets/img/breadcrumb-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding: 80px 0;
}
.breadcrumb-content h2{
  font-size: 60px;
  color: #ffffff;
  margin-bottom: 30px;
}
.breadcrumb-content .bread-list{
  margin-bottom: 0;
  display: inline-block;
  background-color: #0c49bc;
  padding: 12px 30px;
  border-radius: 4px;
  border: 1px solid #4f7bcd;
}
.breadcrumb-content .bread-list li{
  color: #ffffff;
  display: inline-block;
}
.breadcrumb-content .bread-list li a{
  color: #ffffff;
}
.breadcrumb-content .bread-list li.active{
  color: #00d0f5;
}
.breadcrumb-content .bread-list li + li:before{
  float: left;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  content: "/";
  color: #ffffff;
}
.breadcrumb-img{
  padding-top: 50px;
  text-align: center;
}
.testimonial{
  background-image: url(../../assets/img/testimonial-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  margin:80px 0;
}
.testimonial-box{
  background-color: #ffffff;
  border-radius: 4px;
  padding: 30px;
  margin-bottom: 30px;
}
.testimonial-box .quat{
  margin-bottom: 20px
}
.testimonial-carousel.owl-carousel .owl-item img {
  width: auto;
}
.testimonial-box p{
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
}
.testimonial-box .testimonial-info{
  border-radius: 50%;
}
.testimonial-box .testimonial-info .info{
  margin-left: 20px;
}
.testimonial-box .testimonial-info .info h3{
  font-size: 20px;
  margin-bottom: 5px;
}
.testimonial-box .testimonial-info .info span{
  font-size: 16px;
}
.testimonial-carousel .owl-dots{
  text-align: center;
}
.testimonial-carousel .owl-dots .owl-dot.active span {
  width: 30px;
  background-color: #ffffff;
}
.testimonial-carousel .owl-dots .owl-dot span{
  background-color: #5e6cb2;
  width: 20px;
  height: 8px;
  transition: all ease 0.5s;
  margin-top: 0;
  margin-bottom: 0;
  margin: 5px 7px;
  display: block;
  border-radius: 30px;
}
.contact-section{
  padding-bottom: 70px;
  padding-top: 100px;
}
.contact-box{
  background-color: #ffffff;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
  transition: all ease 0.5s;
}
.contact-box .icon{
  width: 70px;
  height: 70px;
  line-height: 80px;
  text-align: center;
  background-color: #051b88;
  margin-bottom: 20px;
}
.contact-box .icon i{
  color: #fff;
  font-size: 28px;
}
.contact-box h3{
  font-size: 22px;
  margin-bottom: 15px;
}
.contact-box p{
  margin-bottom: 15px;
}
.contact-box a{
  font-weight: 600;
  color: #00d0f5;
  display: block;
}
.contact-form{
  padding-bottom: 100px;
}
.contact-form-content .form-control {
  height: 55px;
  border: 1px solid rgba(8, 60, 130, 0.09);
  background-color: #ffffff;
  color: #2e2e2e;
  border-radius: 4px;
  font-size: 16px;
  padding: 10px 20px;
  width: 100%;
  transition: all ease 0.5s;
  box-shadow: none;
}
.contact-form-content .form-control:focus{
  border-color: #00d0f5;
}
.contact-form-content textarea.form-control{
  height: 200px;
}
.blog-sidebar .widget{
  background-color: #ffffff;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
  margin-left: 30px;
}
.blog-sidebar .widget h3{
  font-size: 22px;
  border-bottom: 1px solid #EBEEF5;
  padding-bottom: 8px;
  margin-bottom: 25px;
  position: relative;
}
.blog-sidebar .widget h3:before{
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 3px;
  height: 100%;
  background-color: #00d0f5;
}
.blog-sidebar .widget .recent-post-box{
  position: relative;
  margin-bottom: 20px;
  padding-left: 115px;
}
.blog-sidebar .widget .recent-post-box .post-img{
  top: 0;
  left: 0;
  width: 100px;
  float: unset;
  height: 100px;
  display: block;
  position: absolute;
}
.blog-sidebar .widget .recent-post-box .post-info h4{
  line-height: 17px;
}
.blog-sidebar .widget .recent-post-box .post-info h4 a{
  font-size: 16px;
  margin-bottom: 7px;
  color: #2e2e2e;
}
.blog-sidebar .widget .recent-post-box .post-info .date{
  padding-left: 0;
  position: relative;
}
.blog-sidebar .widget .recent-post-box .post-info .date i{
  color: #00d0f5;
  margin-right: 2px;
}
.blog-sidebar .widget ul li{
  margin-bottom: 20px;
}
.blog-sidebar .widget ul li a{
  display: block;
  color: #2e2e2e;
  position: relative;
  padding-left: 20px;
  font-weight: 600;
  font-size: 15px;
}
.blog-sidebar .widget ul li a:before{
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #00d0f5;
}
.service-detail{
  padding: 80px 0;
  position: relative;
}
.service-sidebar .sidebar-wideget{
  padding: 30px 20px;
  border-radius: 10px;
  background-color: #f8f8f8;
}
.service-sidebar .sidebar-wideget h3{
  margin-bottom: 20px;
  color: #111111;
  font-size: 24px;
  font-weight: 600;
}
.service-sidebar .sidebar-wideget ul li{
  margin-top: 15px;
}
.service-sidebar .sidebar-wideget ul li .active{
  color: #ffffff;
  background-image: linear-gradient(to right, #237ece, #051b88);
}
.service-sidebar .sidebar-wideget ul li a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  color: #666666;
  padding: 12px 15px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  transition: 0.5s;
}
.service-sidebar .sidebar-wideget ul li a:hover{
  color: #ffffff;
  background-image: linear-gradient(to right, #237ece, #051b88);
}
.service-sidebar .sidebar-wideget ul li a i{
  color: #ffffff;
  margin-left: 10px;
}
.service-sidebar .sidebar-wideget ul li a:hover i{
  color: #ffffff;
}
.service-sidebar .sidebar-wideget-contact{
  padding: 30px 30px;
  border-radius: 10px;
  background-image: url(../../assets/img/service-contact.jpg);
  background-size: cover;
}
.service-sidebar .sidebar-wideget-contact ul li{
  margin-top: 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.service-sidebar .sidebar-wideget-contact ul li a{
  margin-left: 5px;
  color: #fff;
}
.service-sidebar .sidebar-wideget-contact ul li p{
  margin-top: 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.service-sidebar .sidebar-wideget-contact ul li i{
  color: #237ece;
  margin-right: 5px;
  background-color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 4px;
  font-size: 18px;
}
.service-detail .service-img{
  margin-bottom: 25px;
  position: relative;
  z-index: -1;
}
.service-detail .service-content h2{
  margin-bottom: 15px;
  color: #111111;
  font-size: 28px;
  font-weight: 800;
}
.service-detail .service-content p{
  color: #666666;
  font-size:16px;
  margin-bottom: 15px;
  line-height: 1.8;
}
.service-detail .service-content ul li{
  margin-top: 12px;
  width: 200px;
  color: #666666;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}
.service-detail .service-content ul li:before{
  position: absolute;
  content: "\f00c";
  font-family: "FontAwesome";
  left: 0;
  color: #051b88;
}
.partners{
  position: relative;
  padding: 80px 0;
}
.partners-box{
  position: relative;
  transition: all ease 0.5s;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding: 30px;
}
.technology-partners{
  background-color: #f8f8f9;
  padding-top: 100px;
  padding-bottom: 100px;
}
.technology-partners-box{
  padding: 30px;
  position: relative;
  transition: all ease 0.5s;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  border:1px solid #2e2e2e;
}
.technology-partners-box:hover{
  border:none;
}
.technology-partners-box .technology-partners-box-content{
  background-color: rgba(5, 27, 136, 0.9);
  opacity: 0;
  transition: all ease 0.5s;
  padding: 30px;
}
.technology-partners-box:hover .technology-partners-box-content{
  opacity: 1;
}
.technology-partners-box .technology-partners-box-content h4{
  color: #ffffff;
  display: block;
  margin-bottom: 15px;
  font-size: 22px;
  text-align: center;
}
.job-list{
  position: relative;
  padding: 80px 0;
}
.job-list-box{
  background-color: #ffffff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 19px 30px 48px 20px;
  position: relative;
  margin-bottom: 60px;
}
.job-list-box .job-info{
  position: relative;
  padding-left: 60px;
  padding-right: 30px;
}
.job-list-box .job-info .company-logo{
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  background-color: #ffffff;
  text-align: center;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  position: absolute;
  left: 0;
  top: 0;
}
.job-list-box .job-info h3 a{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000;
}
.job-list-box .job-info p{
  font-size: 14px;
  color: #646464;
  font-weight: 600;
}
.job-list-box .job-info .job-type{
  background-color: #EBF9FF;
  color: #00A6E5;
  font-size: 14px;
  padding: 5px 5px;
  display: inline-block;
  border-radius: 5px;
  position: absolute;
  right: -15px;
  top: 0px;
  font-weight: 500;
}
.job-list-box ul li{
  list-style-type: none;
  margin-bottom: 12px;
  color: #646464;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
}
.job-list-box ul li i{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #237ece;
}
.job-list-box .job-btn{
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  bottom: -27px;
}
.job-detail{
  padding: 100px 0;
  position: relative;
}
.job-detail-content{
  background-color: #ffffff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
}
.job-detail .job-detail-content h2{
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #000000;
  font-weight: 800;
}
.job-detail .job-detail-content h4{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
  font-weight: 800;
}
.job-detail .job-detail-content ul li{
  list-style-type: none;
  color: #535353;
  font-weight: 400;
  margin-bottom: 12px;
  position: relative;
  padding-left: 32px;
}
.job-detail .job-detail-content ul li:before{
  position: absolute;
  content: "";
  height: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  border: 1px solid #1657cb;
}
.job-detail-sidebar{
  background-color: #F2FBFF;
  padding: 35px;
  border-radius: 10px;
}