@import url(../fonts/stylesheet.css);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  font-family: "Roboto";
  background-color: #F7F7F7;
  font-size: 1.1rem;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1500px;
  }
}
.form-check-input {
  width: 1.5rem;
  height: 1.5rem;
}

.form-check-input[type=checkbox] {
  border-radius: 0;
}

.form-check-input:checked {
  background-color: #FFCB0B;
  border-color: #FFCB0B;
}

.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image:url(../images/tick-mark.png);
  background-image: url(../Images/tick-mark.png);
}

h2.title {
  font-size: 3rem;
  color: #1D2956;
  text-transform: uppercase;
}

.container-fluid {
  width: 90%;
  margin: 0 auto;
}

.logo-section img {
  width: 100px;
}

.overly {
  display: none;
  background: rgba(0, 0, 0, 0.288);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9;
}
.overly.show {
  display: block;
}

.banner-section {
  width: 100%;
  background: url(../Images/banner-bg.jpg) no-repeat center;
  background-size: cover;
  color: #1D2956;
  padding-bottom: 2rem;
}
.banner-section .banner-content .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-section .banner-content h2 {
  font-size: 4rem;
  margin-bottom: 0;
  line-height: 1;
}
.banner-section .banner-content h5 {
  padding-left: 0.7rem;
}
.banner-section .banner-content h6 {
  font-size: 1.3rem;
  font-weight: 600;
}
.banner-section .banner-content p {
  font-size: 1.3rem;
}
.banner-section .banner-content .btn-red {
  background-color: #B34926;
  color: #fff;
  padding: 0.5rem 4rem;
  border-radius: 40px;
  font-size: 1.5rem;
}
.banner-section .banner-content .btn-red:hover {
  background-color: #FFCB0B;
  color: #000;
}
.banner-section .banner-content img {
  width: 90%;
  animation: mover 1s infinite alternate;
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

header {
  padding: 10px 0;
  transition: 0.7s ease;
}
header nav ul li {
  padding-inline: 0.5rem;
}
header nav ul li a {
  text-decoration: none;
  padding: 10px 15px;
  color: #000;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: 500ms ease;
  border-radius: 20px;
}
header nav ul li a:hover {
  border: 1px solid #B34926;
  color: #B34926;
}
header .mobile-menu .navbar {
  display: flex;
  flex-direction: column;
  align-items: start;
  position: fixed;
  right: -350px;
  top: 0;
  width: 350px;
  height: 100vh;
  background: #fffdf5;
  text-align: left;
  padding: 1rem;
  transition: 300ms ease;
}
header .mobile-menu .navbar .bi.bi-x {
  font-size: 2rem;
}
header .mobile-menu .navbar li {
  padding: 0.5rem 1rem;
}
header .mobile-menu .navbar.show {
  right: 0;
  z-index: 99;
  border-left: solid 2px #B34926;
}

header.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: #fff;
  box-shadow: 0px 2px 10px -2px rgba(0, 0, 0, 0.12);
  animation: topDown 1s ease;
  transform: translateY(0);
}
header.fixed .logo-section img {
  width: 76px;
}
@keyframes topDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.about-section {
  padding: 5rem 0rem;
}
.about-section h2 {
  padding-right: 0.5rem;
  margin-bottom: 1rem;
}
.about-section h5 {
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.4;
}
.about-section p span {
  border-bottom: solid 1px #000;
}
.about-section .btn {
  background: #B34926;
  color: #fff;
}
.about-section .btn:hover {
  background: #FFCB0B;
  color: #000;
}

.service-content p span {
  border-bottom: solid 1px #000;
}
.service-content .row {
  width: 70%;
  margin: 0 auto;
}
.service-content .card {
  border: solid 1px #ccc;
  background: none;
  transition: 0.7s ease;
}
.service-content .card:hover {
  background: #ebebeb;
}

