@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Rajdhani:wght@300;400;500;600;700&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul{
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Nunito", sans-serif;
}
p{
  font-size: 16px;
  line-height: 26px;
  color: #686868;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
}
h2, h4, h5{
  color: #041424;
  line-height: 1.2;
  font-family: "Rajdhani", sans-serif;
}
a{
  text-decoration: none;
}
img{
  max-width: 100%;
}
.header-top{
  background: #00194c;
  padding: 12px 0;
  position: relative;
  z-index: 999;
}
.header-top:before{
  position: absolute;
  content: "";
  width: 65%;
  height: 100%;
  left: -11px;
  top: 0;
  background: #0C59DB;
  z-index: -1;
  transform: skew(23deg);
}
.header-info ul li {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  margin-right: 14px;
}
.header-info ul li i {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  margin-right: 8px;
  position: relative;
  top: 2px;
}
.social-icon {
  text-align: right;
}
.social-icon ul li {
  display: inline-block;
  color: #fff;
}
.social-icon ul li i {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  margin-left: 16px;
  transition: 0.5s;
}
.header-bottom{
  position: relative;
  background-color: #fff;
  padding: 0 5%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
}
.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: #000048;;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  padding: 25px 20px;
  letter-spacing: 0.5px;
  transition: all 0.5s;
}
.navbar ul li a.active ,.navbar ul li a:hover{
  color: #0C59DB;
}
.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: 0px;
  top: 30px;
  display: inline-block;
  font-size: 15px;
}
.navbar ul ul li a .down-arrow{
  display: block;
  position: absolute;
  right: 10px;
  top: 15px;
}
@media(min-width:992px){
  .navbar ul li ul{
    position: absolute;
    border-top: 5px solid #0c5adb;
    list-style: none;
    min-width: 285px;
    background-color: #fff;
    padding: 0;
    border-radius: 0;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    transform: translateY(20px);
    visibility: hidden;
    opacity: 0;
    border-radius: 3px 3px 0 0;
    z-index: 2;
  }
  .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: #1e1e1e;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 19px !important;
    line-height: 1.8rem;
    transition: all 0.5s;
  }
  .navbar ul ul li a:before{
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    background: #0c5adb;
    z-index: -1;
    transition: 0.5s;
  }
  .navbar ul ul li a:hover{
    color: #fff;
  }
  .navbar ul ul li a:hover:before{
    height: 100%;
    top: 0;
  }
  .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: #fff;
    left: 0;
    right: 0;
    top: 60px;
    width: 90%;
    margin: auto;
    flex-direction: column;
    border-top: 8px solid #0d6efd;
  }
  .header{
    height: 65px;
    padding: 10px 0;
  }
  .ser-btn .enquiry-btn{
    display: none;
  }
  .ser-btn #bar-icon{
    display: block;
  }
  .ser-btn #bar-icon a{
    background-color: #0162CA;
    color: #fff;
    font-size: 27px;
    padding: 1px 5px;
  }
  .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: #fff;
  }
  .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: 17px;
  }
  .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;
  }
}

