@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap");
:root {
  --body-font: "Roboto", sans-serif;
  --heading-font: "Inter", sans-serif;
  --theme-color: #ef1d26;
  --theme-bg-light: #f9f9f9;
  --body-text-color: #757f95;
  --color-white: #ffffff;
  --color-dark: #111111;
  --color-green: #11b76b;
  --color-blue: #0049d0;
  --color-yellow: #fba707;
  --hero-overlay-color: #01060f;
  --slider-arrow-bg: rgba(255, 255, 255, 0.2);
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all 0.5s ease-in-out;
  --transition2: all 0.3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --border-white-color2: rgba(255, 255, 255, 0.05);
  --footer-bg: #111111;
  --footer-bg2: #181818;
  --footer-text-color: #f5faff;
}
.home-slider.owl-theme .owl-nav {
  margin-top: 0px;
}

.home-slider.owl-theme .owl-nav [class*="owl-"] {
  color: var(--color-white);
  font-size: 25px;
  margin: 0;
  padding: 0;
  background: var(--slider-arrow-bg);
  display: inline-block;
  cursor: pointer;
  height: 55px;
  width: 55px;
  line-height: 55px;
  border-radius: 50px;
  text-align: center;
  transition: var(--transition);
}

.home-slider.owl-theme .owl-nav [class*="owl-"]:hover {
  background: var(--color-white);
  color: var(--theme-color);
}

.home-slider.owl-theme .owl-nav .owl-prev {
  left: 40px;
}

.home-slider.owl-theme .owl-nav .owl-next {
  right: 40px;
}

.home-slider.owl-theme .owl-nav .owl-prev,
.home-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

@media all and (max-width: 1199px) {
  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }

  .home-slider.owl-theme .owl-nav .owl-prev,
  .home-slider.owl-theme .owl-nav .owl-next {
    top: unset;
    bottom: 70px !important;
  }

  .home-slider.owl-theme .owl-nav .owl-prev {
    left: unset;
    right: 120px;
  }

  .home-slider.owl-theme .owl-nav .owl-next {
    right: 40px;
  }
}

@media all and (max-width: 991px) {
  .hero-single .hero-content .hero-title {
    font-size: 50px;
  }

  .hero-single .hero-img {
    position: relative;
    width: 100%;
    right: unset;
    bottom: unset;
    margin-top: 50px;
  }

  .hero-single .hero-img::before {
    width: 250px;
    height: 250px;
  }
}

@media all and (max-width: 767px) {
  .hero-single .hero-content .hero-sub-title {
    font-size: 18px;
  }

  .hero-single .hero-content .hero-btn {
    gap: 1rem;
  }
}

/*====================
30. Counter css 
======================*/

.counter-area {
  position: relative;

  z-index: 1;
}

.counter-area::before {
  content: "";
  position: absolute;
  background-image: url(../img/shape/01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: -1;
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.counter-box .icon {
  position: relative;
  text-align: center;
  font-size: 60px;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  line-height: 110px;
  color: var(--color-white);
  border: 5px solid var(--color-white);
  background: var(--color-dark);
  z-index: 1;
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: var(--color-white);
  font-size: 50px;
  font-weight: 600;
}

.counter-box .title {
  color: var(--color-white);
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

@media all and (max-width: 991px) {
  .counter-area .counter-box {
    margin: 40px 0;
  }
}

/*====================
31. Cta css 
======================*/

.cta-wrapper {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  margin-top: -100px;
  padding: 40px;
  border-radius: 15px;
  z-index: 1;
}

.cta-wrapper::before {
  content: "";
  position: absolute;
  background: var(--theme-color);
  border-radius: 15px;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0px;
  opacity: 0.85;
  z-index: -1;
}

.cta-text h1 {
  color: var(--color-white);
  font-size: 50px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.cta-text p {
  color: var(--color-white);
}

.cta-number {
  font-size: 32px;
  color: var(--color-white) !important;
  font-weight: 700;
}

.cta-number i {
  margin-right: 15px;
}

.cta-btn .theme-btn {
  background: var(--color-white);
  color: var(--theme-color);
}

.cta-btn .theme-btn:hover {
  color: var(--color-white);
}

.cta-divider {
  position: relative;
}

.cta-divider::before {
  position: absolute;
  content: close-quote;
  width: 2px;
  bottom: 0;
  background-color: var(--color-white);
  right: -118px;
  top: 0;
}

.cta-divider:after {
  width: 0px;
  position: absolute;
  content: close-quote;
  height: 0px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid var(--color-white);
  top: 50%;
  transform: translateY(-50%);
  right: -124px;
}

/* Testis */

.testimonial-area {
  position: relative;
}

.testimonial-single {
  margin-bottom: 20px;
  background: var(--color-white);
  border-radius: 15px;
  padding: 40px 30px 40px 30px;
  position: relative;
  margin-top: 50px;
}

.testimonial-quote p {
  color: black;
}

.testimonial-author-info {
  margin: 15px 0 10px 0;
}

.testimonial-author-img {
  position: absolute;
  top: -45px;
  left: 25px;
  margin-right: 20px;
  width: 90px;
  padding: 5px;
  border-radius: 50px;
  border: 5px solid var(--theme-color);
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.testimonial-author-img img {
  border-radius: 50%;
}

.testimonial-author-info h4 {
  font-size: 20px;
  color: var(--color-dark);
}

.testimonial-author-info p {
  color: var(--theme-color);
  font-weight: 500;
}

.testimonial-quote-icon {
  position: absolute;
  right: 40px;
  top: 0px;
  font-size: 80px;
  opacity: 0.2;
}
.testimonial-area {
  background-color: #f9f9f9;
}
.testimonial-area .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonial-area .owl-dots .owl-dot span {
  background: var(--theme-color);
  margin: 5px;
  border-radius: 50px;
  width: 6px;
  height: 6px;
  display: inline-block;
  transition: var(--transition);
}

.testimonial-area .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
  width: 15px;
}

.testimonial-rate {
  color: var(--theme-color);
  margin-top: 15px;
}

/* end testies */

/*====================
7. Site title css
======================*/

.site-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--theme-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.site-title-tagline i {
  line-height: 0;
  font-size: 21px;
}

.site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 45px;
  color: var(--color-dark);
  margin-bottom: 0;
}

.site-title span {
  color: var(--theme-color);
}

.site-heading p {
  margin-top: 15px;
}

.heading-divider {
  display: inline-block;
  position: relative;
  border-bottom: 4px solid var(--theme-color);
  width: 90px;
  height: 4px;
}

.heading-divider:after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  height: 6px;
  width: 15px;
  border-radius: 0px;
  background-color: white;
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
}

@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(75px);
  }
  100% {
    transform: translateX(-1px);
  }
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(75px);
  }
  100% {
    transform: translateX(-1px);
  }
}

/*====================
42. Car brand css 
======================*/

.car-brand {
  position: relative;
}

.brand-item {
  width: 100%;
  text-align: center;
 
  padding: 10px;
  border-radius: 12px;
  
  transition: all 0.5s ease-in-out;
}

.brand-item:hover {
  transform: translateY(-7px);
}

.brand-img {
  margin: 0 auto;
}

.brand-item h5 {
  margin-bottom: 20px;
  transition: all 0.5s ease-in-out;
}

.brand-item:hover h5 {
  color: var(--theme-color);
}

a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}
