body {
  margin: 0;
  padding: 0;
  font-family: 'Prompt', sans-serif;
  font-size: 1em;
  color: #fff;
  /* background-color: #7e6a47; */
  background-image: linear-gradient(to right, #91773d, #998664);
}

a {
  text-decoration: none;
}

.bg-gold {
  background-image: linear-gradient(to bottom right, #8f7c5b, #91773d);
}

.bg-red {
  background-color: #d80000;
}

.bg-darkgrey {
  background-color: #232323;
}

.text-gold {
  color: #c9a463;
}

.top {
  background-color: #232323;
}

#header {
  position: fixed;
  top: 60px;
  font-size: 1.07rem;
  z-index: 9;
}

#header .container {
  border: 2px dotted #91773d;
}

nav a {
  color: #000 !important;
}

nav i {
  position: relative;
  top: 9px;
  color: #91773d;
}

.navbar-brand span:first-child {
  display: inline-block;
  padding: 5px 5px 0;
  background-color: black;
}

.navbar-brand img {
  position: relative;
  top: -9px;
  width: 50px;
}

/* Set the border color */

.navbar-toggler .navbar-toggler {
  border-color: white;
}
/* Setting the stroke to green using rgb values (0, 128, 0) */

.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

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

.navbar-expand-lg .navbar-nav:last-child .nav-link,
.navbar-nav .nav-item:last-child {
  padding-right: 0;
}

.carousel-control-next,
.carousel-control-prev {
  width: 80px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.carousel-indicators [data-bs-target] {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 0 10px;
  opacity: 0.8;
}

.carousel-indicators .active {
  background-color: #c9b275;
}

.carousel-item img {
  width: 100%;
}

.carousel-caption {
  bottom: 3.5rem;
  background-color: rgba(0, 0, 0, 0.5);
}

.carousel-caption h1 {
  font-size: 1.8rem;
}

.carousel-caption h4 {
  font-size: 1.3rem;
}

.van-tab {
  cursor: pointer;
}

.van-model {
  color: #fff;
  text-align: left;
}

.van-model .contents {
  padding: 2rem;
}

.topic {
  font-size: 1.5rem;
  color: #fff;
  background: #87672f;
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.sub-desc-topic {
  font-size: 1.2rem;
  color: #c9a463;
}

.sub-desc-desc span {
  display: inline-block;
  min-width: 120px;
  background: #3b3b3b;
  font-style: italic;
  color: gold;
  text-align: center;
  border-radius: 2px;
  margin-bottom: 10px;
  padding: 0 6px;
  margin-right: 15px;
  min-height: 35px;
  line-height: 35px;
  box-sizing: border-box;
}

.description {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 2;
}

.description img {
  margin-right: 15px;
  width: 25px;
}

.home .van-name {
  font-style: italic;
}

.home .van-model {
  color: #c9a463;
}

.home .van-title div:last-child {
  margin-left: 90px;
}

.home .description-home {
  margin: 25px;
  font-size: 14px;
  font-weight: 400;
}

.sub-desc-topic-home {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #c9a463;
}

.modal-body li {
  margin-bottom: 1rem;
}

.bg-contact-us {
  background-image: url('/img/bg-contact-us.webp');
  background-size: cover;
  background-repeat: no-repeat;
}

footer ul {
  list-style: none;
}

footer ul li {
  display: inline-block;
  margin: 0 15px;
}

footer ul li a {
  color: goldenrod;
}

footer ul li a:hover {
  color: #fff;
}

.footer-social-links {
  margin: 20px 0;
  font-size: 14px;
}

.footer-social-links a {
  width: 36px;
  height: 36px;
  line-height: 35px;
  text-align: center;
  display: inline-block;
  color: #7d7d7d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}

.footer-social-links a:hover {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 1);
}

.contact-icon i {
  font-size: 12rem;
}

.blink {
  animation: blinker 3s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

@media (max-width: 1180px) {
  .navbar-expand-lg .navbar-nav .nav-item {
    padding: 0 5px;
  }

  .navbar-expand-lg .navbar-nav:last-child .nav-link,
  .navbar-nav .nav-item:last-child {
    font-size: 1rm;
  }
}

@media (max-width: 991.98px) {
  nav li.nav-item i {
    display: none !important;
  }

  #carouselMain {
    margin-top: 10rem;
  }

  .carousel-caption {
    bottom: 1.25rem;
  }

  .carousel-caption h1 {
    font-size: 1.3rem;
  }

  .carousel-caption h4 {
    font-size: 1rem;
  }

  .contact-icon i {
    font-size: 9rem;
  }
}

@media (max-width: 767.98px) {
  .carousel-indicators,
  .carousel-caption h4 {
    display: none;
  }
}

@media (max-width: 575.98px) {
  #header {
    top: 60px !important;
  }

  .carousel-caption {
    left: 5%;
    right: 5%;
  }

  .fs-5 {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 499.98px) {
  .carousel-caption h1 {
    font-size: 1rem !important;
  }
}

@media (max-width: 409.98px) {
  .carousel-caption {
    /* padding: 1rem; */
    bottom: 1rem;
  }

  .px-5 {
    padding: 1rem !important;
  }
}
