
  @import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600&display=swap');
 
  @import url('https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    padding: 0;
    background-color: #fdfefe;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px !important;
  }
  img {
      max-width:100%;
  }
.heading-font {

    font-family: 'Tinos', serif;

} 
.bg-grey {
    background-color: #F4F5F8;
}

p {
      color: #666;  
}


  /* HEADER CSS */
  .navbar-toggler{
      border: none;
  }
  .navbar-toggler:focus{
          box-shadow: none;
  }
  
  .burger-menu {
    width: 20px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    -webkit-transition: transform 330ms ease-out;
    -moz-transition: transform 330ms ease-out;
    -o-transition: transform 330ms ease-out;
    transition: transform 330ms ease-out;
    }
    .line-menu.first-line {
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: right;
    }
    .line-menu.line-half {
    width: 50%;
    }
    .line-menu {
    background-color: #fff;
    border-radius: 0;
    width: 100%;
    height: 2px;
    }
    .line-menu.last-line {
    align-self: flex-end;
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: left;
    }
    .line-menu.line-half {
    width: 50%;
    }
  
  .header-sticky .line-menu {
    background: #f6502e;
}
  
  .navbar-expand-lg .navbar-collapse {
    justify-content: flex-end;
}
.navbar {
    background: #F6522E !important;
}
.navbar-nav .nav-item .nav-link {
    color: #fff;
}
.navbar-nav .nav-item .active  {
    color: #fff;
    border-bottom: 2px solid #fff;
    padding: 2px 0px;
}

ul.navbar-nav {
    align-items: center;
    gap: 20px;
}
.navbar-collapse ul li>a {
    display: block;
    
    font-size: 18px;
    
    font-weight: 800;
  
    color: #fff;
    padding: 0;
    margin: 0;
    line-height: 1;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    position: relative;
    z-index: 1;
}

.sticky-logo {
    display: none;
}
.header-sticky.sticky-logo {
    display: block;
}

.navbar-collapse ul li>a:before {
    background-color: #fff;
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    display: inline-block;
    width: 100%;
    height: 2px;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: 0.3s cubic-bezier(0.45, 0.1, 0, 0.95);
    -o-transition: 0.3s cubic-bezier(0.45, 0.1, 0, 0.95);
    transition: 0.3s cubic-bezier(0.45, 0.1, 0, 0.95);
}
.navbar-collapse ul li.active>a:before, .navbar-collapse ul li:hover>a:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}
.header-sticky {
       background: #2c2c2c !important;
    position: fixed;
    top: 0;
    z-index: 99999;
    width: 100%;
    box-shadow: 0px 10px 50px #2c2c2c7a;
    
}
/*.header-sticky .navbar-nav .nav-item .nav-link{*/
/*    color: #222;*/
/*}*/
.header-sticky .navbar-nav .nav-item .active  {
        color: #c7472e;
    border-bottom: 2px solid #c7472e;
    padding: 2px 0px;
}
.header-sticky ul li>a:before {
    background-color: #222;
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    display: inline-block;
    width: 100%;
    height: 2px;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: 0.3s cubic-bezier(0.45, 0.1, 0, 0.95);
    -o-transition: 0.3s cubic-bezier(0.45, 0.1, 0, 0.95);
    transition: 0.3s cubic-bezier(0.45, 0.1, 0, 0.95);
}
.header-sticky ul li.active>a:before, .header-sticky ul li:hover>a:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

/* BANNER SECTION CSS */

.banner_content {
    position: absolute;
    z-index: 1;
    top: 18%;
    left: 50%;
    color: #fff;
}

.bnr-content-header h1 {
    font-size: 46px;
    font-weight: 600;
    line-height: 55px;
    margin: 0 0 10px;
    color: #fff;
}
.bnr-content-header p {
    color: #ddd;
   
    margin-bottom: 35px;
}

.inner-bnr-content {
    z-index: 9999;
    position: relative;
    top: 50%;
}

.inner-banner:after {
   
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(358deg, #000000f5 3.3%, rgba(33, 33, 33, 0) 75.1%);
}
/*
inspired from http://codepen.io/Rowno/pen/Afykb
& https://jsfiddle.net/q0rgL8ws/
*/
.carousel-fade .carousel-inner .item {
    opacity: 0;
    transition-property: opacity;
      overflow:hidden;
  }
  .carousel-item.active img {
      transition: transform 7000ms linear 0s;
      /* This should be based on your carousel setting. For bs, it should be 5second*/
      transform: scale(1.25, 1.25);
      
  }
  .carousel-fade .carousel-inner .active {
    opacity: 1;
  }
  
  .carousel-fade .carousel-inner .active.left,
  .carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
  }
  
  .carousel-fade .carousel-inner .next.left,
  .carousel-fade .carousel-inner .prev.right {
    opacity: 1;
  }
  
  .carousel-fade .carousel-control {
    z-index: 2;
  }
  
  /*
  WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
  now override the 3.3 new styles for modern browsers & apply opacity
  */
  @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-fade .carousel-inner > .item.next,
      .carousel-fade .carousel-inner > .item.active.right {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
      }
      .carousel-fade .carousel-inner > .item.prev,
      .carousel-fade .carousel-inner > .item.active.left {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
      }
      .carousel-fade .carousel-inner > .item.next.left,
      .carousel-fade .carousel-inner > .item.prev.right,
      .carousel-fade .carousel-inner > .item.active {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
      }
  }
  .carousel-inner{
    height: 600px !important;
  }

  @-webkit-keyframes zoom {
    from {
      -webkit-transform: scale(1, 1);
    }
    to {
      -webkit-transform: scale(1.5, 1.5);
    }
  }
  
  @keyframes zoom {
    from {
      transform: scale(1, 1);
    }
    to {
      transform: scale(1.5, 1.5);
    }
  }
  
  .carousel-inner .carousel-item > img {
    -webkit-animation: zoom 20s;
    animation: zoom 20s;
  }
  .carousel:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, #000000f5 3.3%, rgba(33, 33, 33, 0) 75.1%);
}

  /* DIVIDER CSS */

  .divider {
    position: relative;
    display: block;
      height: 140px;
      bottom: -140px;
      margin-top: -100px;
  overflow: hidden;
  }
