@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'League Spartan', sans-serif;
}
a{
  text-decoration: none;
}
ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
button{
  border:none;
}
.header.header-sticky .bottombar{
  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%);
  }
}
.topbar{
  padding: 10px 0;
  background-color: #004AAD;
  font-size: 14px;
}
.topbar-contact a{
  display: inline-block;
  font-size: 16px;
  color: #fff;
  position: relative;
}
.topbar-contact a + a{
  margin-left: 6px;
  padding-left: 16px;
}
.topbar-contact a + a:before {
  content: '/';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.topbar-contact a i{
  font-size: 15px;
  margin-right: 8px;
  color: #fff;
}
.topbar-social span{
  color: #fff;
  display: inline-block;
  margin-right: 15px;
  line-height: 27px;
  font-weight: 400;
  font-size: 16px;
}
.topbar-social a{
  display: inline-block;
  color: #fff;
  position: relative;
  font-size: 16px;
}
.topbar-social a + a{
  margin-left: 12px;
}
.bottombar{
  position: relative;
  background-color: #fff;
  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{
  position: unset;
  padding: 0;
}
.navbar ul{
  list-style: none;
}
.navbar>ul{
  display: flex;
  flex-direction: row;
}
.navbar ul li{
  position: relative;
  margin-right: 40px;
}
.navbar ul li a{
  position: relative;
  display: block;
  color: #004AAD;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  height: 90px;
  line-height: 90px;
  letter-spacing: 0.5px;
  transition: all 0.5s;
}
.navbar ul li a.active ,.navbar ul li a:hover{
  color: #004AAD;
}
.navbar ul li a.active:before{
  transform-origin: left;
  transform: scale(1);
  background-color: #004AAD;
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  transition: transform 0.5s cubic-bezier(1, 0, 0, 1);
  left: 0;
  bottom: 0;
  backface-visibility: hidden;
}
.navbar ul li a:hover::before{
  transform-origin: left;
  transform: scale(1);
  background-color: #FF3131;
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  transition: transform 0.5s cubic-bezier(1, 0, 0, 1);
  left: 0;
  bottom: 0;
  backface-visibility: hidden;
}
.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;
}
#bar-icon{
  display: none;
}
.down-arrow{
  position: absolute;
  right: -19px;
  top: 36px;
  display: inline-block;
  font-size: 15px;
}
.navbar ul ul li a .down-arrow{
  display: block;
  position: absolute;
  right: 10px;
  top: 14px;
}
@media(min-width:992px){
  .navbar ul li ul{
    position: absolute;
/*    border-top: 3px solid #0093ff;*/
    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;
    margin-right: 0px;
  }
  .navbar ul ul li a{
    display: block;
    color: #004AAD;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 10px;
    line-height: 1.8rem;
    border-bottom: 1px solid #ddd;
    transition: all 0.5s;
    height: unset;
  }
  .navbar ul ul li a:hover{
    color: #fff;
    background-color: #FF3131;
    border-color: transparent;
    padding-left: 25px;
  }
  .navbar ul li ul ul{
    position: absolute;
    right: 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){
   .topbar{
    text-align: center!important;
   }
   .topbar .topbar-social{
    text-align: center!important;
   }
   .bottombar{
    padding: 10px 5%;
  }
  .navbar>ul{
    position: absolute;
    background-color: #fff;
    left: 0;
    right: 0;
    top: 60px;
    width: 90%;
    margin: auto;
    flex-direction: column;
    border-top: 8px solid #0d6efd;
  }
  .header{
    height: 60px;
  }
  .ser-btn .enquiry-btn{
    display: none;
  }
  .ser-btn #bar-icon{
    display: block;
  }
  .ser-btn #bar-icon a{
    background-color: #0162CA;
    color: #fff;
    font-size: 20px;
    padding: 8px 10px;
  }
  .logo a{
    font-size: 30px;
    font-weight: 800;
  }
  .navbar ul li {
    border-top: 1px solid #e6e6e6;
    margin-right: 0px;
  }
  .navbar ul li a{
    padding: 15px 16px;
    height: 40px;
    line-height: 10px;
  }
  .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: 18px;
  }
  .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-section{
  background-image: url(../../assets/img/banner-img.jpg);
  position: relative;
  width: 100%;
  background-size: cover;
  padding: 100px 0;
  z-index: -1;
}
.banner-section:before{
  content: '';
  position: absolute;
  right: 0%;
  top: 0;
  height: 100%;
  width: 950px;
  background-image: linear-gradient(-90deg, #03a9f4 3.7%, rgba(54, 210, 228, 0) 86.3%);
  opacity: 0.25;
}
.banner-section .banner-content{
  text-align: right;
  position: relative;
}
.banner-section .banner-content h4{
  margin-bottom: 20px;
  font-size: 38px;
  color: #004AAD;
  line-height: 32px;
  font-weight: 600;
}
.banner-section .banner-content h1{
  font-size: 52px;
  line-height: 1.2;
  margin: 0 0 22px;
  color: #FF3131;
  font-weight: 700;
}
.banner-section .banner-content h3{
  color: #514d4d;
  margin: 0 0 45px;
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
}
.trusted-clients-box ul li{
  position: relative;
  color: #514d4d;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 7px;
  padding-left: 25px;
}
.trusted-clients-box ul li:before {
  content: "\f00c";
  font-family: "Fontawesome";
  position: absolute;
  color: #004AAD;
  left: 0;
  font-weight: 900;
  font-size: 18px;
  bottom: 0px;
}
.site-btn{
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  background: #004AAD;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  transition: 0.3s ease all;
  margin-top: 10px;
  text-transform: uppercase;
  min-width: 174px;
  text-align: center;
}
.site-btn:hover{
  background: #FF3131;
  color: #fff;
}
.services{
  padding: 80px 0 55px;
  background-color: #004AAD;
}
.service-item{
  margin-bottom: 30px;
  display: flex;
}
.service-item .service-icon{
  transition: all 0.5s ease-in 0s;
  padding-right: 30px;
}
.service-item .service-icon img{
  width: 70px;
}
.service-item .service-content{
  position: relative;
  z-index: 10;
}
.service-item .service-content h4{
  margin-bottom: 15px;
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  color: #fff;
}
.service-item .service-content p{
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
}
.service-item .service-content .watermark{
  width: 200px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  z-index: -1;
  opacity: 0.08;
}
.about{
  position: relative;
  z-index: 10;
  padding: 100px 0;
}
.section-title{
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2{
  position: relative;
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  color: #FF3131;
}
.section-title p{
  font-size: 18px;
  line-height: 30px;
  margin: 0 0 5px;
  font-weight: 600;
  color: #9a9a9a;
}
.section-title span{
  color: #004AAD;
}
.about img{
  padding-right: 35px;
}
.about-desc{
  padding-left: 35px;
}
.about-desc h3{
  font-size: 32px;
  line-height: 36px;
  font-weight: 600;
  color: #FF3131;
  margin: 0 0 26px;
}
.about-desc p{
  font-family: inherit;
  color: #514d4d;
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
}
.testimonial{
  background: #f6f6f6;
  padding: 100px 0;
}
.testi-desc{
  background-color: #fff;
  padding: 25px 25px 20px;
  position: relative;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
}
.testi-desc:before{
  content: '';
  position: absolute;
  left: 30px;
  bottom: -6px;
  width: 14px;
  height: 14px;
  background-color: #fff;
  transform: rotate(45deg);
  z-index: 10;
}
.testi-desc p{
  color: #514d4d;
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  position: relative;
}
.testi-desc:after{
  content: '';
  position: absolute;
  left: 30px;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background-color: #e5e5e5;
  transform: rotate(45deg);
  z-index: 1;
}
.testi-ratings i{
  color: #fec42d;
}
.testi-footer{
  display: flex;
  padding-bottom: 10px;
  margin-top: 24px;
}
.testi-footer .testi-photo{
  position: relative;
  z-index: 10;
}
.testi-footer .testi-photo img{
  height: 80px;
  width: 80px;
  display: inline-block;
  border-radius: 50%;
}
.testi-footer .testi-photo:after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background-color: #269fff;
  z-index: -1;
}
.testi-footer .testi-info{
  display: inline-block;
  position: relative;
  margin-left: 24px;
}
.testi-footer .testi-info .name{
  margin-top: 12px;
  margin-bottom: 0;
}
.testi-footer .testi-info h5{
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #FF3131;
}
.testiCarousel .owl-prev{
  position: absolute;
  top: 40%;
  left: 70px;
  transform: translateY(-50%);
  font-size: 22px !important;
  background: #FF3131!important;
  color: #ffffff!important;
  width: 46px;
  height: 46px;
  line-height: 50px !important;
  border-radius: 50%;
  text-align: center;
  transition: 0.3s all ease;
  opacity: 0;
}
.testiCarousel:hover .owl-prev{
  left: -54px;
  opacity: 1;
}
.testiCarousel .owl-next{
  right: 70px;
  text-indent: 2px;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  font-size: 22px !important;
  background: #FF3131 !important;
  color: #ffffff !important;
  width: 46px;
  height: 46px;
  line-height: 50px !important;
  border-radius: 50%;
  text-align: center;
  transition: 0.3s all ease;
  opacity: 0;
}
.testiCarousel:hover .owl-next{
  right: -54px;
  opacity: 1;
}
.trusted-clients{
  padding: 100px 0;
}
.counter{
  position: relative;
  background-image: url(../../assets/img/counter-bg.png);
  padding: 100px 0;
  background-size: cover;
}
.counter-intro h3{
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 15px;
  color: #3a3a3a;
  font-weight: 600;
}
.counter-intro p{
  margin-bottom: 0;
  color: #5a5a5a;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
}
.counter-intro h3 span{
  color: #004AAD;
}
.count-box h2{
  font-weight: 700;
  font-size: 64px;
  display: inline-block;
  position: relative;
  line-height: 1;
  color: #3a3a3a;
}
.count-box h4{
  font-size: 22px;
  line-height: 28px;
  display: block;
  margin: 0;
  color: #5a5a5a;
  font-weight: 700;
}
.portfolio-box{
  text-align: center;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}
.portfolio-box:before{
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.7s ease;
  opacity: 0.5;
}
.portfolio-box:after{
  content: "";
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  background: transparent;
  border: 2px solid #004AAD;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.7s ease;
}
/*.portfolio-box:hover::after{
  opacity: 0.9;
}*/
.portfolio-box:hover::before{
  opacity: 0.9;
}
.portfolio-box .portfolio-content{
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  padding: 20px;
  transition: all 0.6s ease 0s;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
}
.portfolio-box:hover .portfolio-content{
  opacity: 1;
}
.portfolio-box .portfolio-content h4 a{
  font-size: 24px;
  line-height: 28px;
  color: #fff;
  margin: 0;
  padding: 0 10px;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.portfolio-box .portfolio-content span{
  display: block;
  color: #fff;
  transform: translateY(10px);
  transition: all 0.3s ease;
  font-size: 16px;
}
.blog{
  position: relative;
  padding: 100px 0;
}
.blog-box{
  position: relative;
  margin-bottom: 30px;
}
.blog-box .blog-img img{
  border-radius: 6px 6px 0 0;
}
.blog-box .blog-content{
  background: #fff;
  z-index: 111;
  position: relative;
  padding: 42px 25px 25px;
  border: 1px solid #f5f5f5;
  border-top: 3px solid #004AAD;
  border-radius: 0 0 6px 6px;
}
.blog-box .blog-content .date{
  position: absolute;
  top: -23px;
  display: inline-block;
  padding: 8px 24px;
  background: #004AAD;
  border-radius: 20px;
  color: #fff;
}
.blog-box .blog-content h4 a{
  color: #FF3131;
  font-size: 30px;
  line-height: 32px;
  font-weight: 600;
}
.blog-box .blog-content p{
  color: #514d4d;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
}
.home-contact{
  position: relative;
  padding: 100px 0;
  background: #f6f6f6;
}
.home-contact .contact-form{
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  padding: 45px;
  box-shadow: 0 10px 40px 5px rgba(0, 0, 0, 0.05);
  background: #fff;
}
.home-contact .contact-form input{
  width: 100%;
  border: 1.5px solid rgba(210, 210, 210, 0.3);
  background: transparent;
  border-radius: 4px;
  height: 45px;
  padding: 5px 15px;
  outline: none;
}
.home-contact .contact-form input:focus{
  border-color: #004AAD;
}
.home-contact .contact-form textarea{
  width: 100%;
  border: 1px solid rgba(210, 210, 210, 0.3);
  background: transparent;
  border-radius: 4px;
  padding: 5px 15px;
  height: 200px;
  outline: none;
}
.home-contact .contact-form textarea:focus{
  border-color: #004AAD;
}
.footer{
  background: #101010;
  padding: 75px 0;
  position: relative;
}
.footer-widget{
  position: relative;
  z-index: 11;
}
.footer-widget h4{
  color: #fff;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.8px;
  line-height: 32px;
  font-weight: 600;
}
.footer-widget p{
  color: #999;
  font-weight: 400;
  font-size: 16px
}
.footer-widget ul li{
  margin-bottom: 10px;
}
.footer-widget ul li a{
  color: #999;
  font-weight: 400;
  font-size: 16px
}
.contact-widget ul li{
  position: relative;
  padding-left: 30px;
  color: #fff;
}
.contact-widget ul li i{
  position: absolute;
  top: 5%;
  left: 0;
  color: #004AAD;
}
.newsletter form{
  position: relative;
}
.newsletter input[type="email"] {
  width: 100%;
  height: 46px;
  background-color: #fff;
  border-radius: 25px;
  padding: 0 20px;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.29);
}
.newsletter .btn-newsletter{
  position: absolute;
  top: 0;
  right: -1px;
  width: 52px;
  height: 46px;
  line-height: 40px;
  border: 0;
  border-radius: 0 30px 30px 0;
  font-size: 20px;
  text-align: center;
  outline: none;
  cursor: pointer;
  background-color: #004AAD;
  color: #fff;
}
.breadcrumb{
  padding: 110px 0;
  text-align: center;
  background-image: url(../../assets/img/breadcrumb.jpg);
  background-size: cover;
  background-attachment: fixed;
  z-index: -1;
  position: relative;
}
.breadcrumb h1{
  margin-bottom: 10px;
  word-break: break-word;
  color: #fff;
  font-size: 42px;
  line-height: 54px;
  font-weight: 600;
}
.breadcrumb ul{
  color: #797979;
  font-size: 18px;
  text-transform: capitalize;
}
.breadcrumb ul li{
  display: inline-block;
  list-style-type: none;
  position: relative;
}
.breadcrumb ul li:before{
  font-family: FontAwesome;
  content: "\f105";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
}
.breadcrumb ul li:first-child::before{
  display: none;
}
.breadcrumb ul li + li{
  padding-left: 15px;
  margin-left: 5px;
}
.breadcrumb ul li a{
  color: #797979;
  font-size: 18px;
}
.contact-details{
  position: relative;
  padding: 100px 0;
}
.contact-box{
  position: relative;
  padding: 20px 30px;
  display: block;
  border-radius: 10px;
  border: 1px solid #e4e7ee;
  transition: all 0.5s ease;
  cursor: pointer;
  background: #fff;
}
.contact-box:hover{
  box-shadow: 0px 0px 40px 0px rgba(0,0,0,.09);
  border-color: #fff;
}
.contact-box .icon-box{
  position: absolute;
  left: 24px;
  bottom: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #004AAD;
  margin: auto;
  text-align: center;
  line-height: 44px;
}
.contact-box .icon-box i{
  font-size: 16px;
  color: #fff;
}
.contact-box .content{
  margin-left: 55px;
  position: relative;
}
.contact-box .content h3{
  font-size: 22px;
  font-weight: 700;
  color: #282f3b;
  margin-bottom: 5px;
  line-height: 26px;
}
.contact-box .content p{
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}
.blog-sidebar .widget{
  margin-bottom: 45px;
}
.blog-sidebar .widget h3{
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
}
.blog-sidebar .widget li a{
  color: #777;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
}
.blog-sidebar .widget li + li{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.blog-sidebar .widget .post-img img {
  border-radius: 4px;
}
.blog-sidebar .widget .post-desc{
  padding: 12px;
}
.blog-sidebar .widget .post-desc h5 a{
  font-size: 22px;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
}
.partners{
  padding: 100px 0;
  position: relative;
}
.partners-box{
  text-align: center;
  overflow: hidden;
  position: relative;
  border: 2px dashed rgba(0, 0, 0, 0.07);
  padding: 10px;
  margin-bottom: 30px;
}
.partners-box:before{
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.7s ease;
}
.partners-box:hover::before{
  opacity: 0.9;
}
.partners-box:after{
  content: "";
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  background: transparent;
  border: 2px solid #004AAD;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.7s ease;
}
.partners-box:hover::after{
  opacity: 1;
}
.partners-box img{
  width: 100%;
}
.partners-box .partners-content{
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  padding: 20px;
  transition: all 0.6s ease 0s;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
}
.partners-box:hover .partners-content{
  opacity: 1;
}
.partners-box .partners-content h4{
  font-size: 28px;
  line-height: 28px;
  color: #fff;
  margin: 0;
  padding: 0 10px;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.partners-box:hover .partners-content h4{
  transform: translateY(0px);
}
.career{
  padding: 100px 0;
}
.career-img{
  margin-top: 120px;
}
.career-from{
  background-color: #f6f6f6;
  padding: 40px;
  margin-left: -100px;
}
.career-from input, .career-from textarea, .career-from select{
  width: 100%;
  border: 1.5px solid rgba(210, 210, 210, 0.3);
  background: transparent;
  border-radius: 4px;
  height: 42px;
  padding: 5px 15px;
  outline: none;
}
.career-from textarea{
  height: 150px;
}
.career-from input:focus, .career-from textarea:focus{
  border-color: #004AAD;
}
.services-page{
  padding: 100px 0;
  position: relative;
}
.services-img{
  position: relative;
  margin-bottom: 40px;
}
.services-img .content{
  position: absolute;
  left: 0;
  bottom: 0;
  right: 140px;
  background-color: #004AAD;
  padding: 20px 40px;
  border-top-right-radius: 6px;
}
.services-img .content h2{
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0;
}
.services-page .content-box p{
  color: #514d4d;
  margin: 0 0 15px;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
}
.services-page .content-box h4{
  color: #201630;
  font-size: 24px;
  font-weight: 600;
}
.services-page .content-box li{
  position: relative;
  color: #514d4d;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 7px;
  padding-left: 25px;
}
.services-page .content-box li:before{
  content: "\f00c";
  font-family: "Fontawesome";
  position: absolute;
  color: #004AAD;
  left: 0;
  font-weight: 900;
  font-size: 18px;
  bottom:0px;
}
.service-sidebar .categories-widget{
  margin-bottom: 45px;
  padding: 30px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  background-color: #fff;
}
.service-sidebar .categories-widget ul li{
  position: relative;
  display: block;
  border: 1px solid #e1e5e9;
  margin-bottom: 10px;
  border-radius: 6px;
}
.service-sidebar .categories-widget ul li a{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #1e1e2a;
  padding: 14px 0px 13px 42px;
  transition: .5s;
  border-radius: 6px;
}
.service-sidebar .categories-widget ul li a:hover{
  padding-left: 20px;
  color: #fff;
  background: #004AAD;
}
.service-sidebar .categories-widget ul li a:before{
  position: absolute;
  content: "\f063";
  font-family: 'Fontawesome';
  font-weight: 700;
  font-size: 12px;
  color: #838d9e;
  left: 20px;
  top: 16px;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.service-sidebar .categories-widget ul li a:hover::before{
  opacity: 0;
}
.service-sidebar .categories-widget ul li a span{
  position: absolute;
  right: 10px;
  top: 14px;
  font-size: 16px;
  font-weight: 500;
  padding-left: 20px;
  display: inline-block;
  transition: .5s;
  opacity: 0;
}
.service-sidebar .categories-widget ul li a:hover span{
  opacity: 1;
}
.service-sidebar .categories-widget ul li a span:before{
  position: absolute;
  content: "\f061";
  font-family: 'Fontawesome';
  font-weight: 700;
  font-size: 13px;
  left: 0px;
  top: 0;
  color: #fff;
}
.service-sidebar .contact-widget{
  position: relative;
  padding: 50px 30px;
  border-radius: 6px;
  background-size: cover;
  text-align: center;
  background-image: url(../../assets/img/contact-widget.jpg);
}
.service-sidebar .contact-widget img{
  margin-bottom: 20px;
}
.service-sidebar .contact-widget h4{
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 30px;
}
.service-sidebar .contact-widget .phone-number a{
  position: relative;
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 11px;
}
.service-sidebar .contact-widget .email a{
  position: relative;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 30px;
}
.jobs{
  position: relative;
  padding: 100px 0;
}
.job-box{
  background-color: #ffffff;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
}
.job-logo{
  position: relative;
  margin-bottom: 20px;
}
.job-logo .job-type{
  position: absolute;
  padding: 4px 17px 2px 17px;
  background-color: #d4dfe7;
  border-radius: 30px 30px 30px 30px;
  line-height: 21px;
  font-weight: 600;
  right: 0;
  top: 0;
}
.job-box h4 a{
  color: #183444;
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  transition: all 0.3s ease-in-out;
}
.job-box h4 a:hover{
  text-decoration: underline;
}
.job-box .job-content ul li{
  margin-bottom: 5px;
  position: relative;
  padding-left: 30px;
}
.job-box .job-content ul li i{
  color: #004AAD;
  font-size: 18px;
  position: absolute;
  left: 0;
}
.jobs .site-btn{
  display: inline-block;
  min-width: 130px;
  padding: 7px 28px;
}
.job-detail{
  padding: 100px 0;
  position: relative;
}
.job-detail .title h2{
  font-size: 34px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1.5px solid #dcdcde;
  margin-bottom: 20px;
}
.job-detail .job-content{
  margin-bottom: 20px;
}
.job-detail .job-content h4{
  color: #183444;
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
}
.job-detail .job-content ul li:before{
  content: "\f00c";
  font-family: "Fontawesome";
  position: absolute;
  color: #004AAD;
  left: 0;
  font-weight: 900;
  font-size: 18px;
  bottom: 0px;
}
.job-sidebar .widget{
  background-color: #ffffff;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
}
.job-sidebar .widget h4{
  color: #183444;
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
}
.job-sidebar .widget ul li{
  margin-bottom: 5px;
  position: relative;
  padding-left: 30px;
}
.job-sidebar .widget ul li i{
  color: #004AAD;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 10px;
}
.job-sidebar .widget ul li strong{
  display: block;
}
.job-sidebar .contact-widget{
  background-image: url(../../assets/img/job-sidebar-bg.jpg);
  background-position: center;
  background-size: cover;
  padding: 50px;
  position: relative;
}
.job-sidebar .contact-widget:before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.7;
}
.job-sidebar .contact-widget h2{
  position: relative;
  color: #fff;
  font-size: 36px;
}