body,html {
  margin: 0;
  padding: 0;
  font-family: 'Rajdhani', sans-serif;
}
html { scroll-behavior: smooth; }
.topbar {
  width: 90%;
  height: 33px;
  background-color: #011733;
  padding: 15px 5%;
}
.header {
  width: 90%;
  padding: 30px 5% 0;
  position: absolute;
  left: 0;
  top: 60px;
  height: 100px;
  z-index: 100;
}
.header-dark {
  width: 90%;
  padding: 30px 5% 0;
  position: absolute;
  left: 0;
  top: 60px;
  height: 100px;
  z-index: 100;
}
a {
  text-decoration: none;
  color: #428BCA;
}
li {
  font: 16px 'Rajdhani', sans-serif;
  font-weight: 500;
  color: #000;
  list-style: disc;
  margin: 5px 0 5px 20px;
}
h1 {
  font: 7vw 'Rajdhani', sans-serif;
  line-height: 6vw;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
.hero h1 {
  font: 7vw 'Rajdhani', sans-serif;
  line-height: 6vw;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  padding: 0;;
}
.hero h2 {
  font: 7vw 'Rajdhani', sans-serif;
  line-height: 6vw;
  font-weight: 800;
  color: transparent; /* Make the fill color transparent */
  -webkit-text-stroke: 2px #fff; /* Apply a white stroke */
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
.home-services h1 {
  width: 100%;
  padding: 5% 0;
  text-align: center;
}
.home-services h2 {
  width: 100%;
  padding: 1% 0 0;
  font-size: 4.25vw;
  margin: 0;
}
.hero .button-certification {
  border: 2px solid #fff;
  border-radius: 50px;
  background-color: rgba(0,0,0,0.4);
  font: 2.5vw 'Rajdhani', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 40px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 55%;
  width: 50vw;
}
a.button-certification, a.button-certification:visited { 
  color: #fff; 
  transition: all 0.2s ease-in-out;
}
a.button-certification:hover { 
  color: #fff; 
  background-color: rgba(0,0,0,0.6);
  transition: all 0.3s ease-in-out;
  font-size: 2.53vw;
}
.hero .button-location {
  border: 2px solid #fff;
  border-radius: 50px;
  background-color: rgba(0,0,0,0.4);
  font: 2.5vw 'Rajdhani', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 40px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 55%;
  width: 50vw;
}
a.button-location, a.button-location:visited { 
  color: #fff; 
  transition: all 0.2s ease-in-out;
}
a.button-location:hover { 
  color: #fff; 
  background-color: rgba(0,0,0,0.6);
  transition: all 0.3s ease-in-out;
  font-size: 2.53vw;
}
.logo {
  width: 220px;
}
.book-appointment {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 5px 15px;
  text-align: center;
  text-transform: uppercase;
  font: 18px 'Rajdhani', sans-serif;
  font-weight: 400;
  position: absolute;
  right: 3%;
  top: 40px;
}
.header-dark .book-appointment {
  color: #000;
  border: 1px solid #000;
}
/* .fleet p { font-size: 24px; } */
.services-fleet p, .services-collision p {
  font-size: 1.5vw;
  margin: 10px 0;
}


/* TOP BAR */

.topbar-left {

}
.topbar-center {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  top: 17px;
  font: 18px 'Rajdhani', sans-serif;
  color: #fff;
  font-weight: 400;
  z-index: 101;
}
.topbar-right {
  float: right;
  width: 15vw;
}
.topbar-icon {
  float: left;
  width: 30px;
  margin: 0 10px 0 0;
}
.top-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

/* Individual button styling */
.top-button {
  background-color: #428BCA;
  color: white;
  padding: 5px 16px;
  font: 16px 'Rajdhani', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.top-button:hover {
  background-color: #3579b5;
}

/* Mobile responsive adjustments */
@media (max-width: 1000px) {
  .top-button {
    font-size: 14px;
    padding: 6px 12px;
  }
}

@media (max-width: 767px) {
  .topbar-center {
    display: none;
  }
  .top-buttons {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(1, 23, 51, 0.9); /* matches your topbar color */
    z-index: 99;
  }
  
  .top-button {
    padding: 8px 14px;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }
}


/* SEARCH */

.search-container {
  display: flex;
  align-items: center;
  background-color: #0a1a2b; /* Adjust as needed */
  border: 1px solid #428BCA;
  border-radius: 20px;
  padding: 0px 15px;
  width: 100%;
  height: 30px;
  position: relative;
}
.search-input {
  border: none;
  outline: none;
  background: none;
  color: #428BCA;
  font-size: 18px; /* Adjust as needed */
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  flex-grow: 1;
}
.search-input::placeholder {
  color: #428BCA;
}
.search-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #428BCA;
  position: absolute;
  top: 4px;
  right: 7px;
}
.search-button svg {
  fill: currentColor;
  width: 20px;
  height: 20px;
}
.search-button:focus,
.search-input:focus {
  outline: none;
  border: none;
}
.search-container:hover {
  border-color: #428BCA;
}


/* TOP NAV */

.top-nav {
  width: 60vw;
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
}
.top-nav-link {
  color: #fff;
  text-transform: uppercase;
  margin: 0 15px;
  letter-spacing: 0.5px;
  font-weight: 400;
}
.header-dark .top-nav-link {
  color: #000;
  text-transform: uppercase;
  margin: 0 15px;
  letter-spacing: 0.5px;
  font-weight: 600;
}




/* HERO VIDEOS */

.video-background, .services-video-background {
  position: relative;
  width: 100%;
  height: calc(100vh + 3px);
  overflow: hidden;
  z-index: 1;
}
.home-video {
  background-image: url('/assets/images/citrus-heights.jpg');
  background-size: cover;
  background-position: center center;
  background-color: #1c3961;
}
.certified-video-background {
  background-image: url('/assets/images/certified.jpg');
  background-size: cover;
  background-position: center center;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: 1;
}
.video-background .video, .services-video-background .video, .certified-video-background .video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  background-size: cover;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 200px 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
}


/* SERVICES */

.services-hero {
  padding: 12% 0 8%;
  height: 15vh;
  text-align: center;
  background-image: none;
}
.services-video-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.services-hero h1 {
  font: 7vw 'Rajdhani', sans-serif;
  line-height: 6vw;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px #fff; 
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
.services-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15% 0 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  display: flex;
  align-items: flex-start;
}
.services-video-box {
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 2vw;
  margin: 20px;
  width: 35%;
  transition: all 0.3s ease;
  text-align: center;
}

.services-video-box h2 {
  margin-top: 0;
}
.services-video-box .learn-more {
  display: block;
  margin: 40px auto 10px;
  padding: 4px 40px;
  background-color: #000;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  font: 1.5vw 'Rajdhani', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
#services-title.black {
  color: #000;
}
#services-title.white {
  color: #fff;
}
.services-video-box.active {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  border-color: #000;
}
.services-video-box.inactive {
  background: rgba(255, 255, 255, 0.6);
  color: #428BCA;
  border-color: #428BCA;
}
#services-video {
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}
#services-video.fade-out {
  opacity: 0;
}
#services-video-1,
#services-video-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  background-size: cover;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}
#services-video-1.active,
#services-video-2.active {
  opacity: 1;
}
.services-split {
  display: flex;
}
.services-split h2 {
  font: 5vw 'Rajdhani', sans-serif;
  line-height: 4vw;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  padding: 5% 0 0;
}
.btn-services-collision {
  border: 2px solid #fff;
  padding: 7px 20px;
  font: 24px 'Rajdhani', sans-serif;
  font-weight: 700;
  color: #fff;
  background-color: transparent;
  border-radius: 5px;
  margin: 30px auto;
  text-transform: uppercase;
}
.btn-services-fleet {
  border: 2px solid #000;
  padding: 7px 20px;
  font: 24px 'Rajdhani', sans-serif;
  font-weight: 700;
  color: #000;
  background-color: transparent;
  border-radius: 5px;
  margin: 30px auto;
  text-transform: uppercase;
}
.services-left {
  width: 30%;
  padding: 5% 10%;
  background-color: #3c8ac8;
  text-align: center;
  color: #fff;
}
.services-right {
  width: 30%;
  padding: 5% 10%;
  background-color: #fdc13c;
  text-align: center;
}


/* LOCATIONS */

