:root {
    --primery-color: #AA2328;
    --secondary-color: #2C2956;
    --primery-light-color:#EBEFF3;
    --white: #FFF;
    --grey: #757F95;
    --roboto: 'Roboto', sans-serif;
    --Poppins: 'Poppins', sans-serif;
    --Inter: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
}

*,
::before,
::after {
    box-sizing: border-box
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background: transparent;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
    width: 5px;
    height: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    scrollbar-color: var(--secondary-color);
    background-color: var(--secondary-color);
    border-radius: 15px;
    width: 5px;
    height: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    scrollbar-color: transparent;
}


body {
    font-size: 16px;
    color: var(--grey);
    font-weight: 400;
    position: relative;
    transition: .5s;
    overflow-x: hidden;
    font-family: var(--Poppins);
}

a,
img {
    text-decoration: none;
    outline: none;
    border: none;
    max-width: 100%;
}

a,
.btn {
    transition: all .5s;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

:focus {
    outline: 0 !important;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: 0px;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

p:last-child {
    margin-bottom: 0;
}

.text-grey{
    color: var(--grey);
}
.text-primery{
    background-color: #AA2328;
}
.text-secondary{
    background-color: var(--secondary-color);
}


.top-nav {
    background-color: var(--secondary-color);
    position: relative;
    z-index: 1;
    padding: 12px 0;
}
.top-nav::before{
    content: '';
    position: absolute;
    background-color: var(--primery-color);
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.top-nav  ul.contact-nav li a{
    color: var(--white);  
    line-height: 1;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-family: var(--roboto);
}
.top-nav  ul.contact-nav li a img{
    margin-right: 8px;
}
.top-nav  ul.contact-nav li{
    margin-right: 25px;
}

.social-icon-nav{
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
}
.social-icon-nav ul{
    margin-left: 12px;
}
.social-icon-nav  li:not(:first-of-type){
    margin-left: 8px;
}
.social-icon-nav ul li a{
    color: var(--white);
}

.navbar-nav .nav-link {
    color: #2C2956;
    font-size: 17px;
    line-height: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: var(--roboto);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
 
    color: var(--primery-color);
}

.navbar-nav .nav-item{
    padding: 0 10px;
}

.search-icon {
    color: var(--white);
    font-size: 18px;
    margin-right: 32px;
    cursor: pointer;
}

.btn{
    text-align: center;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}

.btn span{
    padding-right: 22px;
    position: relative;
}
.btn span::after{
      content: '\f061';
    font-family: "Font Awesome 7 Free";
    font-weight: 700;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-37deg);
    position: absolute;
    line-height: 1;
    font-size: 14px;
}
.btn-red{
    background-color: var(--primery-color);
    color: var(--white);
}

.btn-red:hover{
    border: 1px solid var(--primery-color);
    color: var(--primery-color);
}
.btn-blue{
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-blue:hover{
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}
.btn-red:hover::before{
    color: var(--primery-color);
}

.custom-btn {
    background-color: var(--primery-color);
    color: #fff;
    border-radius: 6px;
    border: none;
    transition: all 0.3s ease;
}

.navbar-brand {
    max-width: 70px;
}
.search-icon{
    color: var(--secondary-color);
}


    #logisticsCarousel .carousel-inner .carousel-item{
        padding: 120px 0 150px;
    }
    #logisticsCarousel .carousel-caption {
      text-align: left;
      position: relative;
      width: 690px;
      left: 0;

    }
    #logisticsCarousel .carousel-caption span.upper-title {
      color: #fff;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 24px;
      letter-spacing: 6px;
      position: relative;
      z-index: 1;
    }
    #logisticsCarousel .carousel-caption span.upper-title::before{
        content: '';
        position: absolute;
        width: 100%;
        height: 40%;
        background-color: var(--primery-color);
        bottom: 0;
        z-index: -1;
    }
    #logisticsCarousel .carousel-caption h1,.section-banner h1 {
        font-family: var(--Poppins);
      font-weight: 600;
      font-size: 60px;
      line-height: 1.2;
      margin: 24px 0 20px;
    }
    #logisticsCarousel .carousel-caption p {
      font-size: 18px;
      font-weight: 400;
      margin-bottom: 35px;
      line-height: 1.67;
    }
  
    #logisticsCarousel .carousel-control-prev,
    #logisticsCarousel  .carousel-control-next {
      width: 55px;
      height: 55px;
      background: #fff;
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
    }
    #logisticsCarousel .carousel-control-prev{
        left: 40px;
    }
    #logisticsCarousel  .carousel-control-next {
        right: 40px;
    }
    
    #logisticsCarousel .carousel-control-prev i, #logisticsCarousel .carousel-control-next i{
        color: var(--primery-color);
    }

    /* #logisticsCarousel .carousel-item::before{
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 0;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
       background: linear-gradient(170deg, hsl(205, 42%, 15%) , hsla(204, 42%, 15%, 0));
    } */

    #logisticsCarousel .carousel-item>img{
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

