@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

:root {
  --primary_color: #EE2C37;
  --secondary_color: #F8D845;
  --body_bg: linear-gradient(to right, #111111, #555555);
}

body {
  margin: 0;
  padding: 0;
  background: var(--body_bg);
  font-family: "Oswald", sans-serif;
  overflow-x: hidden;
}

section .container-fluid,
nav .container-fluid,
footer .container-fluid {
  width: 90%;
  margin: 0 auto;
}

li {
  list-style: none;
}

ul {
  margin-bottom: 0;
  padding-left: 0;
}

p {
  margin-bottom: 0;
}

a,
a:hover,
a:active,
a:visited,
a:focus {
  text-decoration: none;
}

:focus-visible,
:hover,
:focus,
:active {
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

h2.main-heading {
  font-size: 48px;
  line-height: 1;
  color: #fff;
  font-weight: 300;
}

h2.main-heading span {
  color: var(--primary_color);
}

h2.main-heading+p {
  color: #fff;
  font-size: 18px;
  font-weight: 200;
  padding-top: 15px;
  line-height: 26px;
}

.car-card .car-img {
  position: relative;
}

.car-card .car-img img {
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}

.car-card .car-img .car-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--secondary_color);
  color: #111;
  padding: 5px 15px;
  font-size: 16px;
}

.car-card .car-details h5 {
  color: #fff;
  font-weight: 300;
  font-size: 18px;
  padding-top: 10px;
}

.car-card .car-details h3 {
  color: var(--primary_color);
  font-weight: 400;
  font-size: 30px;
  padding: 5px 0;
}

.car-card .car-details ul {
  display: flex;
  gap: 15px;
  align-items: center;
}

.car-card .car-details ul li {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 200;
}

.car-card.sold .car-img::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  z-index: 2;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.car-card.sold .car-img::before img {
  height: auto;
  width: 150px;
}

.car-card.sold .car-img::after {
  content: "";
  background-image: url(../images/sold.png);
  width: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100px;
  z-index: 3;
  background-size: cover;
  background-position: center;
}

.inner-banner {
  background: #1e1e1e;
  padding: 50px 0;
  position: relative;
  background-size: contain;
  margin-top: 140px;
  background-repeat: no-repeat;
  background-position: right;
}

