* {
  scroll-padding-top: 5rem;
}

body {
  overflow-x: hidden;
  font-family: "Poppins Regular" !important;
}
body h2 {
  text-transform: uppercase;
}

@font-face {
  font-family: "Poppins Regular";
  font-display: swap;
  font-style: normal;
  font-weight: normal;
  src: local("Poppins Regular"),
    url("../webfonts/Poppins-Regular.woff") format("woff");
}
@font-face {
  font-family: "Poppins Bold";
  font-display: swap;
  font-style: normal;
  font-weight: normal;
  src: local("Poppins Bold"),
    url("../webfonts/Poppins-Bold.woff") format("woff");
}
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #9e9e9e;
}

::-webkit-scrollbar-thumb {
  background: #04d7a2;
}

.navbar {
  background-color: #fff;
}
.navbar .navbar-toggler {
  color: #04d7a2;
}
.navbar .navbar-toggler:focus {
  outline: none;
}
.navbar .navbar-nav .nav-item .nav-link {
  color: #1d214e;
  transition: all 0.3s ease-in-out;
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: #04d7a2;
}

.hero-section {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
}
@media (max-width: 768px) {
  .hero-section {
    background-position: 70%;
  }
}
.hero-section .container {
  height: 100vh;
}
.hero-section .container .holder {
  background-color: rgba(29, 33, 78, 0.2);
}
@media (max-width: 768px) {
  .hero-section .container .holder {
    background-color: rgba(75, 75, 75, 0.596);
    width: 100% !important;
  }
}
.hero-section .container .holder .hero-title {
  color: #1d214e;
}
.hero-section .container .holder .hero-desc {
  color: rgb(255, 255, 255);
}
@media (max-width: 768px) {
  .hero-section .container .holder .hero-desc {
    color: rgb(255, 255, 255);
  }
}
.hero-section .container .holder a {
  background-color: #04d7a2;
  color: #1d214e;
  border: none;
  transition: all 0.3s ease-in-out;
}
.hero-section .container .holder a:hover {
  background-color: #1d214e;
  color: #04d7a2;
}

.models {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.models .models-title {
  color: #04d7a2;
}
.models li {
  color: rgb(0, 0, 0);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.models li:hover {
  transform: translateX(0.5rem);
}
.models svg {
  color: #04d7a2;
}

.section-1 {
  background: linear-gradient(to left, #1d214e 20%, #fff 10%);
  position: relative;
}
@media (max-width: 768px) {
  .section-1 {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
  }
}
.section-1 .content .section-title {
  color: #04d7a2;
}
.section-1 .content .desc {
  color: #000;
}

.section-2 {
  background: linear-gradient(to right, #04d7a2 20%, #fff 10%);
  position: relative;
}
@media (max-width: 768px) {
  .section-2 {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
  }
}
.section-2 .content .section-2-title {
  color: #1d214e;
}
.section-2 .content .section-2-desc {
  color: #000;
}

.section-3 .holder .title {
  color: #04d7a2;
}
.section-3 .holder .desc {
  color: #000;
}

.section-discount {
  background-color: #04d7a2;
}
.section-discount .content .section-title {
  color: #1d214e;
}
.section-discount .content .offer {
  border: 0.2em solid #1d214e;
  color: #1d214e;
  transition: all 0.3s ease-in-out;
}
.section-discount .content .offer:hover {
  box-shadow: 0.5rem 0.5rem 1rem rgb(0, 0, 0);
}
.section-discount .coupon-img-holder {
  cursor: pointer;
}
.section-discount .coupon {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: rgba(29, 29, 29, 0.596);
  cursor: pointer;
}
.section-discount .coupon img {
  border-radius: 5px;
  border: 1px solid #eee;
  position: absolute;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 40%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .section-discount .coupon img {
    width: 90%;
  }
}

.cars-slider {
  width: 100%;
  height: 200px;
  padding: 20px 0;
}
.cars-slider .marquee {
  white-space: nowrap;
  height: 100%;
  overflow: hidden;
  -webkit-animation: marquee 50s linear infinite alternate;
  animation: marquee 50s linear infinite alternate;
}
.cars-slider .marquee:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
@-webkit-keyframes marquee {
  0% {
    text-indent: 27.5em;
  }
  100% {
    text-indent: -225em;
  }
}
@keyframes marquee {
  0% {
    text-indent: 27.5em;
  }
  100% {
    text-indent: -225em;
  }
}
.cars-slider .marquee img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 200px;
  height: 80px;
  margin: 25px;
}
@media only screen and (max-width: 768px) {
  .cars-slider .marquee img {
    margin: 15px;
  }
}

.section-contact {
  background-color: #eee;
}
.section-contact .title {
  color: #04d7a2;
}
.section-contact form .form-control:focus {
  border-color: #1d214e;
  box-shadow: none;
}
form.CUS input.subject {
  display: none;
}
legend {
  color: #1d214e;
  font-weight: 600;
  background-color: rgba(#fff, 1);
  border: 1px solid #04d7a2;
  padding: 0.5rem;
  width: fit-content;
  float: none !important;
  margin: auto !important;
}
.service-date {
  border: 1px solid rgba(#1d214e, 0.5);
}
.service-time {
  border: 1px solid rgba(#1d214e, 0.5);
  padding: 0.3rem !important;
}
.section-contact form .btn {
  background-color: #04d7a2;
  color: #fff;
}
.section-contact form .btn:hover {
  background-color: #fff;
  color: #04d7a2;
}

.about {
  background-color: rgb(27, 27, 27);
}
.about .title {
  color: #04d7a2;
}
.about .details .mail {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.about .details .mail a {
  text-decoration: none;
  color: inherit;
}
.about .about-contact-title {
  color: #fff;
}
.about .service-locations a {
  background-color: #1d214e;
  color: #fff;
  margin: 0.3rem;
}
.about .service-locations a:hover {
  background-color: #04d7a2;
  color: #1d214e;
}

footer {
  background-color: #0f0f0f;
}
footer .social svg {
  color: rgb(150, 150, 150);
  margin: 0.25rem;
}
footer .social svg:hover {
  color: #fff;
}

.btn-top {
  position: fixed;
  bottom: 1rem;
  left: 5rem;
  font-size: 2em;
  cursor: pointer;
  display: none;
  color: orange;
}
@media (max-width: 768px) {
  .btn-top {
    font-size: 1.5em;
    left: 85%;
    bottom: 1.2rem;
  }
} /*# sourceMappingURL=main.css.map */