.track-o-section img {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 474px;
}
.track-o-section{
     position: relative;
}
.track-o-section .content-box{
    background-color: #EBEFF3;
    border-radius: 12px;
    padding: 45px 65px 46px;
    position: absolute;
    top: -75px;
    z-index: 1;
    left: 0;
    right: 0;
    margin: 0 12px;
}
.track-o-section .content-box .form-group{
    position: absolute;
    max-width: 590px;
}
.track-o-section .content-box .form-group input{
    padding: 8px 90px 8px 30px;
    border-radius: 10px;
    color: #7B7E86;
    line-height: 2.417;
}
.track-o-section .content-box .form-group input::placeholder{
    color: #7B7E86;
}
.track-o-section .content-box a{
    position: absolute;
    padding: 6px 16px;
    background-color: var(--primery-color);
    color: var(--white);
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-family: var(--Poppins);
    font-weight: 500;
    border-radius: 6px;
}

.section-title{
    margin-bottom: 40px;
}
.section-title>span.subtitle{
    background-color: var(--primery-color);
    border-radius: 100px;
    color: var(--white);
    padding: 3px 15px 3px 45px;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    height: 36px;
    display: inline-block;
    margin-bottom: 12px;

}
.section-title>span.subtitle::before{
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: url(../images/truck-red.svg) #FFF center center no-repeat;
    background-size: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
}
.section-title h2{
    font-size: 45px;
    font-family: var(--Poppins);
    font-weight: 700;
    color: var(--secondary-color);
    padding-bottom: 16px;
    position: relative;
}
.section-title h2::before{
    content: '';
    position: absolute;
    width: 90px;
    height: 4px;
    border-radius: 50px;
}
.section-title h2 b{
    position: absolute;
    width: 90px;
    height: 4px;
    border-radius: 50px;
    background-color: var(--primery-color);
    left: 0;
    bottom: 0;
}
.section-title.text-center h2 b{
    left: 50%;
    transform: translateX(-50%);
}
.section-title h2 b::before{
    content: '';
    height: 100%;
    width: 15px;
    border-radius: 50px;
    background-color: var(--white);
    position: absolute;
    animation-name: left-to-right;
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes left-to-right {
    0%,100%{
        left: 0;
    }
    50%{
        left: 90%;
    }
}
.section-title h2 span{
    color: var(--primery-color);
}

.about-wrapper{
    padding: 200px 0 100px;
}


.py-100{
    padding-top: 100px;
    padding-bottom: 100px;
}

.card-box{
    border-radius: 20px;
    border: 1px solid hsla(0, 0%, 0%, 0.08);
    padding: 16px;
    display: flex;
}
.card-box .icon-box{
    min-width: 65px;
    height: 65px;
    display: block;
    padding: 10px;
    border-radius: 100px;
    background-color: var(--primery-color);
    margin-right: 12px;
}
.card-box strong{
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 4px;
    font-family: var(--Poppins);
    display: block;
}
.card-box p{
    font-size: 16px;
    font-weight: 400;
    font-family: var(--roboto);
    color: #757F95;
    line-height: 28.8px;
}

.year-box{
     font-size: 16px;
    font-weight: 400;
    font-family: var(--roboto);
    color: var(--white);
    padding: 27px 35px;
    background-color: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
      position: absolute;
    left: 0;
    top: 105px;
    width: 154px;
}

.year-box strong{
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    display: block;
    margin-bottom: 4px;
  
}

.about-wrapper .img-box{
    padding-left: 59px;
    padding-right: 40px;
    padding-bottom: 78px;
    position: relative;
}
.about-wrapper .img-box .img-1{
    border-radius: 20px;
    overflow: hidden;
}
.about-wrapper .img-box .img-1 img,.img-box-right .img-1 img{
    width: 100%;
}
.about-wrapper .img-box .img-2{
    position: absolute;
    right: 0;
    bottom: 0;
    padding-top:20px;
    padding-left: 20px;
    border-radius: 20px;
    background-color: white;
}

.about-wrapper .img-box .img-2::before,
.about-wrapper .img-box .img-2::after{
    content: "";
    position: absolute;
    background-color: transparent;
    top: -40px;
    height: 40px;
    width: 20px;
    box-shadow: 0 20px 0 0 #ffffff;
    left: calc(100% - 60px);
    border-bottom-right-radius: 20px;
   
}
.about-wrapper .img-box .img-2::after{
    bottom: 79px;
    top: auto;
    left: -20px;
}
.mt-40{
    margin-top: 40px;
}

.services-wrapper{
    background-color: var(--primery-light-color);
}

.service-card{
    border-radius: 30px;
    overflow: hidden;
    background-color: #FFF;
}
.service-card .img-box{
    border-radius: 30px;
    overflow: hidden;
}
.service-content{
    padding: 24px;
}
.service-content strong{
    font-size: 24px;
    font-family: var(--Poppins);
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--secondary-color);
    display: inline-block;
}
.service-content p{
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    color: #304364;
    margin-bottom: 28px;
}
.service-content .btn{
    padding-left: 0;
    padding-right: 0;
}
.btn-link-blue{
    color: var(--secondary-color);
    padding: 0;
}
.btn-link-blue:hover{
    color: var(--primery-color);
}
.service-icon{
    width: 65px;
    height: 65px;
    background-color: white;
    position: absolute;
    border-radius: 100px;
    right: 45px;
    top: -45px;
    padding: 8px;
}
.service-icon::before,
.service-icon::after{
    content: "";
    position: absolute;
    bottom: 21px;
    height: 40px;
    width: 20px;
    background-color: transparent;
    box-shadow: 0 20px 0 0 #fff;
}
.service-icon::before{
        border-radius: 0 0 30px 0;
    border-left: 0;
    right: 97%;

}
.service-icon::after{
    border-radius: 0 0 0 30px;
    border-right: 0;
    left: 97%;
}
.service-icon> div{
    border-radius: 100%;
    width: 100%;
    height: 100%;
    background-color: var(--primery-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-content{
    position: relative;
}
.slick-slide{
    padding: 0 12px;
}
.slick-slider{
    padding-bottom: 56px;
    margin-bottom: 0 !important;
}
.slick-dots{
    bottom: 0;
    display: flex;
    border: 1px solid hsla(217, 100%, 28%, 0.1);
    width: auto;
    margin: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100px;
    padding: 8px 21px;
}
.slick-dots li button:before{
    font-size: 8px;
    color: hsla(217, 100%, 28%, 0.40);
}
.slick-dots li.slick-active button:before{
    color: #00378f;
    opacity: 1;
}
.counter-wrapper{
    padding: 40px 0;
    background-color: var(--secondary-color);
}

.single_counter{
    padding: 22px;
    border-radius: 15px;
    border: 2px solid hsla(0, 0%, 100%, 0.08);
    box-shadow:inset 0 0 40px 4px hsla(0, 0%, 0%, 0.05);
}
.single_counter .icon-box{
    min-width: 80px;
    height: 80px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 100px;
    margin-right: 12px;
}

.single_counter strong{
    font-size: 48px;
    font-family: var(--roboto);
    font-weight: 900;
    color: #FFF;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}
.single_counter  strong sup{
    color: var(--primery-color);
    font-size: 25px;
    font-weight: 500;
    position: relative;
    top: -16px;
    margin-left: 8px;
}
.single_counter p{
    font-size: 18px;
    font-family: var(--Poppins);
    font-weight: 500;
    line-height: 21.6px;
    color: var(--white);
}

.setp-box{
    padding: 45px 40px 34px;
    border-radius: 20px;
    background-color: #EBEFF3;
}
.setp-box strong{
    display: block;
    margin-top: 30px;
    margin-bottom: 40px;
    font-size: 24px;
    font-family: var(--roboto);
    color: #000;
    font-weight: 600;

}

.step-no{
    position: absolute;
    right: -10px;
    bottom: -10px;
    background-color: var(--white);
    border-radius: 30px 0 0 0;
    padding: 10px 10px  0 10px;
}
.step-no span{
    width: 50px;
    height: 50px;
    background-color: #EBEFF3;
    border-radius: 100%;
    display: inline-block;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
}
.step-no::before,.step-no::after{
       /* content: "";
    position: absolute;
    top: -40px;
    right: 9px;
    height: 40px;
    width: 20px;
    border-radius: 0 0 20px 0;
    background-color: transparent;
    box-shadow: 0 10px 0 0 #FFF; */
        content: "";
    position: absolute;
        left: -20px;
    bottom: 10px;
    width: 20px;
    height: 20px;
    background: transparent;
    box-shadow: 5px 5px 0 5px #fff;
    border-bottom-right-radius: 20px;
}

.step-no::after{
        /* top: inherit;
    bottom: 8px;
    left: -19px;
    right: inherit; */
          top: -20px;
    right: 10px;
    left: auto;
    bottom: auto;
}

.gallery-box{
    border-radius: 20px;
}
.gallery-box img{
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.gallery-box .step-no span{
    background-color: var(--primery-color);
    color: var(--white);
}
.gallery-slider .slick-track{
    padding-bottom: 12px;
}

.testimonials-wrapper{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
}
.testimonials-wrapper::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background-color: var(--secondary-color);
    opacity: 0.9;
}
.testimonials-wrapper .slick-dotted.slick-slider {
    margin-bottom: 0px;
}
.testimonial-quote {
    position: relative;
    background: var(--white);
    padding: 30px;
    border-radius: 30px;
}
.testimonial-quote::before
 {
    content: "\f0dd";
    position: absolute;
    font-family: "Font Awesome 7 Free";
    bottom: -40px;
    left: 40px;
    font-weight: bold;
    font-size: 70px;
    color: var(--white);
}
.testimonial-quote-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--primery-color);
    color: var(--white);
    border-radius: 50px 50px 25px 50px;
    text-align: center;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-quote p {
    position: relative;
    color: var(--secondary-color);
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    z-index: 1;
}
.testimonial-rate {
    color: #FB9902;
    margin-top: 15px;
}
.testimonial-content {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 30px;
    margin-left: 20px;
}
.testimonial-author-img {
    margin-right: 20px;
    width: 70px;
    height: 70px;
    padding: 4px;
    border-radius: 50px;
    border: 2px dashed var(--white);
}

.testimonial-author-img img {
    display: block;
    width: 100%;
    border-radius: 50%;
}
.testimonial-author-info h4 {
    font-size: 20px;
    color: var(--white);
}

.testimonial-author-info p {
    color: var(--white);
    font-weight: 500;
}



.brand-box {
    border-radius: 12px;
    box-shadow: 0px 4px 24px hsla(221, 9%, 57%, 0.12);
    height: 125px;
    padding: 42px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slick-track{
    padding: 24px 0;
}

/*-------------------
  Footer Content
  -------------------*/
.footer-content.v1 {
  background-image: url("../images/background-big-img.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 120px;
  position: relative;
  z-index: 0;
  margin-top: 38px;
}

.footer-content.v1::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(196deg, rgba(5, 25, 60, 0.05) 12.4%, #051838 80.63%);
  z-index: -1;
}

.footer-content.v1 .footer-widget .widget-para {
 
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--white);
  margin-top: 18px;
  max-width: 100%;
  width: 80%;
}

.footer-content.v1 .footer-widget .widget-title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  color: var(--white);
  padding-bottom: 15px;
  position: relative;
}

.footer-content.v1 .footer-widget .widget-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--white);
  width: 41px;
  height: 3px;
}