.inner-banner::after {
  content: "";
  background: url(../images/opened_car.png);
  position: absolute;
  right: 0;
  height: 100%;
  width: 300px;
  top: 0;
  opacity: 0.1;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.inner-banner h2 {
  color: var(--secondary_color);
  font-weight: 300;
  font-size: 48px;
  padding-bottom: 5px;
}

.inner-banner nav li,
.inner-banner nav a {
  color: #eee !important;
  font-size: 16px;
  font-weight: 300;
}

.inner-banner nav li::before,
.inner-banner nav a::before {
  color: #fff !important;
}

@media (min-width: 1400px) {

  section .container-fluid,
  nav .container-fluid,
  footer .container-fluid {
    width: 75%;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  h2.main-heading {
    font-size: 36px;
  }

  h2.main-heading+p {
    color: #fff;
    font-size: 18px;
    font-weight: 200;
    padding-top: 15px;
    line-height: 26px;
  }

  section .container-fluid,
  nav .container-fluid,
  footer .container-fluid {
    width: 95% !important;
    margin: 0 auto;
  }

  .inner-banner {
    margin-top: 90px;
  }
}

@media (max-width: 768px) {
  .py-50 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .pt-50 {
    padding-top: 40px;
  }

  .pb-50 {
    padding-bottom: 40px;
  }

  h2.main_heading {
    font-size: 40px;
    line-height: 1;
  }

  .inner-banner {
    background: #1e1e1e;
    padding: 20px 0;
    background-size: 100px;
    background-repeat: no-repeat;
    background-position: right;
  }

  .inner-banner h2 {
    color: var(--secondary_color);
    font-weight: 300;
    font-size: 30px;
    padding-bottom: 5px;
  }
}

footer {
  background: #1e1e1e;
}

footer p {
  font-weight: 200;
  padding: 10px 0;
  font-size: 18px;
  color: #fff;
}

footer .footer_social {
  display: flex;
  gap: 15px;
}

footer .footer_social a {
  color: #fff;
  font-size: 24px;
}

footer h4 {
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  padding-bottom: 20px;
}

footer .footer_links a {
  color: #fff;
  font-size: 18px;
  padding-bottom: 10px;
  display: block;
  font-weight: 200;
}

footer .footer_contact a {
  color: #fff;
  font-size: 18px;
  padding-bottom: 10px;
  line-height: 1.6;
  display: flex;
  gap: 10px;
  font-weight: 200;
  align-items: baseline;
}

footer .footer_contact a i {
  color: var(--primary_color);
}

footer .footer-bottom {
  padding: 15px 0;
}

footer .footer-bottom p {
  font-size: 14px;
  padding: 0;
  font-weight: 300;
}

footer .footer-bottom ul {
  display: flex;
  color: #fff;
  font-size: 14px;
  gap: 15px;
}

footer .footer-bottom ul a {
  color: #fff;
  font-weight: 300;
}

.main-btn,
.secondary-btn,
.text-btn {
  background-color: var(--primary_color);
  color: #fff;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 400;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: 10px;
}

.main-btn.secondary-btn,
.secondary-btn.secondary-btn,
.text-btn.secondary-btn {
  background-color: var(--secondary_color);
  color: #111;
}

.main-btn.text-btn,
.secondary-btn.text-btn,
.text-btn.text-btn {
  background: none;
  color: #fff;
  font-size: 18px;
  padding: 0;
}

.main-btn.text-btn:hover,
.secondary-btn.text-btn:hover,
.text-btn.text-btn:hover {
  box-shadow: none;
  transform: none;
  color: var(--secondary_color);
}

.main-btn:hover,
.secondary-btn:hover,
.text-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
}

.navbar {
  position: absolute;
  /* Starts at the top of the page */
  top: 0;
  width: 100%;
  z-index: 20;
  transition: transform 0.2s ease-in-out;
}

.navbar .navbar-toggler {
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 0;
  box-shadow: none;
}

.navbar .navbar-nav {
  gap: 30px;
}

.navbar .navbar-nav .nav-item a {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  padding: 0 !important;
  line-height: 1;
}

.navbar .navbar-nav .nav-item a.active {
  color: var(--primary_color);
}

.navbar .nav-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.navbar .nav-right li a.nav-btn {
  background-color: var(--secondary_color);
  font-weight: 400;
  color: #111;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  padding: 5px 15px;
}

.navbar .nav-right li a.nav-btn i {
  font-size: 30px;
}

.navbar .nav-right li a.nav-btn span span {
  font-size: 18px;
  font-weight: 600;
  display: block;
}

.navbar.topbar-hidden {
  position: fixed;
  top: 0;
  transform: translateY(-100%);
  visibility: hidden;
  background: var(--body_bg);
  /* Slides it up out of view */
}

.navbar.topbar-hidden .navbar-brand img {
  width: 50px;
}

.navbar.topbar-fixed {
  position: fixed;
  top: 0;
  z-index: 222;
  background: var(--body_bg);
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #fff;
  transform: translateY(0);
  /* Slides it back down */
}

.navbar.topbar-fixed .navbar-brand img {
  width: 50px;
}

@media (max-width: 992px) {
  .navbar .navbar-brand img {
    width: 80px;
  }

  .navbar .navbar-nav {
    padding: 15px 0;
  }

  .navbar.topbar-fixed .navbar-brand img {
    width: 50px;
  }
}

.homepage_banner {
  background-image: url(../images/map-bg.png);
  background-size: 50%;
  padding-top: 150px;
  background-position: left center;
  background-repeat: no-repeat;
}

.homepage_banner::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 100%;
  background-color: var(--primary_color);
  right: -200px;
  top: -50px;
}

