@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Space+Grotesk:wght@300..700&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
  font-style: normal;
}

:root {
  --primary-color:#B39011;
  --secondary-color:#01086B;
  --color-black: #3E3E3E;
  --color-grey: #444;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--color-grey);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

hr {
  margin: 0;
  opacity: 1;
  background-color: #ddd;
}

a,
a:hover {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0;
  padding: 0;
  letter-spacing: 0px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-grey);
  font-weight: 400;
  margin-bottom: 10px
}

.p-60 {
  padding: 60px;
}

.p-80 {
  padding: 80px;
}

.p-100 {
  padding: 100px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.px-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.px-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.px-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}


section {
  position: relative;
}

.button-theme {
  padding: 13px 30px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  line-height: 25px;
  font-style: normal;
  font-weight: 600;
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 100px;
  color: #fff;
  transition: all 0.4s ease-in;
}

.button-theme i {
  vertical-align: baseline;
  font-size: 18px;
  margin-left: 6px;
}

.button-theme:hover {
  background-color: transparent;
  color: var(--primary-color);
}
.button-theme.button-outline{
  background-color: transparent;
  color: var(--primary-color);
}
.button-theme.button-outline:hover{
  background-color: var(--primary-color);
  color: #fff;
}
.button-theme.blue-btn {
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: #fff;
}

.button-theme.blue-btn:hover {
  background: transparent;
  color: var(--secondary-color);
}

/* header */
.main-header {
  position: relative;
  box-shadow: 0 0 16px -3px rgba(0, 0, 0, 0.25);
  width:100%;
  left:0;
  top:0;
  right:0;
  z-index:999;
  background:#fff;
  transition: all 0.3s ease;
}
.fixed-header{
  opacity: 0;
    visibility: hidden;
}
.main-header.fixed-header{
  position:fixed;
  opacity: 1;
    visibility: visible;
}
.main-header .top-head {
  background-color: var(--secondary-color);
  padding: 12px 0;
}

.main-header .top-head .info-links ul {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 30px;
}

.main-header .top-head .info-links ul li {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.main-header .top-head .info-links ul li i {
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: var(--secondary-color);
  border-radius: 100px;
  font-size: 16px;
  line-height: 1;
}

.main-header .top-head .info-links ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.main-header .top-head .info-links ul li a:hover {
  color: var(--primary-color);
}

.main-header .top-head .social-link {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 15px;
}

.main-header .top-head .social-link span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.main-header .top-head .social-link ul {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}

.main-header .top-head .social-link ul li a {
  border: 1px solid #fff;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
}

.main-header .top-head .social-link ul li a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.main-header .mobile-header{
  display:none;
}
.main-header .middle-head {
  background-color: #fff;
}
.main-header .middle-head .logo-box {
  position: absolute;
  top: 10px;
  background-color: #fff;
  border-radius: 14px;
  overflow: hidden;
  padding: 10px 0;
}

.main-header .middle-head .logo-box img {
  max-width: 220px;
}

.main-header .middle-head .nav-outer {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 30px;
}

.main-header .middle-head .nav-outer .main-menu>ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 40px;
}

.main-header .middle-head .nav-outer .main-menu ul li a {
  display: block;
  padding: 25px 0px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-black);
}

.main-header .middle-head .nav-outer .main-menu ul li a:hover,
.main-header .middle-head .nav-outer .main-menu ul li.current-menu-item a {
  color: var(--primary-color);
}
.main-header .middle-head .nav-outer .main-menu ul li.menu-item-has-children{
  position: relative;
}
.main-header .middle-head .nav-outer .main-menu ul li.menu-item-has-children>a{
  padding-right: 25px;
}
.main-header .middle-head .nav-outer .main-menu ul li.menu-item-has-children>a::after{
  content: "\ea4a";
  font-family: 'boxicons' !important;
  position: absolute;
  right: 2px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}