.download-app .nav.nav-pills .nav-link {
  padding: 0.75rem 5rem;
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: 0;
  text-transform: uppercase;
  background-color: #fff;
  color: #000;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
}
.download-app .nav.nav-pills .nav-link.active {
  background-color: #FFCB0B;
}
.download-app .tab-content .title {
  width: 75%;
}
.download-app .tab-content .title-2 {
  font-weight: 400;
  margin-bottom: 0;
}
.download-app .tab-content .mobile-screen-img img {
  width: 55%;
  margin: 0 auto;
}
.download-app .tab-content .col-md-7 {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}
.download-app .tab-content label {
  padding-inline: 0.75rem;
}
.download-app .tab-content .form-check {
  margin-bottom: 1rem;
  display: flex;
}
.download-app .tab-content .form-check i {
  color: #FFCB0B;
  font-size: 1.5rem;
}
.download-app .tab-content .playStore-btns {
  display: flex;
  align-items: center;
  justify-content: start;
  column-gap: 1rem;
}
.download-app .tab-content .playStore-btns div a {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
  background-color: #000;
  color: #FFCB0B;
  padding: 0 2rem;
  transition: 500ms ease;
  text-decoration: none;
}
.download-app .tab-content .playStore-btns div a p {
  margin-bottom: 0;
  line-height: 1.1;
}
.download-app .tab-content .playStore-btns div a p span:first-child {
  font-size: 0.75rem;
}
.download-app .tab-content .playStore-btns div a p span:last-child {
  font-size: 1.3rem;
}
.download-app .tab-content .playStore-btns div a .bi {
  font-size: 2rem;
}
.download-app .tab-content .playStore-btns div a:hover {
  background-color: #FFCB0B;
  color: #000;
}

.contact a {
  text-decoration: none;
  color: #000;
}
.contact i {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: solid 1px #B34926;
  padding: 8px;
  color: #B34926;
  display: block;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
  margin-right: 10px;
}

.taxi-list .taxi-slider .slick-slide {
  padding: 0 3px;
  display: block;
}
.taxi-list .taxi-slider li a {
  transition: 300ms ease;
  object-fit: cover;
}
.taxi-list .taxi-slider li a:hover {
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.team-deferance-section .card {
  text-align: center;
  padding: 100px 50px;
  height: 100%;
  border: none;
  background-color: #fff;
  transition: 500ms ease;
  border: solid 2px #fff;
}
.team-deferance-section .card:hover {
  border: solid 2px #FFCB0B;
}
.team-deferance-section .card h3 {
  text-transform: uppercase;
  font-size: 2rem;
}
.team-deferance-section .card img {
  width: 120px;
  margin: 0 auto;
  margin-bottom: 20px;
}

@media (min-width: 1400px) {
  .testimonial-section .container {
    max-width: 1300px;
  }
}
.testimonial-section .testi-slider .testimonial-content {
  padding: 30px 60px;
}
.testimonial-section .testi-slider .bi-quote {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 60px;
  color: #FFCB0B;
}
.testimonial-section .testi-slider .bi-quote.bottom {
  top: unset;
  left: unset;
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}
.testimonial-section .testi-slider span {
  font-weight: 600;
}

footer {
  width: 100%;
  border-top: solid 3px #FFCB0B;
  background: #fff;
}
@media (min-width: 1400px) {
  footer .container {
    max-width: 1300px;
  }
}
footer .top-footer {
  padding: 4rem 0;
}
footer .top-footer .foot-logo {
  width: 100px;
  margin: 0 auto;
  margin-bottom: 10px;
}
footer .top-footer .foot-logo img {
  width: 100%;
}
footer .top-footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
footer .top-footer ul li a {
  color: #B34926;
  font-size: 30px;
  padding: 10px;
}
footer .top-footer ul li a:hover {
  color: #FFCB0B;
}
footer .top-footer .foot-nav h3 {
  color: #B34926;
  margin-bottom: 2rem;
}
footer .top-footer .foot-nav ul li {
  margin-bottom: 10px;
}
footer .top-footer .foot-nav ul li a {
  font-size: 1rem;
  color: #1D2956;
}
footer .top-footer .foot-nav ul li a:hover {
  color: #FFCB0B;
}
footer .bottom-foot {
  background: #000;
  color: #fff;
  padding: 10px;
  font-size: 13px;
}
footer .bottom-foot .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1400px) {
  footer .bottom-foot .container {
    max-width: 1700px;
  }
}