.footer-content.v1 .footer-widget .quick-links,
.footer-content.v1 .footer-widget .our-courses {
  margin-top: 29px;
}

.footer-content.v1 .footer-widget .quick-links li,
.footer-content.v1 .footer-widget .our-courses li {
  margin-bottom: 18px;
}

.footer-content.v1 .footer-widget .quick-links li:last-child,
.footer-content.v1 .footer-widget .our-courses li:last-child {
  margin-bottom: 0;
}

.footer-content.v1 .footer-widget .quick-links li a,
.footer-content.v1 .footer-widget .our-courses li a {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
 
  color: var(--white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.footer-content.v1 .footer-widget .quick-links li a::before,
.footer-content.v1 .footer-widget .our-courses li a::before {
  content: "\f101";
  font-family: "Font Awesome 7 Free";
  font-size: calc(100% - 5px);
  font-style: normal;
  font-weight: 700;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  margin-right: 8px;
}

.footer-content.v1 .footer-widget .quick-links li a:hover,
.footer-content.v1 .footer-widget .our-courses li a:hover {
  color: var(--white);
}

.footer-content.v1 .footer-widget .get-in-touch {
  margin-top: 16px;
}

.footer-content.v1 .footer-widget .get-in-touch .contact-info-items li {
  margin-bottom: 16px;
}

.footer-content.v1 .footer-widget .get-in-touch .contact-info-items li:last-child {
  margin-bottom: 0;
}

.footer-content.v1 .footer-widget .get-in-touch .contact-info-items .contact-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.footer-content.v1 .footer-widget .get-in-touch .contact-info-items .contact-info-item .contact-info-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 48px;
  height: 48px;
  border-radius: 5px;
  background: #2a4c60;
  color: var(--white);
  font-size: 20px;
  line-height: 30px;
}

.footer-content.v1 .footer-widget .get-in-touch .contact-info-items .contact-info-item .contact-info-content .para {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0;
}
.news-letter form input {
    padding: 0;
    width: 100%;
    border: none;
}

.footer-content.v1 .footer-widget .get-in-touch .contact-info-items .contact-info-item .contact-info-content .title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: var(--white);
}

