@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/poppins/poppins-v15-latin-300.eot);
  src: local(""), url(../fonts/poppins/poppins-v15-latin-300.eot?#iefix) format("embedded-opentype"), url(../fonts/poppins/poppins-v15-latin-300.woff2) format("woff2"), url(../fonts/poppins/poppins-v15-latin-300.woff) format("woff"), url(../fonts/poppins/poppins-v15-latin-300.ttf) format("truetype"), url(../fonts/poppins/poppins-v15-latin-300.svg#Poppins) format("svg");
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/poppins/poppins-v15-latin-regular.eot);
  src: local(""), url(../fonts/poppins/poppins-v15-latin-regular.eot?#iefix) format("embedded-opentype"), url(../fonts/poppins/poppins-v15-latin-regular.woff2) format("woff2"), url(../fonts/poppins/poppins-v15-latin-regular.woff) format("woff"), url(../fonts/poppins/poppins-v15-latin-regular.ttf) format("truetype"), url(../fonts/poppins/poppins-v15-latin-regular.svg#Poppins) format("svg");
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/poppins/poppins-v15-latin-500.eot);
  src: local(""), url(../fonts/poppins/poppins-v15-latin-500.eot?#iefix) format("embedded-opentype"), url(../fonts/poppins/poppins-v15-latin-500.woff2) format("woff2"), url(../fonts/poppins/poppins-v15-latin-500.woff) format("woff"), url(../fonts/poppins/poppins-v15-latin-500.ttf) format("truetype"), url(../fonts/poppins/poppins-v15-latin-500.svg#Poppins) format("svg");
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/poppins/poppins-v15-latin-600.eot);
  src: local(""), url(../fonts/poppins/poppins-v15-latin-600.eot?#iefix) format("embedded-opentype"), url(../fonts/poppins/poppins-v15-latin-600.woff2) format("woff2"), url(../fonts/poppins/poppins-v15-latin-600.woff) format("woff"), url(../fonts/poppins/poppins-v15-latin-600.ttf) format("truetype"), url(../fonts/poppins/poppins-v15-latin-600.svg#Poppins) format("svg");
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/poppins/poppins-v15-latin-700.eot);
  src: local(""), url(../fonts/poppins/poppins-v15-latin-700.eot?#iefix) format("embedded-opentype"), url(../fonts/poppins/poppins-v15-latin-700.woff2) format("woff2"), url(../fonts/poppins/poppins-v15-latin-700.woff) format("woff"), url(../fonts/poppins/poppins-v15-latin-700.ttf) format("truetype"), url(../fonts/poppins/poppins-v15-latin-700.svg#Poppins) format("svg");
}
:root {
  --white: #FFFFFF;
  --black: #0E0E0F;
  --red: #D40005;
  --light: #999999;
  --border: #E3E3E3;
  --background: #F6F6F6;
}

body {
  padding: 0;
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.25px;
  font-family: "Poppins";
}
@media (max-width: 767px) {
  body {
    font-size: calc(1rem - 2px);
  }
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1350px;
  }
}
.row {
  --bs-gutter-x: 2rem;
}

a {
  color: var(--black);
  text-decoration: none;
}
a:hover, a:focus {
  color: var(--red);
  text-decoration: none;
  outline: none;
}

.title {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  text-align: center;
  color: var(--black);
}
.title span {
  color: var(--red);
}
@media (max-width: 991px) {
  .title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.top {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1020;
  background: var(--white);
}
.top .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.375rem;
}
@media (max-width: 991px) {
  .top .content {
    justify-content: center;
  }
}
.top .content a.header-logo {
  display: block;
}
.top .content a.header-logo img {
  width: 7rem;
  height: auto;
}
.top .content .contact-details {
  display: flex;
  align-items: center;
}
.top .content .contact-details div {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .top .content .contact-details div {
    display: none;
  }
}
.top .content .contact-details div img {
  margin-inline-end: 0.5rem;
}
.top .content .contact-details div:first-child {
  margin-inline-end: 1.5rem;
}

