

.marquee-carousel:hover .marquee-track {
  animation-play-state: paused;
}
p{
    color: #000000 !important;
}
.ml-n4, .mx-n4 {
    margin-left: -1.5rem !important;
}
.back-to-top {
    position: fixed;
    right: 15px;
    bottom: 90px;
    transition: 0.2s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
    0%  {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}

    25% {border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;}

    50% {border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;}

    75% {border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;}

    100% {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}
}
/*** Icon Animation End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 90px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 90px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: .5s;
    opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}
/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Features Start ***/
.feature {
    background: var(--bs-light);
}

.feature .feature-item {
    display: flex;
    border-radius: 10px;
}

.feature .feature-item .feature-icon span {
    width: 90px; 
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Features End ***/



/*** Fact Counter Start ***/
.counter {
    background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)), url(../img/fact-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.counter .counter-item .counter-item-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Fact Counter End ***/

/*** Services Start ***/

.service-item {
    height: 320px;
    background: #f4f5f8;
    transition: .5s;
    border-radius: 10px;
}
.service-item p{
    color: #000000;
}

.service-item:hover,
.service-item.active {
    background: #2b2e4a;
}

.service-item h1,
.service-item h4 {
    transition: .5s;
}

.service-item:hover h1,
.service-item.active h1 {
    color: #1C1E32 !important;
}

.service-item:hover h4,
.service-item.active h4 {
    color: #F4F5F8;
}
.service-item:hover p {
    color: #F4F5F8 !important;
}

/*** Service End ***/


/*** Process Start ***/
.steps {
    background: #F4F5F8;
}


.steps .steps-item {
    position: relative;
    border-radius: 10px;
    border: 1px solid red;
}

.steps .steps-item h4,
.steps .steps-item p {
    color: #000000;
}

.steps .steps-item .setps-number {
    position: absolute;
    width: 64px;
    height: 64px;
    bottom: 0; 
    right: 40px;
    font-weight: 900;
    border: 1px solid var(--bs-white); 
    border-radius: 64px;
    transform: translateY(50%);
    color: var(--bs-white);
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
/*** Process End ***/



/*** Contact Start ***/
.contact .contact-add-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Contact End ***/

 .rent-item {
            padding: 30px;
            text-align: center;
            background: #F4F5F8;
            transition: .5s;
            border-radius: 10px;
        }

        .rent-item img {
            width: 220px;
        }

        .rent-item:hover,
        .rent-item.active {
            background: #2B2E4A;
        }

        .rent-item h4 {
            transition: .5s;
        }

        .rent-item:hover h4,
        .rent-item.active h4 {
            color: #F4F5F8;
        }
        .bg-banner {
            background: linear-gradient(rgba(28, 30, 50, .9), rgba(28, 30, 50, .9)), url(../img/car-rental.jpg);
            background-attachment: fixed;
        }
        .owl-carousel.owl-drag .owl-item {
            width: 160px !important;
        }

        .vendor-carousel .owl-dots,
        .testimonial-carousel .owl-dots {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-lg-square {
            width: 45px !important;
            height: 45px !important;
        }
        
        /*Marque*/
        .marquee-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.marquee-carousel:hover .marquee-track {
  animation-play-state: paused;
}

.vendor-item {
  flex: none;
  margin-right: 30px;
  background-color: #f8f9fa;
  padding: 30px;
  min-width: 120px;
}

.vendor-item img {
  height: 95px;
  object-fit: contain;
}
  
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* footer fixed area  */
.callStringNew {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  background-color: #be0025 !important;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 10px;
  z-index: 10;
}

.callStringNew.footerNumShow {
  display: flex;
}

.callStringNew .rightCall {
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  padding-right: 7px;
  padding-left: 47px;
}

.callStringNew .fulclk {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.callStringNew a {
  padding-top: 10px;
  color: #fff;
  padding-left: 10px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  display: block;
  padding-bottom: 1px;
  line-height: 23px;
  position: relative;
  top: -1px;
}

.ringing-icon {
  animation: ring 1s infinite;
  transform-origin: center;
  display: inline-block;
}

@keyframes ring {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-15deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(-10deg); }
  50% { transform: rotate(5deg); }
  60% { transform: rotate(-5deg); }
  70% { transform: rotate(2deg); }
  80% { transform: rotate(-2deg); }
  90% { transform: rotate(1deg); }
  100% { transform: rotate(0deg); }
}

 @media (max-width: 575.98px) {
    .mb-phone-only {
      margin-bottom: 3rem !important; /* Same as mb-5 */
    }
  }

/* footer fixed area end */
 




