.about-section .section-heading h2 {
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 20px;
}
.about-img {
  position: relative;
  margin-top: -80px;
  z-index: 1;
}
.about-img:before {
  background-color: #f90;
  border-radius: 2px;
  transform: skew(-20deg, 0deg);
  content: "";
  width: 200px;
  height: calc(100% + 70px);
  position: absolute;
  right: 200px;
  bottom: -80px;
  z-index: -1;
}
.about-img img {
  border-radius: 3px;
}
.about-img .about-img1 {
  max-width: 300px;
  transform: translate(20px, 40px);
}
.about-img .about-img2 {
  max-width: 200px;
  position: absolute;
  right: 80px;
  bottom: 0;
}
.round-text {
  position: absolute;
  right: 100px;
  top: 60px;
}
.round-text img {
  animation-name: spin;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.round-text:before {
  background-image: url(../img/location-marker.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30%;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.about-info {
  display: flex;
  align-items: flex-start;
  column-gap: 40px;
}
.about-info li {
  display: flex;
  column-gap: 15px;
}
.owner-thumb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.signature {
  width: 140px;
}
.about-info li h2 a {
  color: #f90;
  font-weight: 700;
  margin: 0;
}
.owner h4,
.about-info li h2 span {
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  color: #666;
  display: block;
  margin-bottom: 5px;
}
.owner h4 {
  margin: 0;
}
.video-box-inner {
  position: relative;
  text-align: right;
}
.video-box-inner > img {
  width: 400px;
  border-radius: 5px;
}
.video-box {
  width: 250px;
  border-radius: 5px;
  position: absolute;
  left: 30px;
  bottom: -30px;
}
.video-box > img {
  width: 100%;
  border-radius: 5px;
}
.video-box .play-btn {
  background-color: #f90;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 10px 33.25px 1.75px rgba(0, 27, 103, 0.35);
  box-shadow: 0 10px 33.25px 1.75px rgba(0, 27, 103, 0.35);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.video-box .play-btn svg {
  fill: #fff;
  width: 40px;
  margin-left: 5px;
}
.video-box .play-btn .ripple,
.video-box .play-btn .ripple:before,
.video-box .play-btn .ripple:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  transform: translateX(-50%) translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: rippleanim 3s infinite;
  -moz-animation: rippleanim 3s infinite;
  -ms-animation: rippleanim 3s infinite;
  -o-animation: rippleanim 3s infinite;
  animation: rippleanim 3s infinite;
}
.video-box .play-btn .ripple:before {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.video-box .play-btn .ripple:after {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
@-webkit-keyframes rippleanim {
  70% {
    box-shadow: 0 0 0 70px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}
@keyframes rippleanim {
  70% {
    box-shadow: 0 0 0 70px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}
@media (max-width: 992px) {
  .video-box {
    width: 100%;
    position: relative;
    left: 0;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .testimonial-section {
    padding-bottom: 0!important;
  }
  .video-box {
    margin-top: 30px;
  }
  .logo-items img {
    max-width: none;
  }
  .footer-mid-wrap {
    padding: 20px 0 100px!important;
  }
  .footer-top .brand {
    display: flex!important;
    padding: 0!important;
  }
  .footer-top .brand p::before {
    display: block!important;
  }
  .footer-top .brand p {
    padding: 0;
    margin-top: 0!important;
  }
  .running-taxi {
    bottom: 18px!important;
  }
}
.service-section {
  position: relative;
  z-index: 1;
}
.service-carousel {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}
.bg-half {
  background-image: url(../img/bg-1.jpg);
  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;
}
.service-section .section-heading p {
  color: #ddd;
}
.service-item {
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 1px 5px rgb(0 0 0/15%);
}
.service-thumb {
  position: relative;
}
.service-shape-wrap {
  transform: skew(-20deg, 0deg);
  width: 200px;
  height: 200px;
  position: absolute;
  right: 20px;
  bottom: 0;
  overflow: hidden;
}
.service-shape {
  background-color: #ef612f;
  border-radius: 2px;
  position: absolute;
  width: 80px;
  height: 180px;
  left: 80px;
  bottom: 0;
  transition: all 300ms cubic-bezier(0.165, 0.85, 0.45, 1);
  transition-delay: 0.1s;
}
.service-shape:before {
  background-color: #459ca8;
  border-radius: 2px;
  content: "";
  width: 80px;
  height: 140px;
  position: absolute;
  right: 60px;
  bottom: 0;
  opacity: 0.95;
  transition: all 300ms cubic-bezier(0.165, 0.85, 0.45, 1);
  transition-delay: 0.2s;
}
.service-shape:after {
  background-color: #459ca8;
  border-radius: 2px;
  content: "";
  width: 40px;
  height: 120px;
  position: absolute;
  right: -20px;
  bottom: 0;
  opacity: 0.95;
  transition: all 300ms cubic-bezier(0.165, 0.85, 0.45, 1);
  transition-delay: 0.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 0.3s cubic-bezier(0.165, 0.85, 0.45, 1);
}
.service-item:hover .service-car {
  bottom: -35px;
  right: 0;
}
.service-content {
  background-color: #fff;
  padding: 30px;
}
.service-content h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
}
.service-content h3 a:hover {
  color: #222;
}
.service-content p {
  margin-bottom: 20px;
}
.service-content .read-more {
  background-color: #459ca8;
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
  border-radius: 2px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  display: inline-block;
  height: 35px;
  padding: 0 23px 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.service-content .read-more:before {
  background-color: #ef612f;
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 300ms cubic-bezier(0.165, 0.85, 0.45, 1);
  z-index: -1;
}
.service-content .read-more:hover:before {
  width: 100%;
}
@media (min-width: 1400px) {
  .bg-half {
    height: 59.2%;
  }
}
.swiper-outside {
  padding: 0;
  position: relative;
}
.swiper-container {
  overflow: hidden;
}
.swiper-outside .swiper-nav {
  color: #222;
  font-size: 35px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: -45px;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.swiper-outside .swiper-nav:before {
  background-color: #ef612f;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.swiper-outside .swiper-nav.swiper-prev {
  justify-content: flex-end;
  clip-path: polygon(0 50%, 100% 100%, 100% 0);
}
.swiper-outside .swiper-nav.swiper-next {
  clip-path: polygon(100% 50%, 0 100%, 0 0);
  left: auto;
  right: -45px;
}
.swiper-outside:hover .swiper-nav {
  visibility: visible;
  opacity: 1;
  left: -50px;
}
.swiper-outside:hover .swiper-nav.swiper-next {
  left: auto;
  right: -50px;
}
.service-carousel .swiper-pagination {
  bottom: 0;
  line-height: 1;
}
.swiper-pagination span {
  background-color: #222;
  border-radius: 2px;
  width: 10px;
  height: 10px;
  border-radius: 0;
  opacity: 1;
}
.swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #ef612f;
  box-shadow: 0 0 0 3px rgba(239, 97, 47, 0.5);
}
.service-details-info img {
  height: auto;
  width: 100%;
  object-fit: cover;
  object-position: bottom;
  border-radius: 5px;
  margin-bottom: 30px;
}
.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin: 30px 0;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.service-features li i {
  font-size: 50px;
}
.service-features li h3 {
  margin-bottom: 0;
}
.service-features li p {
  margin-bottom: 0;
}
.service-details-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  margin-top: 30px;
}
.service-details-list img {
  height: 220px;
  margin: 0;
}
.service-icon-list li i {
  font-size: 20px;
  color: #ef612f;
}
.service-icon-list li {
  font-weight: 500;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.service-icon-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.service-sidebar ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f4f5f8;
  padding: 8px 15px;
  border: 1px solid #eee;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.service-sidebar ul li:hover {
  background-color: #ef612f;
}
.service-sidebar ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
.service-sidebar ul li a {
  font-size: 17px;
  font-weight: 500;
}
.service-sidebar ul li a:hover {
  color: #222;
}
.service-sidebar ul li i {
  font-size: 20px;
  color: #459ca8;
}
.service-sidebar ul li:hover i {
  color: #fff;
}
.booking-section {
  background-image: url(../img/texture.png);
  background-repeat: repeat;
  background-size: cover;
  background-color: #222;
  position: relative;
  z-index: 1;
}
.booking-section:before {
  background-color: #f90;
  content: "";
  width: 300px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.booking-section:after {
  background-color: #f4f5f8;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%);
  content: "";
  width: 400px;
  height: 80px;
  position: absolute;
  right: 0;
  top: -1px;
}
.booking-car {
  background-image: url(../img/car-2.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 85%;
  width: 780px;
  height: 439px;
  position: absolute;
  left: -280px;
  top: 50px;
  z-index: -1;
}
.booking-wrap .section-heading h2 {
  font-size: 40px;
}
.booking-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  z-index: 1;
}
.booking-form .form-field {
  position: relative;
}
.booking-form .niceSelect .current,
.booking-form .form-field input {
  background-color: #333;
  color: #fff;
  border-radius: 2px;
  width: 100%;
  height: 50px;
  padding: 0 35px 0 20px;
  font-size: 17px;
  line-height: 50px;
  box-shadow: none;
  outline: none;
  border: 1px solid #333;
}
.booking-form .form-field input:focus {
  border: 1px solid #f90;
}
.booking-form .form-field i {
  color: #f90;
  font-size: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.booking-form .form-field button {
  width: 100%;
  height: 50px;
}
.booking-form .niceSelect {
  padding: 0;
  border: none;
  width: 100%;
  height: auto;
  font-size: 17px;
  color: #fff;
}
.booking-form .niceSelect .current {
  height: 50px;
  line-height: 50px;
  display: block;
  padding: 0 20px;
}
.booking-form .niceSelect .list {
  background-color: #333;
  width: 100%;
  border-radius: 0;
  margin-top: -2px;
  border: none;
}
.booking-form .niceSelect .list li {
  font-size: 14px;
}
.booking-form .niceSelect .list li:not(:last-of-type) {
  border-bottom: 1px solid #444;
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f90;
  font-weight: 400;
}
.nice-select:after {
  display: none;
}
.xdsoft_datetimepicker
  .xdsoft_timepicker
  .xdsoft_time_box
  > div
  > div.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current {
  background: #f90;
  box-shadow: #f90 0 1px 3px 0 inset;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover,
.xdsoft_datetimepicker .xdsoft_calendar td:hover {
  background: #222 !important;
  color: #fff;
}
.booking-form-2 {
  position: relative;
  margin-top: -100px;
  margin-bottom: 80px;
  z-index: 1;
}
.booking-form-2:before {
  background-color: #222;
  clip-path: polygon(0 0, 90% 0%, 100% 20%, 100% 100%, 0 99%);
  background-image: url(../img/texture.png);
  background-repeat: repeat;
  background-size: cover;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.booking-car-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: calc(100% - 2px);
  overflow: hidden;
}
.booking-car-wrap:before {
  background-color: #f90;
  background-image: repeating-linear-gradient(
    45deg,
    #f7a20f 0,
    #f7a20f 2px,
    transparent 0,
    transparent 50%
  );
  background-size: 10px 10px;
  content: "";
  width: 330px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.booking-form-2 .booking-car {
  background-size: 70%;
  left: -130px;
  top: 10px;
  z-index: 0;
}
.booking-form-2 .col-lg-8 {
  padding: 60px;
}
@media (max-width: 767px) {
  .booking-form-2:before {
    clip-path: polygon(0 0, 90% 0%, 100% 8%, 100% 100%, 0 99%);
  }
}
.pricing-item {
  background-color: #fff;
  padding: 0;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.pricing-head-wrap {
  position: relative;
  z-index: 1;
}
.pricing-head-wrap:before {
  background-image: url(../img/pricing-bg.jpg);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 40%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  content: "";
  width: 100%;
  height: 280px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.pricing-head-wrap:after {
  background-color: rgba(34, 34, 34, 0.5);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 40%);
  content: "";
  width: 100%;
  height: 280px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.pricing-head {
  text-align: center;
}
.pricing-head h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin: 0;
}
.pricing-head h3 a:hover {
  color: #222;
}
.pricing-head .location {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-car {
  text-align: center;
  padding: 60px 25px 20px;
  position: relative;
  z-index: 1;
}
.pricing-car .price {
  background-color: #f90;
  clip-path: polygon(85% 0%, 100% 30%, 100% 100%, 0 100%, 0 0);
  font-size: 20px;
  font-weight: 700;
  color: #222;
  padding: 10px 15px 10px 25px;
  position: absolute;
  right: 40px;
  top: 55px;
  z-index: -1;
}
.pricing-list {
  padding: 20px 40px 30px;
}
.pricing-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pricing-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.pricing-list li a.default-btn {
  width: 100%;
  margin-top: 20px;
}
.pricing-tab-menu {
  justify-content: center;
  margin-bottom: 30px;
}
.pricing-tab-menu li {
  position: relative;
}
.pricing-tab-menu li .nav-link {
  font-size: 17px;
  font-weight: 500;
  color: #999;
  padding: 0;
}
.pricing-tab-menu li .nav-link:hover,
.pricing-tab-menu li .nav-link.active {
  color: #222;
}
.pricing-tab-menu li:not(:last-of-type) {
  padding-right: 80px;
}
.pricing-tab-menu li:not(:last-of-type):before {
  background-color: #ccc;
  width: 50px;
  height: 2px;
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.tab-pane.active.show .row > div {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fade-in-bottom;
  animation-name: fade-in-bottom;
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  animation-fill-mode: both;
  transition: all 0.2s ease-in-out;
  transition-duration: 800ms;
  animation-delay: 0.1s;
}
.tab-pane.active.show .row > div:nth-child(2) {
  animation-delay: 0.2s;
}
.tab-pane.active.show .row > div:nth-child(3) {
  animation-delay: 0.3s;
}
.taxi-details-img {
  position: relative;
}
.taxi-details-img:before {
  background-color: #f90;
  background-image: repeating-linear-gradient(
    45deg,
    #f7a20f 0,
    #f7a20f 2px,
    transparent 0,
    transparent 50%
  );
  background-size: 10px 10px;
  width: 40%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.taxi-details-img img {
  margin-left: -50px;
  margin-top: 100px;
}
.taxi-details-img .price {
  background-color: #222;
  background-image: url(../img/texture.png);
  background-repeat: repeat;
  background-size: cover;
  clip-path: polygon(85% 0%, 100% 30%, 100% 100%, 0 100%, 0 0);
  width: auto;
  padding: 15px 25px;
  position: absolute;
  right: 120px;
  top: 110px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  z-index: -1;
}
.taxi-details-img .price i {
  font-size: 25px;
  color: #f90;
  margin-right: 5px;
}
.taxi-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 40px;
  row-gap: 15px;
  margin-top: 30px;
}
.taxi-features li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.taxi-features li span {
  font-weight: 500;
  color: #222;
  display: flex;
  align-items: center;
}
.taxi-features li span i {
  color: #f90;
  font-size: 25px;
  margin-right: 5px;
}
.download-section {
  position: relative;
  overflow: hidden;
}
.app-feature {
  margin-top: 20px;
}
.app-feature li {
  display: inline-block;
  align-items: center;
}
.app-feature li:not(:last-of-type) {
  margin-right: 20px;
}
.app-feature li .feature-icon {
  width: 40px;
  margin-bottom: 10px;
}
.app-feature li h3 {
  font-size: 17px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 0;
}
.download-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
.download-btn a {
  width: 170px;
}
.download-btn a:hover {
  transform: translateY(-3px);
}
.download-section {
    background-image: url(images/what_luggme_bg.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    width: 100%;
    min-height: 550px;
    /* position: absolute;
    right: 40px;
    top: 100px; */
    z-index: -1;
  }

.taxi-holder {
  background-image: url(../img/taxi-background.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  width: 100%;
  min-height: 550px;
  position: absolute;
  right: 40px;
  top: 100px;
  z-index: -1;
}
.taxi-holder .taxi {
  background-image: url(images/luggme-van.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  width: 550px;
  height: 100%;
  position: absolute;
  right: 55px;
  top: 100px;
}
.taxi-holder .mockup {
  background-image: url(images/mobile-view.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  width: 280px;
  height: 100%;
  position: absolute;
  right: 300px;
  top: -60px;
  z-index: -1;
}
.taxi-holder .charecter {
  background-image: url(../img/charecter.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  width: 180px;
  height: 100%;
  position: absolute;
  right: 130px;
  top: 80px;
}
.location-marker {
  position: absolute;
  right: 17%;
  top: 20px;
  animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  -moz-animation: bounce 2s infinite;
  -o-animation: bounce 2s infinite;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
@media (min-width: 993px) and (max-width: 1300px) {
  .taxi-holder .taxi {
    width: 390px;
    right: 75px;
    top: 80px;
  }
  .taxi-holder .mockup {
    width: 230px;
    right: 190px;
    top: -55px;
  }
  .taxi-holder .charecter {
    width: 125px;
    right: 130px;
    top: 45px;
  }
  .location-marker {
    right: 15%;
    top: 50px;
  }
}

.download-section-2 {
  background-image: url(../img/bg-1.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.download-section-2 .section-heading h2 {
  color: #fff;
}
.download-section-2 .section-heading p {
  color: #ddd;
}
.download-mockup {
  background-image: url(../img/mockup-2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 380px;
  height: 100%;
  position: absolute;
  right: 250px;
  bottom: -20px;
}
.app-screen {
  width: 220px;
  position: absolute;
  right: 150px;
  bottom: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 1px 5px rgb(0 0 0/15%);
  overflow: hidden;
}
@media (max-width: 1200px) {
  .download-mockup {
    right: 130px;
    bottom: -60px;
  }
  .app-screen {
    right: 60px;
  }
}
@media (min-width: 1600px) {
  .download-mockup {
    right: 320px;
  }
  .app-screen {
    right: 290px;
  }
  .footer-mid-wrap {
    padding: 0 0 400px!important;
  }
  .running-taxi {
    bottom: 80px!important;
  }
  .nav-menu-inner {
  max-width: 78%;
}
}
.testimonial-section {
  position: relative;
}
.testimonial-section:before {
  background-image: url(images/map.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  width: 50%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
}
.testimonial-carousel {
  overflow: hidden;
  padding: 25px 5px 5px;
}
.testimonial-carousel-2.swiper-container {
  padding: 25px 0;
}
.testi-pagination {
  margin-left: -5px;
}
.testi-pagination .swiper-pagination {
  left: 5px;
  bottom: -50px;
  text-align: left;
}
.testi-item {
  background-color: #fff;
  border-radius: 2px;
  padding: 40px;
  box-shadow: 0 1px 5px rgb(0 0 0/20%);
  position: relative;
  display: flex; 
  flex-direction: column; 
  height: 100%; 
}
.testi-item p {
  font-size: 18px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 34px;
  letter-spacing: -0.5px;
}
.quote-icon {
  background-color: #ef612f;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  font-size: 30px;
  color: #222;
  width: 60px;
  height: 50px;
  position: absolute;
  right: 100px;
  top: -25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
}
.testi-author .author-thumb img {
  border-radius: 50%;
}
.testi-author .author-info h3 {
  font-size: 22px;
  margin: 0;
  display: block;
  line-height: 1;
}
.testi-author .author-info h3 span {
  display: block;
  font-size: 16px;
  line-height: 1;
  margin-top: 10px;
}
.testimonial-carousel .swiper-pagination {
  text-align: left;
}
.feature-wrap {
  /* background-color: #459ca8; */
  padding: 110px 40px;
  /* background-image: repeating-linear-gradient(
    45deg,
    #288f9d 0,
    #288f9d 2px,
    transparent 0,
    transparent 50%
  ); */
  background-size: 10px 10px;
  margin-left: 40px;
}
.ridek-features li {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ridek-features li:not(:last-of-type) {
  margin-bottom: 30px;
}
.feature-icon {
  font-size: 60px;
  color: #fff;
}
.feature-content h3 {
  color: #fff;
  font-size: 22px;
  margin: 0;
}
.feature-content p {
  margin: 0;
  color: #fafafa;
}
.cta-section {
  background-image: url(images/cta-map.png);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 80% 100%, 0 100%);
  background-repeat: repeat;
  background-size: cover;
  background-color: #666;
  position: relative;
  z-index: 1;
}
.cta-section-middle {
  background-image: url(images/cta-map.png);
  clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 20% 100%, 0 55%);
  background-repeat: repeat;
  background-size: cover;
  background-color: #666;
  position: relative;
  z-index: 1;
}
/* .cta-section:before {
  background-color: #a8a7a7;
  background-image: url(images/cta-map.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #ccc;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
} */
/*  .cta-men {
  background-image: url(img/cta-men.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 130px;
  bottom: -30px;
  z-index: -1;
} */
/* added by purnima */
.cta-men {
  background-image: url(img/about-right2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 130px;
  bottom: -30px;
  z-index: -1;
}
.cta-content .cta-call {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}
.cta-content .cta-call p span {
  display: block;
}
.cta-content .cta-call p a {
  color: #f90;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.cta-content .cta-call i {
  background-color: rgba(255, 153, 0, 0.1);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 40px;
  color: #f90;
  border-radius: 2px;
}
.cta-content h2 {
  font-size: 46px;
  line-height: 52px;
  /* color: #fff; */
  margin-bottom: 20px;
}
.cta-content h2 span {
  color: #f90;
}
.cta-content p {
  font-size: 18px;
  font-weight: 500;
  color: #ccc;
  margin: 0;
}
.cta-section-2 {
  position: relative;
  z-index: 1;
}
.cta-section-2:before {
  background-color: #a8a7a7;
  background-image: url(images/cta-map.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.cta-section-2 .cta-content h4 {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
}
.cta-section-2 .cta-content h2 {
  margin: 0;
  font-size: 36px;
  line-height: 42px;
}
.cta-section-2 .cta-content .default-btn {
  background-color: #459ca8;
  margin-top: 20px;
}
.cta-section-2 .cta-content .default-btn:hover {
  color: #222;
}
.cta-section-2 .cta-content .default-btn:after,
.cta-section-2 .cta-content .default-btn:before {
  background-color: #ef612f;
}
.cta-section-2 .check-list i {
  /* background-color: #222; */
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  font-size: 12px;
  color: #f90;
  width: 30px;
  height: 20px;
  line-height: 20px;
  text-align: center;
}
/* .cta-section-2 .check-list li {
  color: #fff;
} */
.cta-section-2 .check-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.cta-section-2 .cta-men {
  background-size: 100%;
  right: 90px;
  bottom: 0;
  width: 500px;
  height: 420px;
}
@media (min-width: 993px) and (max-width: 1200px) {
  .cta-men {
    width: 450px;
    right: 70px;
    bottom: -5px;
  }
}
.team-thumb {
  clip-path: polygon(0 0, 90% 0%, 100% 10%, 100% 100%, 0 100%);
}
.team-thumb img {
  width: 100%;
}
.team-content {
  position: relative;
}
.team-content:before {
  background-image: url(../img/car%20steering.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 50%;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 50%;
  top: -65px;
  transform: translateX(-50%);
}
.team-content h3 a {
  background-color: #f90;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
  background-image: repeating-linear-gradient(
    45deg,
    #f7a20f 0,
    #f7a20f 2px,
    transparent 0,
    transparent 50%
  );
  background-size: 8px 8px;
  width: 90%;
  height: 70px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin: 0 auto;
  margin-top: -30px;
  padding-bottom: 10px;
}
.team-content h3 a:hover {
  color: #222;
}
.team-content h4 {
  background-color: #222;
  background-image: url(../img/texture.png);
  background-repeat: repeat;
  background-size: cover;
  clip-path: polygon(100% 0, 100% 100%, 10% 100%, 0% 70%, 0 0);
  color: #fff;
  width: 60%;
  height: 40px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  margin-left: auto;
  position: absolute;
  right: 59px;
  top: 50px;
  box-shadow: 0 1px 5px rgb(0 0 0/20%);
}
.driver-details {
  position: relative;
}
.driver-details img {
  width: 100%;
  border-radius: 5px;
}
.experience-box {
  background-color: #f90;
  background-image: repeating-linear-gradient(
    45deg,
    #f7a20f 0,
    #f7a20f 2px,
    transparent 0,
    transparent 50%
  );
  background-size: 10px 10px;
  padding: 30px;
  position: absolute;
  left: -20px;
  top: 50px;
  border-radius: 2px;
}
.experience-box h3 span {
  font-size: 50px;
  line-height: 1;
  font-weight: 600;
  display: block;
  color: #fff;
}
.experience-box h3 {
  font-size: 16px;
  margin: 0;
}
.taxi-booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
.taxi-booking-form .form-control {
  height: 50px;
  border-radius: 2px;
  border: 1px solid #ccc;
  font-size: 17px;
  outline: none;
  box-shadow: none;
}
.taxi-booking-form .form-control:focus {
  border: 1px solid #f90;
}
.taxi-booking-form .niceSelect {
  width: 100%;
  border-radius: 2px;
  border: 1px solid #ccc;
  height: 50px;
  line-height: 50px;
  font-size: 17px;
}
.taxi-booking-form .nice-select .list {
  border-radius: 2px;
  margin-top: 0;
}
.taxi-booking-form .nice-select .option {
  font-size: 15px;
}
.taxi-booking-form .nice-select .option:hover {
  color: #222;
}
.taxi-booking-form .form-field {
  position: relative;
}
.taxi-booking-form .form-field i {
  color: #f90;
  font-size: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  outline: none;
  box-shadow: none;
}
.accordion-button {
  background-color: #fff;
  color: #222;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  font-weight: 500;
  text-transform: capitalize;
  border: 1px solid #eee;
  padding: 20px 15px;
}
.accordion-button:focus {
  border-color: #eee;
  outline: none;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  color: #fff;
  /* added by Purnima */
  background-color: #ef612f;
}
.accordion-button:not(.collapsed):after {
  background-image: inherit;
  content: "\f068";
  color: #fff;
  transform: inherit;
}
.accordion-button:after {
  background-image: inherit;
  content: "\f067";
  font-family: "font awesome 5 free";
  font-size: 12px;
  position: absolute;
  right: 10px;
  top: 50%;
  color: #222;
  font-weight: 600;
  transform: translateY(-50%) !important;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section {
  position: relative;
  z-index: 1;
}
.contact-section .map {
  background-image: url(images/cta-map.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 80%;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 100px; 
  z-index: -1;
}
.contact-details-wrap {
  padding-right: 60px;
}
.contact-title {
  margin-bottom: 20px;
}
.contact-title h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  display: inline-block;
}
.contact-section .contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.contact-section .contact-details li a{
  display: flex;
  align-items: center;

  color: #666;
}
.contact-section .contact-details li i {
  background-color: #222;
  background-image: url(../img/texture.png);
  background-repeat: repeat;
  background-size: cover;
  color: #f90;
  font-size: 15px;
  margin-right: 15px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 2px;
}
.contact-form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
}
.contact-form-group .form-field .form-control {
  background-color: #fff;
  border: 1px solid #ccc;
  height: 50px;
  border-radius: 0;
  box-shadow: none;
  outline: none;
}
.contact-form-group .form-field .form-control:focus {
  border: 1px solid #ef612f;
}
.contact-form-group .form-field.message {
  grid-column-end: span 2;
}
.contact-form-group .form-field.message .form-control {
  height: auto;
}
.contact-form .form-group .form-control::-webkit-input-placeholder,
.contact-form .form-group .form-control::-webkit-input-placeholder {
  color: #999 !important;
}
.contact-form .form-group .form-control:-moz-placeholder,
.contact-form .form-group .form-control:-moz-placeholder {
  color: #999 !important;
}
.contact-form .form-group .form-control::-moz-placeholder,
.contact-form .form-group .form-control::-moz-placeholder {
  color: #999 !important;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ddd !important;
}
.contact-form .form-group .form-control.message {
  height: 120px;
}
#b-form-messages,
#form-messages {
  display: none;
  margin-top: 15px;
  margin-bottom: 0;
}
#b-form-messages.alert-danger,
#form-messages.alert-danger,
#b-form-messages.alert-success,
#form-messages.alert-success {
  display: block;
}
.branches-section {
  position: relative;
}
.branches-list h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  background-color: #f90;
  color: #fff;
  display: inline-block;
  padding: 3px 15px;
  margin-bottom: 20px;
}
.branches-list ul li {
  margin-bottom: 5px;
}
.branches-list ul li a {
  color: #777;
}
.branches-list ul li a:hover {
  text-decoration: underline;
  color: #f90;
}
.footer-top-wrap {
  background-color: #f4f5f8;
  overflow: hidden;
}
.not-found-404 .footer-top-wrap {
  background-color: #222;
}
.footer-top .footer-call {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-top .brand {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  grid-gap: 20px;
  position: relative;
  padding: 30px 70px 30px 0;
  z-index: 2;
}
.footer-top .brand p {
  position: relative;
  padding-left: 20px;
}
.footer-top .brand p:before {
  background-color: #ef612f;
  width: 2px;
  height: 100%;
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
}
.footer-top .brand:before,
.footer-top .brand:after {
  content: "";
  width: 150%;
  height: 100%;
  position: absolute;
  right: 150px;
  bottom: -1px;
  z-index: -1;
}
.footer-top .brand:before {
  width: 200px;
  clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
  right: 0;
}
.footer-top .footer-call {
  padding: 32px 0;
  position: relative;
  z-index: 1;
}
.footer-top .footer-call:before {
  background-color: #f90;
  background-image: repeating-linear-gradient(
    45deg,
    #f7a20f 0,
    #f7a20f 2px,
    transparent 0,
    transparent 50%
  );
  background-size: 10px 10px;
  content: "";
  width: 5000px;
  height: 100%;
  position: absolute;
  left: -85px;
  bottom: 0;
  z-index: -1;
}
.footer-call i {
  font-size: 45px;
  color: #fff;
}
.footer-call p span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fafafa;
  margin-bottom: 5px;
}
.footer-call p a {
  color: #222;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.footer-top .brand p,
.footer-top .footer-call p {
  color: #459ca8;
  margin: 0;
  font-size: 14px;
}
.footer-mid-wrap {
  padding: 0 0 300px;
  position: relative;
  z-index: 1;
}
.footer-mid-wrap:before {
  background-image: url(images/footer_bg.png);
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
}
.running-taxi {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: 50px;
  z-index: 2;
}
.running-taxi .taxi {
  background-image: url(images/truck-1.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  position: absolute;
  width: 110px;
  height: 42px;
  right: 0;
  bottom: 0;
  animation: running-anim 20s linear infinite;
}
.running-taxi .taxi-2 {
  background-image: url(images/truck-2.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  position: absolute;
  width: 110px;
  height: 55px;
  right: 30%;
  bottom: 0;
  animation: running-anim 30s linear infinite;
}
.running-taxi .taxi-3 {
  background-image: url(images/truck-3.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  position: absolute;
  width: 100px;
  height: 100px;
  right: 70%;
  bottom: 0;
  animation: running-anim-left 35s linear infinite;
}
.footer-item .widget-title h3 {
  color: #ef612f;
}
.footer-links li:not(:last-of-type) {
  margin-bottom: 10px;
}
.footer-contact li:not(:last-of-type) {
  margin-bottom: 8px;
}
.footer-links li a,
.footer-contact li {
  color: #459ca8;
}
.footer-contact li span {
  display: block;
  color: #ef612f;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
/* added by purnima 25-08-2023 */
.footer-links li a:hover,
.footer-top p a:hover,
.footer-contact li a:hover, .copyright-wrap a:hover, .contact-details li a:hover {
  color: #ef612f !important;
}
.swiper-button-next, .swiper-button-prev {
  
  background-color: #ef612f6e;
  width: 34px;
  padding: 20px;
  /* font-size: 4px; */
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
  font-size: 14px;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
  font-size: 14px;

}
@media (min-width: 992px) {
  .footer-list {
    margin-left: 15px;
  }
}
.subscribe-form .form-control {
  background-color: #fff;
  clip-path: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
  border-radius: 0;
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  box-shadow: none;
}
.subscribe-form .submit {
  background-color: #f90;
  clip-path: polygon(0 0, 100% 0%, 85% 100%, 0 100%);
  padding: 0 35px 0 30px;
  height: 45px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #222;
  line-height: 45px;
  text-align: center;
}
.subscribe-form .submit:hover {
  background-color: #ffab2e;
}
#subscribe-result {
  display: none;
}
#subscribe-result.subs-result {
  display: block;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #ccc;
  padding: 10px;
  margin-top: 15px;
}
.subscription-error {
  color: red;
}
@-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%;
  }
}
.copyright-wrap {
  background-color: #459ca8;
  padding: 15px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.copyright-wrap p {
  color: black;
  margin: 0;
  font-size: 14px;
}
@media (max-width: 992px) {
  .footer-top .footer-call:before {
    left: -200px;
  }
  .fs-14{
    font-size: 14px;
  }
  .fs-13{
    font-size: 13px;
  }
}


/* Counter css */

.counter{
  color: #628900;
  background: linear-gradient(to bottom, #628900 49%, transparent 50%);
  /* font-family: 'Poppins', sans-serif; */
  text-align: center;
  width: 200px;
  height: 200px;
  padding: 25px 15px 35px;
  margin: 0 auto;
  border: 18px solid #628900;
  border-radius: 100% 100%;
  box-shadow: inset 0 8px 10px rgba(0, 0, 0, 0.3);
}
.counter .counter-value{
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  display: block;
  margin: 0 0 25px;
}
.counter h3{
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}
.counter.red{
  color: #ef612f;
  background: #ef612f;
  background:linear-gradient(to bottom right, #ef612f, #459ca8);
  /* background: linear-gradient(to bottom, #ef612f 49%, transparent 50%); */
  border-color: #ef612f;
}
.counter.orange{
  color: #fb8603;
  background: linear-gradient(to bottom, #fb8603 49%, transparent 50%);
  border-color: #fb8603;
}
.counter.blue{
  color: #1f8bc1;
  background: linear-gradient(to bottom, #1f8bc1 49%, transparent 50%);
  border-color: #1f8bc1;
}
@media screen and (max-width:990px) {
  .counter{ margin-bottom: 40px; }
}

/* Hero images slide show */
.slideshow {
    margin: auto;
    width: 100%;
}

.slideshow img {
    width: 100%;
    height: 100%;
}


/* Partner logos section */
.partners {
  position: relative;
}
.partners:before {
  background-image: url(images/partner-bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size:cover;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 50%;
  z-index: -1;
}
.partners .container {
  overflow: hidden;
}
.partners .container.rounded {
  /* border-radius: 1.5rem !important;  23-08-23 Purnima Maurya */
  background-color: #cdcdcd;
}

.partners .container .slider {
    animation: slidein 30s linear infinite;
    white-space: nowrap;
}

.partners .container .slider .logos {
      width: 100%;
      display: inline-flex;
      margin: 0;
    }

    
.partners .container .slider .logos .fab {
        width: calc(100% / 5);
        animation: fade-in 0.5s 
          cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
      }
.partners .logo-items {
  padding: 5px;
}
@keyframes slidein {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/* global css  */
.luggme-blue {
  color: #459ca8 !important;
}
.luggme-blue-bg {
  background-color: #459ca8 !important;
}
.luggme-redorange {
  color: #ef612f !important;
}
.luggme-redorange-bg {
  background-color: #ef612f !important;
}
.small {
  font-size: .75em!important;
  font-weight: unset!important;
}
.header-menu-wrap ul li.active >a {
  background-color: #ef612f;
  padding: 5px 10px;
  clip-path: polygon(93% 0%, 100% 30%, 100% 100%, 0 100%, 0 0);
}


/* Customer orders section */

.order {
  padding: 10px 15px;
  min-height: 150px;
}

/* .order .order-summary {
  height: 100%;
} */

.order .blue-label {
  background-color: #aeaeeb;
  color: #0046dd;
  font-size: 0.9rem;
  padding: 0px 3px;
}

.order .green-label {
  background-color: #a8e9d0;
  color: #008357;
  font-size: 0.9rem;
  padding: 0px 3px;
}

.order .fs-8 {
  font-size: 0.85rem;
}

.order .rating img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.order .rating .fas,
.order .rating .far {
  font-size: 0.9rem;
}

.order .rating .fas {
  color: #ef612f;
}

.order .status {
  font-weight: 600;
}

.order .btn.btn-primary {
  background-color: #fff;
  color: #459ca8;
  border: 1px solid #459ca8;
}

.order .btn.btn-primary:hover {
  background-color: #ef612f;
  color: #fff;
  border-color: #ef612f;
}

.order .progressbar-track {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.order .progressbar-track .progressbar {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0rem;
}

.order .progressbar-track .progressbar li {
  font-size: 1.5rem;
  border: 1px solid #333;
  padding: 5px 10px;
  border-radius: 50%;
  background-color: #dddddd;
  z-index: 100;
  position: relative;
}

.order .progressbar-track .progressbar li.green {
  border: 1px solid #007965;
  background-color: #d5e6e2;
}

.order .progressbar-track .progressbar li::after {
  position: absolute;
  font-size: 0.9rem;
  top: 50px;
  left: 0px;
}

#tracker {
  position: absolute;
  border-top: 1px solid #bbb;
  width: 100%;
  top: 25px;
}

#step-1::after {
  content: 'Placed';
}

#step-2::after {
  content: 'Accepted';
  left: -10px;
}

#step-3::after {
  content: 'Packed';
}

#step-4::after {
  content: 'Shipped';
}

#step-5::after {
  content: 'Delivered';
  left: -10px;
}



/* Backgrounds */
.bg-purple {
  background-color: #55009b;
}

.bg-light {
  background-color: #dbdbdb !important;
}

.green {
  color: #007965 !important;
}
.list-unstyled-privacy{
  padding-left: 0;
  list-style: disc;
  margin-left: 40px;
}
.p-10{
  padding: 10px;
}
/* Media Queries */
@media(max-width: 1199.5px) {
  nav ul li {
      padding: 0 10px;
  }
}

@media(max-width: 500px) {
  .order .progressbar-track .progressbar li {
      font-size: 1rem;
  }

  .order .progressbar-track .progressbar li::after {
      font-size: 0.8rem;
      top: 35px;
  }

  #tracker {
      top: 20px;
  }
}

@media(max-width: 440px) {
  #main-content {
      padding: 20px;
  }

  .order {
      padding: 20px;
  }

  #step-4::after {
      left: -5px;
  }
  /* added by purnima 24-08-2023*/
   #services-accordion .accordion-button{
    font-size: 14px !important;
    padding: 8px 14px !important;
  }
}

@media(max-width: 395px) {
  .order .progressbar-track .progressbar li {
      font-size: 0.8rem;
  }

  .order .progressbar-track .progressbar li::after {
      font-size: 0.7rem;
      top: 35px;
  }

  #tracker {
      top: 15px;
  }

  .order .btn.btn-primary {
      font-size: 0.85rem;
  }
}

@media(max-width: 355px) {
  #main-content {
      padding: 15px;
  }

  .order {
      padding: 10px;
  }
}



/* Customer Booking Form list */
.customer-booking-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  z-index: 1;
}

@media (max-width: 768px) {
  .customer-booking-form {
    grid-template-columns: 1fr;
  }
  
}
.customer-booking-form  .form-control {
  border: none;
}
.customer-booking-form .form-field {
  position: relative;
}

.card .box-inner-wrap button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 100%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: 0 0;
  border: none;
  color: #666;
  font-size: 30px;
  -webkit-transition: 500ms ease all;
  -moz-transition: 500ms ease all;
  transition: 500ms ease all;
}
.customer-booking-form .niceSelect {
  padding: 0;
  width: 100%;
  height: auto;
  font-size: 1rem;
  color: #999;
}
.customer-booking-form .niceSelect .list {
  background-color: #333;
  width: 100%;
  border-radius: 0;
  margin-top: -2px;
  border: none;
}

.customer-booking-form .niceSelect .current {
  height: 38px;
  line-height: 38px;
  display: block;
  padding: 0 20px;
}

/* .customer-booking-form .niceSelect .current {
  background-color: #333;
  color: #fff;
  border-radius: 2px;
  width: 100%;
  height: 50px;
  padding: 0 35px 0 20px;
    padding-top: 0px;
    padding-right: 35px;
    padding-bottom: 0px;
    padding-left: 20px;
  font-size: 17px;
  line-height: 50px;
  box-shadow: none;
  outline: none;
  border: 1px solid #333;
} */

/* .customer-booking-form .form-field button {
  width: 100%;
  height: 50px;
} */

.customer-booking-form .form-field i {
  color: #ef612f;
  font-size: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.customer-booking-form .form-field.slider-btn {
  margin-bottom: 0;
  justify-content: end;
}

.customer-booking-form .form-field.slider-btn .default-btn {
  height: 40px;
  font-size: 1rem;
  font-weight: 600;
}

.activity-box {
  background-color: #eee;
  padding: 10px;
}




.track {
  position: relative;
  background-color: #f0f0f0;
  height: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  margin-top: 50px;
}
.track .step {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 25%;
  margin-top: -18px;
  text-align: center;
  position: relative;
}
.track .step.active:before {
  background: #ef612f;
}
.track .step::before {
  height: 7px;
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  top: 18px;
}
.track .step.active .icon {
  background: #ef612f;
  color: #fff;
}
.track .icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: relative;
  border-radius: 100%;
  background: #f0f0f0;
}
.track .step.active .text {
  font-weight: 400;
  color: #666;
}
.track .text {
  display: block;
  margin-top: 7px;
  font-size: small;
  line-height: 1.3 ;
}
.itemside {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.itemside .aside {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.img-sm {
  width: 80px;
  height: 80px;
  padding: 7px;
}
ul.row,
ul.row-sm {
  list-style: none;
  padding: 0;
}
.itemside .info {
  padding-left: 15px;
  padding-right: 7px;
}
.itemside .title {
  display: block;
  margin-bottom: 5px;
  color: #212529;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
.btn-warning {
  color: #ffffff;
  background-color: #ee5435;
  border-color: #ee5435;
  border-radius: 1px;
}
.btn-warning:hover {
  color: #ffffff;
  background-color: #ff2b00;
  border-color: #ff2b00;
  border-radius: 1px;
}

.activity-button {
  font-size: 14px;
  text-transform: capitalize!important;
}

.order-details-content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .order-details-content {
    padding: 10px 0;
    width: 50%!important;
  }
  #services-accordion .accordion-button{
    font-size: 14px !important;
    padding: 8px 14px !important;
  }
  
}
@media (max-width: 576px) {
  .activity-button-box {
    display: flex;
  }
  .order-details-content {
    width: 100%!important;
  }
}

#search-orders {
  width:100%;
}
/* added by purnima */
.icon-accordion{
  width: 40px;
    height: 40px;
    background-color: #fff;
    padding: 7px 0px;
    border-radius: 36px;
    text-align: center;
    color: #459ca8;
}
.ourservices-i{
  width: 60px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 50%;
  height: 60px;
  font-size: 26px;
  padding: 15px 0px;
  background-color: #f4f5f8;
  margin: auto;
}
.border-radius-20{
  border-radius: 20px;
  border: 2px solid #479ba8;


}
.w-20{
    width: 16% !important;
    height: auto !important;
}
.logo{
    border: 1px solid #479ba8;
    border-top: 0px;
    background-color: #479ba80a;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 10px;
    height: auto !important;
    margin-bottom: 0px !important;
}
.border-r{
    border-right: 1px dashed #ef612f;
}
.bottom-f{
    background-color: #ef612f17;
    padding: 10px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.ourservices-c {
  font-size: 14px;
  line-height: 20px;
}
.content{
  width:400px;
  margin: auto;
}
.content p{
  font-size: 14px;
}
.note-s p{
  font-size: 12px;
  line-height: 20px;
}
#services-accordion .accordion-button {
  background-color: #b0b0b1;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  font-weight: 500;
  text-transform: capitalize;
  border: 1px solid #eee;
  padding: 12px 15px !important;
  color: #fff;
}
#services-accordion .accordion-button:after{
  color: #fff;
}
#services-accordion .accordion-item {
margin-bottom: 10px !important;
}
#services-accordion .accordion-button:not(.collapsed){
  background-color: #ef612f;
}

.submenu {
  display: none;
}
.submenu.active {
  display: block;
}
.dropdown-menu.active .dropdown-plus::before {
  content: '-';
}
.error {
  color:red !important;
}
/* printtag */
.printtag {
  width: 7.94cm;
  border: 1px solid #459ca808;
  margin: auto;
  font-size: 10px;
  line-height: 14px;
  background-color: #459ca808;
  margin-top: 20px;
  padding: 10px;
  border-radius: 10px;
}
.printtag .border-bottom {
  border-bottom: 1px dashed #459ca826!important;
}
.w-30{
  width: 30%;
}
.fs-12{
  font-size: 12px;
}
@media print {
  @page {
      size: A4;
      margin: 0;
  }

 

  .printtag {
    width: 7.94cm;
    border: 1px solid #459ca808;
    margin: auto;
    font-size: 10px;
    line-height: 14px;
    background-color: #459ca808 !important;
    margin-top: 20px;
    padding: 10px;
    border-radius: 10px;
  }


}

.hide {
  display: none;
}
.cancellation-policy li{
  padding-bottom: 10px;
}
.btn-close-services{
  position: absolute;
  right:0px;
  background-color: #fff;
  z-index: 1;
}
.header {
  position: relative;
  text-align: center;
  background: linear-gradient(60deg, #459ca8 0, rgba(0, 172, 193, 1) 100%);
  color: #fff;

}

.logo {
  width: 50px;
  fill: #fff;
  padding-right: 15px;
  display: inline-block;
  vertical-align: middle;
}

.inner-header {
  height: 8vh;
  width: 100%;
  margin: 0;
  padding: 0
}

.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  min-height: 50px;
  max-height: 50px
}

.content-f {
  position: relative;
  height: 20vh;
  text-align: center;
  background-color: #fff
}
#feedback h1 {
  font-size: 36px;
}
.feedback {
  --normal: #eceaf3;
  --normal-shadow: #d9d8e3;
  --normal-mouth: #9795a4;
  --normal-eye: #595861;
  --active: #ffe025;
  --active-shadow: #f4b555;
  --active-mouth: #f05136;
  --active-eye: #313036;
  --active-tear: #76b5e7;
  --active-shadow-angry: #e94f1d;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 10px
}

.feedback .emo {
  text-align: center;
  margin: 6px
}

.feedback .emo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.feedback .emo {
  position: relative;
  border-radius: 50%;
  background: var(--sb, var(--normal));
  box-shadow: inset 3px -3px 4px var(--sh, var(--normal-shadow));
  transition: background .4s, box-shadow .4s, transform .3s;
  -webkit-tap-highlight-color: transparent
}

.feedback .emo div {
  width: 50px;
  height: 50px;
  position: relative;
  transform: perspective(240px) translateZ(14px)
}

.feedback .emo div svg,
.feedback .emo div:after,
.feedback .emo div:before {
  display: block;
  position: absolute;
  left: var(--l, 12px);
  top: var(--t, 16px);
  width: var(--w, 8px);
  height: var(--h, 2px);
  transform: rotate(var(--r, 0deg)) scale(var(--sc, 1)) translateZ(0)
}

.feedback .emo div svg {
  fill: none;
  stroke: var(--s);
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .4s
}

.feedback .emo div svg.eye {
  --s: var(--e, var(--normal-eye));
  --t: 20px;
  --w: 7px;
  --h: 4px
}

.feedback .emo div svg.eye.right {
  --l: 28px
}

.feedback .emo div svg.mouth {
  --s: var(--m, var(--normal-mouth));
  --l: 14px;
  --t: 28px;
  --w: 18px;
  --h: 7px
}

.feedback .emo div:after,
.feedback .emo div:before {
  content: "";
  z-index: var(--zi, 1);
  border-radius: var(--br, 1px);
  background: var(--b, var(--e, var(--normal-eye)));
  transition: background .4s
}

.feedback .emo.angry {
  --step-1-rx: -24deg;
  --step-1-ry: 20deg;
  --step-2-rx: -24deg;
  --step-2-ry: -20deg
}

.feedback .emo.angry div:before {
  --r: 20deg
}

.feedback .emo.angry div:after {
  --l: 28px;
  --r: -20deg
}

.feedback .emo.angry div svg.eye {
  stroke-dasharray: 4.55;
  stroke-dashoffset: 8.15
}

.feedback .emo.angry.active-feedback {
  -webkit-animation: angry 1s linear;
  animation: angry 1s linear
}

.feedback .emo.angry.active-feedback div:before {
  --middle-y: -2px;
  --middle-r: 22deg;
  -webkit-animation: toggle .8s linear forwards;
  animation: toggle .8s linear forwards
}

.feedback .emo.angry.active-feedback div:after {
  --middle-y: 1px;
  --middle-r: -18deg;
  -webkit-animation: toggle .8s linear forwards;
  animation: toggle .8s linear forwards
}

.feedback .emo.sad {
  --step-1-rx: 20deg;
  --step-1-ry: -12deg;
  --step-2-rx: -18deg;
  --step-2-ry: 14deg
}

.feedback .emo.sad div:after,
.feedback .emo.sad div:before {
  --b: var(--active-tear);
  --sc: 0;
  --w: 5px;
  --h: 5px;
  --t: 15px;
  --br: 50%
}

.feedback .emo.sad div:after {
  --l: 25px
}

.feedback .emo.sad div svg.eye {
  --t: 20px
}

.feedback .emo.sad div svg.mouth {
  --t: 28px;
  stroke-dasharray: 9.5;
  stroke-dashoffset: 33.25
}

.feedback .emo.sad.active-feedback div:after,
.feedback .emo.sad.active-feedback div:before {
  -webkit-animation: tear .6s linear forwards;
  animation: tear .6s linear forwards
}

.feedback .emo.ok {
  --step-1-rx: 4deg;
  --step-1-ry: -22deg;
  --step-1-rz: 6deg;
  --step-2-rx: 4deg;
  --step-2-ry: 22deg;
  --step-2-rz: -6deg
}

.feedback .emo.ok div:before {
  --l: 15px;
  --t: 20px;
  --h: 4px;
  --w: 4px;
  --br: 50%;
  box-shadow: 12px 0 0 var(--e, var(--normal-eye))
}

.feedback .emo.ok div:after {
  --l: 16px;
  --t: 30px;
  --w: 14px;
  --h: 2px;
  --br: 1px;
  --b: var(--m, var(--normal-mouth))
}

.feedback .emo.ok.active-feedback div:before {
  --middle-s-y: 0.35;
  -webkit-animation: toggle .2s linear forwards;
  animation: toggle .2s linear forwards
}

.feedback .emo.ok.active-feedback div:after {
  --middle-s-x: 0.5;
  -webkit-animation: toggle .7s linear forwards;
  animation: toggle .7s linear forwards
}

.feedback .emo.good {
  --step-1-rx: -14deg;
  --step-1-rz: 10deg;
  --step-2-rx: 10deg;
  --step-2-rz: -8deg
}

.feedback .emo.good div:before {
  --b: var(--m, var(--normal-mouth));
  --w: 5px;
  --h: 5px;
  --br: 50%;
  --t: 22px;
  --zi: 0;
  opacity: .5;
  box-shadow: 16px 0 0 var(--b);
  filter: blur(2px)
}

.feedback .emo.good div:after {
  --sc: 0
}

.feedback .emo.good div svg.eye {
  --t: 20px;
  --sc: -1;
  stroke-dasharray: 4.55;
  stroke-dashoffset: 8.15
}

.feedback .emo.good div svg.mouth {
  --t: 28px;
  --sc: -1;
  stroke-dasharray: 13.3;
  stroke-dashoffset: 23.75
}

.feedback .emo.good.active-feedback div svg.mouth {
  --middle-y: 1px;
  --middle-s: -1;
  -webkit-animation: toggle .8s linear forwards;
  animation: toggle .8s linear forwards
}

.feedback .emo.happy div {
  --step-1-rx: 18deg;
  --step-1-ry: 24deg;
  --step-2-rx: 18deg;
  --step-2-ry: -24deg
}

.feedback .emo.happy div:before {
  --sc: 0
}

.feedback .emo.happy div:after {
  --b: var(--m, var(--normal-mouth));
  --l: 15px;
  --t: 28px;
  --w: 18px;
  --h: 8px;
  --br: 0 0 8px 8px
}

.feedback .emo.happy div svg.eye {
  --t: 18px;
  --sc: -1
}

.feedback .emo.happy div svg.eye.left {
  --l: 14px
}

.feedback .emo.happy.active-feedback div:after {
  --middle-s-x: 0.95;
  --middle-s-y: 0.75;
  -webkit-animation: toggle .8s linear forwards;
  animation: toggle .8s linear forwards
}

.active-feedback {
  cursor: pointer;
  --sb: var(--active);
  --sh: var(--active-shadow);
  --m: var(--active-mouth);
  --e: var(--active-eye);
  transform: scale(.925);
}

.feedback .emo.active-feedback {
  --sb: var(--active);
  --sh: var(--active-shadow);
  --m: var(--active-mouth);
  --e: var(--active-eye)
}
.feedback .emo.active-feedback-d {
  --sb: var(--active);
  --sh: var(--active-shadow);
  --m: var(--active-mouth);
  --e: var(--active-eye)
}
.feedback .emo.active-feedback div {
  -webkit-animation: shake .8s linear forwards;
  animation: shake .8s linear forwards
}

@-webkit-keyframes shake {
  30% {
      transform: perspective(240px) rotateX(var(--step-1-rx, 0deg)) rotateY(var(--step-1-ry, 0deg)) rotateZ(var(--step-1-rz, 0deg)) translateZ(10px)
  }

  60% {
      transform: perspective(240px) rotateX(var(--step-2-rx, 0deg)) rotateY(var(--step-2-ry, 0deg)) rotateZ(var(--step-2-rz, 0deg)) translateZ(10px)
  }

  100% {
      transform: perspective(240px) translateZ(4px)
  }
}

@keyframes shake {
  30% {
      transform: perspective(240px) rotateX(var(--step-1-rx, 0deg)) rotateY(var(--step-1-ry, 0deg)) rotateZ(var(--step-1-rz, 0deg)) translateZ(10px)
  }

  60% {
      transform: perspective(240px) rotateX(var(--step-2-rx, 0deg)) rotateY(var(--step-2-ry, 0deg)) rotateZ(var(--step-2-rz, 0deg)) translateZ(10px)
  }

  100% {
      transform: perspective(240px) translateZ(4px)
  }
}

@-webkit-keyframes tear {
  0% {
      opacity: 0;
      transform: translateY(-2px) scale(0) translateZ(0)
  }

  50% {
      transform: translateY(12px) scale(.6, 1.2) translateZ(0)
  }

  20%,
  80% {
      opacity: 1
  }

  100% {
      opacity: 0;
      transform: translateY(24px) translateX(4px) rotateZ(-30deg) scale(.7, 1.1) translateZ(0)
  }
}

@keyframes tear {
  0% {
      opacity: 0;
      transform: translateY(-2px) scale(0) translateZ(0)
  }

  50% {
      transform: translateY(12px) scale(.6, 1.2) translateZ(0)
  }

  20%,
  80% {
      opacity: 1
  }

  100% {
      opacity: 0;
      transform: translateY(24px) translateX(4px) rotateZ(-30deg) scale(.7, 1.1) translateZ(0)
  }
}

@-webkit-keyframes toggle {
  50% {
      transform: translateY(var(--middle-y, 0)) scale(var(--middle-s-x, var(--middle-s, 1)), var(--middle-s-y, var(--middle-s, 1))) rotate(var(--middle-r, 0deg))
  }
}

@keyframes toggle {
  50% {
      transform: translateY(var(--middle-y, 0)) scale(var(--middle-s-x, var(--middle-s, 1)), var(--middle-s-y, var(--middle-s, 1))) rotate(var(--middle-r, 0deg))
  }
}

@-webkit-keyframes angry {
  40% {
      background: var(--active)
  }

  45% {
      box-shadow: inset 3px -3px 4px var(--active-shadow), inset 0 8px 10px var(--active-shadow-angry)
  }
}

@keyframes angry {
  40% {
      background: var(--active)
  }

  45% {
      box-shadow: inset 3px -3px 4px var(--active-shadow), inset 0 8px 10px var(--active-shadow-angry)
  }
}



.emoji-text h4 {
  font-size: 14px;
  font-weight: 500
}

.list-feedback {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0
}

.list-feedback li {
  text-align: center;
  margin: 0px 0px 0px 16px;
}

.card-footer {
  background-color: #cad5e8 !important;
  padding: 8px 8px !important;
  font-size: 12px
}

.bi-w {
  font-size: 8px
}

.bg-feedback {
  background-image: url(../assets/images/bg-feedback2.jpg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10px;
}
#feedback .modal-content .card {
  height: 95vh; 
  
  }
#feedback .card {
height: 100vh; 

}
.modal-body #feedback .card{
  height: unset !important;
}
#feedback .card-body h2 {
  font-size: 20px
}

#feedback .card-body{
  overflow: auto;
overflow-x: hidden;
 
}

.card .card-body {
  padding: 2rem 2.25rem;
  color: var(--kt-card-color)
}

.animate__delay-6s {
  animation-delay: 6s
}

.animate__delay-7s {
  animation-delay: 7s
}

.animate__delay-8s {
  animation-delay: 8s
}

.animate__delay-9s {
  animation-delay: 9s
}

.animate__delay-10s {
  animation-delay: 10s
}

.animate__delay-11s {
  animation-delay: 11s
}

.animate__delay-12s {
  animation-delay: 12s
}

.animate__delay-13s {
  animation-delay: 13s
}

.animate__delay-14s {
  animation-delay: 14s
}

.animate__delay-15s {
  animation-delay: 15s
}

.button {
  position: relative;
  transition: all .2s ease;
  transform-origin: top center
}

.button:active {
  transform: scale(.96)
}

.button:after,
.button:before {
  position: absolute;
  content: "";
  width: 150%;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1000;
  background-repeat: no-repeat
}

.emoji-label-container {
  margin-top: 24px;
}

.button.animate::before {
  top: -70%;
  background-image: radial-gradient(circle, #365ea3 20%, transparent 20%), radial-gradient(circle, transparent 20%, #365ea3 20%, transparent 30%), radial-gradient(circle, #365ea3 20%, transparent 20%), radial-gradient(circle, #365ea3 20%, transparent 20%), radial-gradient(circle, transparent 10%, #365ea3 15%, transparent 20%), radial-gradient(circle, #365ea3 20%, transparent 20%), radial-gradient(circle, #365ea3 20%, transparent 20%), radial-gradient(circle, #365ea3 20%, transparent 20%), radial-gradient(circle, #365ea3 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
  animation: greentopBubbles ease-in-out .6s forwards infinite
}

@keyframes greentopBubbles {
  0% {
      background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%
  }

  50% {
      background-position: 0 80%, 0 20%, 10% 40%, 20% 0, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%
  }

  100% {
      background-position: 0 70%, 0 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
      background-size: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0
  }
}

.button.animate::after {
  bottom: -70%;
  background-image: radial-gradient(circle, #365ea3 20%, transparent 20%), radial-gradient(circle, #365ea3 20%, transparent 20%), radial-gradient(circle, transparent 10%, #365ea3 15%, transparent 20%), radial-gradient(circle, #365ea3 20%, transparent 20%), radial-gradient(circle, #365ea3 20%, transparent 20%), radial-gradient(circle, #365ea3 20%, transparent 20%), radial-gradient(circle, #365ea3 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
  animation: greenbottomBubbles ease-in-out .6s forwards infinite
}

@keyframes greenbottomBubbles {
  0% {
      background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0
  }

  50% {
      background-position: 0 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0
  }

  100% {
      background-position: 0 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
      background-size: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0
  }
}

.footer {
  background-color: #ef612f;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  padding: 0;
  padding-top: 8px;
  color: #fff;
  font-size: 12px
}
.footer p{
font-size: 14px;
line-height: 20px;
}
.ml--5 {
  margin-left: -5px;
}

.pl-16 {
  padding-left: 16px;
}

.parallax>use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
      transform: translate3d(-90px, 0, 0);
  }

  100% {
      transform: translate3d(85px, 0, 0);
  }
}

#myDIV {
  font-family: inherit;
  display: none;
  margin: 0px 30px;
}

/* .btn-primary {
  background-color: #ef9b11 !important;
  padding: 10px 30px 10px 30px !important;
  font-size: 14px;
  letter-spacing: 1px;
} */

.fs-14 {
  font-size: 14px;
}

.animate__delay-100ms {
  animation-delay: 0.1s;
}

.w-30 {
  width: 30%;
}

.animate__delay-200ms {
  animation-delay: 0.2s;
}

.animate__delay-300ms {
  animation-delay: 0.3s;
}

.animate__delay-400ms {
  animation-delay: 0.4s;
}

.animate__delay-500ms {
  animation-delay: 0.5s;
}

.animate__delay-600ms {
  animation-delay: 0.6s;
}

.animate__delay-700ms {
  animation-delay: 0.7s;
}

.animate__delay-800ms {
  animation-delay: 0.8s;
}

.animate__delay-900ms {
  animation-delay: 0.9s;
}


@media only screen and (device-width : 414px) and (device-height : 896px) and (-webkit-device-pixel-ratio : 2) {

  #feedback .feedback .emo div {
      width: 60px;
      height: 60px;
      position: relative;
      transform: perspective(240px) translateZ(14px);
      top: 6px;
      left: 6px;
  }

  #feedback h1 {
      font-size: 34px;
  }

  #feedback .card-body h2 {
      font-size: 24px;
  }
}

@media only screen and (width: 390px) and (height: 844px) and (-webkit-device-pixel-ratio: 3) {
  #feedback .feedback .emo div {
      width: 56px;
      height: 56px;
      position: relative;
      transform: perspective(240px) translateZ(14px);
      top: 4px;
      left: 3px;
  }

  #feedback h1 {
      font-size: 33px;
  }

  #feedback .card-body h2 {
      font-size: 23px;
  }
}

@media only screen and (min-width: 393px) {
  #feedback .feedback .emo div {
      width: 56px;
      height: 56px;
      position: relative;
      transform: perspective(240px) translateZ(14px);
      top: 4px;
      left: 3px;
  }

  #feedback h1 {
      font-size: 33px;
  }

  #feedback .card-body h2 {
      font-size: 23px;
  }
}

@media only screen and (min-width: 820px) {

  #feedback .feedback .emo div {
      width: 70px;
      height: 70px;
      position: relative;
      transform: perspective(240px) translateZ(14px);
      top: 12px;
      left: 10px
  }

  #feedback .emoji-text h4 {
      font-size: 18px;
      font-weight: 500;
  }

  #feedback h1 {
      font-size: 33px;
  }

  #feedback .card-body h2 {
      font-size: 26px;
  }
}