.main-menu {
  position: sticky;
  top: 4.375rem;
  left: 0;
  width: 100%;
  z-index: 1020;
  min-height: 3.125rem;
  background: var(--black);
}
.main-menu .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .main-menu .container {
    align-items: flex-start;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .main-menu .container {
    max-width: 100%;
  }
}
.main-menu a.become-driver {
  min-width: 170px;
  min-height: 3.125rem;
  line-height: 3.125rem;
  text-align: center;
  font-weight: 500;
  color: var(--white);
  background: var(--red);
}
@media (max-width: 991px) {
  .main-menu a.become-driver {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1021;
  }
}

.navbar {
  padding: 0;
}
@media (max-width: 991px) {
  .navbar {
    width: 100%;
  }
}

.navbar-nav .nav-item {
  margin-inline-end: 2.5rem;
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .navbar-nav .nav-item {
    margin-inline-end: 1.5rem;
  }
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--white);
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: var(--white);
}

.navbar-dark .navbar-nav .nav-link img {
  margin-inline-end: 6px;
  vertical-align: -3px;
}

.navbar-toggler {
  padding: 0.25rem 0.5rem;
  font-size: 1rem;
}

.navbar-dark .navbar-toggler {
  color: rgb(255, 255, 255);
  border-color: rgba(255, 255, 255, 0.25);
}
@media (max-width: 991px) {
  .navbar-dark .navbar-toggler {
    margin-top: 0.5rem;
  }
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

@media (max-width: 991px) {
  .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    position: absolute;
    top: 50px;
    left: -12px;
    width: calc(100% + 24px);
    padding: 0 12px;
    background: var(--black);
  }
}

