@font-face {
  font-family: "Alumni Sans";
  src: local("Alumni Sans ExtraBold"), local("AlumniSans-ExtraBold"),
    url("../assets/fonts/AlumniSans-ExtraBold.woff2") format("woff2"),
    url("../assets/fonts/AlumniSans-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* General Styles */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Alumni Sans", sans-serif !important;
}

.heading {
  font-size: min(85px, 16.4vw);
  line-height: 0.8;
}

img {
  -o-object-fit: cover;
  object-fit: cover;
}

#vuHeader {
  position: sticky;
  z-index: 1000;
  width: 100%;
  top: 0;
}

@media screen and (min-width: 992px) {
  #vuHeader {
    position: fixed;
    z-index: 1000;
    width: 100%;
    top: 0;
  }

  #vuHeader > .container {
    border-radius: 800px;
  }
}

#hero {
  position: relative;
  height: auto;
}

#hero * {
  z-index: 1;
}

#hero::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  top: 0;
  left: 0;
}

#hero .heading {
  font-size: min(105px, 18.4vw);
  line-height: 0.8;
}

#hero .sub-heading {
  font-size: 1.3rem;
  width: min(650px, 99%);
}

.service-cards {
  border: 1px solid #fff;
  margin: 20px;
}

.service-cards:hover {
  border-color: var(--bs-secondary);
  background-color: #fbb14310;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.service-cards h1 {
  line-height: 0.8;
}

.fleet-card {
  height: 440px;
  border-radius: 0px;
  border: 0px;
}

.fleet-card img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0px;
}

.fleet-card .card-img-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  border-radius: 0px;
}

.fleet-card:hover .card-img-overlay {
  background-color: rgba(0, 0, 0, 0.2);
}

.testimonial-wrapper {
  width: min(600px, 99%);
  min-height: 350px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
  position: relative;

  -webkit-box-shadow: 20px 20px var(--bs-secondary);
  box-shadow: 20px 20px var(--bs-secondary);
}

.testimonial-wrapper > * {
  color: var(--bs-light);
}

#contactForm {
  width: min(650px, 99%);
  background-color: rgba(0, 0, 0, 0.2);
}