.main-header .middle-head .nav-outer .main-menu ul li.menu-item-has-children .sub-menu{
  position: absolute;
  top: 100%;
  left: -15px;
  background-color: #fff;
  border-radius: 2px;
  padding: 0;
  opacity: 0;
  z-index: 999;
  width: max-content;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -ms-box-shadow: 0px 7px 10px -1px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0px 7px 10px -1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 7px 10px -1px rgb(0 0 0 / 20%);
  visibility: hidden;
}
.main-header .middle-head .nav-outer .main-menu ul li.menu-item-has-children .sub-menu a{
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
}
.main-header .middle-head .nav-outer .main-menu ul li.menu-item-has-children:hover .sub-menu{
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0px);
  transform: translate(0px);
}
/* header end */
/* footer */
.footer {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #020842;
}

.footer .footer-main {
  padding: 50px 0;
}

.footer .footer-main .footer-heading {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 15px;
}

.footer .footer-main .info-footer ul li {
  /* display: flex;
  justify-content: start;
  align-items: start;
  gap: 10px; */
  padding-left: 50px;
  margin-bottom: 15px;
  position: relative;
}

.footer .footer-main .info-footer ul li i {
  color: var(--secondary-color);
  font-size: 22px;
  position: absolute;
  left: 0;
  top: 4px;
  background-color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
}
.footer .footer-main .info-footer ul li span{
  display: block;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.footer .footer-main .info-footer ul li a {
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  font-size: 14px;
}

.footer .footer-main .info-footer ul li a:hover {
  color: var(--primary-color);
}

.footer .quick-links ul {
  column-count: 2;
}

.footer .quick-links ul li {
  margin-bottom: 10px;
}

.footer .quick-links ul li a {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}

.footer .quick-links ul li a:hover {
  color: var(--primary-color);
}

.footer .footer-content {
  text-align: center;
}

.footer .footer-logo {
  margin-bottom: 20px;
}

.footer .footer-logo img {
  border: 2px solid #fff;
  border-radius: 5px;
  max-width: 250px;
  background-color: #fff;
  padding: 10px;
}

.footer p {
  color: #fff;
  line-height: 1.5;
  font-size: 16px;
}

.footer .footer-social .footer-heading {
  color: #fff;
}

.footer .footer-social ul {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
}

.footer .footer-social ul li a {
  background-color: var(--primary-color);
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 16px;
  border-radius: 100px;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.foote  .footer-content .footer-social ul li a:hover {
  color: var(--primary-color);
  background-color: #fff;
}

.footer .copyright {
  padding: 10px;
  border-top: 1px solid #e9e9e96c;
}

.footer .copyright p {
  color: #fff;
  text-align: center;
  margin: 0;
}

.owl-theme .owl-dots .owl-dot span {
  background: #ddd;
  width: 30px;
  height: 5px;
}

.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--primary-color);

}
/* banner */
.home-banner .banner-area{
  height: 550px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
  display: flex;
  align-items: center;
}
.home-banner .banner-area .banner-cotnent{
  text-align: center;
}
.home-banner .banner-area .banner-cotnent .banner-heading{
  font-size: 40px;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}
.home-banner .banner-area .banner-cotnent .banner-heading span{
  color: var(--primary-color);
}
.home-banner .banner-area .banner-cotnent p{
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  display: block;
}
.home-banner .banner-area .banner-cotnent .banner-stats ul{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}
.home-banner .banner-area .banner-cotnent .banner-stats ul li{
  background: #fff;
  padding: 14px;
  border-radius: 20px;
  width: 180px;
  text-align: center;
}
.home-banner .banner-area .banner-cotnent .banner-stats ul li img{
  width: 50px;
  margin: auto;
  margin-bottom: 10px;
}
.home-banner .banner-area .banner-cotnent .banner-stats ul li span{
  display: block;
  font-weight: 600;
  color: var(--color-grey);
}

/* overview */
.overview {
  padding: 50px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.overview .image-box {
  width: 100%;
  height: 100%;
}

.overview .image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-content .title {
  border: 1px solid var(--primary-color);
  border-radius: 100px;
  padding: 8px 20px;
  text-align: center;
  color: var(--color-black);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
}

.section-content .heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-black);
  margin-bottom: 10px;
}