.hero-banner {
  background: url(../images/hero-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 700px;
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .hero-banner {
    height: 450px;
  }
}
@media (max-width: 767px) {
  .hero-banner {
    background: url(../images/hero-bg-mobile.jpg);
    height: 400px;
  }
}
.hero-banner img.pattern {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media (max-width: 991px) {
  .hero-banner img.pattern {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .hero-banner img.pattern {
    display: none;
  }
}
.hero-banner .container {
  position: relative;
  z-index: 1;
}
.hero-banner h3 {
  font-size: 3rem;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5rem;
  color: var(--white);
}
@media (max-width: 991px) {
  .hero-banner h3 {
    font-size: 2rem;
  }
}
.hero-banner .store-icons h5 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--white);
}
@media (max-width: 767px) {
  .hero-banner .store-icons h5 {
    font-size: 1.125rem;
  }
}
.hero-banner .store-icons .icons {
  display: flex;
  align-items: center;
}
.hero-banner .store-icons .icons a {
  display: block;
}
.hero-banner .store-icons .icons a:first-child {
  margin-inline-end: 1rem;
}
.hero-banner .store-icons .icons a img {
  width: 150px;
  height: auto;
}

.how-it-works {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .how-it-works {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.how-it-works .col-lg-3 {
  position: relative;
}
.how-it-works .col-lg-3:after {
  content: "";
  position: absolute;
  top: 40px;
  right: -80px;
  width: 160px;
  height: 1px;
  background: var(--border);
}
@media (max-width: 991px) {
  .how-it-works .col-lg-3:after {
    display: none;
  }
}
.how-it-works .col-lg-3:last-child:after {
  display: none;
}
.how-it-works .list {
  text-align: center;
}
@media (max-width: 991px) {
  .how-it-works .list {
    margin-bottom: 2.5rem;
  }
}
.how-it-works .list .icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  line-height: 5rem;
  text-align: center;
  margin: 0 auto;
  background: var(--background);
  border: 1px solid var(--border);
}
.how-it-works .list h4 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .how-it-works .list h4 {
    font-size: 1.125rem;
  }
}
.how-it-works .list p {
  margin-bottom: 0;
  color: var(--light);
}
.how-it-works .signin-text {
  text-align: center;
  padding-top: 5rem;
}
@media (max-width: 991px) {
  .how-it-works .signin-text {
    padding-top: 2.5rem;
  }
}
.how-it-works .signin-text .title {
  margin-bottom: 1rem;
}
.how-it-works .signin-text h6 {
  font-size: 1.5rem;
  font-style: italic;
}
@media (max-width: 991px) {
  .how-it-works .signin-text h6 {
    font-size: 1.125rem;
  }
}
.how-it-works .signin-text ul {
  padding: 0;
  margin-top: 2rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .how-it-works .signin-text ul {
    flex-direction: column;
  }
}
.how-it-works .signin-text ul li {
  display: block;
  width: fit-content;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  margin: 0 0.5rem;
  color: var(--red);
  background: rgba(212, 0, 5, 0.1);
}
@media (max-width: 991px) {
  .how-it-works .signin-text ul li {
    font-size: 0.875rem;
    line-height: 1.2;
    margin: 0;
  }
}
@media (max-width: 991px) {
  .how-it-works .signin-text ul li:first-child {
    margin-bottom: 0.75rem;
  }
}

.aboutus {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: var(--background);
}
@media (max-width: 991px) {
  .aboutus {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.aboutus h3.title {
  text-align: start;
}
.aboutus .content h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .aboutus .content h5 {
    font-size: 1.125rem;
  }
}
.aboutus .content p {
  max-width: 600px;
  color: var(--light);
}
@media (max-width: 991px) {
  .aboutus .content p {
    max-width: 100%;
  }
}
.aboutus .content h6 {
  font-size: 1.125rem;
  font-weight: 700;
}
.aboutus .content ul {
  margin: 0 0 1.25rem;
  padding: 0;
  padding-inline-start: 1.25rem;
}
.aboutus .content ul li {
  margin-bottom: 0.375rem;
}
.aboutus .content ul li:last-child {
  margin-bottom: 0;
}
.aboutus .content .moretext {
  display: none;
}
.aboutus .content .moreless-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
}
.aboutus .content .moreless-link:hover {
  color: var(--red);
}
.aboutus .taxi-image {
  width: 100%;
  height: auto;
}

.our-services {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .our-services {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.our-services .title {
  margin-bottom: 1.25rem;
}
.our-services .pera {
  max-width: 950px;
  text-align: center;
  margin: 0 auto 2.5rem;
}
.our-services .list {
  padding: 1.5rem;
  text-align: center;
  border-radius: 0.25rem;
  background: var(--white);
  box-shadow: 2px 2px 25px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .our-services .list {
    margin-bottom: 1.5rem;
  }
}
.our-services .list h4 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .our-services .list h4 {
    font-size: 1.125rem;
  }
}
.our-services .list p {
  margin-bottom: 0;
  color: var(--light);
}

.qride-business {
  background: url(../images/testimonial-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .qride-business {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.qride-business .title {
  margin-bottom: 1.25rem;
  color: var(--white);
}
.qride-business .pera {
  text-align: center;
  margin: 0 auto;
  font-size: 1.125rem;
  color: var(--white);
}

.our-vehicles {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: var(--background);
}
@media (max-width: 991px) {
  .our-vehicles {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.our-vehicles .list {
  margin: 0.75rem;
  padding: 0.75rem;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
}
@media (min-width: 1024px) and (max-width: 1366px) {
  .our-vehicles .list {
    height: 250px;
  }
}
.our-vehicles .list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.our-vehicles .list .car-details {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.85);
}
.our-vehicles .list .car-details h4 {
  font-size: 1.25rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .our-vehicles .list .car-details h4 {
    font-size: 1.125rem;
  }
}
.our-vehicles .list .car-details p {
  margin-bottom: 0;
  opacity: 0.8;
}
.our-vehicles .list:hover .car-details {
  display: flex;
}
.our-vehicles .slick-dots {
  bottom: -30px;
}
.our-vehicles .slick-dots li {
  margin: 0;
}
.our-vehicles .slick-dots li button:before {
  font-size: 10px;
  color: var(--black);
}
.our-vehicles .slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--black);
}
.our-vehicles .slick-prev, .our-vehicles .slick-next {
  width: auto;
  height: auto;
}
@media (max-width: 767px) {
  .our-vehicles .slick-prev, .our-vehicles .slick-next {
    display: none !important;
  }
}
.our-vehicles .slick-prev:before {
  content: url(../images/icons/left-arrow.svg);
}
.our-vehicles .slick-next:before {
  content: url(../images/icons/right-arrow.svg);
}

.download-app {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .download-app {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.download-app .details {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .download-app .details {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .download-app .details img {
    width: 100%;
    height: auto;
  }
}
.download-app .details .content {
  margin-inline-start: 5rem;
}
@media (max-width: 991px) {
  .download-app .details .content {
    margin-inline-start: 0;
    margin-top: 2.5rem;
  }
}
.download-app .details .content h3.title {
  text-align: start;
}
.download-app .details .content h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .download-app .details .content h5 {
    font-size: 1.125rem;
  }
}
.download-app .details .content p {
  margin-bottom: 0;
  max-width: 620px;
  color: var(--light);
}
.download-app .details .content .store-icons {
  display: flex;
  align-items: center;
  margin-top: 2.75rem;
}
.download-app .details .content .store-icons a {
  display: block;
}
.download-app .details .content .store-icons a:first-child {
  margin-inline-end: 1rem;
}
.download-app .details .content .store-icons a img {
  width: 210px;
  height: auto;
}
@media (max-width: 991px) {
  .download-app .details .content .store-icons a img {
    width: 150px;
  }
}

.testimonial {
  background: url(../images/testimonial-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 630px;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .testimonial {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    min-height: 560px;
  }
}
.testimonial h3.title {
  color: var(--white);
}
.testimonial .details {
  position: relative;
  z-index: 0;
  max-width: 750px;
  margin: 0 auto;
}
.testimonial .details .first-step {
  position: absolute;
  left: 50%;
  top: 0.5rem;
  transform: translateX(-50%);
  width: calc(100% - 2.5rem);
  height: 100%;
  z-index: 0;
  background: #D0D0D0;
}
.testimonial .details .second-step {
  position: absolute;
  left: 50%;
  top: 1rem;
  transform: translateX(-50%);
  width: calc(100% - 5rem);
  height: 100%;
  z-index: -1;
  background: #B0B0B0;
}
.testimonial .details .base {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 340px;
  padding: 40px 70px;
  text-align: center;
  background: var(--white);
}
@media (max-width: 767px) {
  .testimonial .details .base {
    padding: 1.5rem;
  }
}
.testimonial .details .base .list img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin: 0 auto;
  object-fit: cover;
  object-position: center center;
}
.testimonial .details .base .list p {
  margin-top: 1.5rem;
  margin-bottom: 0;
  color: var(--light);
}
.testimonial .details .base .list h4 {
  font-size: 1.325rem;
  font-weight: 600;
  margin-top: 1.875rem;
  margin-bottom: 0.375rem;
}
@media (max-width: 767px) {
  .testimonial .details .base .list h4 {
    font-size: 1.125rem;
  }
}
.testimonial .details .base .list h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--red);
}
@media (max-width: 767px) {
  .testimonial .details .base .list h5 {
    font-size: calc(1rem - 2px);
  }
}
.testimonial .slick-dots {
  bottom: -100px;
}
@media (max-width: 767px) {
  .testimonial .slick-dots {
    bottom: -80px;
  }
}
.testimonial .slick-dots li {
  margin: 0;
}
.testimonial .slick-dots li button:before {
  font-size: 10px;
  color: var(--white);
}
.testimonial .slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--white);
}
.testimonial .slick-prev, .testimonial .slick-next {
  width: auto;
  height: auto;
}
@media (max-width: 767px) {
  .testimonial .slick-prev, .testimonial .slick-next {
    display: none !important;
  }
}
.testimonial .slick-prev {
  left: -40px;
}
.testimonial .slick-next {
  right: -40px;
}
.testimonial .slick-prev:before {
  content: url(../images/icons/left-arrow.svg);
}
.testimonial .slick-next:before {
  content: url(../images/icons/right-arrow.svg);
}

.contact {
  position: relative;
}
.contact .maps {
  width: 100%;
  height: 600px;
  position: relative;
}
.contact .maps:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(0, 0, 0, 0.25);
}
.contact .contact-details {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .contact .contact-details {
    flex-direction: column;
  }
}
.contact .contact-details .list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 350px;
  height: 220px;
  padding: 1.5rem;
  text-align: center;
  border-radius: 0.25rem;
  background: var(--white);
  box-shadow: 2px 2px 25px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .contact .contact-details .list {
    width: 330px;
    height: 200px;
  }
}
.contact .contact-details .list:first-child {
  margin-inline-end: 1.5rem;
}
@media (max-width: 767px) {
  .contact .contact-details .list:first-child {
    margin-inline-end: 0;
    margin-bottom: 1rem;
  }
}
.contact .contact-details .list img {
  width: 60px;
  height: auto;
}
.contact .contact-details .list h4 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--light);
}
@media (max-width: 767px) {
  .contact .contact-details .list h4 {
    font-size: 1.125rem;
  }
}
.contact .contact-details .list a {
  font-size: 1.25rem;
  font-weight: 700;
}