.footer-content.v1 .bg-left-color-img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.footer-content.v1 .bg-left-color-img img {
  height: 500px;
}

.footer-content.v1 .bg-right-color-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.footer-content.v1 .bg-right-color-img img {
  height: 500px;
}
.footer-logo a img{
    max-height: 118px;
}

.copyright-section.v1 .copyright-content .right-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 33px;
}
.copyright-section.v1 .para2 {
    color: var(--white);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
.news-letter {
    padding: 20px 20px;
    background: var(--white);
    border-radius: 10px;
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
    border: 1px solid var(--primery-light-color);
}
.news-letter .title
 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    color: var(--secondary-color);
}
.news-letter form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 6px 8px 29px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 6px 26px 0px #e4e8f1;
    box-shadow: 0px 6px 26px 0px #e4e8f1;
    width: 100%;
}


.news-letter form input {
    padding: 0;
    width: 100%;
}
.all-btn .btn-p.v2 {
    font-family: var(--Poppins);
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.32px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: inline-block;
    padding: 6px 16px;
        color: var(--white);
    background: var(--primery-color);
}
.footer-social-link {
    margin-top: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.footer-social-link li a {
    width: 30px;
    height: 30px;
    background: var(--white);
    border-radius: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 400;
}
.copyright-section.v1 {
    background: #2c465d;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 23px 0;
}
.copyright-section.v1 .copyright-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
} 
.copyright-section.v1 .para {
    color: var(--white);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}  