.homepage_banner p {
  font-size: 24px;
  line-height: 34px;
  font-weight: 200;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  margin-bottom: 25px;
}

.homepage_banner h2 {
  font-size: 85px;
  line-height: 1;
  color: #fff;
  font-weight: 300;
  padding-bottom: 15px;
}

.homepage_banner h2 span {
  color: var(--primary_color);
}

.homepage_banner img {
  position: relative;
}

.curated_collection .new-old-card-container {
  border-radius: 20px;
  margin: 50px auto;
  position: relative;
}

.curated_collection img {
  position: absolute;
  width: 400px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.curated_collection .new-old-card {
  background-color: var(--secondary_color);
  border-top-right-radius: 17px;
  border-bottom-right-radius: 17px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 50px 20px;
  height: 100%;
  text-align: right;
}

.curated_collection .new-old-card h5 {
  color: #111;
  font-size: 24px;
  font-weight: 300;
}

.curated_collection .new-old-card h3 {
  color: #111;
  padding: 10px 0;
  font-size: 45px;
}

.curated_collection .new-old-card p {
  font-size: 18px;
  color: #111;
  font-weight: 300;
}

.curated_collection .new-old-card a {
  margin-top: 15px;
}

.curated_collection .new-old-card.primary-bg {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 17px;
  border-bottom-left-radius: 17px;
  background-color: var(--primary_color);
  text-align: left;
}

.curated_collection .new-old-card.primary-bg h5 {
  color: #fff;
}

.curated_collection .new-old-card.primary-bg h3 {
  color: #fff;
}

.curated_collection .new-old-card.primary-bg p {
  color: #fff;
}

.homepage_stats {
  background-color: #1e1e1e;
  padding: 35px 0;
}

.homepage_stats .stats-card {
  text-align: center;
  border-right: 1px solid #fff;
}

.homepage_stats .stats-card h3 {
  color: var(--secondary_color);
  font-size: 60px;
  text-shadow: rgba(248, 216, 69, 0.7) 0px 8px 24px;
}

.homepage_stats .stats-card p {
  color: #fff;
  font-weight: 200;
  text-transform: uppercase;
  font-size: 18px;
}

.homepage_about {
  padding: 70px 0;
}

.homepage_about .about-img {
  position: relative;
}

.homepage_about .about-img img {
  z-index: 3;
  position: relative;
}

.homepage_about .about-img::before {
  content: "";
  width: 600px;
  height: 600px;
  background-color: var(--secondary_color);
  position: absolute;
  border-radius: 100%;
  left: -100px;
  top: -100px;
}

.homepage_about .homepage_about_content {
  padding: 0 50px;
}

.homepage_about .homepage_about_content ul {
  color: #fff;
  padding: 15px 0;
}

.homepage_about .homepage_about_content ul li {
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 300;
}

.homepage_about .homepage_about_content ul i {
  padding-right: 10px;
  color: var(--primary_color);
}

.homepage_brands .brand-card {
  background-color: #4E4E50;
  padding: 20px 15px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}

.homepage_brands .brand-card h4 {
  font-weight: 300;
  padding-top: 10px;
  font-size: 20px;
}

.homepage_brands .brand-card h6 {
  padding-top: 10px;
  font-weight: 200;
}

.homepage_faq-testimonials {
  background-color: #38383A;
}

.homepage_faq-testimonials .homepage_faq {
  padding: 50px 0;
}

.homepage_faq-testimonials .homepage_faq .faq_accordion {
  margin-top: 15px;
}

.homepage_faq-testimonials .homepage_faq .faq_accordion .accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #999999;
}

.homepage_faq-testimonials .homepage_faq .faq_accordion .accordion-item:last-child {
  border: none;
}