.divider::after {
      
      height: 100px;
      bottom: 0;
      transform: translate(-5%,-100%);
      -ms-transform: translate(-5%,-100%);
      -webkit-transform: translate(-5%,-100%);
      content: "";
      position: absolute;
      width: 110%;
      z-index: -1;
    
    transform: matrix(1, 0, 0, -1, 0, 0);
  }

  /* SERVICE BOX CSS */

  .service-box {
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.14);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
        transition: 0.3s;
    transform: scale(1);
}
.service-box:hover {
    transform: scale(1.05);
}
.service-box .content {
    min-height: 155px;
}
.icon img {
    width: 60px;
    height: 60px;
}
.content h4 {
    font-size: 26px;
    font-weight: 800;
    margin-top: 10px;
    color: #3B3B3B;
}
.service:after{
    content: '';
    background: #28292D;
    background-image: url(../images/Rectangle.png);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 64px;
    z-index: -1;
}
section.service {
    position: relative;
    bottom: 65px;
}

/* NUMBER CSS */

.crnt-num {
    position: relative;
    padding: 70px 0 100px;
}
.count::after {
    content: '+';
}
.number-box {
    display: flex;
    justify-content: space-between;
    /*box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.14);*/
    /*border-radius: 20px;*/
    /*padding: 40px 80px;*/
    /*    box-shadow: #f7512e3b 0px 0px 15px;*/
}
.num-title h4 {
    font-size: 16px;
    color: #ff6400;
    /*text-transform: uppercase;*/
    /*letter-spacing: 1px;*/
}
.num-title h2 {
    font-size: 40px !important; 
    line-height: 52px;
    font-weight: 700;
    letter-spacing: 0px;
        margin-bottom: 70px;
}
.numbers {
    display: flex;
    gap: 20px;
    padding: 25px 40px;
    box-shadow: #f7512e3b 0px 0px 15px;
    border-radius: 10px;
    width: 30%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position:relative;
}
.num-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.numbers:after {
    content: '';
    border-top: 5px solid #f6522e;
    border-right: 5px solid #f6522e;
    width: 25%;
    height: 30%;
    position: absolute;
    top: -3px;
    right: -3px;
    transition: all .3s;
}
.numbers:before {
    content: '';
    border-bottom: 5px solid #f6522e;
    border-left: 5px solid #f6522e;
    width: 25%;
    height: 30%;
    position: absolute;
    bottom: -3px;
    left: -3px;
    transition: all .3s;
}

.numbers:hover:after {
    border-right: 0;
    border-top: 10px solid #f6522e;
    top: -10px;
    right: 0;
    border-left: 10px solid #f6522e;
    bottom: 0;
    left: -10px;
}

.numbers:hover:before {
        border-bottom: 10px solid #f6522e;
    border-left: 0;
    bottom: 0;
    left: 304px;
    border-right: 10px solid #f6522e;
    border-top: 0;
    top: 174px;
    right: 0;
}
/*.numbers::after {*/
/*    border-right: 1px solid #ccc;*/
/*    content: '';*/
/*    position: relative;*/
/*    left: 90px;*/
/*}*/

/*.numbers:last-child::after {*/
/*    border-right: 0px;*/
/*}*/




/* TRUSTED COMPANY CSS */



.cust-col{
    position: relative;
    z-index: 9;
}
section.trust {
    padding: 100px 0;
    background: #2C2C2C;
    position: relative;
}
.trusted-right img {
    width: 100%;
    /* position: relative;
    z-index: 9; */
}