.copyright-section.v1 .para strong {
    color: var(--white);
}


.cta-area {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    
    z-index: 1;
}
.cta-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 63, 114, .7);
    z-index: -1;
}
.cta-content {
    text-align: center;
}
.cta-content h2 {
    color: var(--white);
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 10px;
}
.cta-content p {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 30px;
}
.cta-area .btn{
    margin-top: 30px;
}

.track-shipment-wrap {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    padding: 30px;
}
.track-shipment-form {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.track-shipment-form h4 {
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--secondary-color);
}
.track-shipment-form .form-group {
    margin-bottom: 20px;
}
.form-group .form-icon {
    position: relative;
}
.form-group .form-icon i {
    position: absolute;
    top: 19px;
    left: 20px;
    color: var(--primery-color);
    z-index: 1;
}
.form-group .form-control{
    padding: 14px 20px 14px 20px;
    border-radius: 15px;
    background-color: var(--white);
    color: var(--secondary-color);
    border-color: rgba(0, 0, 0, 0.08);
}

.choose-item {
    display: flex
;
    gap: 20px;
    margin: 30px 0;
}
.choose-item-icon {
    position: relative;
    width: 60px;
    height: 60px;
    line-height: 58px;
    background: var(--primery-color);
    text-align: center;
    border-radius: 50px 50px 50px 10px;
}
.choose-item-icon::before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 2px solid var(--primery-color);
    border-radius: 50px 50px 50px 10px;
}
.choose-item-info {
    flex: 1;
}
.choose-item-info h4 {
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
}
.choose-item-info p {
    color: #757f95;
}
/* .choose-img {
    position: relative;
    text-align: right;
}
.choose-img .img-1 {
    width: 91%;
    border-radius: 30px;
}
.choose-img .img-2 {
    position: absolute;
    left: 0;
    bottom: -125px;
    width: 80%;
    border-radius: 50px;
    border: 8px solid var(--white);
} */