.inner-page-head {
  background: #FFCB0B;
  text-align: center;
  padding: 25px 15px;
}
.inner-page-head h2 {
  color: #000;
}

.faqs .faq-query {
  position: relative;
  padding: 1rem;
  border-bottom: 1px solid #ccc;
}

.faqs .faq-query a {
  font-size: 1.2rem;
  color: #04037A;
}

.dropdown-toggle::after {
  position: absolute;
  right: 1.3rem;
  bottom: 15px;
}

.dropdown-toggle {
  white-space: wrap !important;
}

.faqs p {
  font-size: 1.15rem;
}

@media (max-width: 991px) {
  .container.payment-container {
    margin-top: 80px;
  }
}
.inner-page-data-content h5 {
  margin-bottom: 20px;
}
.inner-page-data-content h6 {
  font-weight: 600;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .team-deferance-section .card {
    text-align: center;
    padding: 15px 20px;
  }
  .team-deferance-section .card img {
    width: 85px;
  }
  .team-deferance-section .card h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 991px) {
  .banner-section .banner-content .btn-red {
    padding: 0.5rem 2rem;
    font-size: 1.2rem;
  }
  .banner-text {
    width: 75% !important;
  }
  h2.title {
    font-size: 2.5rem;
  }
  h2.title .display-5 {
    font-size: 2.5rem !important;
  }
  .team-deferance-section .card p {
    font-size: 1rem;
  }
  .download-app .tab-content .mobile-screen-img {
    margin-top: 0;
  }
  .download-app .tab-content .mobile-screen-img img {
    width: 35%;
  }
  .banner-section .banner-content h2 {
    font-size: 3rem;
  }
  .contact {
    width: 100%;
    background: #ffcb0b;
    padding: 10px 20px;
    text-align: center;
  }
  .contact a {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .download-app .nav.nav-pills .nav-link {
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
  }
  .download-app .tab-content .playStore-btns div a {
    column-gap: 0.3rem;
    padding: 0 0.8rem;
  }
  .banner-text {
    width: 100% !important;
    margin-top: 24px;
  }
  .download-app .tab-content .title {
    width: 100%;
  }
  .banner-section .banner-content img {
    width: 75%;
    margin: 0 auto;
    display: block;
  }
  section.taxi-list {
    padding: 0 15px;
  }
  h2.title {
    font-size: 2rem;
  }
  h2.title .display-5 {
    font-size: 2rem !important;
  }
  .testimonial-section .testi-slider .bi-quote {
    top: -10px;
    left: -10px;
    font-size: 50px;
  }
  .testimonial-section .testi-slider .testimonial-content {
    padding: 20px 20px;
  }
  .foot-nav {
    margin-top: 3rem;
  }
}
@media (max-width: 576px) {
  .banner-text {
    width: 100% !important;
  }
  .download-app .tab-content .mobile-screen-img img {
    width: 45%;
  }
  .download-app .tab-content .playStore-btns {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
  .about-section {
    padding: 1rem 0.5rem;
  }
  .about-section .row {
    margin-right: -10px;
    margin-left: -10px;
  }
  footer .bottom-foot .container {
    flex-direction: column;
  }
  .banner-section .banner-content h5 {
    font-size: 1.8rem;
  }
  .banner-section .banner-content h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 420px) {
  .download-app .nav.nav-pills .nav-link {
    padding: 0.75rem 1.8rem;
    font-size: 1rem;
  }
}