.homepage_faq-testimonials .homepage_faq .faq_accordion .accordion-item .accordion-button {
  background-color: transparent;
  box-shadow: none;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.homepage_faq-testimonials .homepage_faq .faq_accordion .accordion-item .accordion-button div {
  padding-left: 10px;
}

.homepage_faq-testimonials .homepage_faq .faq_accordion .accordion-item .accordion-button::after {
  position: absolute;
  left: 0;
  width: 1rem;
  background-size: 1rem;
  height: 1rem;
  filter: drop-shadow(2px 4px 0px white);
  -webkit-filter: drop-shadow(2px 4px 0px white);
}

.homepage_faq-testimonials .homepage_faq .faq_accordion .accordion-item .accordion-body {
  padding-left: calc(1rem + 15px);
  padding-top: 0;
  font-weight: 200;
  color: #fff;
}

.homepage_faq-testimonials .homepage_testimonials {
  height: 100%;
  background-color: var(--primary_color);
  padding: 50px;
}

.homepage_faq-testimonials .homepage_testimonials .testimonial_card {
  margin-top: 30px;
}

.homepage_faq-testimonials .homepage_testimonials .testimonial_card p {
  color: #fff;
  font-style: italic;
  font-weight: 100;
  line-height: 32px;
  font-size: 18px;
}

.homepage_faq-testimonials .homepage_testimonials .testimonial_card .user-details {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.homepage_faq-testimonials .homepage_testimonials .testimonial_card .user-details h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.homepage_faq-testimonials .homepage_testimonials .testimonial_card .user-details h5 span {
  display: block;
  font-weight: 200;
}

.homepage_faq-testimonials .homepage_testimonials .testimonial_arrows {
  display: flex;
  justify-content: end;
  position: absolute;
  right: 0;
  bottom: 20px;
  gap: 5px;
}

.homepage_faq-testimonials .homepage_testimonials .testimonial_arrows .swiper-button-prev,
.homepage_faq-testimonials .homepage_testimonials .testimonial_arrows .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  margin-top: 0;
  background: var(--secondary_color);
  border-radius: 5px;
  width: 35px;
  height: 35px;
}

.homepage_faq-testimonials .homepage_testimonials .testimonial_arrows .swiper-button-prev i,
.homepage_faq-testimonials .homepage_testimonials .testimonial_arrows .swiper-button-next i {
  display: flex;
  color: #333;
}

.homepage_faq-testimonials .homepage_testimonials .testimonial_arrows .swiper-button-prev::after,
.homepage_faq-testimonials .homepage_testimonials .testimonial_arrows .swiper-button-next::after {
  font-weight: 900;
  color: #333;
  font-size: 18px;
  content: none;
}

.blogs_container .blogs-card .blog-image {
  position: relative;
}

.blogs_container .blogs-card .blog-image img {
  border-radius: 15px;
  height: 260px;
  -o-object-fit: cover;
  object-fit: cover;
}

.blogs_container .blogs-card .blog-image .blog-date {
  background-color: var(--primary_color);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 16px;
  color: #fff;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.blogs_container .blogs-card .blog-content {
  padding-top: 10px;
}

.blogs_container .blogs-card .blog-content h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  overflow: hidden;
  line-height: 1.4;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 8px;
}