.site-btn{
  padding: 15px 37px 15px 42px;
  font-weight: 500;
  color: #fff;
  background: #0c5adb;
  border: 1px solid #0c5adb;
  display: inline-block;
  border-radius: 5px;
  border: 1px solid #0c5adb;
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-family: 'Nunito', sans-serif;
  margin-right: 17px;
  transition: 0.5s;
}
.site-btn i{
  color: #fff;
  display: inline-block;
  padding-left: 11px;
  position: relative;
  top: 1px;
  transition: 0.5s;
}
.site-btn:hover i{
  color: #0c5adb;
}
.site-btn:hover{
  color: #0c5adb;
}
.site-btn:before{
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  right: 0;
  top: 0;
  background: #fff;
  z-index: -1;
  border-radius: 5px;
  transition: 0.5s;
}
.site-btn:hover:before{
  width: 100%;
  left: 0;
}
.style-foure.hero-area {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 600px;
  position: relative;
}
.hero-area:before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #0E1E2A;
  opacity: 0.8;
  z-index: 1;
}
.hero-area.style-foure .hero-content {
  text-align: center;
}
.style-foure .hero-content h4 {
  font-size: 22px;
  color: #ffffff;
  font-weight: 500;
  margin: 0 0 18px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.style-foure .hero-content h1 {
  font-size: 42px;
  line-height: 65px;
  color: #ffffff;
  font-weight: 700;
  position: relative;
  z-index: 9;
  text-transform: uppercase;
}
.style-foure.hero-button {
  margin-top: 71px;
  text-align: center;
}
.slider-carousel .owl-nav {
  position: relative;
}
.slider-carousel .owl-prev {
  height: 60px;
  width: 60px;
  line-height: 60px !important;
  text-align: center;
  border-radius: 50%;
  transition: .5s;
  border: 2px solid #818181 !important;
}
.slider-carousel .owl-prev:hover{
  background: #0C59DB !important;
  color: #fff;
  border: 2px solid #0C59DB !important;
}
.slider-carousel .owl-prev {
  position: absolute;
  top: -442px;
  left: 60px;
}
.slider-carousel .owl-prev i, .slider-carousel .owl-next i {
    color: #fff;
    font-size: 19px;
}
.slider-carousel .owl-next {
  height: 60px;
  width: 60px;
  line-height: 60px !important;
  text-align: center;
  border-radius: 50%;
  transition: .5s;
  border: 2px solid #818181 !important;
}
.slider-carousel .owl-next:hover{
  background: #0C59DB !important;
  color: #fff;
  border: 2px solid #0C59DB !important;
}
.slider-carousel .owl-next {
  display: inline-block;
  position: absolute;
  top: -442px;
  right: 60px;
  z-index: 1;
}

.features{
  background: #0b57d6;
  padding: 80px 0;
  margin: 0;
  margin-top: 100px;
}
.feature-box{
  border-radius: 4px;
  background-color: #ffffff;
  border: 1px solid rgba(4, 20, 36, 0.1);
  padding: 37px 15px 18px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  transition: 0.5s;
}
.feature-box:before{
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 50%;
  top: 0;
  background: #0c5adb;
  z-index: -1;
  transition: 0.5s;
  border-radius: 2px;
}
.feature-box:hover:before{
  width: 100%;
  left: 0;
}
.feature-box .feature-icon img{
  transition: 0.5s;
}
.feature-box:hover .feature-icon img{
  filter: brightness(1) invert(1);
}
.feature-box .feature-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin: 32px 0 15px;
  transition: 0.5s;
}
.feature-box:hover .feature-content h4, .feature-box:hover .feature-content p{
  color: #fff;
}
.section-title .sub-title{
  font-size: 18px;
  text-transform: uppercase;
  color: #0c5adb;
  font-weight: 500;
  margin: 0;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: "Nunito", sans-serif;
}
.section-title .main-title{
  font-size: 45px;
  line-height: 45px;
  color: #041424;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
}
.about{
  padding: 100px 0;
  position: relative;
}