.locations-hero {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12% 0 4%;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  background-color: #1A1A1A;
}
.locations-header {
  width: 80vw;
  padding: 1vw 7vw;
  text-align: left;
  position: relative;
  height: 36vw;
}
.locations-header h1 {
  font-size: 2vw;
  color: #fff;
  text-transform: none;
  font-weight: 600;
}
.locations-header h2 {
  font-size: 13vw;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: 9vw;
  letter-spacing: -0.35vw;
  font-weight: 600;
}
.locations-header-subline {
  position: absolute;
  left: 32vw;
  top: 17vw;
  color: #fff;
  margin: 20px 0;
  font-size: 1.2em;
  display: inline-block;
  font-size: 3vw;
  width: 50%;
  height: 20vw;
  line-height: 3vw;
  font-weight: 500;
}
.locations-section {
  width: 94vw;
  margin: 0 auto;
  padding: 3vw;
  text-align: center;
  background-color: #1A1A1A;
}
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
.location-box {
  width: 20vw;
  height: 20vw;
  margin: 0;
  border-bottom: 1px solid #aaa;
  border-left: 1px solid #aaa;
  position: relative;
  overflow: hidden;
}
.location-box:nth-child(4n) {
  border-right: 1px solid #aaa;
}
.locations .location-box {
  width: 18vw;
  height: 18vw;
  margin: 0;
  border-bottom: 1px solid #aaa;
  border-left: 1px solid #aaa;
  position: relative;
  overflow: hidden;
}
.location-box:last-child {
  border-right: 1px solid #aaa;
}
.locations .location-box:nth-child(n) {
  border-right: 1px solid #aaa;
}
.locations .location-box:nth-child(5n) {
  border-right: 1px solid #aaa;
}
.location-box:nth-child(n+1):nth-child(-n+4) {
  border-top: 1px solid #aaa;
}
.locations .location-box:nth-child(n+1):nth-child(-n+5) {
  border-top: 1px solid #aaa;
}
.location-background {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: bottom center;
  opacity: 0.6;
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.location-box:hover .location-background {
  opacity: 1;
  transform: scale(1.075) translateY(-3.75%);
  background-position: bottom center;
}
.location-box .location-name {
  position: absolute;
  top: 1vw;
  left: 0vw;
  color: #fff;
  font-size: 4vw;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  text-align: left;
  text-transform: uppercase;
  line-height: 3.25vw;
  font-weight: 600;
  opacity: 0.6;
  transition: opacity 0.5s ease, transform 0.5s ease;
  padding: 20px;
}
.locations .location-name {
  position: absolute;
  top: 1vw;
  left: 0vw;
  color: #fff;
  font-size: 3vw;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  text-align: left;
  text-transform: uppercase;
  line-height: 2.25vw;
  font-weight: 600;
  opacity: 0.6;
  transition: opacity 0.5s ease, transform 0.5s ease;
  padding: 20px;
}
.location-box:hover .location-name {
  opacity: 1;
}
.location-box.see-all {
  background-color: #333;
}
.location-box.see-all .location-background {
  display: none;
}
.location-box.see-all .location-name {
  position: static;
  padding: 80px 10px;
}
.location-box.see-all .location-name {
  text-align: center;
  font-size: 3vw;
  line-height: 2.5vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.locations-map img {
  width: 80%;
  padding: 5% 10%;
}
.locations-map {
  padding: 5% 0;
}
.locations-map h2 {
  font: 5vw 'Rajdhani', sans-serif;
  line-height: 4vw;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-transform: uppercase;
  margin: 0;
  padding: 5% 0 0;
}

/* REVIEWS */

.reviews {

}
.reviews-box {
  background-color: #f9fafb;
  border: 1px solid #eee;
  border-radius: 5px;
  max-width: 50%;
  margin: 50px 25%;
}


/* SINGLE LOCATION */
.location h1 {
  color: #fff;
}
.location h3 {
  color: #000;
  font-size: 38px;
  font-weight: 400;
  margin: 0 4vw 30px;
}
.location h4 {
  color: #428BCA;
  font-size: 24px;
  margin: 30px 0 0;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 4vw;
}
.location h5 {
  color: #000;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  float: left;
}
.location h6 {
  color: #000;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
  float: right;
}
.button-estimate {
  font-size: 1.15vw;
  line-height: 1.2vw;
  color: #428BCA;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 4px;
  border-radius: 5px;
  border: 1px solid #428BCA;
  position: absolute;
  top: calc(30px + 2vw);
  right: 2vw;
  max-width: 5vw;
  text-align: center;
}
.button-estimate img {
  width: 50%;
  margin: 0 0 10px;
}
.hours-row {
  border-bottom: 1px solid #CDCDCD;
  width: 86%;
  padding: 2% 0% 2% 12%;
  margin: 0 1%;
}
.hours-call {
  background-image: url('/assets/images/icon-phone.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
.hours-visit {
  background-image: url('/assets/images/icon-car.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
.hours-website {
  background-image: url('/assets/images/icon-website.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
.hours-hours {
  background-image: url('/assets/images/icon-clock.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
.location-hero {
  width: 100vw;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 14vw 0 20vw;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
}
.hero-18th-street { background-image: url('/assets/images/locations/hero_18th-street.jpg'); }
.hero-auburn { background-image: url('/assets/images/locations/hero_auburn.jpg'); }
.hero-carmichael { background-image: url('/assets/images/locations/hero_carmichael.jpg'); }
.hero-citrus-heights { background-image: url('/assets/images/locations/hero_citrus-heights.jpg'); }
.hero-loomis { background-image: url('/assets/images/locations/hero_loomis.jpg'); }
.hero-natomas { background-image: url('/assets/images/locations/hero_natomas.jpg'); }
.hero-power-inn { background-image: url('/assets/images/locations/hero_power-inn.jpg'); }
.hero-rancho-cordova { background-image: url('/assets/images/locations/hero_rancho-cordova.jpg'); }
.hero-rocklin { background-image: url('/assets/images/locations/hero_rocklin.jpg'); }
.hero-shingle-springs { background-image: url('/assets/images/locations/hero_shingle-springs.jpg'); }
.hero-x-street { background-image: url('/assets/images/locations/hero_x-street.jpg'); }
.hero-woodland { background-image: url('/assets/images/locations/hero_woodland.jpg'); }
.hero-icrash-collision { background-image: url('/assets/images/locations/hero_icrash-collision.jpg'); }
.hero-icrash-collision h2, .hero-woodland h2 { 
  font-size: 2.5vw; 
  line-height: 2.5vw;
  -webkit-text-stroke: 1px #fff;
  color: rgba(0,0,0,0.25);
}
.hero-loomis, .hero-carmichael, .hero-auburn {
  padding: 11vw 0 23vw;
}
.hero-rancho-cordova {
  padding: 19vw 0 15vw;
}
.hero-rancho-cordova h1, .hero-auburn h1 {
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 0, 0, 0.2), 0 0 35px rgba(0, 0, 0, 0.3);
}
.location-info {
  width: calc(38% - 6vw);
  background-color: #fff;
  padding: 2vw 3vw;
  float: left;
  position: relative;
}
.location-map {
  width: 62%;
  float: left;
}
.location-about-col-1 {
  width: 27%;
  margin: 0 3% 5% 0;
  float: left;
}
.location-about-col-2 {
  width: 30%;
  margin: 0 2% 5% 0;
  float: left;
}
.location-about-col-3 {
  width: 38%;
  margin: 0 0 5%;
  float: left;
}
.location-manager {
  border-radius: 20px;
}
.cert-row {
  width: 100%;
  padding: 1vw 3vw;
  font-size: 1.75vw;
  text-align: left;
  font-weight: 500;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #efefef;
  line-height: 2.5vw;
}
.cert-icon {
  width: 2.5vw;
  margin: 0 5% 0 0;
  float: left;
}
.cert-row a {
  width: 100%;
}
.rocklin .cert-row, .citrus-heights .cert-row, .loomis .cert-row, .power-inn .cert-row {
  width: 100%;
  padding: 0.25vw 2vw;
  font-size: 1.25vw;
  text-align: left;
  font-weight: 500;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #efefef;
}
.rocklin .cert-icon, .citrus-heights .cert-icon, .loomis .cert-icon, .power-inn .cert-icon {
  width: 2vw;
  margin: 0 5% 0 0;
  float: left;
}


/* PARTNERS */
.partner-hero {
  width: 100vw;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 16vw 0 10vw;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  background-color: rgba(0,0,0,0.5);
}
.hero-autonation-chrysler-dodge-jeep-ram-roseville { background-image: url('/assets/images/partners/autonation-chrysler-dodge-jeep-ram-roseville.jpg'); background-blend-mode: darken; }
.hero-autonation-honda { background-image: url('/assets/images/partners/autonation-honda.jpg'); background-blend-mode: darken; }
.hero-autonation-subaru { background-image: url('/assets/images/partners/autonation-subaru.jpg'); background-blend-mode: darken; }
.hero-folsom-chevy { background-image: url('/assets/images/partners/folsom-chevy.jpg'); background-blend-mode: darken; }
.hero-future-nissan { background-image: url('/assets/images/partners/future-nissan.jpg'); background-blend-mode: darken; }
.hero-lexus-of-roseville { background-image: url('/assets/images/partners/lexus-of-roseville.jpg'); background-blend-mode: darken; }
.hero-mercedes-benz-of-rocklin { background-image: url('/assets/images/partners/mercedes-benz-of-rocklin.jpg'); background-blend-mode: darken; }
.hero-mercedes-benz-of-sacramento { background-image: url('/assets/images/partners/mercedes-benz-of-sacramento.jpg'); background-blend-mode: darken; }
.hero-rocklin-audi { background-image: url('/assets/images/partners/rocklin-audi.jpg'); background-blend-mode: darken; }
.hero-roseville-chevrolet { background-image: url('/assets/images/partners/roseville-chevrolet.jpg'); background-blend-mode: darken; }
.hero-roseville-toyota { background-image: url('/assets/images/partners/roseville-toyota.jpg'); background-blend-mode: darken; }
.hero-shingle-springs-honda { background-image: url('/assets/images/partners/shingle-springs-honda.jpg'); background-blend-mode: darken; }
.hero-shingle-springs-subaru { background-image: url('/assets/images/partners/shingle-springs-subaru.jpg'); background-blend-mode: darken; }
.hero-tesla { background-image: url('/assets/images/partners/tesla.jpg'); background-blend-mode: darken; }

.partner-info {
  width: calc(50% - 6vw);
  background-color: #fff;
  padding: 3vw;
  float: left;
  text-align: center;
}
.partner-info p {
  font-size: 2vw;
  line-height: 2.75vw;
  margin-bottom: 5vw;
  text-align: left;
}
.partner-map {
  width: 50%;
  float: left;
}
.button-partner {
  border: 2px solid #011733;
  color: #011733;
  border-radius: 50px;
  background-color: #fff;
  font: 1.5vw 'Rajdhani', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 40px;
  width: 50%;
  margin: 0 auto;
}


/* LOCATION ABOUT */

.location-about {
  padding: 5vw 10vw;
}
.location-about h2 {
  text-align: center;
  color: #000;
  font-size: 6vw;
  line-height: 5.5vw;
  margin: 0 0 5%;
}
.location-about h3 {
  color: #000;
  font-size: 2vw;
  font-weight: 400;
  margin: 0;
}
.location-about h4 {
  color: #000;
  font-size: 1.5vw;
  margin: 30px 0 0;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0;
  width: 100%;
}
.location-about h5 {
  color: #000;
  font-size: 2.5vw;
  text-transform: capitalize;
  font-weight: 400;
  width: 100%;
}
.location-about h6 {
  color: #000;
  font-size: 1vw;
  margin: 30px 0 0;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0;
  width: 100%;
}
.location-about h7 {
  color: #000;
  font-size: 1.5vw;
  width: 100%;
  font-weight: 500;;
}
img.location-gold-class {
  max-width: 50%;
  margin: 5% 0 0;
}
.location-cert-title {
  text-align: center;
  width: 100%;
}

.shape-container {
  position: relative;
  width: 20px;
  height: 15vw;
  display: inline-block;
  vertical-align: top;
  margin-top: 20px;
}
.line {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 50%;
  width: 3px;
  background-color: white;
  transform: translateX(-50%);
}
.circle {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.circle.top {
  top: 0;
}
.circle.bottom {
  bottom: 0;
}



/* ABOUT */

.home-about {
  background-color: #EFEFEF;
  width: 80vw;
  padding: 3vw 10vw;
  display: flex;
  gap: 50px;
}
.home-about-left {
  width: 35vw;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  height: 100%;
}
.home-about-right {
  width: 45vw;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

img.home-about-classic {
  width: 100%;
  border-radius: 2vw;
  display: block;
  height: 100%;
  object-fit: cover;
}
.home-about h1 {
  font-size: 5vw;
  line-height: 4vw;
}
.home-about h2 {
  font-size: 2vw;
  line-height: 2vw;
  font-weight: 500;
}
.home-about-learn {
  margin: 20px 20%;
  padding: 7px 3vw;
  background-color: #fff;
  border: 1px solid #428BCA;
  border-radius: 50px;
  color: #428BCA;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.25vw;
  text-align: center;
  flex-grow: 1;
}
img.home-about-people {
  border-radius: 2vw;
  margin: 20px 0 0;
  align-self: flex-end;
  object-fit: cover;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* FLEET */

.fleet-hero {
  width: 100vw;
  height: calc(100vh - 33vw);
  position: relative;
  padding: 10vw 0 22vw;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  overflow: hidden;
}
.fleet-hero h2 { line-height: 3vw; }
.fleet-hero h3 {
  font-size: 2.4vw;
  text-transform: uppercase;
  margin: 1.5vw;
}
.fleet-hero h4 {
  font-size: 2vw;
  text-transform: uppercase;
  margin: 1.5vw;
  color: #fec216;
}
.fleet-different {
  background-color: #fec216;
  padding: 5vw 10vw;
  text-align: center;
}
.fleet-different h2 {
  font-size: 4vw;
  text-transform: uppercase;
  margin: 0;
}
.fleet-different p {
  font-size: 2vw;
  line-height: 2.4vw;
  font-weight: 400;
}
.fleet-family {
  background-image: url('/assets/images/fleet-discover.jpg');
  background-size: cover;
  background-position: center bottom;
  padding: 5vw 10vw 35vw;
  text-align: left;
}
.fleet-family h2 { 
  color: #fff; 
  font-size: 3vw;
}
.fleet-family p {
  color: #fff;
  font-size: 1.5vw;
  line-height: 2.25vw;
  font-weight: 400;
}
.fleet-values {
  background-image: url('/assets/images/fleet-richard.jpg');
  background-size: cover;
  background-position: center bottom;
  padding: 1vw 40vw 4vw 10vw;
  text-align: left;
}
.fleet-values h2 { 
  color: transparent;
  -webkit-text-stroke: 1.5px #fff;
  font-size: 5vw;
  text-transform: uppercase;
  margin: 5vw 0 2vw;
}
.fleet-values h4 {
  font-size: 2vw;
  line-height: 3vw;
  margin: 0;
  color: #fec216;
}
.fleet-values h5 {
  color: #fff;
  font-size: 1.5vw;
  font-weight: 700;
  text-transform: uppercase;
  margin: 30px 0 0;
}
.fleet-values li {
  color: #fff;
  font-size: 1.25vw;
  line-height: 2vw;
  font-weight: 400;
}
.fleet-core {
  width: 40%;
  float: left;
  margin: 0 0 2vw;
}
.fleet-services {
  background-color: #fec216;
  padding: 5vw 2vw;
  text-align: center;
}
.fleet-services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* align-items: start; */
  gap: 40px;
}
.fleet-services h2 { 
  color: transparent;
  -webkit-text-stroke: 1.5px #000;
  font-size: 5vw;
  text-transform: uppercase;
  margin: 0 0 2vw;
}
.fleet-services-box {
  width: calc(23% - 4vw);
  padding: 1vw;
  /* border: 2px solid #000; */
  border-radius: 10px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 2vw;
  font-weight: 500;
}
.fleet-services-box img {
  width: 75%;
  margin: 0 auto 20px;
  display: block;
}

.underline { text-decoration: underline; }
.yellow { color: #fec216; }


/* COLLISION */
.collision {
  font-size: 1.25vw;
}
.collision h3 {
  font: 2.4vw 'Rajdhani', sans-serif;
  line-height: 2.4vw;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
.collision-hero {
  width: 100vw;
  height: calc(70vh - 33vw);
  position: relative;
  padding: 15vw 0 17vw;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  overflow: hidden;
}
.collision-hero h2 { line-height: 3vw; }
.collision-hero h3 {
  font-size: 2.4vw;
  text-transform: uppercase;
  margin: 1.5vw;
}
.collision-hero h4 {
  font-size: 2vw;
  text-transform: uppercase;
  margin: 1.5vw;
  color: #fec216;
}
.collision-services {
  background-color: #fff;
  padding: 5vw 10vw;
  text-align: center;
}
.collision-services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* align-items: start; */
  gap: 40px;
}
.collision-services h2 { 
  color: transparent;
  -webkit-text-stroke: 1.5px #000;
  font-size: 5vw;
  text-transform: uppercase;
  margin: 0 0 2vw;
}
.collision-services-box {
  width: calc(45% - 40px);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #bbb;
  text-align: center;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  font-size: 1.25vw;
  line-height: 2vw;
  font-weight: 500;
  margin: 40px 0;
}
.collision-family {
  background-image: url('/assets/images/collision-services-bg.jpg');
  background-size: cover;
  background-position: center bottom;
  padding: 5vw 5vw 20vw;
  text-align: center;
}
.collision-family h2 { 
  color: #fff; 
  font-size: 5vw;
  margin: 1vw 0;
}
.collision-family h3 { 
  color: #fff; 
  font-size: 2vw;
  text-transform: none;
}
.collision-family h4 { 
  color: #fec216; 
  font-size: 2.5vw;
  text-transform: none;
  margin: 0;
}
.collision-family p {
  color: #fff;
  font-size: 1.5vw;
  line-height: 2.25vw;
  font-weight: 400;
}


/* CAREERS */

.careers a { 
  color: #fff;
  text-decoration: underline;
}
.careers-hero {
  width: 45vw;
  height: calc(100vh - 35vw);
  position: relative;
  padding: 15vw 0 20vw 55vw;
  justify-content: center;
  align-items: center;
  text-align: left;
  color: #fff;
  z-index: 1;
  overflow: hidden;
  background-image: url('/assets/images/careers-hero.jpg');
  background-size: cover;
  background-position: center center;
}
/* .careers-passion, .careers-why, .careers-values, .careers-benefits, .careers-positions, .careers-apply {
  height: 100vh;
} */
.careers-passion {
  background-color: #428BCA;
}
.careers-why {
  background-color: #222;
}
.careers-values {
  background-color: #555;
}
.careers-benefits {
  background-color: #428BCA;
}
.careers-positions {
  background-color: #222;
}
.careers-apply {
  background-color: orangered;
}
.careers-nav {
  position: fixed;
  top: 30%;
  left: 0;
  width: 150px;
  padding: 2% 0;
  z-index: 99;
  display: flex;
  align-items: left;
  justify-content: left;
  border-top: 0.5px solid rgba(255,255,255,0.5);
  border-bottom: 0.5px solid rgba(255,255,255,0.5);
}
.careers-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.careers-nav ul li {
  margin-bottom: 20px;
  padding-bottom: 10px;
  list-style: none;
}
.careers-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.7;
  transition: transform 0.5s ease, font-size 0.5s ease, opacity 0.5s ease;
  display: inline-block;
  transform-origin: left;
}
.careers-nav ul li a:hover {
  transform: scale(1.4);
  transform-origin: left;
  opacity: 1;
}
.careers-nav ul li a.active {
  transform: scale(1.4);
  transform-origin: left;
  opacity: 1;
}

.careers-passion {
  background-image: url('/assets/images/careers-passion.jpg');
  background-size: cover;
  background-position: bottom right;
  width: 80vw;
  height: calc(100vh - 20vw);
  padding: 10vw 5vw 10vw 15vw;
}
.careers-passion h1, .careers-passion p { color: #fff; }
.careers-passion p { 
  font-size: 1.5vw; 
  line-height: 2vw;
  font-weight: 400;
}
.careers-passion img {
  height: 11vw;
  float: left;
  margin: 0 30px 0 0;
}

.careers-why {
  width: 80vw;
  min-height: 100vh;
  padding: 5vw 5vw 5vw 15vw;
  display: table;
}
.careers-why h1, .careers-why h4, .careers-why p {
  color: #fff;
}
.careers-why h4 {
  font-size: 2.5vw;
  font-weight: 600;
  margin: 1.5vw 0 0;
  padding: 0;
  line-height: 2vw;
}
.careers-why p { 
  font-size: 1.5vw; 
  line-height: 2vw;
  font-weight: 400;
}
.careers-why-box {
  width: 90%;
  padding: 2vw 0;
  clear: both;
}
.careers-why-box img {
  float: left;
  width: 8vw;
  margin: 0 30px 0 0;
}

.careers-values {
  width: 70vw;
  min-height: 100vh;
  padding: 2vw 15vw 2vw 15vw;
}
.careers-values h2 {
  color: #fff;
  font-size: 5vw;
  font-weight: 300;
  line-height: 4vw;
}
.careers-values img {
  border-radius: 25px;
}

.careers-benefits {
  width: 80vw;
  height: calc(100vh - 20vw);
  padding: 10vw 5vw 10vw 15vw;
  z-index: 1;
  overflow: hidden;
  position: relative;
}
.careers-benefits h1, .careers-benefits p {
  color: #fff;
}
.careers-benefits p { 
  font-size: 1.5vw; 
  line-height: 2vw;
  font-weight: 400;
}
.careers-benefits .background-video {
  mix-blend-mode: multiply;
}

.careers-positions {
  /* background-image: url('/assets/images/careers-passion.jpg'); */
  background-size: cover;
  background-position: bottom right;
  width: 80vw;
  min-height: calc(100vh - 10vw);
  padding: 5vw 5vw 5vw 15vw;
}
.careers-positions h1, .careers-positions h3, .careers-positions p {
  color: #fff;
}
.careers-positions h3 {
  font-size: 2vw;
  margin: 50px 0 0;
  padding: 0;
  line-height: 1.5vw;
}
.careers-positions p { 
  font-size: 1.5vw; 
  line-height: 2vw;
  font-weight: 400;
}

.careers-apply {
  /* background-image: url('/assets/images/careers-passion.jpg'); */
  background-size: cover;
  background-position: bottom right;
  width: 80vw;
  min-height: calc(100vh - 20vw);
  padding: 10vw 5vw 10vw 15vw;
}
.careers-apply h1, .careers-apply p {
  color: #fff;
}
.careers-apply p { 
  font-size: 1.5vw; 
  line-height: 2vw;
  font-weight: 400;
}
.careers-form {
  background-color: #fff;
  padding: 2vw 5vw;
  border-radius: 3vw;
}


/* CERTIFIED */

.home-certified-icon {
  width: 15vw;
  margin: 7.5vw auto 0;
}
.home-certified-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90vw;
  margin: 2vw auto;
}
.home-certified-logo {
  flex: 0 0 10vw;
  margin: 3vw 2vw;
  flex-direction: row;
}
.home-certified-btn {
  border: 2px solid #fff;
  border-radius: 50px;
  background-color: rgba(0,0,0,0.4);
  font: 2.5vw 'Rajdhani', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 40px;
  width: 50vw;
  margin: 0 auto 3vw;
}
a .home-certified-btn, a .home-certified-btn:visited { 
  color: #fff; 
  transition: all 0.2s ease-in-out;
}
a .home-certified-btn:hover { 
  color: #fff; 
  background-color: rgba(0,0,0,0.6);
  transition: all 0.3s ease-in-out;
  font-size: 2.53vw;
}


/* CERTIFICATIONS */

.certifications-hero {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12% 0 4%;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  background-color: #1A1A1A;
}
.certifications-section {
  width: 94vw;
  margin: 0 auto;
  padding: 3vw;
  text-align: center;
  background-color: #1A1A1A;
}
.certifications-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
.certification-box {
  width: 20vw;
  height: 20vw;
  margin: 0;
  border-bottom: 1px solid #aaa;
  border-left: 1px solid #aaa;
  position: relative;
  overflow: hidden;
}
.certifications .certification-box {
  width: 18vw;
  height: 18vw;
  margin: 0;
  border-bottom: 1px solid #aaa;
  border-left: 1px solid #aaa;
  position: relative;
  overflow: hidden;
}
.certification-hero {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8% 0 3%;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  background-color: #1A1A1A;
}
.certification-hero img {
  width: 7vw;
}
.certification-hero2 {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8% 0 3%;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  background-color: #1A1A1A;
}
.certification-hero2 img {
  width: 14vw;
}
.certification-box:nth-child(6n) {
  border-right: 1px solid #aaa;
}
.certifications .certification-box:nth-child(5n) {
  border-right: 1px solid #aaa;
}
.certification-box:nth-child(n+1):nth-child(-n+6) {
  border-top: 1px solid #aaa;
}
.certifications .certification-box:nth-child(n+1):nth-child(-n+5) {
  border-top: 1px solid #aaa;
}
.certification-box:last-child {
  border-right: 1px solid #aaa;
}
.certification-background {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: bottom center;
  opacity: 0.6;
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.certification-box:hover .certification-background {
  opacity: 1;
  transform: scale(1.075) translateY(-3.75%);
  background-position: bottom center;
}
.certification-box .certification-name {
  position: absolute;
  top: 1vw;
  left: 0vw;
  color: #fff;
  font-size: 4vw;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  text-align: left;
  text-transform: uppercase;
  line-height: 3.25vw;
  font-weight: 600;
  opacity: 0.6;
  transition: opacity 0.5s ease, transform 0.5s ease;
  padding: 20px;
}
.certifications .certification-name {
  position: absolute;
  top: 1vw;
  left: 0vw;
  color: #fff;
  font-size: 3vw;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  text-align: left;
  text-transform: uppercase;
  line-height: 2.25vw;
  font-weight: 600;
  opacity: 0.6;
  transition: opacity 0.5s ease, transform 0.5s ease;
  padding: 20px;
}
.certification-box:hover .certification-name {
  opacity: 1;
}
.certification-box.see-all {
  background-color: #333;
}
.certification-box.see-all .certification-background {
  display: none;
}
.certification-box.see-all .certification-name {
  position: static;
  padding: 80px 10px;
}
.certification-box.see-all .certification-name {
  text-align: center;
  font-size: 3vw;
  line-height: 2.5vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.certification h3 {
  margin: 0 0 30px;
}
.certification li {
  font-size: 1.5vw;
  font-weight: 600;
}


/* CONTACT */

.contact-hero {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12% 0 4%;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  background-color: #1A1A1A;
}
.contact-hero h3 {
  font: 5vw 'Rajdhani', sans-serif;
  line-height: 4vw;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
.contact-form {
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 3vw 5vw;
  margin: 3vw 20vw;
  width: 50vw;
  text-align: left;
}
.contact-form h2 {
  text-align: center;
  font-size: 2vw;
}
.contact-form-group-box {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
.contact-form-group {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.contact-label {
  width: 30%;
  font-size: 1.1vw;
  text-align: right;
  line-height: 42px;
  font-weight: 500;
  text-transform: uppercase;
  padding-right: 20px;
  flex-shrink: 0;
}
.contact-input-wrapper {
  flex-grow: 1;
  display: flex;
  gap: 20px;
}

.contact-input {
  border: 1px solid #428BCA;
  border-radius: 5px;
  color: #000;
  font-size: 18px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  padding: 5px 15px;
  flex-grow: 1;
  min-height: 30px;
}

.contact-input.half-width {
  width: calc(50% - 10px);
}
.contact-field {
  border: 1px solid #428BCA;
  border-radius: 5px;
  color: #000;
  font-size: 18px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  flex-grow: 1;
  min-width: 60%;
  min-height: 150px;
  padding: 5px 15px;
}
.contact-button {
  background-color: #000;
  color: #fFF;
  border-radius: 40px;
  padding: 7px 30px;
  font: 21px 'Rajdhani', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  width: 50%;
  margin: 30px 25% 0;
}
.contact-method-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  width: 60%;
}

.contact-method-group input[type="radio"] {
  margin-right: 5px;
  width: 20px;
  height: 20px; /* Customizing size of radio buttons */
}

.contact-method-group label {
  margin-right: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 3px 25px 0 0;
  color: #428BCA;
  font-size: .9vw;
}


/* PRIVACY */

.privacy-hero {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12% 0 4%;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  background-color: #1A1A1A;
}
.privacy-hero h3 {
  font: 5vw 'Rajdhani', sans-serif;
  line-height: 4vw;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
.privacy-text {
  padding: 5vw 10vw;
  font-size: 21px;
}
.privacy-text h3 {
  color: #000;
  font-size: 2vw;
  font-weight: 400;
  margin: 0;
}

/* BOOK AN APPOINTMENT */

.form-row {
  display: flex;
  gap: 20px;
  width: 70%;
}

.form-column {
  flex: 1;
}
.form-column input {
  width: calc(100% - 30px);
}



/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .form-row {
      flex-direction: column;
      gap: 10px;
  }
}


/* INSURANCE */

.insurance {
  background-color: #efefef;
}
.insurance-hero {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10% 0 3%;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #000;
  z-index: 1;
  background-color: #fec216;
}
.insurance-hero img {
  width: 20vw;
}
.insurance h1 {
  font: 7vw 'Rajdhani', sans-serif;
  line-height: 6vw;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px #000;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
.insurance h2 {
  color: #000;
  font-size: 3.5vw;
  font-weight: 400;
  padding: 5vw;
  margin: 0;
  width: calc(100% - 10vw);
  text-align: center;
}
.insurance .disclaimer {
  font: 1.75vw 'Rajdhani', sans-serif;
  font-weight: 500;
  margin: -30px 10% 0;
  text-align: center;
}
.insurance h3 {
  margin: 0 0 30px;
}
.insurance-partners {
  display: flex;
  flex-wrap: wrap;
  width: 90vw;
  padding: 2vw 5vw;
}
.insurance-partner {
  flex: 1 1 24%;
  max-width: 24%;
  box-sizing: border-box;
  padding: 2%;
  margin: 0.5%;
  font-size: 2vw;
  background-color: #fefefe;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 2vw;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.insurance-partner:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.insurance-logo {
  width: 50%;
  padding: 0 25%;
  margin: 0 0 30px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.insurance-partner:hover .insurance-logo {
  transform: scale(1.05);
  opacity: 0.9;
}
.insurance-about {
  padding: 2vw 10vw 5vw;
}
.insurance-about h2 {
  text-align: center;
  color: #000;
  font-size: 3.5vw;
  font-weight: 800;
  margin: 0;
  padding: 2vw;
  width: 100%;
}
.insurance-about .disclaimer {
  font-size: 1.5vw;
  line-height: 2vw;
  font-weight: 600;
  text-align: left;
  margin: 0 0 20px 0;
}
.insurance-about h3 {
  color: #000;
  font-size: 2vw;
  font-weight: 400;
  margin: 0 0 50px;
}
.insurance-button-box {
  display: flex; 
  justify-content: center;
}
.insurance-button {
  border-radius: 50px;
  padding: 0.5vw 5vw;
  text-align: center;
  border: 3px solid #428BCA;
  color: #428BCA;
  font-size: 2vw;
  font-weight: 500;
}

.highlight {
  text-decoration: underline;
}
.lowercase {
  text-transform: lowercase;
}

/* SEARCH */

.search-hero {
  background-color: #428BCA;
  padding: 8vw 0 2vw;
  text-align: center;
  color: #fff;
}
.search-results {
  padding: 5vw 10vw;
}
.search-hero h2 {
  font-size: 3vw;
  text-transform: capitalize;
  font-weight: 500;
  margin: 0;
  padding: 20px 0 0;
}
.search-result {
  width: 27%;
  float: left;
  padding: 2%;
  border: 1px solid #efefef;
  border-radius: 10px;
  margin: 1%;
  background-color: #fff;
  text-align: center;
}
.search-result p {
  margin: 0 0 5px;
  font-size: 1.25vw;
}
.search-result p:first-child {
  text-transform: uppercase;
  font-size: 1.75vw;
  font-weight: 600;
}
img.search-insurance {
  width: 40%;
  margin: 0 30% 20px;
}
img.search-certifications {
  width: 40%;
  margin: 0 30% 20px;
}
img.search-location {
  width: 100%;
  margin: 0 0 20px;
  border-radius: 7px;
}




/* FOOTER */

footer {
  width: 90%;
  padding: 5%;
  background-color: #fff;
  position: relative;
}
footer li {
  list-style: none;
}
.footer-1 {
  width: 20%;
  float: left;
}
.footer-2, .footer-3, .footer-6, .footer-7, .footer-8 {
  width: 18%;
  float: left;
}
.footer-4 {
  width: 10%;
  float: left;
}
.footer-5 {
  width: 15%;
  float: left;
}
.footer-title {
  color: #000;
  font: 0.9vw 'Rajdhani', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  margin: 25px 0 0;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 7px 0;
}
.footer-link li, .footer-link li a, .footer-link li a:visited {
  font-size: 1vw;
  color: #428BCA;
  font-weight: 500;
  margin: 5px 0;
  text-decoration: none;
}
.footer-link li a:hover {
  color: #000;
}
.footer-logo {
  width: 40%;
  padding: 5% 40% 5% 20%;
}
.footer-copy {
  width: calc(100% - 20px);
  padding: 20px;
  text-align: center;
  color: #808080;
  font-size: 15px;
  clear: both;
}
.footer-partners {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  margin: 3vw 0;
}
.footer-partner-logo {
  max-width: 8vw;
  margin: 0.5vw 1vw;
  filter: invert(43%) sepia(88%) saturate(0%) hue-rotate(178deg) brightness(93%) contrast(95%);
  transition: filter 0.3s ease;
}

.footer-partner-logo:hover {
  filter: invert(43%) sepia(88%) saturate(300%) hue-rotate(178deg) brightness(93%) contrast(95%);
}


.cleaner {
  clear: both;
  height: 1px;
  font-size: 1px;
  border: none;
  margin: 0;
  padding: 0;
  background: transparent;
  line-height: 1px;
  background-color: none;
}

.desktop { display: block; }
.mobile { display: none; }

/* Hamburger Menu Icon Styling */
.hamburger-menu {
  display: none;
}

.photo-estimate {
  position: relative;
  display: inline-block;
}
#locationButton {
  font: 18px 'Rajdhani', sans-serif;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  background: none;
  border: none;
}
.estimate-list {
  position: absolute;
  background-color: #011733;
  min-width: 90vw;
  box-shadow: 0px 18px 16px 0px rgba(0,0,0,0.5);
  z-index: -1;
  top: -20px;
  left: 50%;
  transform: translate(-50%);
  padding: 75px 5vw 20px;
  text-align: left;
  border: 0.5px solid #428BCA;
  /* transition: opacity 0.1s ease, visibility 0.1s ease; */
  visibility: hidden;
  opacity: 0;
}
.estimate-list.show {
  visibility: visible;
  opacity: 1;
}
.estimate-list a {
  color: #fff;
  padding: 0px;
  text-decoration: none;
  display: block;
  width: calc(25% - 11px);
  float: left;
  border: 0.5px solid #428BCA;
  font-weight: 500;
  font-size: 1.25vw;
  border-radius: 3px;
  height: 5vw;
  margin: 5px;
}
.estimate-list img {
  width: 5vw;
  border-radius: 3px;
  margin-right: 10px;
  float: left;
}
.estimate-link {
  position: absolute;
  line-height: 1.75vw;
  left: 10%;
  top: 10%;
  color: #fff;
  font-size: 2vw;
  text-align: left;
  font-weight: 600;
  width: 80%;
  text-transform: uppercase;
}
.estimate-list a:hover {
  background-color: #000;
}
.show {
  display: block;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  transition: transform 0.2s ease-in-out;
}
.quote-hero {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 6% 0 1%;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #000;
  z-index: 1;
  background-color: #fff;
}
.quote-hero h1 {
  color: #000;
  font-size: 4vw;
  text-align: center;
}
.quote-hero h2 {
  font: 2vw 'Rajdhani', sans-serif;
  line-height: 2vw;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px #000;
  text-transform: uppercase;
  margin: 0;
  padding: 10px 20%;
}
.quote-locations {
  padding: 2vw 10vw;
}
.quote-list {
  display: flex;
  flex-wrap: wrap;
}
.quote p {
  font-size: 21px;
}
.quote-section {
  width: 80vw;
}
.quote-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
.quote-box {
  width: calc(16vw - 1px);
  height: calc(16vw - 1px);
  margin: 0;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  position: relative;
  overflow: hidden;
}
.quote-intro {
  display: flex;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 2vw;
}
.quote-instructions {
  padding: 1vw 0;
  width:100%;
}
.quote-instructions p, .quote-process p {
  font-size: 1.5vw;
  font-weight: 500;
  margin-bottom: 1vw;
}
.quote-process {
  width:100%;
}
.quote-section h2 {
  font-size: 4vw;
  font-weight: 600;
  text-transform: uppercase;
  margin: 60px 0 10px;
  width: 100%;
  text-align: center;
}


#locationButton.active .caret {
  transform: rotate(180deg);
}

/* Optional: Adjust button styles to accommodate caret */
#locationButton {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1300px) {
  .logo { width: 200px }
  .header {
    width: 96%;
    padding: 30px 2% 0;
  }
  .location h3 {
    color: #000;
    font-size: 3vw;
    font-weight: 400;
    margin: 0 4vw 30px;
  }
  .location h4 {
    color: #428BCA;
    font-size: 2vw;
    margin: 30px 0 0;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0 4vw;
  }
  .location h5 {
    color: #000;
    font-size: 2vw;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    float: left;
  }
  .location h6 {
    color: #000;
    font-size: 2vw;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
    float: right;
  }
  .location-about h4 {
    color: #000;
    width: 100%;
    font-size: 1.5vw;
    padding: 0;
    margin: 15px 0 0;
    text-align: left;
  }
}



@media (max-width: 1000px) {
  .estimate-list a {
    width: calc(25% - 11px);
    font-weight: 500;
    font-size: 1.75vw;
    height: 7.5vw;
    margin: 5px;
  }
  .estimate-list img {
    width: 7.5vw;
    border-radius: 3px;
    margin-right: 10px;
    float: left;
  }
  .estimate-link {
    /* line-height: 7.5vw; */
  }
  .quote-hero {
    padding: 20vw 0 5vw;
  }
  .quote-hero h1 {
    font-size: 10vw;
  }
  .quote-hero h2 {
    font-size: 4vw;
    line-height: 4vw;
    margin: 0;
    padding: 5%;
  }
  .quote-box {
    width: calc(16vw - 1px);
    height: calc(16vw - 1px);
    margin: 0;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    position: relative;
    overflow: hidden;
  }
  .header {
    width: 90%;
    padding: 30px 5% 0;
  }
  .button-estimate {
    font-size: 1.35vw;
    line-height: 1.35vw;
    padding: 5px 5px;
    border-radius: 5px;
    border: 1px solid #428BCA;
    position: absolute;
    right: 2vw;
    max-width: 7vw;
    text-align: center;
  }
  .button-estimate img {
    width: 50%;
    margin: 0 0 5px;
  }
}




@media (max-width: 767px) {
  .insurance .disclaimer {
    font: 2.5vw 'Rajdhani', sans-serif;
    font-weight: 500;
    margin: 0 10% 0;
    text-align: center;
  }
  .estimate-list {
    width: calc(90vw - 1px);
    left: -5vw;
    transform: none;
    border: 0;
  }
  .estimate-list a {
    width: calc(50% - 11px);
    font-weight: 500;
    font-size: 3.25vw;
    height: 15vw;
    margin: 5px;
  }
  #locationButton {
    font-size: 15px;
    height: 27px;
  }
  .estimate-list img {
    width: 15vw;
    border-radius: 3px;
    margin-right: 10px;
    float: left;
  }
  .estimate-link {
    line-height: 6vw;
    top: 15%;
    font-size: 6vw;
  }
  .button-estimate {
    font-size: 3vw;
    line-height: 3vw;
    padding: 5px 5px;
    border-radius: 5px;
    border: 1px solid #428BCA;
    position: absolute;
    top: calc(30px + 2vw);
    right: 6vw;
    max-width: 15vw;
    text-align: center;
  }
  .button-estimate img {
    width: 50%;
    margin: 0 0 5px;
  }
}

@media (max-width: 1000px) {
  .fleet-services-container {
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .desktop { display: none; }
  .mobile { display: block; }
  .contact h2 { font-size: 4vw; }
  .hero h1 {
    font: 17vw 'Rajdhani', sans-serif;
    line-height: 13vw;
    font-weight: 800;
  }
  .hero h2 {
    font: 17vw 'Rajdhani', sans-serif;
    line-height: 13vw;
    font-weight: 800;
    margin-top: 20px;
  }
  .topbar {
    height: 30px;
    padding: 11px 5%;
  }
  .topbar-center {
    top: 11px;
    font: 16px 'Rajdhani', sans-serif;
    left: 5%;
    transform: none;
  }
  .topbar-left {
    display: none;
  }
  .logo {
    width: 40vw;
  }
  .header, .header-dark {
    padding: 0 5%;
  }
  /* .fleet-services-box {
    width: calc(50% - 20px);
  } */

  /* HAMBURGER */
  .hamburger-menu {
    cursor: pointer;
    display: block;
    width: 30px;
    height: 24px;
		position: absolute;
		top: 10px;
		right: 20px;
		z-index: 10001;
	}
	.hamburger-menu div {
	    width: 100%;
	    height: 3px;
	    background-color: #fff;
	    margin: 6px 0;
	    transition: 0.25s;
	}
  .header-dark .hamburger-menu div {
    background-color: #000;
  }
  .header-dark .top-nav {
    background-color: #fec216;
  }
  .hamburger-menu.change div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 4px);
  }

  .hamburger-menu.change div:nth-child(2) {
    transform: rotate(45deg) translate(-2.5px, -1px);
  }

  .hamburger-menu.change div:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
  }
  .change {
    position: fixed;
    top: 70px;
  }
  .top-nav {
	float: none;
	position: fixed;
  	text-align: center;
  	margin: 0;
  	background-color: rgba(0,0,0,0.95);
  	width: 100vw;
  	height: 100vh;
  	top:0;
  	left:0;
  	display: none;
  	padding: 20% 0;
  	z-index: 100;
    transform: translate(0%);
  }
  a.top-link {
	  font-size: 9vw;
	  font-weight: 700;
	  letter-spacing: -2px;
	  line-height: 15vw;
  }
	.top-nav-link {
      display: block;
      opacity: 0;
      transition: opacity 0.25s ease-in-out;
      font-size: 10vw;
      font-weight: 500;
      line-height: 15vw;
	}
  .topbar-right {
    width: 35vw;
  }
  .search-results {
    padding: 5vw;
  }
  .search-result p:first-child {
    font-size: 4vw;
  }
  .search-result {
    width: 43%;
  }
  .search-result p {
    font-size: 3vw;
  }
  .search-container {
    height: 23px;
    width: 80%;
  }
  .search-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #428BCA;
    position: absolute;
    top: 3px;
    right: 5px;
  }
  .search-button svg {
    fill: currentColor;
    width: 16px;
    height: 16px;
  }
  .search-input {
    font-size: 16px;
    min-width: 105px;
  }
  .online-quote {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 1vw;
    text-align: center;
    text-transform: uppercase;
    font: 7vw 'Rajdhani', sans-serif;
    font-weight: 500;
    position: relative;
    right: 0;
    top: 50px;
    width: 80vw;
    margin: 0 9vw 20px;
  }
  .book-appointment {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 1vw;
    text-align: center;
    text-transform: uppercase;
    font: 7vw 'Rajdhani', sans-serif;
    font-weight: 500;
    position: relative;
    right: 0;
    top: 50px;
    width: 80vw;
    margin: 0 9vw;
	}
  .header-dark .book-appointment {
    margin: 20px 9vw 0;
  }
	.fade-in {
	    opacity: 1 !important;
	}
  .reviews-box {
    background-color: #f9fafb;
    border: 1px solid #eee;
    border-radius: 5px;
    max-width: 100%;
    margin: 0;
  }

  .home-video {
    background-image: url('/assets/images/citrus-heights_mobile.jpg');
    background-size: cover;
    background-position: center center;
  }
  .video {
    display: none;
  }
  .video-overlay {
    padding: 30vw 0;
  }
  
  .hero .button-location {
    border: 2px solid #fff;
    border-radius: 50px;
    background-color: rgba(0,0,0,0.4);
    font: 4.5vw 'Rajdhani', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 20px;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: 55%;
    width: 70vw;
  }
  .services-split { display: block; }
  .services-left, .services-right {
    width: 80%;

  }
  .btn-services-collision, .btn-services-fleet {
    font: 4vw 'Rajdhani', sans-serif;
    font-weight: 700;
    padding: 7px;
  }
  .home .location-box .location-name  {
    top: 0vw;
    padding: 15px;
    opacity: 1;
    line-height: 4.5vw;
    font-weight: 500;
    font-size: 5vw;
  }
  .home .location-box.see-all .location-name {
    font-size: 5vw;
    line-height: 4.5vw;
    top: 15vw;
  }
  .home .location-box {
    width: 30vw;
    height: 30vw;
    margin: 0;
    border-bottom: 1px solid #aaa;
    border-left: 1px solid #aaa;
    position: relative;
    overflow: hidden;
  }
  .home .location-box:nth-child(3n) {
    border-right: 1px solid #aaa;
  }
  .home .location-box:nth-child(n+1):nth-child(-n+3) {
    border-top: 1px solid #aaa;
  }
  .locations-header h1 {
    font-size: 4vw;
  }
  .locations-header {
    width: 90vw;
    padding: 1vw 2vw;
  }
  .locations-header-subline {
    left: 27vw;
    top: 16vw;
  }
  .location-manager {
    border-radius: 10px;
  }
  .shape-container {
    margin-top: 10px;
  }
  .circle {
    width: 1.25vw;
    height: 1.25vw;
  }
  .line {
    top: 1.25vw;
    bottom: 1.25vw;
    width: 1.5px;
  }
  .home-about {
    padding: 15vw 10vw;
  }
  .home-about-right { display: none; }
  .home-about-learn { font-size: 3vw; }
  img.home-about-people {
    margin: 1vw 0 2vw;
  }
  .home-about-learn {
    margin: 2vw 10vw;
  }
  .home-about h2 {
    font-size: 3vw;
    line-height: 3vw;
  }
  .home-certified-btn {
    font: 4.5vw 'Rajdhani', sans-serif;
    padding: 5px 20px;
    border: 1px solid #fff;
  }
  .footer-partner-logo {
    max-width: 13vw;
  }
  .footer-logo {
    width: 50%;
    padding: 10% 40% 5% 0%;
  }
  .footer-title {
    font: 2.25vw 'Rajdhani', sans-serif;
    font-weight: 600;
  }
  .footer-link li, .footer-link li a, .footer-link li a:visited {
    font-size: 2vw;
  }
  .footer-1, .footer-2, .footer-3 {
    width: 33%;
  }
  .footer-4 { 
    width: 15%; 
    margin-left: 33%;
  }
  .footer-5 { width: 18%; }
  .footer-6 { width: 33%; }

  .locations-hero {
    padding: 20vw 0 5vw;
  }
  .locations-hero h2 {
    font: 14vw 'Rajdhani', sans-serif;
    font-weight: 800;
    line-height: 11vw;
  }
  .locations-map h2 {
    font: 7vw 'Rajdhani', sans-serif;
    line-height: 6vw;
    font-weight: 800;
    -webkit-text-stroke: 1px #fff;
  }
  .locations .location-box {
    width: 46vw;
    height: 46vw;
  }
  .locations .location-box .location-name {
    top: 1vw;
    padding: 20px;
    opacity: 1;
    line-height: 7vw;
    font-weight: 600;
    font-size: 9vw;
  }
  .location-hero {
    padding: 30vw 0 20vw;
  }
  .location-hero h1 {
    font: 10vw 'Rajdhani', sans-serif;
    line-height: 8vw;
    font-weight: 800;
  }
  .location-hero h2 {
    font: 7vw 'Rajdhani', sans-serif;
    line-height: 7vw;
    font-weight: 800;
    margin-top: 0;
  }
  .location-info {
    width: calc(100% - 6vw);
  }
  .location h4 {
    padding: 0 0 0 12vw;
    font-size: 5vw;
  }
  .location h3 {
    padding: 0 0 30px 8vw;
    font-size: 7vw;
  }
  .location h5, .location h6 {
    font-size: 5vw;
  }
  .hours-row {
    width: 82%;
    padding: 2% 8% 2% 12%;
  }
  .location-map {
    width: 100%;
    margin-top: 50px;
  }
  .location-about {
    padding: 10vw 5vw;
  }
  .location-about h4 {
    color: #000;
    width: 100%;
    font-size: 4.5vw;
    padding: 0;
    margin: 15px 0 0;
    text-align: left;
  }
  .location-about h6 {
    font-size: 4.25vw;
  }
  .location-about h5, .location-about h7, .cert-row {
    font-size: 4.5vw;
    font-weight: 500;
  }
  .location-about h3 {
    padding: 0;
    font-size: 4vw;
  }
  .location-about-col-1 {
    width: 48%;
    margin: 0 2% 5% 0;
    float: left;
  }
  .location-about-col-2 {
    width: 48%;
    margin: 0 0% 5% 2%;
    float: left;
  }
  .location-about-col-3 {
    width: 100%;
    margin: 0 0 10%;
    float: left;
  }
  .cert-icon {
    width: 10vw;
  }
  .cert-row {
    width: 84vw;
    padding: 2.5vw 3vw;
    line-height: 10vw;
  }
  .services-hero {
    padding: 20vw 0 5vw;
    height: auto;
    background-image: url('/assets/images/services-hero.jpg');
    background-size: cover;
    background-color: #111;
  }
  .services-hero h1 {
    font: 14vw 'Rajdhani', sans-serif;
    line-height: 11vw;
    font-weight: 800;
    -webkit-text-stroke: 2px #fff;
    margin-top: 20px;
  }
  .collision {
    font-size: 4vw;
    font-weight: 500;
  }
  .collision-hero h3 {
    font-size: 7vw;
    text-transform: uppercase;
    margin: 1.5vw;
    line-height: 9vw;
  }
  .collision-hero {
    height: auto;
    padding: 25vw 0 20vw;
    background-image: url(/assets/images/collision-hero.jpg);
    background-size: cover;
    background-position: center;
  }
  .collision-hero h2 {
    font: 17vw 'Rajdhani', sans-serif;
    line-height: 13vw;
    font-weight: 800;
    margin-top: 0px;
  }
  .collision-services h2 {
    font-size: 9vw;
  }
  .collision h3 {
    font-size: 5vw;
    line-height: 4.5vw;
    text-transform: uppercase;
  }
  .collision-services-container {
    gap: 0;
  }
  .collision-services-box {
    width: 100%;
    padding: 30px 15px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    margin: 20px 0 0;
  }
  .collision-family {
    padding: 15vw 5vw 0vw;
    text-align: center;
    height: 100vh;
  }
  .collision-family h2 {
    font-size: 10vw;
    line-height: 9vw;
  }
  .collision-family p {
    color: #fff;
    font-size: 3.5vw;
    line-height: 5vw;
    font-weight: 500;
  }
  .collision-family h4 {
    font-size: 5vw;
  }

  .fleet-hero {
    background-image: url(/assets/images/fleet-hero.jpg);
    background-size: cover;
    background-position: center bottom;
    height: 55vh;
    padding: 25vw 0 15vw;
  }
  .fleet-hero h2 {
    margin: 20px 0;
  }
  .fleet-hero h3 {
    font-size: 5vw;
    line-height: 4.5vw;
  }
  .fleet-hero h4 {
    font-size: 4vw;
  }
  .fleet-services {
    padding: 5vw;
  }
  .fleet-services-container {
    gap: 10px;
  }
  .fleet-services h2 {
    font-size: 10vw;
  }
  .fleet-services-box {
    font-size: 4vw;
    padding: 25px 10px;
    width: calc(50% - 6vw);
    font-weight: 600;
  }
  .fleet-family {
    padding: 5vw 10vw 60vw;
  }
  .fleet-family h2 {
    font-size: 9vw;
    line-height: 8vw;
  }
  .fleet-family p {
    font-size: 4.5vw;
    line-height: 5.5vw;
  }
  .fleet-different {
    padding: 15vw 10vw;
  }
  .fleet-different h2 {
    font-size: 7.5vw;
    line-height: 7vw;
  }
  .fleet-different p {
    font-size: 4.5vw;
    line-height: 5.5vw;
    font-weight: 500;
  }
  .fleet-values {
    background-position: 75%;
    padding: 1vw 5vw 5vw;
  }
  .fleet-values h2 {
    font-size: 10vw;
    -webkit-text-stroke: 1px #fff;
  }
  .fleet-values h4 {
    font-size: 4vw;
    line-height: 4vw;
    margin: 0 0 10px;
  }
  .fleet-values h5 {
    font-size: 5vw;
  }
  .fleet-values li {
    font-size: 4vw;
    line-height: 5.25vw;
  }
  .insurance-hero {
    padding: 20vw 0 10vw;
  }
  .insurance h1 {
    font: 14vw 'Rajdhani', sans-serif;
    line-height: 11vw;
    font-weight: 800;
    -webkit-text-stroke: 2px #000;
    margin-top: 20px;
  }
  .insurance-partners {
    align-items: center;
    text-align: center;
  }
  .insurance-partner {
    flex: 1 1 48%;
    padding: 5% 2%;
    font-size: 3.5vw;
    line-height: 3.5vw;
    font-weight: 600;
    max-width: 48%;
    min-height: 150px;
  }
  .insurance-logo {
    width: 60%;
    padding: 0 20%;
    margin: 0 0 15px;
  }
  .insurance-about {
    padding: 10vw;
  }
  .insurance-about h2 {
    font-size: 10vw;
    line-height: 9vw;
  }
  .insurance-about .disclaimer {
    font-size: 3.5vw;
    line-height: 4.5vw;
  }
  .insurance-hero img {
    width: 35vw;
  }
  .insurance-about h3 {
    font-size: 4vw;
    text-align: center;
    margin: 20px 0 30px;
  }
  .insurance-button {
    font-size: 5vw;
    padding: 0.5vw 10vw;
    margin: 0 0 20px;
    background-color: #fff;
  }
  .quote-hero {
    padding: 20vw 0 5vw;
  }
  .quote-hero h1 {
    font-size: 14vw;
  }
  .quote-hero h2 {
    font-size: 6vw;
    line-height: 6vw;
    margin: 0;
    padding: 5%;
    -webkit-text-stroke: 0;
    color: rgba(0, 0, 0, 0.5);
  }
  .quote-section {
    width: 90vw;
  }
  .quote-box {
    width: calc(45vw - 1px);
    height: calc(45vw - 1px);
    margin: 0;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    position: relative;
    overflow: hidden;
  }
  .quote-locations {
    padding: 2vw 5vw;
  }
  .quote-intro {
    display: block;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 2vw;
  }
  .quote-instructions p, .quote-process p {
    font-size: 4vw;
    line-height: 4vw;
  }
  .quote-process {
    width:100%;
  }
  .quote-section h2 {
    font-size: 9vw;
    line-height: 8vw;
    font-weight: 600;
    text-transform: uppercase;
    margin: 60px 0 10px;
    width: 100%;
    text-align: center;
  }
  .certifications-hero {
    padding: 20vw 0 10vw;
  }
  .certifications-hero h2 {
    font: 14vw 'Rajdhani', sans-serif;
    line-height: 11vw;
    font-weight: 800;
    -webkit-text-stroke: 2px #fff;
    margin-top: 20px;
  }
  .certifications .certification-box {
    width: 30vw;
    height: 30vw;
  }
  .certifications .certification-name {
    top: 0;
    font-size: 5vw;
    line-height: 4.25vw;
    padding: 10px;
    opacity: 1;
  }
  .certifications .certification-box:nth-child(3n) {
    border-right: 1px solid #aaa;
  }
  .certifications-grid {
    margin: 20px 0 10vw;
  }
  .certification-hero {
    padding: 15vw 0 5vw;
  }
  .certification-hero img {
    width: 25vw;
  }
  .certification li {
    font-size: 3.5vw;
  }
  .contact-hero {
    padding: 20vw 0 10vw;
  }
  .contact-hero h2 {
    font-size: 10vw;
    line-height: 9vw;
    -webkit-text-stroke: 1px #fff;
  }
  .contact-form {
    padding: 5vw;
    margin: 0;
    width: calc(100% - 10vw);
    border: 0;
}
  .contact-label {
    width: 100%;
    font-size: 3.5vw;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
  }
  .contact-form-group {
    flex-wrap: wrap;
  }
  .contact-input {
    font-size: 3.5vw;
    min-width: 30%;
  }
  .contact-form-group-box {
    gap: 15px;
  }
  .contact-method-group label {
    font-weight: 600;
    font-size: 3.5vw;
  }
  .contact-field {
    min-height: 100px;
  }
  .background-video {
    display: none;
  }
  .careers-nav {
    width: 100px;
    background-color: rgba(255, 255, 255, 0);
    --tw-backdrop-blur: blur(4px);
    backdrop-filter: var(--tw-backdrop-blur);
    -webkit-backdrop-filter: var(--tw-backdrop-blur);
  }
  .careers-nav ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    margin-left: 10px;
  }
  .careers-hero {
    width: 55vw;
    height: calc(100vh - 30px);
    position: relative;
    padding: 0 0 0 45vw;
    background-image: url(/assets/images/careers-bg-mobile.jpg);
    background-size: cover;
    background-position: left bottom;
  }
  .careers-hero h2 {
    font: 15vw 'Rajdhani', sans-serif;
    line-height: 13vw;
    font-weight: 800;
    position: absolute;
    top: 57%;
    left: 29%;
    width: 71%;
  }
  .careers-passion {
    width: 85vw;
    height: calc(100vh - 30vw);
    padding: 20vw 5vw 10vw 10vw;
    background-position: 78%;
  }
  .careers-passion img {
    height: 30vw;
    float: left;
    margin: 0 20px 10vw 0;
  }
  .careers-passion h1 {
    font: 10vw 'Rajdhani', sans-serif;
    line-height: 8vw;
    font-weight: 600;
  }
  .careers-passion p {
    font-size: 4vw;
    line-height: 6vw;
    font-weight: 400;
    position: absolute;
    left: 120px;
    width: calc(100vw - 160px);
  }
  .careers-why {
    width: 85vw;
    min-height: calc(100vh - 25vw);
    padding: 20vw 5vw 5vw 10vw;
  }
  .careers-why h1 {
    font: 17vw 'Rajdhani', sans-serif;
    line-height: 13vw;
    font-weight: 600;
    margin-bottom: 4vh;
  }
  .careers-why-box {
    width: 65vw;
    padding: 2vw 0;
    clear: both;
    margin-left: 17vw;
  }
  .careers-why-box img {
    width: 15vw;
    margin: 0 15px 0 0;
  }
  .careers-why h4 {
    font-size: 5.5vw;
    font-weight: 600;
    margin: 1.5vw 0 0;
    line-height: 5vw;
  }
  .careers-why p {
    font-size: 3.75vw;
    line-height: 5vw;
    font-weight: 400;
    margin: 8px 0;
  }
  .careers-values {
    width: 85vw;
    min-height: calc(100vh - 10vw);
    padding: 5vw 5vw 5vw 10vw;
  }
  .careers-values h2 {
    color: #fff;
    font-size: 11vw;
    font-weight: 400;
    line-height: 9vw;
  }
  .careers-values img {
    border-radius: 15px;
    width: 70vw;
    margin: 10vw 0 15vw 16vw;
  }
  .careers-benefits {
    width: 85vw;
    min-height: calc(100vh - 25vw);
    padding: 20vw 5vw 5vw 10vw;
    overflow: hidden;
  }
  .careers-benefits::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: -1;
    background-image: url(/assets/images/careers-benefits-mobile.jpg);
    background-size: cover;
    mix-blend-mode: multiply;
  }
  .careers-benefits h1 {
    font: 20vw 'Rajdhani', sans-serif;
    line-height: 15vw;
    font-weight: 600;
  }
  .careers-benefits p {
    font-size: 4vw;
    line-height: 5vw;
    font-weight: 400;
    margin-left: 16vw;
  }
  .careers-positions {
    width: 85vw;
    min-height: calc(100vh - 20vw);
    padding: 15vw 5vw 5vw 10vw;
  }
  .careers-positions h1 {
    font: 16vw 'Rajdhani', sans-serif;
    line-height: 13vw;
    font-weight: 600;
  }
  .careers-positions h3 {
    font-size: 5.5vw;
    margin: 35px 0 0 18vw;
    padding: 0;
    line-height: 5.5vw;
  }
  .careers-positions p {
    font-size: 4vw;
    line-height: 5vw;
    font-weight: 400;
    margin: 2vw 0 10vw 18vw;
  }
  .careers-apply {
    width: 87vw;
    min-height: calc(100vh - 20vw);
    padding: 20vw 3vw 10vw 10vw;
  }
  .careers-apply h1 {
    font: 12vw 'Rajdhani', sans-serif;
    line-height: 10vw;
    font-weight: 600;
  }
  .careers-apply p {
    font-size: 5.5vw;
    line-height: 5vw;
    font-weight: 400;
    margin-left: 15vw;
  }
  .careers-form {
    background-color: #fff;
    padding: 0;
    border-radius: 3vw;
    overflow: hidden;
    width: 72vw;
    margin-left: 15vw;
  }
  .partner-hero {
    padding: 22vw 0 12vw;
  }
  .partner-hero h1 {
    font: 10vw 'Rajdhani', sans-serif;
    line-height: 9vw;
    font-weight: 800;
  }
  .partner-info {
    width: calc(100% - 6vw);
    text-align: center;
    margin-bottom: 30px;
  }
  .partner-info p {
    font-size: 4vw;
    line-height: 5.5vw;
    margin-bottom: 5vw;
    text-align: left;
  }
  .partner-map {
    width: 100%;
  }
  .button-partner {
    border: 2px solid #011733;
    color: #011733;
    border-radius: 50px;
    background-color: #fff;
    font: 5vw 'Rajdhani', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px 20px;
    width: auto;
    margin: 0 auto;
  }
  .search-hero {
    background-color: #428BCA;
    padding: 18vw 0 4vw;
    text-align: center;
    color: #fff;
  }
}

@media (max-width: 480px) {
  .fleet-services-box {
    width: calc(50% - 6vw);
  }
  .home-certified-logo {
    flex: 0 0 20vw;
    margin: 3vw 4vw;
  }
  .home-certified-btn {
    margin: 10vw auto;
  }
  .footer-partner-logo {
    max-width: 29vw;
  }
  .footer-title {
    font: 3.5vw 'Rajdhani', sans-serif;
    font-weight: 600;
  }
  .footer-link li, .footer-link li a, .footer-link li a:visited {
    font-size: 3vw;
  }
  .footer-1 {
    width: 50%;
  }
  .footer-2, .footer-3 {
    width: 25%;
  }
  .footer-4 { 
    width: 20%; 
    margin-left: 0;
  }
  .footer-5 { width: 30%; }
  .footer-6 { width: 50%; }
}

p.ard {
font-weight: 500;
border: 1.5px solid #444;
width: 50%;
border-radius: 4px;
padding: 3px 0px;
text-align: center;
font-size: 16px;
background: #FFFFE3;
}
span.ard-num {
    font-weight: 800;
}