.hero-slider {
  position: relative;
  width: 100%;
  height: 900px;
  background: #000000;
  overflow: hidden;
}
.slider-container {
  position: relative;
  height: 100%;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover !important;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.slide-content {
  max-width: 1270px;
  padding: 30px;
  position: relative;
  z-index: 2;
}
img.we-do-not-sell-parts-badge {
  position: relative;
  top: 50px;
}
.slide-content h1 {
  color: #77fc3d;
  font-family: 'American Captain', sans-serif;
  font-size: 6rem;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0rem;
  text-shadow: 
	/*-1px -1px 0 #000,
	 1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000,
    -2px  0px 0 #000,
     2px  0px 0 #000,
     0px -2px 0 #000,
     0px  2px 0 #000,*/
     1px 1px 1px #000000;
}
.slide-content p {
  color: #ffffff;
  font-family: 'Eurostar Black Extended', sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 0px;
  margin-top: -1.5rem;
  margin-bottom: 2rem;
}
.slide-content .btn i {
  font-size: 24px;
  margin-right: 5px;
  position: relative;
  top: 2px;
}
.slide-content .btn {
  padding: 10px 20px;
  background-color: #77fc3d;
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  font-family: 'Eurostar Black Extended', sans-serif;
  font-size: 18px;
  font-weight: bold;
  font-style: normal;
  letter-spacing: 0px;
  text-transform: uppercase;
  transition: background 0.3s ease;
}
.slide-content .sms.btn {
  padding: 10px 20px;
  background-color: #77fc3d;
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  margin-left: 10px;
  font-family: 'Eurostar Black Extended', sans-serif;
  font-size: 18px;
  font-weight: bold;
  font-style: normal;
  letter-spacing: 0px;
  text-transform: uppercase;
  transition: background 0.3s ease;
}
.slide-content .contact.btn {
  padding: 10px 20px;
  background-color: #9c9c9c;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  margin-left: 10px;
  font-family: 'Eurostar Black Extended', sans-serif;
  font-size: 18px;
  font-weight: bold;
  font-style: normal;
  letter-spacing: 0px;
  text-transform: uppercase;
  transition: background 0.3s ease;
}
.slide-content .btn:hover {
  background-color: #9c9c9c;
  color: #ffffff;
  text-decoration: none !important;
}
.slide-content .sms.btn:hover {
  background-color: #9c9c9c;
  color: #ffffff;
  text-decoration: none !important;
}
.slide-content .contact.btn:hover {
  background-color: #77fc3d;
  color: #000000;
  text-decoration: none !important;
}
.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 3;
  pointer-events: none;
}
.slider-nav button {
  font-size: 3rem;
  background: rgba(0, 0, 0, 1);
  border: none;
  color: #77fc3d;
  border-radius: 50%;
  padding: 0px;
  line-height: 0px;
  cursor: pointer;
  transition: background 0.3s ease;
  pointer-events: auto;
}
.slider-nav button:hover {
  background: #ffffff;
  color: #9c9c9c;
}
.slider-nav button.prev {
  position: relative;
  left: -20px;
}
.slider-nav button.next {
  position: relative;
  right: 22px;
}
.slider-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.slider-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #9c9c9c;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
.slider-dots .dot.active {
  background-color: #77fc3d;
}
@media (max-width: 768px) {
  .slide-content h1 { font-size: 2rem; }
  .slide-content p { font-size: 1rem; }
}