.feedbacktextarea {
  font-family: inherit;
  margin: 0px 0px 0px 20px;
  transition:8s;
}

@media only screen and (min-width: 768px) {
  #feedback .inner-header {
      height: 12vh;
  }
  
 

}
.order .bg-upload {
  background-color: #b0b0b1;
}
.order .nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #ffffff;
  text-decoration: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}
/* .btn-check:active+.btn.btn-primary, .btn-check:checked+.btn.btn-primary, .btn.btn-primary.active-feedback, .btn.btn-primary.show, .btn.btn-primary:active:not(.btn-active), .btn.btn-primary:focus:not(.btn-active), .btn.btn-primary:hover:not(.btn-active), .show>.btn.btn-primary {
color: #fff !important;
border-color: #ef9b11 !important;
background-color: #ef9b11 !important;
} */


@media(max-width: 992px) {
    .padding {
        padding:50px 0
    }

    .sm-padding {
        padding: 15px
    }

    p br {
        display: none
    }

    span br {
        display: none
    }

    .default-btn {
        padding: 0 30px
    }

    .section-heading h2 {
        font-size: 32px;
        line-height: 42px
    }

    .section-heading br {
        display: inherit
    }

    .grid-post {
        margin: 0
    }

    .about-info {
        display: block;
        column-gap: 20px
    }

    .about-info li h2 {
        margin-top: 25px
    }

    .about-img:before {
        right: 90px;
        bottom: 0
    }

    .about-img .about-img1 {
        transform: translate(-35px,-40px)
    }

    .about-img .about-img2 {
        right: 30px;
        bottom: -100px
    }

    .service-section .bg-half {
        height: 496px
    }

    .swiper-outside .swiper-nav {
        display: none
    }

    .booking-car,.booking-section:before {
        display: none
    }

    .booking-section:after {
        clip-path: polygon(0 0,100% 0%,100% 100%,20% 100%);
        height: 60px
    }

    .booking-wrap .section-heading h2 {
        font-size: 32px
    }

    .taxi-holder {
        background-image: none
    }

    .taxi-holder .mockup,.location-marker,.taxi-holder .taxi,.taxi-holder .charecter {
        display: none
    }

    .testimonial-section {
        padding: 50px 0
    }

    .feature-wrap {
        margin-left: 0;
        padding: 50px;
        margin-top: 80px
    }

    .footer-call p span {
        display: inline-block;
        font-size: 32px;
        line-height: 1;
        margin-bottom: 0;
        margin-right: 20px
    }

    .cta-men {
        display: none
    }

    .cta-content h2 {
        font-size: 36px
    }

    .cta-section {
        clip-path: inherit
    }

    .cta-content {
        text-align: center
    }

    .cta-content .cta-call {
        justify-content: center
    }

    .cta-content .cta-call p span {
        text-align: left
    }

    .booking-form-2 {
        margin-bottom: 50px
    }

    .cta-section-2 .cta-content {
        text-align: left;
        margin-bottom: 35px;
        width: 50%
    }

    .cta-section-2 .cta-men {
        display: block;
        background-size: 90%;
        right: 10px
    }

    .page-header-shape {
        width: 30%;
        height: 60px
    }

    .page-header-shape:after {
        height: 45px
    }

    .video-box-inner>img {
        display: none
    }

    .taxi-details .section-heading {
        margin-top: 40px
    }

    .driver-details {
        margin-top: 40px
    }

    .testimonial-section-2 .testi-pagination .swiper-pagination {
        bottom: -20px
    }

    .contact-form-group .default-btn {
        font-size: 14px
    }
}