footer {
  padding-top: 4rem;
  background: var(--black);
}
footer .logo-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  footer .logo-section {
    flex-direction: column;
    align-items: flex-start;
  }
}
footer .logo-section a.footer-logo {
  display: block;
}
footer .logo-section a.footer-logo img {
  width: 160px;
  height: auto;
}
footer .logo-section ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  footer .logo-section ul {
    margin-top: 1.5rem;
  }
}
footer .logo-section ul li {
  display: block;
  margin-inline-start: 0.75rem;
}
footer .logo-section ul li:first-child {
  margin-inline-start: 0;
}
footer .footer-links {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  footer .footer-links {
    padding-top: 3rem;
    padding-bottom: 1rem;
  }
}
footer .footer-links ul {
  margin: 0 0 2.25rem;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer-links ul:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  footer .footer-links ul {
    margin: 0;
  }
}
footer .footer-links ul li {
  display: block;
  width: 20%;
}
@media (max-width: 991px) {
  footer .footer-links ul li {
    width: 25%;
  }
}
@media (max-width: 767px) {
  footer .footer-links ul li {
    width: 50%;
    margin-bottom: 1rem;
  }
}
footer .footer-links ul li a {
  color: var(--white);
}
footer .footer-links ul li a:hover {
  color: var(--red);
}
footer .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.875rem 0;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 767px) {
  footer .bottom {
    flex-direction: column;
    padding: 1rem 0;
  }
}
footer .bottom .action-link a {
  color: var(--white);
}
footer .bottom .action-link a:hover {
  color: var(--red);
}
footer .bottom .action-link a:first-child {
  margin-inline-end: 2rem;
}
footer .bottom p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  footer .bottom p {
    margin-top: 1rem;
  }
}