.img-box-right{
    padding-left: 59px;
    padding-bottom: 78px;
    position: relative;
}
.img-box-right .img-1{
    border-radius: 20px;
    overflow: hidden;
}
.img-box-right .img-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    padding-top: 20px;
    padding-right: 20px;
    border-radius: 20px;
    background-color: white;
}
.img-box-right .img-2::before, .img-box-right .img-2::after {
        content: "";
    position: absolute;
    background-color: transparent;
    top: -40px;
    height: 40px;
    width: 20px;
    box-shadow: 0 20px 0 0 #ffffff;
    right: calc(100% - 79px);
    border-bottom-left-radius: 20px;
}
.img-box-right .img-2::after {
    bottom: 79px;
    top: auto;
    right: -20px;
}

.video-area{
    position: relative;
    z-index: 1;
}
.video-area::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 63, 114, .5);
}
.video-wrap{
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: 5px;
    height: 500px;
}
.video-wrap .play-btn {
    display: inline-block;
    padding: 0;
    height: 75px;
    width: 75px;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 75px;
    font-size: 20px;
    background: var(--primery-color);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.play-btn i::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--primery-color);
    border-radius: 50px;
    animation: ripple-wave 1s linear infinite;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all 0.5s ease-in-out;
}
@keyframes ripple-wave {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}
.qa-negative {
    margin-top: -120px;
}
.quote-area {
    position: relative;
    z-index: 2;
}
.quote-content {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    padding: 30px;
}
.quote-img {
    border-radius: 20px;
}

.quote-header h4{
        font-size: 22px;
        color:#003F72;
    margin: 0px;
    font-weight: 600;
    font-family: var(--Poppins);
    line-height: 1.2;
}
.quote-header {
    border-bottom: 1px solid var(--primery-light-color);
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.why-choose-us-accordion .accordion-item {
    border-radius: 10px;
    border: 1px solid #dfdfdf;
    background: var(--white);
}
.why-choose-us-accordion .accordion-button {
    padding: 20px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px !important;
    background: var(--primery-color);
    color: var(--white);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}
.why-choose-us-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background: var(--white);
    border: none;
    color: var(--primery-color);
}
.why-choose-us-accordion .accordion-item .accordion-header .accordion-button {
    color: var(--white);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}