@media all and (max-width: 768px) {
    .padding {
        padding:50px 0
    }

    .xs-padding {
        padding: 15px
    }

    .section-heading p br,br {
        display: none
    }

    .section-heading h2 {
        font-size: 24px;
        line-height: 34px
    }

    .about-img {
        margin-bottom: 80px;
        margin-top: 15px
    }

    .about-img:before {
        right: 75px;
        bottom: -35px;
        height: calc(100% + 50px)
    }

    .about-img .about-img1 {
        max-width: 240px;
        transform: translate(20px,10px)
    }

    .about-img .about-img2 {
        right: 15px;
        bottom: 30px
    }

    .service-section .bg-half {
        height: 547px
    }

    .booking-form {
        grid-template-columns: 1fr
    }

    .booking-section:after {
        display: none
    }

    .booking-wrap .section-heading h2 {
        font-size: 24px
    }

    .cta-content h2 {
        font-size: 24px;
        line-height: 32px
    }

    .cta-content .cta-call p a {
        font-size: 22px
    }

    .footer-top .brand:before {
        clip-path: inherit
    }

    .footer-top-wrap {
        background-color: #222;
        overflow: hidden
    }

    .footer-call p span,.footer-call p a {
        font-size: 20px
    }

    .footer-top .brand {
        display: block;
        padding: 50px 30px
    }

    .footer-top .brand p {
        padding: 0;
        margin-top: 20px
    }

    .footer-top .brand p:before {
        display: none
    }

    .footer-mid-wrap {
        padding: 50px 0 100px
    }

    .main-slider-2 .swiper-nav {
        display: none
    }

    .booking-form-2 .col-lg-8 {
        padding: 50px 20px
    }

    .booking-form-2 {
        clip-path: none
    }

    .cta-section-2:before,.cta-section-2 .cta-content {
        width: 100%
    }

    .cta-section-2 .cta-men {
        display: none
    }

    .page-header-shape {
        width: 40%;
        height: 50px
    }

    .page-header-shape:after {
        height: 35px;
        left: -100px
    }

    .service-details-list,.service-features {
        grid-template-columns: 1fr
    }

    .service-details-list>div {
        margin-top: 20px
    }

    .taxi-details-img img {
        margin-left: 0;
        margin-top: 30px
    }

    .taxi-details-img .price {
        right: 35px;
        top: 10px
    }

    .taxi-features {
        grid-template-columns: 1fr
    }

    .taxi-booking-form {
        grid-template-columns: 1fr
    }

    .contact-form-group {
        display: block  !important;
    }

    .contact-form-group .form-field:not(:last-of-type) {
        margin-bottom: 20px
    }

    .contact-section .contact-details li {
        display: block
    }

    .contact-section .contact-details li i {
        display: block;
        margin-bottom: 15px
    }
}

@media all and (max-width: 580px) {
    #scrollup {
        bottom:20px;
        right: 20px
    }

    .pricing-tab-menu li:not(:last-of-type) {
        padding-right: 25px
    }

    .pricing-tab-menu li:not(:last-of-type):before {
        width: 15px;
        right: 5px
    }

    #pricing-tab-content .tab-pane {
        margin-top: 15px
    }

    .app-feature li:not(:last-of-type) {
        margin-bottom: 20px
    }
}