.blogs_container .blogs-card .blog-content p {
  color: #fff;
  font-size: 16px;
  font-weight: 200;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (min-width: 1400px) {
  .homepage_banner .homepage_banner_content {
    padding-left: 150px;
  }

  .homepage_banner::before {
    content: "";
    position: absolute;
    width: 1000px;
    height: 1000px;
    border-radius: 100%;
    background-color: var(--primary_color);
    right: -350px;
    top: -50px;
  }

  .homepage_about {
    padding: 70px 0;
  }

  .homepage_about .about-img::before {
    content: "";
    width: 700px;
    height: 700px;
    left: -100px;
    top: -100px;
  }
}

@media (max-width: 1200px) {
  .curated_collection .new-old-card-container {
    border-radius: 20px;
    margin: 50px auto;
    position: relative;
  }

  .curated_collection img {
    position: absolute;
    width: 400px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }

  .curated_collection .new-old-card {
    background-color: var(--secondary_color);
    border-top-right-radius: 17px;
    border-bottom-right-radius: 17px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 50px 20px;
    height: 100%;
    text-align: right;
    padding-bottom: 160px;
  }
}

@media (max-width: 992px) {
  .homepage_banner p {
    font-size: 18px;
  }

  .homepage_banner h2 {
    font-size: 60px;
  }

  .homepage_banner h2 span {
    color: var(--primary_color);
  }

  .homepage_banner::before {
    display: none;
  }

  .homepage_about {
    padding-bottom: 0;
  }

  .homepage_about .homepage_about_content {
    padding: 0 20px;
    padding-top: 20px;
  }

  .homepage_about .about-img::before {
    content: "";
    width: 70vw;
    height: 70vw;
    background-color: var(--secondary_color);
    position: absolute;
    border-radius: 100%;
    left: -100px;
    top: -100px;
  }
}

@media (max-width: 768px) {
  .homepage_banner {
    padding-top: 100px;
  }

  .homepage_banner h2 {
    font-size: 48px;
  }

  .homepage_banner img {
    margin-top: 20px;
  }

  .curated_collection img {
    position: absolute;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }

  .curated_collection .new-old-card {
    background-color: var(--secondary_color);
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 17px;
    padding: 50px 20px;
    height: 100%;
    text-align: center;
    padding-bottom: 200px;
  }

  .curated_collection .new-old-card.primary-bg {
    border-top-right-radius: 17px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 17px;
    background-color: var(--primary_color);
    text-align: center;
    padding-bottom: 50px;
  }

  .curated_collection .new-old-card.primary-bg h5 {
    color: #fff;
  }

  .curated_collection .new-old-card.primary-bg h3 {
    color: #fff;
  }

  .curated_collection .new-old-card.primary-bg p {
    color: #fff;
  }

  .homepage_stats {
    padding: 20px 0;
  }

  .homepage_stats .stats-card h3 {
    color: var(--secondary_color);
    font-size: 50px;
    text-shadow: rgba(248, 216, 69, 0.7) 0px 8px 24px;
  }

  .homepage_stats .stats-card p {
    color: #fff;
    font-weight: 200;
    text-transform: uppercase;
    font-size: 18px;
  }

  .homepage_stats [class*=col-]:nth-child(2) .stats-card {
    border: none;
  }
}

@media (max-width: 567px) {
  .homepage_stats {
    padding: 20px 0;
  }

  .homepage_stats .stats-card h3 {
    font-size: 36px;
  }

  .homepage_faq-testimonials .homepage_testimonials {
    height: 100%;
    background-color: var(--primary_color);
    padding: 20px;
  }

  .homepage_faq-testimonials .homepage_testimonials .testimonial_arrows {
    position: static;
    margin-top: 15px;
  }
}

.car-details-card .car-img {
  position: relative;
}

.car-details-card .car-img .car-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--secondary_color);
  color: #111;
  padding: 5px 15px;
  font-size: 16px;
}

.car-details-card .car-details h5 {
  color: #fff;
  font-weight: 300;
  font-size: 30px;
  padding-top: 10px;
}

.car-details-card .car-details h3 {
  color: var(--primary_color);
  font-weight: 400;
  font-size: 36px;
  padding: 5px 0;
}

.car-details-card .car-details p {
  color: #fff;
  font-weight: 200;
  font-size: 18px;
}

.car-details-card .car-details ul {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 5px 0;
}

.car-details-card .car-details ul li {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 200;
}

.car-details-card.sold .car-img::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  z-index: 2;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.car-details-card.sold .car-img::before img {
  height: auto;
  width: 150px;
}