.why-choose-us-accordion .accordion-item .accordion-header .accordion-button .button-number {
    background: #f6f7fa;
    color: var(--primery-color);
    border-radius: 50%;
    min-width: 34px;
    max-width: 34px;
    height: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 16px;
}
.why-choose-us-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: "\f06e";
    font-family: "Font Awesome 7 Free";
    width: 40px;
    height: 40px;
    background: var(--primery-color);
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 7px;
    font-size: 16px;
}
.why-choose-us-accordion .accordion-item .accordion-header .accordion-button.collapsed::after {
    content: "\f070";
    font-family: "Font Awesome 7 Free";
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primery-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 7px;
    font-size: 16px;
}
.why-choose-us-accordion .accordion-item .accordion-body {
    padding: 0 120px 30px 30px;
    color: #7B7E86;
    font-family: var(--roboto);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
.why-choose-us-accordion li:not(:last-of-type) {
    margin-bottom: 20px;
}
.blog-item {
    padding: 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
}
.blog-item-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.blog-item-img img {
    border-radius: 12px;
    transition: all 0.3s linear;
}
.blog-date {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 60px;
    height: 60px;
    line-height: 15px;
    background: var(--primery-color);
    color: var(--white);
    text-align: center;
    border-radius: 50px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    border: 4px solid #ffffff;
}
.blog-date strong {
    display: block;
    font-size: 25px;
    font-weight: 800;
    margin-top: 4px;
    line-height: 1;
}
.blog-date span {
    font-weight: 500;
}
.blog-item-info {
    padding: 15px 0 0 0;
}
.blog-item-meta ul {
    margin: 0;
    margin-bottom: 14px;
    padding: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.blog-item-meta ul li {
    display: inline-block;
    margin-right: 15px;
    font-weight: 500;
    position: relative;
    color: var(--secondary-color);
}
.blog-item-meta a {
    color: var(--secondary-color);
}
.blog-item-meta ul li i {
    margin-right: 5px;
    color: var(--primery-color);
}
.blog-title {
    font-size: 22px;
    margin-bottom: 15px;
    text-transform: capitalize;
        color: var(--secondary-color);
    font-weight: 600;
    font-family: var(--Poppins);
    line-height: 1.2;
}
.blog-item-info h4 a {
    color: var(--secondary-color);
    font-weight: 600;
}
.blog-item-info p {
    margin-bottom: 24px;
}
.blog-item .btn{
    padding: 7px 16px;
}
.blog-item:hover .blog-item-img img {
    transform: scale(1.1);
}
.blog-item-meta a:hover {
    color: var(--primery-color);
}

.stikey-header .navbar{
    left: 0;
    margin: auto;
    position: fixed !important;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    background: var(--white) !important;
    transition: 0.5s;
    z-index: 999;
    -webkit-animation: 300ms running fadeInDown;
    animation: 500ms running fadeInUp;
    animation-name: slideInDown;

}

.stikey-header+section{
    margin-top: 80px;
}
@keyframes slideInDown{
0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
}
100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
}

.testimonials-wrapper .slick-dots{
    border: 1px solid hsl(0deg 0% 96.74% / 10%);
}
.testimonials-wrapper .slick-dots li button:before {
    color: hsla(0, 0%, 100%, 0.4);
}
.testimonials-wrapper .slick-dots li.slick-active button:before {
    color: var(--white);
}

 /* Banner Container */
    .video-banner {
      position: relative;
      height: 100vh; /* full screen height */
      overflow: hidden;
    }

    /* Video Styling */
    .video-banner video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: -1;
      transform: translate(-50%, -50%);
      object-fit: cover;
    }

    /* Overlay to darken video */
    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5); /* dark overlay */
      z-index: 1;
    }

    /* Banner Content */
    .video-content {
      position: relative;
      z-index: 2;
      color: #fff;
      text-align: center;
      top: 50%;
      transform: translateY(-50%);
    }

     #logisticsCarousel::before{
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 0;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
       background: linear-gradient(170deg, hsl(205, 42%, 15%) , hsla(204, 42%, 15%, 0));
    }

    .section-banner{
        background-position: center center;
        background-size:cover;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
        height: 385px;
    }

    .section-banner::before{
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-color: #000;
        opacity: 0.9;
    }
    .section-banner .breadcrumb-item {
        color: var(--primery-color);    
        font-weight: 500;
    }
    .section-banner  .breadcrumb-item a{
        color: #FFF;
    }
.section-banner .link-hover-animation-1::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primery-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.section-banner .breadcrumb-item + .breadcrumb-item::before {
    transform: rotate(-21deg);
    position: relative;
    top: -1px;
}
.section-banner .breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right:0.5rem;
    color: var(--primery-color);
    content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}