.services{
  background: url(../../assets/img/service-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 111px 0 102px;
  position: relative;
  z-index: 1
}
.services:before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #0E1E2A;
  opacity: 0.8;
  z-index: -1;
}
.service-box{
  background-color: transparent;
  perspective: 1000px;
  width: auto;
  height: auto;
  margin-bottom: 20px;
}
.service-box .service-box-inner{
  position: relative;
  width: auto;
  height: 257px;
  text-align: left;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.service-box:hover .service-box-inner{
  transform: rotateY(180deg);
}
.service-box .service-box-front{
  padding: 20px 16px 0;
  border-radius: 5px;
  background-color: transparent;
  display: flex;
  border: 1px solid #284961;
  gap: 25px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.20);
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.service-box  .icon{
  margin-top: 26px;
}
.service-box  .icon img{
  width: 130px;
}
.service-box  .content h4{
  font-size: 23px;
  font-weight: 700;
  margin: 26px 0 8px;
  color: #fff;
}
.service-box  .content p{
  color: #BCBCBC;
  margin: 0 0 28px;
}
.service-box .service-box-front .content .service-btn a, .service-box .service-box-back .content .service-btn a{
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  font-family: 'Rajdhani';
  background: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 3px;
}
.service-box .service-box-back{
  background-color: #0C5ADB;
  transform: rotateY(180deg);
  padding: 19px 16px 0;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  gap: 25px;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.service-box .service-box-back:before{
  position: absolute;
  content: "";
  top: -112px;
  right: -112px;
  background: #fff;
  width: 224px;
  height: 224px;
  border-radius: 50%;
  transition: 0.4s;
  opacity: 0.1;
  z-index: -1;
}
.service-box .service-box-back .icon img{
  filter: brightness(0) invert(1);
}
.service-box .service-box-back .content h4{
  color: #fff !important;
}
.service-box .service-box-back .content p{
  color: #fff !important;
}
.process{
  background: #0b57d6;
  padding: 80px;
  margin-top: 100px;
  position: relative;
}
.process-box{
  margin-bottom: 30px;
}
.process-box .number{
  font-size: 24px;
  color: #ffffff;
  font-weight: 600;
  font-family: "Rajdhani";
  height: 75px;
  width: 75px;
  line-height: 75px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  margin-bottom: 27px;
  margin-top: 0;
}
.process-box .number::before{
  position: absolute;
  content: "";
  height: 55px;
  width: 55px;
  border: 1px dashed #fff;
  left: 14%;
  top: 14%;
  border-radius: 50%;
  -webkit-animation-name: rotateme;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
.process-box .title{
  font-size: 22px;
  color: #ffffff;
  font-weight: 600;
  font-family: "Rajdhani";
  margin: 0;
}
.process-box .desc{
  opacity: 0.600;
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Nunito";
  margin: 0;
  padding: 12px 0 14px;
}
@keyframes rotateme {
  from {
  transform: rotate(0deg);
  }
  to {
  transform: rotate(360deg);
  }
}

.blogs{
  margin: 100px 0;
}
.blog-box{
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: #ffffff;
  border: 1px solid rgba(29, 33, 36, 0.12);
  position: relative;
  z-index: 1;
  transition: .5s;
  overflow: hidden;
  padding: 24px;
  padding-bottom: 19px;
}
.blog-box .blog-img{
  overflow: hidden;
}
.blog-box .blog-img img{
  width: 100%;
  transition: 0.5s;
}
.blog-box .blog-content{
  padding: 28px 2px 30px;
}
.blog-box .blog-content {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
}
.blog-box .blog-content  i{
  display: inline-block;
  color: #0c5adb;
  font-size: 15px;
  padding-right: 7px;
}
.blog-box .blog-content  a{
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: #232323;
  font-family: 'Rajdhani', sans-serif;
  margin-top: 14px;
}
.blog-box .blog-content h4{
  font-size: 28px;
  font-weight: 800;
  line-height: 28px;
  color: #232323;
  font-family: 'Rajdhani', sans-serif;
  margin-top: 14px;
}
.blog-box .blog-content h5{
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  color: #232323;
  font-family: 'Rajdhani', sans-serif;
  margin-top: 14px;
  margin-bottom: 0;
}
.blog-box .blog-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(29, 33, 36, 0.12);
  padding-top: 20px;
}
.blog-box .blog-bottom .blog-author{
  display: inline-block;
  color: #232323;
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
}
.blog-box .blog-bottom .blog-author i{
  display: inline-block;
  margin-right: 10px;
  color: #222;
}
.blog-box .blog-bottom .blog-button a{
  display: inline-block;
  color: #232323;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  transition: .5s;
  font-size: 17px;
}
.blog-box .blog-bottom .blog-button a i{
  display: inline-block;
  font-size: 18px;
  position: relative;
  top: 2px;
  transition: 0.5s;
  color: #232323;
  margin-left: 5px;
}
.footer{
  background: #001638;
  padding: 80px 0;
  position: relative;
}
.footer .footer-widget-desc p{
  color: #fff;
  opacity: 0.8;
  margin: 28px 0 0;
}
.footer-widget h4{
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 26px;
}
.footer-widget ul li a{
  display: inline-block;
  color: #fff;
  line-height: 45px;
  font-family: "Nunito";
  transition: 0.5s;
  position: relative;
  padding-left: 25px;
}
.footer-widget ul li a:before{
  position: absolute;
  content: "\f0a9";
  left: 0px;
  top: 0px;
  font-family: 'FontAwesome';
  color: #004CD8;
}
.footer-contact li {
  position: relative;
  color: #fff;
  font-size: 14px;
  padding-left: 55px;
  margin-bottom: 28px;
  line-height: 1.6em;
}
.footer-contact li span{
  display: block;
  color: #004cd8;
  font-size: 22px;
  font-weight: 600;
  font-family: "Rajdhani", sans-serif;
}
.footer-contact li i {
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 20px;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #004cd8;
  text-align: center;
  border-radius: 50%;
}
.footer-bottom-area{
  border-top: 1px solid #ffffff21;
  margin-top: 107px;
  padding-top: 30px;
}
.footer-bottom-area .footer-bottom-content p{
  color: #fff;
  margin: 0;
}
.footer-bottom-area .footer-icon{
  text-align: right;
}
.footer-bottom-area .footer-icon ul li{
  display: inline-block;
}
.footer-bottom-area .footer-icon ul li a i{
  background: #354662;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  color: #fff;
  font-size: 14px;
  margin-left: 7px;
  transition: 0.5s;
}
.footer-bottom-area .footer-icon ul li a i:hover{
  background: #0C59DB;
}
.breadcrumb{
  background: url(../../assets/img/breadcrumb.jpg);
  padding: 166px 0 110px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -50px;
  position: relative;
  margin-bottom: 0;
}
.breadcumb-content h4 {
  font-size: 55px;
  color: #fff;
}
.breadcumb-content ul {
  border: 2px solid #ffffff47;
  display: inline-block;
  padding: 8px 33px;
  border-radius: 5px;
  margin-top: 26px;
}
.breadcumb-content ul li {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  font-family: "Rajdhani";
  margin: 0 8px;
  position: relative;
}
.breadcumb-content ul li a {
  display: inline-block;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
}
.breadcumb-content ul li:before {
  position: absolute;
  content: "\f105";
  font-family: 'FontAwesome';
  top: 2px;
  right: -15px;
  font-size: 15px;
}
.breadcumb-content ul li:last-child::before{
  display: none;
}
.counter{
  background: url(../../assets/img/counter-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 63px 40px 40px;
  margin-bottom: 100px;
  position: relative;
}
.counter-box{
  text-align: center;
  position: relative;
  margin-bottom: 25px;
}
.counter-box:before{
  position: absolute;
  content: "";
  width: 1px;
  height: 100px;
  right: 0;
  top: 0;
  background-image: linear-gradient(0deg, #0b59db 0%, #0b59db 10%, #ffffff 50%, #0b59db 90%, #0b59db 100%);
}
.counter-box .counter-content h4{
  font-size: 50px;
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  display: inline-block;
}
.counter-box .counter-content span{
  font-size: 50px;
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  display: inline-block;
}
.counter-box .counter-content p{
  opacity: 0.800;
  font-size: 16px;
  color: #ffffff;
  margin: 0 0 0;
}

.contact{
  margin: 100px 0;
}
.contact-white{
  filter: drop-shadow(rgba(217, 217, 217, 0.5) 0px 10px 50px);
  background-color: rgb(255, 255, 255);
  position: relative;
  padding: 39px 37px 38px;
  border-radius: 10px;
}
.contact-box{
  margin-right: 60px;
}
.contact-box .contact-head h4{
  font-size: 36px;
  margin: 0 0 35px;
  color: #041424;
  font-family: "Rajdhani", sans-serif;
  line-height: 1.2;
  font-weight: 700;
}
.contact-box input{
  border: 2px solid rgba(4, 20, 36, 0.1);
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border-radius: 3px;
  outline: 0;
  margin-bottom: 27px;
}
.contact-box textarea{
  border: 2px solid rgba(4, 20, 36, 0.1);
  width: 100%;
  height: 160px;
  padding: 17px 20px;
  border-radius: 3px;
  outline: 0;
  margin-bottom: 27px;
}
.contact-info-box{
  background: url(../../assets/img/contact-info-box-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 60px 30px 49px;
  border-radius: 10px;
}
.contact-info-box .info-content{
  margin-bottom: 50px;
}
.contact-info-box .info-content h4{
  color: #fff;
  font-size: 30px;
  margin: 0;
}
.contact-info-box .box{
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 48px;
}
.contact-info-box .box .icon i{
  display: inline-block;
  color: #fff;
  border: 2px solid #fff;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  text-align: center;
  line-height: 53px;
}
.contact-info-box .box .content p{
  font-size: 15px;
  color: #ffffff;
  font-weight: 400;
  margin: 0;
}
.contact-info-box .box .content h4{
  font-size: 20px;
  color: #ffffff;
  font-weight: 600;
  margin: 1px 0 0;
}
.map{
  position: relative;
  margin: 100px 0;
}


.service-detail{
  padding: 122px 0 121px;
}
.service-detail-content{
  padding-top: 18px;
}
.service-detail-content h4{
  font-size: 36px;
  margin-bottom: 10px;
  color: #041424;
  font-family: "Rajdhani", sans-serif;
  margin-top: 11px;
  line-height: 1.2;
  font-weight: 700;
}
.service-detail-content p{
  font-size: 17px;
  margin-top: 24px;
  line-height: 26px;
  color: #686868;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  transition: 0.5s;
}
.widget-sidber {
  border-radius: 5px;
  background-color: #f7f6ee;
  padding: 32px 41px 29px;
  margin-bottom: 27px;
}
.widget-sidber-content h4 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 46px;
  position: relative;
}
.widget-sidber-content h4:before {
  position: absolute;
  content: "";
  width: 29px;
  height: 2px;
  left: 0;
  bottom: -8px;
  background: #0c5adb;
}
.widget-category ul li img {
  margin-right: 12px;
  transition: 0.5s;
}
.widget-category ul li a:hover img, .widget-category ul li a.active img {
  filter: brightness(0) invert(1);
}
.widget-category ul li a{
  background: #ffff;
  padding: 14px 26px;
  width: 100%;
  display: inline-block;
  margin-bottom: 14px;
  color: #001819;
  font-weight: 500;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  transition: 0.5s;
}
.widget-category ul li a:hover, .widget-category ul li a.active {
  color: #fff;
}
.widget-category ul li a:hover:before, .widget-category ul li a.active:before {
  width: 100%;
  left: 0;
}
.widget-category ul li a:before{
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 50%;
  top: 0;
  background: #0c5adb;
  z-index: -1;
  border-radius: 5px;
  transition: 0.5s;
}
.widget-category ul li a i{
  color: black;
  display: inline-block;
  float: right;
  font-size: 22px;
  opacity: 0;
  transition: 0.5s;
}
.widget-category ul li a:hover i, .widget-category ul li a.active i {
  opacity: 1;
  color: #fff;
}
.widget-sidber-contact-box{
  background: url(../../assets/img/sidber-contact.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  padding: 48px 43px 48px;
}
.widget-sidber-contact h4{
  font-size: 24px;
  color: #ffffff;
  font-weight: 600;
  margin:14px 0;
}
.blog{
  margin: 100px 0;
  position: relative;
}
.widget-sidber {
  border-radius: 5px;
  background-color: #f7f6ee;
  padding: 20px 12px 20px;
  margin-bottom: 27px;
}
.sidber-widget-recent-post {
  margin-bottom: 27px;
  display: flex;
  align-items: center;
  gap: 19px;
}
.recent-widget-thumb img{
  width: 100px;
  height: 80px;
  max-width: unset;
}
.recent-widget-content a {
  transition: 0.5s;
  width: 95%;
  display: inline-block;
  font-size: 18px;
  line-height: 24px;
  color: #041424;
  font-weight: 600;
  font-family: "Rajdhani";
}
.recent-widget-content p {
  font-size: 14px;
  margin: 0;
  color: #0c5adb;
}
.choose-us{
  padding: 124px 0 100px;
  background: url(../../assets/img/choose-us-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.choose-us ul li{
  font-size: 18px;
  color: #041424;
  font-weight: 400;
  font-family: "Nunito";
  margin-bottom: 19px;
  margin-left: 27px;
  position: relative;
}
.choose-us ul li:before{
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  left: -20px;
  top: 9px;
  background: #0c5adb;
  border-radius: 50%;
}
.mission-vision{
  padding: 0px 0 123px;
}
.mission-vision-box{
  background: #f3f8fd;
  padding: 107px 25px 22px 23px;
  margin-left: -24px;
}
.left.mission-vision-box{
  margin-right: -24px;
  margin-left: 0;
}
.mission-vision-box .content h4{
  font-size: 42px;
  margin: 0 0 46px;
  color: #041424;
  font-family: "Rajdhani", sans-serif;
  line-height: 1.2;
  font-weight: 700;
}
.mission-vision-box .content .box{
  margin-bottom: 25px;
}
.mission-vision-box .content .box .icon i{
  width: 45px;
  height: 45px;
  border-radius: 23px;
  filter: drop-shadow(0px 10px 10px rgba(207, 218, 235, 0.2));
  background-color: #ffffff;
  display: inline-block;
  float: left;
  text-align: center;
  line-height: 45px;
  font-size: 25px;
  color: #0C59DB;
  margin-right: 16px;
}
.mission-vision-box .content .box .desc p{

}