.company-statement {
  padding-top: 5rem;
  padding-bottom: 3rem;
}
@media (max-width: 991px) {
  .company-statement {
    padding-top: 2.5rem;
    padding-bottom: 1rem;
  }
}
.company-statement h3.title {
  text-align: start;
}
.company-statement .points {
  margin-bottom: 2rem;
}
.company-statement .points h4 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
@media (max-width: 991px) {
  .company-statement .points h4 {
    font-size: 1.125rem;
  }
}
.company-statement .points p:last-child {
  margin-bottom: 0;
}
.company-statement .points ul {
  margin: 0;
  padding: 0;
  padding-inline-start: 20px;
}
.company-statement .points ul li {
  margin-bottom: 0.5rem;
}
.company-statement .points ul li:last-child {
  margin-bottom: 0;
}

.faq {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .faq {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.faq h3.title {
  text-align: start;
}
.faq .accordion-item {
  border: none;
  border-bottom: 1px solid var(--border);
}
.faq .accordion-collapse {
  border: 0;
}
.faq .accordion-header {
  padding: 0.5rem 0;
}
.faq .accordion-button {
  padding: 0px;
  border: 0;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: start;
  color: var(--black);
  border-bottom: none;
}
.faq .accordion-button:focus {
  box-shadow: none;
  border: none;
}
.faq .accordion-button:not(.collapsed) {
  color: var(--red);
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
}
.faq .accordion-body {
  padding: 0 0 1rem;
}
.faq .accordion-button::after {
  width: auto;
  height: auto;
  content: "+";
  font-size: 2rem;
  background-image: none;
  font-weight: 100;
  transform: translateY(0);
  color: var(--black);
}
.faq .accordion-button:not(.collapsed)::after {
  width: auto;
  height: auto;
  background-image: none;
  content: "-";
  font-size: 2.25rem;
  transform: translate(-5px, -4px);
  transform: rotate(0deg);
  color: var(--red);
}

#BecomeDriver .modal-dialog .modal-content {
  border-radius: 0.625rem;
}
#BecomeDriver .modal-dialog .modal-content .modal-header {
  padding: 0.75rem;
  background: var(--red);
  border-bottom: none;
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
}
#BecomeDriver .modal-dialog .modal-content .modal-header .modal-title {
  font-weight: 600;
  color: var(--white);
}
#BecomeDriver .modal-dialog .modal-content .modal-header .btn-close {
  background: transparent url(../images/icons/download.svg) center/1em auto no-repeat;
  opacity: 1;
}
#BecomeDriver .modal-dialog .modal-content .modal-header .btn-close:hover, #BecomeDriver .modal-dialog .modal-content .modal-header .btn-close:focus {
  outline: none;
  box-shadow: none;
}
#BecomeDriver .modal-dialog .modal-content .modal-body {
  padding: 1.5rem;
}
#BecomeDriver .modal-dialog .modal-content .modal-body form .form-group {
  margin-bottom: 1.25rem;
}
#BecomeDriver .modal-dialog .modal-content .modal-body form .form-group .form-label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
#BecomeDriver .modal-dialog .modal-content .modal-body form .form-group .form-control {
  display: block;
  width: 100%;
  height: 2.75rem;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Poppins";
  color: var(--black);
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid var(--border);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  letter-spacing: 0.25px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
#BecomeDriver .modal-dialog .modal-content .modal-body form .form-group .form-control:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid var(--black);
}
#BecomeDriver .modal-dialog .modal-content .modal-body form .form-group .form-control::-moz-placeholder {
  color: var(--light);
  opacity: 1;
}
#BecomeDriver .modal-dialog .modal-content .modal-body form .form-group .form-control::placeholder {
  color: var(--light);
  opacity: 1;
}
#BecomeDriver .modal-dialog .modal-content .modal-body form .form-group textarea.form-control {
  height: auto;
}
#BecomeDriver .modal-dialog .modal-content .modal-body form .submit-button {
  min-width: 150px;
  height: 2.75rem;
  line-height: 2.75rem;
  text-align: center;
  font-weight: 600;
  color: var(--white);
  background: var(--black);
  border: none;
}
#BecomeDriver .modal-dialog .modal-content .modal-body form .submit-button:hover, #BecomeDriver .modal-dialog .modal-content .modal-body form .submit-button:focus {
  background: var(--red);
}

/*# sourceMappingURL=style.css.map */