.section-content .heading span {
  color: var(--secondary-color);
}
.what-we-do{
  padding: 60px 0;
}
.what-we-do .service-tab .nav-tabs{
  border: 0;
  gap: 15px;
}
.what-we-do .service-tab .nav-tabs .nav-link{
  width: 190px;
  height: 150px;
  background-color: #f3f2f2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.14);
  border: 0;
  border-radius: 10px;
  margin: 0;
}
.what-we-do .service-tab .nav-tabs .nav-link .icon{
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 100px;
  display: block;
  margin:0 auto;
  padding: 12px;
}
.what-we-do .service-tab .nav-tabs .nav-link img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.what-we-do .service-tab .nav-tabs .nav-link span{
  font-size: 16px;
  color: var(--color-black);
  font-weight: 600;
  line-height: 1.5;
}
.what-we-do .service-tab .nav-tabs .nav-link.active,
.what-we-do .service-tab .nav-tabs .nav-link:hover{
  background-color: var(--primary-color);
}
.what-we-do .service-tab .nav-tabs .nav-link.active span,
.what-we-do .service-tab .nav-tabs .nav-link:hover span{
  color: #fff;
}
.what-we-do .tab-pane{
  padding-top: 40px;
}
.what-we-do .tab-pane h4{
  font-size: 28px;
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 15px;
}
.what-we-do .tab-pane .image{
  width: 100%;
  height: 400px;
}
.what-we-do .tab-pane .image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
/* why choose */
.why-choose{
  padding: 60px 0;    
  background-image: url(../images/22bg-1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.why-choose .card-whychoose{
  background-color:#fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 20px;
  height: 100%;
  text-align: center;
  border-radius: 10px;
}
.why-choose .card-whychoose .image{
  max-width: 300px;
  height: 180px;
  margin: auto;
  display: block;
  margin-bottom: 15px;
}
.why-choose .card-whychoose .image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.why-choose .card-whychoose h4{
  font-size: 22px;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.5;
}
.why-choose .card-whychoose p{
  margin: 0;
}
/* industry-expertise */
.industry-expertise{
  padding: 60px 0;
}
.industry-expertise .card-industry{
  width: 100%;
    height: 100%;
    background: #fff;
    /* -webkit-box-shadow: 0 8px 24px rgba(149, 157, 165, .2);
    box-shadow: 0 8px 24px rgba(149, 157, 165, .2); */
    border-radius: 10px;
    padding: 25px 10px;
    border: 1px solid #ddd;
    text-align: center;
    -webkit-transition: .4s ease-in;
    -o-transition: .4s ease-in;
    transition: .4s ease-in;
    position: relative;
    cursor: pointer;
    text-align: center;
}
.industry-expertise .card-industry .img{
  width: 60px;
  height: 60px;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  background-color:#175cff;
}
.industry-expertise .col-md-3:nth-child(4n-1) .card-industry .img{
  background-color: var(--primary-color);
}
.industry-expertise .col-md-3:nth-child(4n-2) .card-industry .img{
  background-color:#74b51b;
}
.industry-expertise .col-md-3:nth-child(4n-3) .card-industry .img{
  background-color:#ff6b35;
}
.industry-expertise .card-industry .img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(0) brightness(10);
}
.industry-expertise .card-industry p{
  margin: 0;
  font-size: 18px;
  font-weight:500;
  color: var(--color-grey);
}
.industry-expertise .card-industry:hover{
  background-color: rgba(23, 93, 255, 0.20);
}
.industry-expertise .col-md-3:nth-child(4n-1) .card-industry:hover{
  background-color:rgb(179 144 17 / 20%);
}
.industry-expertise .col-md-3:nth-child(4n-2) .card-industry:hover{
  background-color: rgb(116 181 27 / 20%);
}
.industry-expertise .col-md-3:nth-child(4n-3) .card-industry:hover{
  background-color:rgb(255 107 53 / 20%);
}
/* Client Testimonials */
.testimonial-section{
  padding: 60px 0;
  background-image: url(../images/shape-1-1.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.testimonial-section .call-button{
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 15px;
}
.testimonial-section .call-button .icon{
  width: 60px;
  height: 60px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
}
.testimonial-section .call-button .icon i{
  font-size: 30px;
  color: #fff;
  font-weight: 400;
}
.testimonial-section .call-button .call-info{
  width: calc(100% - 60px);
  padding-left: 20px;
}
.testimonial-section .call-button .call-info p{
  margin: 0;
  line-height: 1.2;
}
.testimonial-section .call-button .call-info a{
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
}
.testimonial-section .item{
  padding: 20px;
}
.testimonial-section .card-testimonial{
  background-color: #fff;
  padding: 40px;
  box-shadow: 0 0 16px -3px rgb(0 0 0 / 20%);
  border-radius: 20px;
  position: relative;
}
.testimonial-section .card-testimonial .rating{
  display: flex;
  justify-content: start;
  align-items: center;
  gap:2px;
}
.testimonial-section .card-testimonial .rating i{
  color:#FFBE16;
  font-size: 20px;
  font-weight: 600;
}
.testimonial-section .card-testimonial p{
  margin: 20px 0;
}
.testimonial-section .card-testimonial .box-footer{
  display: flex;
  justify-content: start;
  align-items: center;
}
.testimonial-section .card-testimonial .box-footer .icon{
  width: 80px;
  height: 80px;
  border-radius: 100px;
  overflow: hidden;
}
.testimonial-section .card-testimonial .box-footer .icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-section .card-testimonial .box-footer .name{
  width: calc(100% - 80px);
  padding-left: 20px;
}
.testimonial-section .card-testimonial .box-footer .name h4{
  color:var(--color-black);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600
}
.testimonial-section .card-testimonial .box-footer .name span{
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 400;
  color:#444;
}
.testimonial-section .card-testimonial::after{
  content: "\ee82";
  font-family: 'boxicons' !important;
  position: absolute;
  right: 20px;
  bottom: 30px;
  font-size: 60px;
  color: var(--primary-color);
}
/* contact form */
.contact-form{
  padding: 60px 0;
  background-image: url(../images/service-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

}
.contact-form .inner-box{
  border: 2px solid #ddd;
  background-color: #ffffff95;
  padding: 80px 60px;
  border-radius: 20px;
}
.contact-form .inner-box .form-box .form-label{
  font-weight: 600;
  font-size: 16px;
}
.contact-form .inner-box .form-box .form-control,
.contact-form .inner-box .form-box .form-select{
  border-radius: 30px;
  background-color: #d2eaff33;
  height: 45px;
  padding: 10px 25px;
}
.contact-form .inner-box .form-box textarea.form-control{
  height: 100px;
}
.contact-form .inner-box .form-box .button-theme{
  margin-top: 20px;
}
.contact-form .form-info{
  border-radius: 30px;
  background-color: var(--secondary-color);
  padding: 45px 30px;
  height: 100%;

}
.contact-form .form-info h4{
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}
.contact-form .form-info ul.info-item li{
  margin-bottom: 30px;
  padding-left: 60px;
  position: relative;
}
.contact-form .form-info ul.info-item li i{
  position: absolute;
  left:0;
  top: 5px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 10px;
  background-color: hsla(0, 0%, 100%, .1);
  color:#fff;
  font-size: 18px;
}
.contact-form .form-info ul.info-item li span{
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 400;
  display: block;
}
.contact-form .form-info ul.info-item li a{
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.contact-form .form-info ul.info-item li a:hover{
  color: var(--primary-color);
}
.contact-form .form-info .social-contact{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.contact-form .form-info .social-contact li a{
  background-color: #fff;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}
.contact-form .form-info .social-contact li a:hover{
  background-color: var(--primary-color);
  color:#fff;
}
/* blog section */
.blog-section {
  padding: 60px 0;
}

.blog-section .blog-card {
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.blog-section .blog-card .image {
  width: 100%;
  height: 200px;
  position: relative;
}

.blog-section .blog-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.blog-section .blog-card .image .date {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  width: 50px;
  border-radius: 5px;
  display: inline-block;
  padding: 10px;
  text-align: center;
}

.blog-section .blog-card .conent-blog {
  padding: 15px;
}

.blog-section .blog-card .conent-blog h4 {
  font-weight: 600;
  color: var(--color-black);
  font-size: 18px;
  line-height: 1.5;
}

.blog-section .blog-card .conent-blog a {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
}

.blog-section .blog-card .conent-blog a i {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: #000;
  color: #fff;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* blogs details */
.blog-details {
  padding: 60px 0
}
.blog-single-post {
  position: relative;
  margin-bottom: 40px
}

.blog-single-post.blog-salah .image img {
  width: auto;
  height: 500px
}

.blog-single-post .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px
}
.blog-single-post .image img{
  width: 100%;
}
.blog-single-post .lower-content {
  position: relative;
  padding: 30px;
  border: 1px solid #ebf2f3;
  border-top: 0;
  border-radius: 5px
}

.blog-single-post ul.post-meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  margin-bottom: 13px
}

.blog-single-post .post-meta li {
  margin-right: 15px;
  padding-right: 15px;
  font-weight: 600;
  border-right: 1px solid #ddd
}

.blog-single-post .post-meta li i {
  margin-right: 8px;
  color: var(--primary-color)
}

.blog-single-post .post-meta li:last-child {
  border-right: 0
}


.blog-single-post h1 {
  font-size: 30px;
  line-height: 44px;
  color: #3f3f3f
}

.blog-single-post h3 {
  font-size: 28px;
  line-height: 42px;
  color: #3f3f3f
}

.blog-single-post .text {
  margin-bottom: 40px
}

.blog-single-post .text ul {
  padding-left: 0
}

.blog-single-post .text ul li {
  list-style: none;
  margin-bottom: 10px;
  color: #3f3f3f;
  position: relative;
  padding-left: 30px
}

.blog-single-post .text ul li:before {
  color: var(--primary-color);
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0
}

.blog-single-post .text ol {
  list-style: auto
}

.blog-single-post .text ol li {
  list-style: inherit;
  margin-bottom: 15px;
  color: #3f3f3f;
  font-size: 16px
}

.blog-single-post .text b,
.blog-single-post .text strong {
  font-weight: 600;
  color: var(--color-black)
}

.blog-single-post .text h2 {
  position: relative;
  font-size: 28px;
  line-height: 44px;
  font-weight: 700;
  font-family: inherit;
  margin-bottom: 15px
}

.blog-single-post .text h3,
.blog-single-post .text h4,
.blog-single-post .text h5 {
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  font-family: inherit
}

.blog-single-post .text h3 {
  font-size: 24px
}

.blog-single-post .text h4 {
  font-size: 22px
}

.blog-single-post .text h5 {
  font-size: 20px
}

.blog-single-post .text h6 {
  position: relative;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  font-family: inherit;
  margin-bottom: 15px
}

.blog-single-post .text table tr td,
.blog-single-post .text table tr th {
  border: 2px solid #ddd;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500
}

.blog-single-post blockquote {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  color: #565872;
  margin-bottom: 30px
}

.blog-single-post blockquote:before {
  position: absolute;
  content: '';
  top: 0;
  width: 8px;
  bottom: 0;
  background: var(--primary-color);
  left: 0;
  border-radius: 5px
}

.widget {
  position: relative;
  margin-bottom: 50px
}

.widget_popular_post {
  position: relative;
  max-width: 350px;
  margin-left: auto
}

.widget .widget-title {
  position: relative;
  font-size: 20px;
  color: #3f3f3f;
  margin-bottom: 20px;
  font-weight: 600
}

.widget_popular_post .post-thumb {
  position: relative;
  margin-right: 15px;
  margin-bottom: 0;
  overflow: hidden
}

.widget_popular_post .post-thumb:before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgb(16 34 53/59%);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  transition: .3s ease-in
}

.widget_popular_post .post-thumb:hover:before {
  opacity: 1;
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-animation: .75s circle;
  animation: .75s circle
}

.widget_popular_post .post-thumb img {
  border-radius: 5px;
  float: left;
  height: 60px;
  width: 60px;
  object-fit: cover
}

.widget_popular_post .post {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  border: 1px solid #e3e3e3;
  padding: 14px;
  border-radius: 5px
}

.widget_popular_post .content {
  position: relative;
  width: calc(100% - 75px)
}

.widget_popular_post .content h5 {
  position: relative;
  font-size: 16px;
  margin-bottom: 3px;
  font-weight: 600;
  font-family: inherit
}

.widget_popular_post .content h5 a {
  color: #3f3f3f;
  transition: .5s
}

.widget_popular_post .content .post-info {
  font-size: 14px;
  color: #3f3f3f
}

.widget_popular_post .content .post-info i {
  margin-right: 4px;
  color: var(--primary-color)
}
.our-project{
  padding: 60px 0;
  background-color: rgb(5 27 48);
  background-image: url(../images/Mask-group-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.our-project .section-content .title{
  color: #fff;
  border-color: #fff;
}
.our-project .section-content .heading{
  color: #fff;
}
.our-project .section-content .heading span{
  color: var(--primary-color);
}
.our-project .project-card{
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  height: 100%;
  transition: all 0.3s linear;
}
.our-project .item{
  padding: 10px;
}
.our-project .project-card .image{
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}
.our-project .project-card .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.our-project .project-card .content{
  padding-right: 40px;
  padding-top: 10px;
  position: relative;
}
.our-project .project-card .content h4{
  font-size: 18px;
  color:#000;
  font-weight: 600;
}
.our-project .project-card .content p{
  margin: 0;
  color: var(--color-grey);
}
.our-project .project-card .content .url{
  position: absolute;
    right: 10px;
    bottom: 0;
    top: 0;
    margin: auto;
    display: flex;
    align-items: center;
}
.our-project .project-card .content .url a{
  width: 35px;
  height: 35px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  color: #fff;
  font-size: 20px
}
.our-project .project-card:hover{
  background-color:#fff9e4;
}
/* technology */
.technology-stack{
  padding: 60px 0;
  background-color: #fff9ec;
}
.technology-stack .image{
  width: 100%;
}
.technology-stack .image img{
  width: 100%;
}
.technology-stack .tech-tab{
  margin: 20px 0;
}
.technology-stack .tech-tab .nav-tabs{
  border: 0;
  gap:10px;
}
.technology-stack .tech-tab .nav-tabs .nav-link{
  background-color: #fff;
  padding: 8px 30px;
  border-radius: 100px;
  text-align: center;
  color: var(--color-black);
  font-weight: 600;
  line-height: 1.5;
  border: 1px solid #ddd;
  margin: 0;
}
.technology-stack .tech-tab .nav-tabs .nav-link.active{
  background-color: var(--secondary-color);
  color: #fff;
}
.technology-stack .card-tech{
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 15px;
}
.technology-stack .card-tech li{
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 30%;
  border: 1px solid #ddd;
}
.technology-stack .card-tech li img{
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.technology-stack .card-tech li span{
  font-size: 16px;
  color: var(--color-black);
  font-weight: 600;
  line-height: 1.5;
  display: block;
  margin-top: 15px;
}
.banner-section{
  padding: 60px 0;
}
.banner-section h1{
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  color:#fff;
  margin-bottom: 10px;
}
.banner-section .breadcrumb{
  justify-content: center;
}
.banner-section .breadcrumb .breadcrumb-item.active{
  color: #fff;
}
.banner-section .breadcrumb .breadcrumb-item+.breadcrumb-item::before{
  color: #fff;
}
.faq-section{
  padding: 50px 0;
}
.accordion{
  margin-bottom: 15px;
}
.accordion-item{
	position: relative;
	margin-bottom: 10px;
	border: none;
	background-color: #ffffff;
	color: inherit;
	border-radius: 10px !important;
	box-shadow: none;
	transition: all .25s ease-in-out;
	box-shadow: 0 0 45px 5px rgba(0,27,33,.05);
}
.accordion-button{
	display: block;
	position: relative;
	padding: 15px 20px 15px 30px;
    font-size: 20px;
    line-height: 26px;
    font-weight: normal;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    color: var(--color-black);
	background-color: transparent;
}
.accordion-item:first-of-type .accordion-button{
	border-radius: 0px;
}
.accordion-button:not(.collapsed){
	box-shadow: none;
	color: var(--secondary-color);
	transition: all .25s ease-in-out;
	background-color: transparent;
  font-weight: 600;
}
.accordion-item .pbmit-accordion-icon{
    width: auto;
    display: inline-block;
    font-size: 10px;
	width: 30px;
    text-align: center;
    height: 30px;
    line-height: 28px;
    border-radius: 50px;
    color:#fff;	
	background-color: var(--secondary-color);
}
.accordion-item .pbmit-accordion-icon-right{
	float: right;
}
.accordion-button .pbmit-accordion-icon-closed {
    display: none;
}
.accordion-button.collapsed .pbmit-accordion-icon-closed {
    display: block;
}
.accordion-button .pbmit-accordion-icon-opened {
    display: block;
}
.accordion-item.collapsed .pbmit-accordion-icon-opened {
    display: none;
}
.accordion-item .pbmit-accordion-icon svg{
	fill: #fff;
	width: 1em;
	height: 1em;
}
.accordion-button::after{
	display: none;
}
.accordion-button:focus{
	box-shadow: none;
}
.accordion-body ul li{
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
}
.accordion-body ul li::before{
    content: "\e9b4";
    font-family: 'boxicons';
    position: absolute;
    left:0;
    rotate: 180deg;
    color: var(--secondary-color);
}
.about-banner{
  padding: 60px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-banner .section-content{
  text-align: start;
}
.about-banner .section-content .title{
    color: #fff;
    border: 0;
    font-size: 18px;
}
.about-banner .section-content .heading{
color: #fff;
}
.about-banner .section-content .heading span{
  color: var(--primary-color);
}
.mission-vision{
  padding:50px 0;
}
.mission-vision .card-mission{
  border-radius: 10px;
  background-color: var(--secondary-color);
  padding: 40px;
  text-align: start;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.mission-vision .card-mission .content{
  width: calc(100% - 100px);
  padding-right: 20px;
}
.mission-vision .card-mission .content h4{
  color:#ffc802;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: 600;
}
.mission-vision .card-mission .content p{
  margin: 0;
  color: #fff;
}
.mission-vision .card-mission .icon{
      width: 100px;
    height: 100px;
    border-radius: 100px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border: 2px solid var(--primary-color);
}
.mission-vision .card-mission .icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(10) brightness(5);
}
.about-whatwe{
  padding: 50px 0;
  background-color: #f7f8fa;
}
.about-whatwe .item{
  width: 100%;
  height: 100%;
  padding: 10px;
}
.about-whatwe .card-whatwe{
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  height: 100%;
}
.about-whatwe .card-whatwe .icon{
  width: 60px;
  height:60px;
  margin-bottom: 20px;
}
.about-whatwe .card-whatwe .icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-whatwe .card-whatwe .content h4{
  font-size: 16px;
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 1.5;
}
.about-whatwe .card-whatwe .content p{
  margin-bottom: 0;
}
.about-whychoose{
  padding: 50px 0;
}
.about-whychoose .choose-list ul li{
  margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 100px;
    padding: 10px;
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
}
.about-whychoose .choose-list ul li .counter{
  background-color:var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
}
.about-whychoose .choose-list ul li .box-list{
  width: calc(100% - 50px);
  padding-left: 20px;
}
.about-whychoose .choose-list ul li .text-choose{
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 1.5;
}
.about-whychoose .choose-list ul li p{
  margin: 0;
}
.about-whychoose .image-box{
  width: 100%;
  height: 100%;
}
.about-whychoose .image-box img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}