.navbar .navbar-nav .nav-link {
  color: var(--white);
  font-size: 1.1em;
}

.navbar .navbar-nav .nav-link.active {
  color: red;
  font-size: 1.1em;
}

.navbar .navbar-nav .nav-link:hover {
  color: red;
}

.navbar .navbar-nav .nav-item {
  position: relative;
}

.navbar .navbar-nav .nav-item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: darkred;
  width: 0%;
  content: "";
  height: 4px;
  transition: all 0.5s;
}

.navbar .navbar-nav .nav-item:hover::after {
  width: 100%;
}

@media (min-width: 992px) {
  h1 {
    font-size: 5rem;
  }
}

@media (max-width: 1200px) {
  .index-hero img {
    width: 570px;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 7rem;
  }
}

@media (min-width: 1200px) {
  .index-hero img {
    width: 600px;
  }
}

@media (max-width: 992px) {
  .index-hero img {
    width: 500px;
  }
}

@media (max-width: 576px) {
  .index-hero img {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    width: 370px;
  }
}

@media (max-width: 576px) {
  .navbar-brand h2 {
    font-size: 1.5rem;
  }
}

.card-main {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.card-info {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  background-color: var(--gray-dark);
}

.social-icons a {
  background-color: lightgray;
  border-radius: 50%;
  width: 40px;
  line-height: 40px;
  height: 40px;
  text-decoration: none;
  color: black;
  margin-right: 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
}

.row.photos img {
  transition: transform .7s;
}

.row.photos img:hover {
  transform: scale(1.1);
}

.veh-desc i {
  font-size: 5px;
  color: var(--red);
  font-weight: bold;
  line-height: 26px;
  padding-right: 5px;
  padding-left: 5px;
}

.veh-desc {
  color: #a7a8a8;
}

.car-description {
  background-color: aliceblue;
  padding: 15px;
  border-radius: 15px;
}

.car-description .description-row {
  width: 100%;
  margin-bottom: 12px;
}

    .car-description .description-row .desc-left {
        width: 40%;
        overflow-wrap: break-word;
        font-weight: 600;
        /*font-size: 90%;*/
    }

.car-description .description-row .desc-right {
  width: 60%;
  overflow-wrap: anywhere;
  text-align:left
  /*font-size:90%;*/
}

.navbar-brand {
  white-space: normal;
  word-break: break-word;
}

input[name="message"], input[name="from_last_name"], input[name="from_middle_name"], input[name="from_email"] {
    display: none;
}
.fit-cover {
    object-fit: cover;
}