.car-details-card.sold .car-img::after {
  content: "";
  background-image: url(../images/sold.png);
  width: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100px;
  z-index: 3;
  background-size: cover;
  background-position: center;
}

.specifications-list .col-xl-5:first-child {
  border-right: 1px solid #555;
  padding-bottom: 40px;
}

.listing-infor-box {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #555;
}

.listing-infor-box .icon {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: left;
}

.listing-infor-box .icon svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}

.listing-infor-box .icon svg path {
  fill: var(--primary_color);
}

.listing-infor-box .content-listing-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.listing-infor-box .content-listing-info .listing-info-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.6px;
  color: #fff;
  flex: 1;
}

.listing-infor-box .content-listing-info .listing-info-value {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.6px;
  color: var(--primary_color);
  flex: 1;
}

@media (max-width: 992px) {
  .specifications-list .col-xl-5:first-child {
    border-right: 1px solid #fff;
    margin-right: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .specifications-list .col-xl-5:first-child {
    border-right: none;
    margin-right: 0;
  }
}

.contact-box {
  color: #fff;
  text-align: center;
  padding: 50px 15px;
  background-color: var(--primary_color);
  display: block;
  height: 100%;
}

.contact-box i {
  font-size: 36px;
  padding-bottom: 10px;
  color: var(--secondary_color);
}

.contact-box h5 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .contact-box {
    padding: 30px 15px;
  }

  .contact-box i {
    font-size: 36px;
  }

  .contact-box h5 {
    font-size: 16px;
  }
}

.faq-container {
  padding: 50px 0;
}

.faq-container .faq_accordion {
  margin-top: 15px;
}

.faq-container .faq_accordion .accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #999999;
}

.faq-container .faq_accordion .accordion-item:last-child {
  border: none;
}

.faq-container .faq_accordion .accordion-item .accordion-button {
  background-color: transparent;
  box-shadow: none;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.faq-container .faq_accordion .accordion-item .accordion-button div {
  padding-left: 10px;
}

.faq-container .faq_accordion .accordion-item .accordion-button::after {
  position: absolute;
  left: 0;
  width: 1rem;
  background-size: 1rem;
  height: 1rem;
  filter: drop-shadow(2px 4px 0px white);
  -webkit-filter: drop-shadow(2px 4px 0px white);
}

.faq-container .faq_accordion .accordion-item .accordion-body {
  padding-left: calc(1rem + 15px);
  padding-top: 0;
  font-weight: 200;
  color: #fff;
  font-size: 18px;
}

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

@media (max-width: 991px) {
  .navbar:not(.topbar-fixed) .navbar-collapse {
    background: rgba(17, 17, 17, 0.98);
    padding: 25px;
    margin-top: 15px;
    border-radius: 10px;
  }

  .topbar-fixed .navbar-collapse {
    /*padding: 25px;*/
    margin-top: 15px;
    border-radius: 10px;
  }
}


.homepage_discount {
  position: relative;
  padding: 20px 0;
}
.homepage_discount .container-fluid {
  position: relative;
  z-index: 2;
}
.homepage_discount::before {
  z-index: 1;
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--primary_color);
  width: 100%;
  height: 80%;
}
.homepage_discount h2 {
  padding-top: 50px;
  font-size: 60px;
}
.homepage_discount h2 span {
  color: var(--secondary_color);
}

@media (max-width: 1200px) {
    .homepage_discount::before {
        height: 80%;
    }
    .homepage_discount h2 {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .homepage_discount::before {
        height: 80%;
    }
    .homepage_discount h2 {
        font-size: 36px;
    }
    
}
@media (max-width: 768px) {
    .homepage_discount {
        text-align: center;
        padding-bottom: 50px;
    }
    .homepage_discount::before {
        height: 80%;
    }
    .homepage_discount h2 {
        padding-top: 20px;
    }
}