* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}

body {
  background: #f9f9f9;
  color: #333333;
}

a {
  text-decoration: none;
  color: #333333;
}

/* ------------ Section Start -------------------- */

section {
  overflow: hidden;
  padding: 80px 0;
}

.section-bg {
  background-color: #eee;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  color: #333333;
}

.section-header p {
  margin-top: 20px 0px 0px 0px;
  font-size: 18px;
  font-weight: 400;
  color: #555555;
}

/* ------------ Navbar Start -------------------- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 6px 6%;
  position: sticky;
  top: 0;
  z-index: 100;
  /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); */
}

.navbar-left {
  display: flex;
  align-items: center;
}

.logo img {
  width: 100px;
  margin-right: 15px;
  display: block;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-center ul li {
  display: inline-block;
  list-style: none;
}

.navbar-center ul li a {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 400;
  margin: 5px 8px;
  padding-right: 5px;
  position: relative;
}

.navbar-center ul li a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #f79421;
  position: absolute;
  bottom: -14px;
  transition: width 0.3s;
}

.navbar-center ul li a:hover::after,
.navbar-center ul li a.active-link::after {
  width: 100%;
  margin: auto;
}

.navbar-right button {
  background-color: #fff;
  padding: 12px 20px;
  font-size: 17px;
  margin: 4px 2px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition-duration: 0.4s;
  cursor: pointer;
}

.navbar-right .vehicles-btn {
  color: #555555;
  font-weight: 400;
  border: 1px solid #555555;
  border-radius: 8px;
}

.navbar-right .login-button {
  border: 1px solid #f79421;
  border-radius: 8px;
  font-weight: 400;
  color: #f79421;
}

/* ------------ BANNAER START -------------------- */

.banner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f79421;
}

.banner-container .banner {
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
}

.banner-container .banner .content {
  flex: 1 1 600px;
  text-align: center;
  padding: 35px 0px 0px 10%;
  text-transform: uppercase;
}

.banner-container .qr-img-box {
  margin-top: 5%;
}

.banner-container .qr-img-box img {
  margin: auto;
  display: block;
}

.banner-container .qr-img-box .qr-img-title {
  text-align: center;
  margin-top: 5%;
  margin-bottom: 10%;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

/* ACCORDION */
.accordion:hover .accordion-item:hover .accordion-item-content,
.accordion .accordion-item--default .accordion-item-content {
  height: 6em;
}

.accordion:hover .accordion-item:hover .section-title {
  font-weight: 600;
}

.accordion-item-content,
.accordion:hover .accordion-item-content {
  height: 0;
  background: #fff;
  color: #555555;
  overflow: hidden;
  transition: height 0.25s;
  padding-left: 5px;
  margin-top: 1%;
}

.accordion-item:hover,
.accordion-item:hover .section-title {
  cursor: pointer;
  background: #fff;
  color: #f79421;
  border-radius: 12px;
  padding-left: 5px;
}

.accordion .accordion-item {
  color: #fff;
  font-size: 16px;
  padding: 0.25em;
  margin-top: 1%;
}

/* Banner Image */
.banner-container .banner .banner__img {
  position: relative;
  bottom: -33px;
  padding: 0px;
  flex: 1 1 270px;
}

.banner-container .banner .banner__img img {
  width: 100%;
}

@media (max-width: 768px) {
  .banner-container .banner .banner__img {
    display: none;
  }
}

/* ------------ SERVICE START -------------------- */

.service {
  background-color: #ffffff;
}

.service .image-container {
  border: 1px solid #eaeaea;
  padding: 10px;
  border-radius: 8px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.service .image-container img {
  display: block;
  margin: auto;
  width: 60px;
}

.service .image-container p {
  text-align: center;
  margin-top: 5%;
}

.service .button-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.service .button-container .mt-3 {
  margin-top: 3em;
}

.service .button-container button {
  background-color: #f79421;
  padding: 12px 20px;
  font-size: 17px;
  margin: 4px 2px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition-duration: 0.4s;
  color: #fff;
  font-weight: 400;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* ------------ OFFER START -------------------- */
.offer {
  background-color: #f9f9f9;
}

.offer .car-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.offer .car-container .card-body {
  margin: 20px;
  background-color: #fff;
  border-radius: 8px;
}
.offer .card-details {
  padding: 1em;
}

.offer .card-details h5 {
  color: #f79421;
  font-size: 14px;
  font-weight: 500;
}

.offer .card-details p {
  font-size: 15px;
  color: #555555;
  margin: 0.25em 0;
}

.offer .card-details p:nth-last-child(1) {
  font-size: 15px;
  font-weight: 600;
  color: #333333;
}

/* ------------ APP BANNER ------------ */
.app-details {
  padding: 4rem 0 0;
  background-image: linear-gradient(
      to right bottom,
      rgba(247, 147, 33, 0.937),
      rgba(247, 147, 33, 0.89)
    ),
    url(./assets/icon/banner_bg.jpg);
  background-size: cover;
  /* transform: skewY(-7deg); */
  /* margin-top: -10rem; */
}

@media only screen and (max-width: 56.25em) {
  .app-details {
    padding: 10rem 0;
  }
}

.app-container {
  padding: 5% 0 2% 5%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.app-container .image-box img {
  width: 500px;
}

.app-container .app-card-body .app-card-title {
  padding-right: 10%;
}

.app-container .app-card-body .app-card-title h3 {
  font-size: 38px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1%;
}

.app-container .app-card-body .app-card-title p {
  text-align: center;
  color: #ffffff;
  font-size: 14px;
}

.app-container .app-card-body .store-btn {
  padding: 10%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #f79421;
}

#footer .footer-top {
  padding: 60px 0 40px 50px;
  background: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  margin-left: 40px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #47b2e4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #47b2e4;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
}

#footer .copyright,
#footer .credits {
  text-align: center;
  float: none;
}

#footer .credits {
  padding-top: 4px;
}