.cust-rw:after {
  content: '';
  height: 250px;
  width: 53%;
  position: absolute;
  bottom: 38px;
  right: 0;
  background: #F7522E;
  border-radius: 0px 0px 0px 80px;
  z-index: 0;
}
/* .trusted-left {
    padding-right: 190px;
} */
.trusted-left h2 {
    font-size: 40px !important;
    font-weight: 400;
    line-height: 56px;
    color: #fff;
    margin-bottom: 20px;
}
.trusted-left h4 {
    color: #fff;
    font-size: 26px;
    font-weight: 300;
}
.trusted-left p {
    
    color: #fff;
    margin-bottom: 35px;
}
.cust-btn {
    background: #f7512e;
    color: #fff;
    text-decoration: none;
    padding: 10px 30px;
    /*border-radius: 20px;*/
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    border: 1px solid #f7512e;
        -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.cust-btn:hover {
        color: #f7512e;
    border-color: #f7512e;
    background: #fff;

}
/*.cust-btn:hover::before {*/
/*    border-top: 20px solid transparent;*/
/*    border-left: 20px solid #f7512e !important;*/
/*    border-bottom: 20px solid transparent;*/
/*}*/
/*.cust-btn:hover::after {*/
/*    width: 100%;*/
/*}*/
/*.cust-btn::before{*/
/*    content: "";*/
/*    position: absolute;*/
/*    border-right: 0;*/
/*    border-top: 20px solid transparent;*/
/*    border-left: 20px solid #2c2c2c;*/
/*    border-bottom: 20px solid transparent;*/
/*    top: 2px;*/
/*    left: -1px;*/
/*        -webkit-transition: all 0.5s;*/
/*    transition: all 0.5s;*/
   
    
/*}*/


/*.cust-btn::after {*/
/*    position: absolute;*/
/*    content: "";*/
/*    background-color: #fa4612;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 0;*/
/*    height: 100%;*/
/*    -webkit-transition: all 0.5s;*/
/*    transition: all 0.5s;*/
/*    z-index: -1;*/
/*}*/
/*.bnr-content-header.cust-btn::after {*/
/*    position: absolute;*/
/*    content: "";*/
/*    background-color: #fa4612;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 0;*/
/*    height: 100%;*/
/*    -webkit-transition: all 0.5s;*/
/*    transition: all 0.5s;*/
/*    z-index: -1;*/
/*}*/

/*.bnr-content-header .cust-btn::before, .trusted-left .cust-btn::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    border-right: 0;*/
/*    border-top: 20px solid transparent;*/
/*    border-left: 20px solid #fff;*/
/*    border-bottom: 20px solid transparent;*/
/*    top: 2px;*/
/*    left: -1px;*/
/*    transition: all 0.5s;*/
/*}*/

/*.bnr-content-header .cust-btn:hover::before {*/
/*    border-top: 20px solid transparent;*/
/*    border-left: 20px solid #f7512e;*/
/*    border-bottom: 20px solid transparent;*/
/*}*/

.footer-logo a img {
    width: 100%;
    max-width: 250px;
}
/* WHY US CSS */

.why-right p {
    text-align: justify;
}

.why-us {
    padding: 100px 0;
    position: relative;
    /*background: #F6522E;*/
}
.why-left img {
    width: 100%;
    position: relative;
    z-index: 9;
        min-height: 390px;
}
.cust-row:after {
  content: '';
  height: 250px;
  width: 47%;
  position: absolute;
  bottom: 30%;
  left: 0;
  /* background: #2C2C2C; */
  background: #F6522E;
  border-radius: 0px 0px 80px 0px;
}
/*.why-right h4 {*/
/*    font-size: 26px;*/
/*    font-weight: 300;*/
/*    color: #fff;*/
/*    text-align: right;*/
/*}*/
/*.why-right h2 {*/
/*    font-size: 42px;*/
/*    font-weight: 400;*/
/*    line-height: 56px;*/
/*    color: #fff;*/
/*    margin-bottom: 20px;*/
/*    text-align: right ;*/
/*}*/
/*.why-right p{*/
/*    font-size: 18px;*/
/*    color: #fff;*/
/*    text-align: right;*/
/*}*/

/* OUR Partner */

.our-partner{
    padding: 150px 0;
    background: #2C2C2C;
    position: relative;
}


.breadcrumb { 
    list-style: none; 
    overflow: visible; 
    /* font: 18px Helvetica, Arial, Sans-Serif; */
    /* margin: 40px; */
    padding: 0;
    justify-content: center;
    margin-bottom: 0;
    text-align: center;

  }
 
  .breadcrumb li  {
    color: white;
    text-decoration: none;
    padding: 16px 20px 16px 60px;
    background: hsl(10.45deg 92.63% 57.45%);
    position: relative;
    transition: all .3s ease-out;
    width: 20%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .breadcrumb li:after { 
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 28px solid hsl(10.45deg 92.63% 57.45%);
    position: absolute;
    top: 50%;
    margin-top: -50px;
    left: 100%;
    z-index: 2;
  }	
  .breadcrumb li:before { 
    content: " "; 
    display: block; 
    width: 0; 
    height: 0;
    border-top: 50px solid transparent;           /* Go big on the size, and let overflow hide */
    border-bottom: 50px solid transparent;
    border-left: 35px solid white;
    position: absolute;
    top: 50%;
    margin-top: -50px; 
    margin-left: 1px;
    left: 100%;
    z-index: 1; 
  }	
  .breadcrumb li:first-child a {
    padding-left: 10px;
  }
  .breadcrumb li:nth-child(2) a       { background:        hsla(34,85%,45%,1); }
  .breadcrumb li:nth-child(2) a:after { border-left-color: hsla(34,85%,45%,1); }
  .breadcrumb li:nth-child(3) a       { background:        hsla(34,85%,55%,1); }
  .breadcrumb li:nth-child(3) a:after { border-left-color: hsla(34,85%,55%,1); }
  .breadcrumb li:nth-child(4) a       { background:        hsla(34,85%,65%,1); }
  .breadcrumb li:nth-child(4) a:after { border-left-color: hsla(34,85%,65%,1); }
  .breadcrumb li:nth-child(5) a       { background:        hsla(34,85%,75%,1); }
  .breadcrumb li:nth-child(5) a:after { border-left-color: hsla(34,85%,75%,1); }
  /* .breadcrumb li:last-child a {
    background: transparent !important;
    color: black;
    pointer-events: none;
    cursor: default;
  }
  .breadcrumb li:last-child a:after { border: 0; } */
  .breadcrumb li:hover { background: #d9a334; }
  .breadcrumb li:hover:after { border-left-color: #d9a334 !important; }
  
  
  
  .list-cnt {
    display: none;
    transition: all .3s;
}
.list-cnt .icon img {
    width: 15px;
    height: auto;
}
.lst-top:hover .list-cnt {
    display: flex;
    flex-direction: column-reverse;

    align-items: center;
    justify-content: center;
    position: absolute;
    top: -92px;
}

.lst-btm:hover .list-cnt {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -109px;
}
.lst-btm .content {
    margin-top: 20px;
}
.lst-top .content {
    margin-bottom: 6px;
}
.breadcrumb .content h5 {
    font-size: 18px;
}
/* OUR  */



.slide-container{
    max-width: 1120px;
    width: 100%;
    padding: 40px 0;
  }
  .slide-content{
     margin: 0 40px; 
    overflow: hidden;
    /*border-radius: 16px;*/
  }
  .card{
    /*border-radius: 16px;*/
        overflow: hidden !important;
}
  
  /*.image-content,*/
  /*.card-content{*/
    
  /*  padding: 30px 30px;*/
  /*}*/
  .image-content{
    position: relative;
    row-gap: 5px;
    padding: 0;
  }
  .card-content {
    background-color: #fff;
    padding: 30px;
}
  .card-image .card-img{
    height: 100%;
    width: 100%;
    /* object-fit: cover;
    border-radius: 50%;
    border: 4px solid #4070F4; */
  }
  .name{
    font-size: 26px;
    font-weight: 800;
    color: #474747;
    
  }
  .description {
    font-size: 16px;
    line-height: 26px;
    color: #7D7D7D;
}
  .button{
    font-size: 18px;
    color: #F6522E;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-right: 10px;
  }
  /* .button:hover{
    background: #265DF2;
  } */
  .read-btm img {
    width: 60px;
}
  
  /* .swiper-navBtn{
    color: #6E93f7;
    transition: color 0.3s ease;
  }
  .swiper-navBtn:hover{
    color: #4070F4;
  }
  .swiper-navBtn::before,
  .swiper-navBtn::after{
    font-size: 38px;
  }
  .swiper-button-next{
    right: 0;
  }
  .swiper-button-prev{
    left: 0;
  }
  .swiper-pagination-bullet{
    background-color: #6E93f7;
    opacity: 1;
  }
  .swiper-pagination-bullet-active{
    background-color: #4070F4;
  } */
  
  @media screen and (max-width: 768px) {
    .slide-content{
      margin: 0 10px;
    }
    .swiper-navBtn{
      display: none;
    }
  }
  section.client {
    position: relative;
    padding: 100px 0;
        background: #f4f5f8;
    z-index: 1;
}  
.title h4 {
        font-size: 28px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 10px;
    text-align: center;
    color: #f6522e;
    text-transform: uppercase;
}
.title h2 {
    margin-bottom: 70px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    
}
.title {
    max-width: 650px;
    margin: 0 auto;
}

.bg-half {
    background-image: url(../images/bg.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    width: 100%;
    height: 59.54%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.bg-half:before {
    background-color: rgba(2, 2, 2, 0.7);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

/* FOOTER CSS */

.footer {
    padding: 80px 0 140px 0 !important;
    background-image: url(../../assets/images/footer.png);
    background-position: top center !important;
    background-size: cover;
}
.footer-contact li:not(:last-of-type) {
    margin-bottom: 15px;
}
.footer-logo {
    margin-bottom: 20px;
}
.footer-head {
    display: block;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}
.footer-head h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    margin: 0;
    line-height: 1;
}
.footer-head h3:before {
    background-color: #ff6400;
    width: 50%;
    height: 4px;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
}
.footer-contact {
    padding-left: 0;
}
.footer-contact li {
    list-style: none;
    color: #ccc;
    font-size: 16px;
}
.footer-contact li span {
    display: block;
    color: #ff6400;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.footer-contact a {
    color: #ccc;
    margin-right: 10px;
    text-decoration: none;
}
section.copyright-wrap {
    background: #2c2c2c;
    padding: 20px 0;
    text-align: center;
    position: relative;
}
.bottom-footer p {
    margin-bottom: 0;
    color: #fff;
}
.bottom-footer p a {
    color: #fff;
    text-decoration: none;
}
/*  */


.running-taxi {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.running-taxi .taxi {
    background-image: url(../../assets/images/truck-1.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 110px;
    height: 40px;
    right: 0;
    bottom: 0;
    animation: running-anim 20s linear infinite;
}

.running-taxi .taxi-2 {
    background-image: url(../../assets/images/truck-2.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 110px;
    height: 40px;
    right: 30%;
    bottom: 0;
    animation: running-anim 30s linear infinite;
}

.running-taxi .taxi-3 {
    background-image: url(../../assets/images/bike2.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 100px;
   height: 80px;
    right: 70%;
    bottom: -10px;
    animation: running-anim-left 35s linear infinite;
}




/* Running Animation Keyframe */
@-moz-keyframes running-anim {
    0% {
        right: -30%
    }

    100% {
        right: 100%
    }
}

@-webkit-keyframes running-anim {
    0% {
        right: -30%
    }

    100% {
        right: 100%
    }
}

@keyframes running-anim {
    0% {
        right: -30%
    }

    100% {
        right: 100%
    }
}

@-moz-keyframes running-anim-left {
    0% {
        left: -30%
    }

    100% {
        left: 100%
    }
}

@-webkit-keyframes running-anim-left {
    0% {
        left: -30%
    }

    100% {
        left: 100%
    }
}

@keyframes running-anim-left {
    0% {
        left: -30%
    }

    100% {
        left: 100%
    }
}


/* CONTACT US PAGE CSS */

.inner-banner{
    background: url(../../assets/images/inner-banner.png);
    background-position: center;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    height: 360px;
}
.inner-bnr-content h2 {
    font-weight: 600;
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 14px;
}
.inner-bnr-content ul {
    margin: 0;
    padding: 0;
}
.inner-bnr-content ul li {
    list-style-type: none;
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
}
.inner-bnr-content ul li a {
    color: #ffffff;
    text-decoration: none;
}

.details-box {
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.14);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    /* min-height: 330px; */
        transition: 0.3s;
    transform: scale(1);
}
.details-box:hover {
    transform: scale(1.05);
}
section.details {
    padding: 100px 0;
}
.details-box .content p {
    margin-bottom: 10px;
    color: #747474;
    font-size: 16px;
}
.details-box .content a {
    color: #747474;
    text-decoration: none;
    font-size: 16px;
    
}
.cust-link{
    margin-bottom: 7px;
}
.details-box .icon, .service-box .icon {
    /* border-right: 5px dashed #F6522E; */
    /* border-bottom: 5px solid #F6522E; */
    display: inline-block;
    margin-bottom: 30px;
    /* padding: 20px; */
    /* border-radius: 50%; */
    position: relative;
}

.service-box .icon:after, .details-box .icon:after {
    content: '';
    border-right: 5px dashed #F6522E;
    border-bottom: 5px solid #F6522E;
    padding: 50px;
    border-radius: 50%;
    margin-bottom: 14px;
    position: absolute;
    left: -20px;
    bottom: -40px;
    width: 100%;
    height: auto;
    /*animation: rotate 4s linear infinite;*/
    animation: opacityChange 2s infinite alternate;
    animation:
      rotateIn 3s
      alternate infinite
      cubic-bezier(.2, .65, .6, 1);
}
/*@keyframes rotate {*/
/*	0% {*/
/*      transform:rotate(0turn);*/
/*    }*/
/*    100% {*/
/*      transform:rotate(1turn);*/
/*    }*/
/*}*/
@keyframes bounce {
    50% {
      transform: translateY(0px);
    }
    100% {
      transform: translateY(-20px);
    }
  }
@keyframes opacityChange {
	50% {
		opacity:1;
	}
	100% {
		opacity: .5;
	}
}

/*.icon {*/
/*    animation: spin 1000ms;*/
/*    animation-timing-function: linear;*/
/*    animation-iteration-count: infinite;*/
/*  }*/

.wrapper{
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 350px;
    width: 100%;
    background: #fff;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 4px 4px 2px rgba(254,236,164,1);  */
  }
  
  .wrapper h2{
    text-align: center;
    margin-bottom: 0px;
    color: #F6522E;
    font-size: 22px;
}
.wrapper h4 {
    text-align: center;
    margin-bottom: 55px;
    color: #3B3B3B;
    font-size: 30px;
    font-weight: 900;
    margin-top: 20px;
}
  
  .wrapper .input_field{
    margin-bottom: 10px;
  }
  
  .wrapper .input_field input[type="text"],
  .wrapper textarea{
    width: 100%;
    display: block;
    
    padding: 18px 25px;
    border: none;
    border-radius: 5px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 28px 0 rgb(239 82 46 / 16%);
  }
  
  .wrapper textarea{
    resize: none;
    height: 130px;
    margin-top: 30px;
  }
  
  .wrapper .btn input[type="submit"] {
    border: 0px;
    margin-top: 20px;
    padding: 15px 50px;
    text-align: center;
    width: 100%;
    background: #F6522E;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
}
  
  #error_message{
    margin-bottom: 20px;
    background: #F6522E;
    padding: 0px;
    text-align: center;
    font-size: 14px;
    transition: all 0.5s ease;
  }
  li.cust-cum {
    color: #f6522e !important;
}
  section.contacts {
    padding: 100px 0;
}
.contact-left img {
    width: 100%;
}
.contact-form .input_field {
    width: 47%;
}
.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.map iframe {
    margin-bottom: -10px;
}
.cust-border {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}
.cust-border::after,
.cust-border::before {
    content: "";
    border: 1px solid #F6522E;
    flex: 1;
}
.cust-border:not(:empty)::before {
    margin-right: 10px;
  }
  
  .cust-border:not(:empty)::after {
    margin-left: 10px;
  }

  /* ABOUT US CSS */

  section.about {
    padding: 100px 0;
    position: relative;
    margin-bottom: 0px;
}
.abt-right h2 {
    font-size: 40px !important;
    line-height: 52px !important;
    font-weight: 700;
    letter-spacing: 0px;
    display: block;
    margin-bottom: 20px;
}
.abt-right p {
    color: #666;
    text-align: justify;
}
.abt-rw::after {
    content: '';
    height: 250px;
    width: 46%;
    position: absolute;
    bottom: 152px;
    left: 0;
    background: #F7522E;
    z-index: 0;
    border-radius: 0px 0px 80px 0px;
}
.abt-left img {
    width: 100%;
}

/* OUR JOURNEY SECTION */

.timeline {
    padding: 0px 5%;
    max-width: 1300px;
    margin: 0 auto;
  }
  .timeline > .timeline-item {
    display: flex;
    align-items: flex-start;
  }
  .timeline > .timeline-item > div {
    flex: 1;
    padding: 20px 40px;
  }
  .timeline > .timeline-item > div:last-child {
    text-align: left;
    padding-bottom: 40px !important;
  }
  .timeline > .timeline-item > div:first-child::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #f7512e;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px #f7512e2e;
  }
  .timeline > .timeline-item:nth-child(odd) > div:first-child {
    text-align: right;
    position: relative;
  }
  .timeline > .timeline-item:nth-child(odd) > div:first-child::after {
    right: -20px;
  }
  .timeline > .timeline-item:nth-child(odd) > div:last-child {
    text-align: left;
    border-left: 3px solid #f7512e75;
  }
  .timeline > .timeline-item:nth-child(odd) > .timeline-date > div {
    margin-right: 0px;
  }
  .timeline > .timeline-item:nth-child(odd) > .timeline-date > img {
    right: 11%;
    left: inherit;
  }
  .timeline > .timeline-item:nth-child(odd) > .timeline-content > h2 {
    text-align: left !important;
  }
  .timeline > .timeline-item:nth-child(odd) > .timeline-content > p > img {
    right: 0;
  }
  .timeline > .timeline-item:nth-child(even) > div:first-child {
    order: 2;
    text-align: left;
    position: relative;
  }
  .timeline > .timeline-item:nth-child(even) > div:first-child::after {
    left: -1px;
  }
  .timeline > .timeline-item:nth-child(even) > div:last-child {
    order: 1;
    text-align: right;
    border-right: 3px solid #f7512e75;
  }
  .timeline > .timeline-item:nth-child(even) > .timeline-date > div {
    margin-left: 0px;
  }
  .timeline > .timeline-item:nth-child(even) > .timeline-date > img {
    left: 11%;
    right: inherit;
  }
  .timeline > .timeline-item:nth-child(even) > .timeline-content > h2 {
    text-align: right !important;
  }
  .timeline > .timeline-item:nth-child(even) > .timeline-content > p > img {
    right: inherit;
    left: 0;
    transform-origin: bottom left;
  }
  .timeline > .timeline-item:nth-child(even) > .timeline-content > p > button {
    left: inherit;
    right: 15px;
  }
  .timeline > .timeline-item .timeline-date {
    position: relative;
  }
  .timeline > .timeline-item .timeline-date > img {
    position: absolute;
    filter: grayscale(100%);
    opacity: 0.06;
    transform: scale(1.2);
    transform-origin: center;
    left: 11%;
  }
  .timeline > .timeline-item .timeline-date > div {
    box-shadow: #f7512e7d 0px 10px 15px;
    border-radius: 50px;
    color: rgb(255, 255, 255);
    text-align: center;
    max-width: max-content;
    margin: auto;
    padding: 10px 30px;
    background: linear-gradient(to right, #f7b733, #fc4a1a);
  }
  .timeline > .timeline-item .timeline-content .fa-icon {
    font-size: 80px;
  }
  .timeline > .timeline-item .timeline-content > h2 {
    color: #f7512e;
    margin: 7px 0px 15px;
    font-size: 1.3em;
    font-weight: bold;
    
  }
  .timeline > .timeline-item .timeline-content > h2 span {
    color: #ff6645;
    font-weight: bold;
    font-size: 0.6em;
    letter-spacing: 2px;
    margin-left: 5px;
  }
  .timeline > .timeline-item .timeline-content > p {
    font-size: 16px;
    padding: 20px 20px 60px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    position: relative;
    line-height: 25px;
    min-height: 100px;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.14);
  }
  .timeline > .timeline-item .timeline-content > p > img {
    width: 100px;
    opacity: 0.05;
    position: absolute;
    right: 0;
    bottom: 0;
    transform-origin: bottom right;
    transform: scale(1.8);
  }
  .timeline > .timeline-item .timeline-content > p > button {
    background: no-repeat;
    outline: none;
    color: #673AB7;
    border: none;
    padding: 7px 15px;
    position: absolute;
    bottom: 15px;
    border-radius: 30px;
    left: 15px;
    box-shadow: 0 0px 2px rgba(103, 58, 183, 0.1);
    cursor: pointer;
    letter-spacing: 1px;
    font-size: 0.9em;
    font-weight: normal;
    transition: all 0.5s ease;
  }
  .timeline > .timeline-item .timeline-content > p > button:hover {
    background: rgba(103, 58, 183, 0.7);
    box-shadow: 0 5px 10px rgba(103, 58, 183, 0.1);
    color: #ffffff;
  }
  @media (max-width: 767px) {
    .timeline > .timeline-item {
      flex-direction: column;
      border-left: 2px solid #e0e0e0;
    }
    .timeline > .timeline-item .timeline-date > img {
      display: none;
    }
    .timeline > .timeline-item > div {
      border-width: 0px !important;
      text-align: left !important;
      order: unset !important;
    }
    .timeline > .timeline-item > div::after {
      left: 0% !important;
    }
    .timeline > .timeline-item:nth-child(odd) > .timeline-content > h2 {
      text-align: left !important;
    }
    .timeline > .timeline-item:nth-child(even) > .timeline-content > h2 {
      text-align: left !important;
    }
    .timeline > .timeline-item:nth-child(even) > .timeline-content > p > img {
      right: 0;
      left: inherit;
      transform-origin: bottom right;
    }
    .timeline > .timeline-item:nth-child(even) > .timeline-content > p > button {
      left: 15px;
      right: inherit;
    }
  }

  .journey{
    padding: 100px 0;
    position: relative;
  }
  .journey-map h1 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 40px;
    color: #3b3b3b;
    position: relative;
    margin-top: 40px;
    padding-bottom: 15px;
    font-weight: 500;
}

.journey-map > h1::after {
    content: "";
    height: 3px;
    background-color: #f7512e75;
    width: 440px;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    position: absolute;
  }
  .journey-map > h1::before {
    content: "›";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #f7512e;
    left: 50%;
    margin-left: -8px;
    transform: rotate(90deg);
    box-shadow: 0 0 0 4px #f7512e2e;
    bottom: -25px;
    font-size: 0.7em;
    text-indent: 0px;
    color: #fff;
    line-height: 16px;
    z-index: 9;
  }


  /* SERVICE PAGE CSS */

  .bike-left img {
    width: 100%;
}
.bike-rider, .car-driver, .fleet-management, .area {
    padding: 100px 0;
    position: relative;
}
.bike-rw:after {
    content: '';
    height: 230px;
    width: 46% !important;
    position: absolute;
    bottom: 28px !important;
    left: 0;
    background: #F7522E;
    border-radius: 0px 0px 80px 0px;
    z-index: 0;
}


.bike-right p, .car-left p {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 28px;
    color: #747474;
        text-align: justify;
}
.car-rw:after {
    content: '';
    height: 230px;
    width: 47% !important;
    position: absolute;
    bottom: 47px !important;
    right: 0;
    background: #2c2c2c;
    border-radius: 0px 0px 0px 80px;
    z-index: 0;
}
.area-image img {
    width: 100%;
    margin-right: -50px;
    margin-top: 100px;
}
.area-image{
    position: relative;
}
.area-image:before {
    background-color: #f7512e;
    background-size: 10px 10px;
    width: 40%;
    height: 100%;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.section-heading h2,.bike-right h2, .car-left h2, .trusted-left h2, .why-right h2 {
    font-size: 40px !important;
    line-height: 50px;
    font-weight: 700;
    letter-spacing: 0px;
    display: block; 
    margin-bottom: 20px;
}
.area-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
    row-gap: 15px;
    margin-top: 30px;
}
.area-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.area-list li span {
    font-weight: 500;
    color: #222;
    display: flex;
    align-items: center;
}
.area-list li span svg {
    color: #f7512e;
    font-size: 24px;
    margin-right: 12px;
}
.section-heading p {
    line-height: 34px;
    color: #747474;
}
.booking {
    padding: 100px 0;
    background: #f4f5f8;
}
.booking-form .input_field input, .booking-form-btn .input_field textarea   {
    background-color: #333;
    color: #fff;
    border-radius: 2px;
    width: 100%;
    height: 50px;
    padding: 0 35px 0 20px;
    font-size: 16px;
    line-height: 50px;
    box-shadow: none;
    outline: none;
    border: 1px solid #333;
}
.booking-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    z-index: 1;
    
}
.booking-form-btn .btn {
    padding: 0;
}
.booking-form-btn .btn input {
    background: #ff6400;
    border: 0;
    width: 100%;
    border-radius: 2px;
    padding: 0 35px 0 20px;
    font-size: 16px;
    font-weight: 500;
    height: 50px;
    color: #fff;
}

.booking-form .input_field svg {
    color: #f6502e;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.booking-form .input_field{
    position: relative;
}
.booking-form-btn {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.booking-form-btn .input_field{
    grid-column: 1 / 3;
}

input[type="date"] {
    position: relative;
}

/* create a new arrow, because we are going to mess up the native one
see "List of symbols" below if you want another, you could also try to add a font-awesome icon.. */
input[type="date"]:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900; 
    content: "\f073";
    color: #555;
    padding: 0 5px;
    display: none;
}

/* change color of symbol on hover */
input[type="date"]:hover:after {
    color: #bf1400;
}

/* make the native arrow invisible and stretch it over the whole field so you can click anywhere in the input field to trigger the native datepicker*/
input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    color: transparent;
    background: transparent;
}

/* adjust increase/decrease button */
input[type="date"]::-webkit-inner-spin-button {
    z-index: 1;
}

 /* adjust clear button */
 input[type="date"]::-webkit-clear-button {
     z-index: 1;
 }
 
 
.service-thumb {
    position: relative;
}

.service-shape-wrap {
    transform: skew(-20deg, 0deg);
    width: 180px;
    height: 200px;
    position: absolute;
    right: 0px;
    bottom: 0;
    overflow: hidden;
}

.service-shape {
    background-color: #ff6400;
    border-radius: 2px;
    position: absolute;
    width: 60px;
    height: 180px;
    left: 80px;
    bottom: 0;
    transition: all 300ms cubic-bezier(.165, .85, .45, 1);
    transition-delay: .1s;
}

.service-shape:before {
    background-color: #222;
    border-radius: 2px;
    content: "";
    width: 40px;
    height: 140px;
    position: absolute;
    right: 60px;
    bottom: 0;
    opacity: 0.95;
    transition: all 300ms cubic-bezier(.165, .85, .45, 1);
    transition-delay: .2s;
}

.service-shape:after {
    background-color: #222;
    border-radius: 2px;
    content: "";
    width: 40px;
    height: 120px;
    position: absolute;
    right: -20px;
    bottom: 0;
    opacity: 0.95;
    transition: all 300ms cubic-bezier(.165, .85, .45, 1);
    transition-delay: .3s;
}

.service-item:hover .service-shape {
    height: 200px;
}

.service-item:hover .service-shape:before {
    height: 160px;
}

.service-item:hover .service-shape:after {
    height: 140px;
}

.service-car {
    position: absolute;
    right: -30px;
    bottom: -30px;
    max-width: 230px;
    transition: all .3s cubic-bezier(.165, .85, .45, 1);
}
.service-item:hover .service-car {
    bottom: -35px;
    right: 0;
}

.swiper-button-next.swiper-navBtn {
    display: none ;
}
.swiper-button-prev.swiper-navBtn {
    display: none ;
}


.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none!important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    font-size: 35px;
    position: relative;
    left: 0px;
    top: 10px;
        font-size: 24px !important;
}
.swiper-button-next:after{
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none!important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    font-size: 35px;
    position: relative;
        right: 14px;
    top: 10px;
        font-size: 24px !important;
}

.swiper:hover .swiper-navBtn {
    display: block;
    background: #ff6400;
    color: #000;
    padding: 0px 20px;

}
.swiper-button-prev.swiper-navBtn {
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
}

.swiper-button-next.swiper-navBtn {
    clip-path: polygon(100% 50%, 0 100%, 0 0);
}
.swiper-button-prev{
    left:1px !important;
}
.swiper-button-next{
    right: 1px !important;
    
}
/**/

.milestone{
        padding: 125px 0;
    position:relative;
    background:url(../../assets/images/timeline.png);
    color: #fff;
    /*position: relative;*/
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}
.milestone-right {
    /* padding: 40px 0; */
        /*background: linear-gradient(to right, #f7b733, #fc4a1a);*/
        position:relative;
        
}
.milestone-right ul {
    padding-left: 0;
}
.milestone-right ul li {
    list-style: none;
        display: flex;
    gap: 20px;
        padding: 30px 0;
    align-items: center;
}
span.timeline-date {
    box-shadow: #f7512e7d 0px 10px 15px;
    padding: 40px 35px;
    border-radius: 50%;
    background: #fff;
    color: #f6502e;
    line-height: 40px;
    font-size: 22px;
    font-weight: 700;
}
.timeline-details p {
    margin-bottom: 0;
}
.time-line{
    position: absolute;
    top: -125px !important;
    left: -7px !important;

}
.time-line2{
    position: absolute;
    top: 45px !important;
    left: -105px !important;
}
.time-line3{
    position: absolute;
    top: 230px !important;
    left: -166px !important;
}
.time-line4{
    position: absolute;
    top: 420px !important;
    left: -126px !important;
}
.time-line5{
    position: absolute;
    top: 608px !important;
    left: -28px !important;

}
.timeline-details p {
    color: #fff;
}

.milestone-left h4, .abt-right h4 {
    font-size: 16px !important;
    color: #ff6400;
    /*text-transform: uppercase;*/
    /*letter-spacing: 1px;*/
    
    
}
.milestone-left h2 {
    font-size: 40px !important;
    line-height: 54px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #000;
}
.milestone-left p {
    color: #666;
    margin-top: 25px;
    text-align: justify;
    
}
.area-images {
    position: relative;
        z-index: 0;
}
.area-images:before {
    background-color: #f7512e;
    background-size: 10px 10px;
    width: 40%;
    height: 100%;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.area-2 {
    padding: 100px 0;
    position: relative;
     margin-top: 100px;
}
.area-images img {
    width: 100%;
    margin-right: -50px;
    margin-top: 100px;
}

.btn {
    padding: 0;
}
.section-heading h4, .trusted-left h4, .why-right h4 {
    font-size: 16px !important;
    color: #ff6400;
    /*text-transform: uppercase;*/
    /*letter-spacing: 1px;*/
    font-weight: bold;
        margin-bottom: 5px;
}



/**/


/* #ourclients {
  display: block;
  margin-left: auto;
  margin-right: auto;
  background:#f9f9f9;
  padding:50px 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  height:auto;
}
#ourclients .clients-wrap {
  display: block;
  width: 95%;
  margin: 0 auto;
  overflow: hidden;
}
#ourclients .clients-wrap ul {
  display: block;
  list-style: none;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
#ourclients .clients-wrap ul li {
  display: block;
  float: left;
  position: relative;
  width: 200px;
  height: 100px;
  line-height: 100px;
  text-align: center;
}
#ourclients .clients-wrap ul li img {
  vertical-align: middle;
  max-width: 100%;
  width:150px;
  max-height: 100%;
  -webkit-transition: 0 linear left;
  -moz-transition: 0 linear left;
  transition: 0 linear left;
}
#ourclients h3{
border-bottom:2px solid #3399ff;
width:150px;
padding:10px;
} */


.trusted-left p {
    text-align: justify;
}


/* THANK YOU */

.thank-you {
  padding: 10px 0 80px;
}

.content-text {
  margin: 10px 0 60px;
}
.content-text h2 {
  font-size: 58px;
  font-weight: 700;
  line-height: 86px;
}

.content-image img {
  max-width: 210px;
  width: 100%;
}

/* OUR CLIENT SECTION */

.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block;
  background: #f9f9f9;
  padding: 70px 0;
  box-shadow: #f7512e3b 0px 0px 15px;
    border-radius: 10px;
}
.owl-carousel .owl-item img{
  height: 100px;
  object-fit: contain;
  max-width: 230px;
  margin: 0 auto;
}
 .section-heading p, .why-right p, .trusted-left p, .bike-right p, .car-left p, .milestone-left p, .abt-right p{
  font-size: 18px !important;
 }

 /* .owl-theme .owl-dots .owl-dot.active span,  .owl-dot:hover span{
  background: #f6522e !important;
 } */

 .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #d6d6d6 !important;
}

 .owl-theme .owl-dots .owl-dot.active span{
  background: #f6522e !important;
 }
 .owl-theme .owl-dots .owl-dot span{
  background: #d6d6d6 !important;
 }