* {
  scroll-padding-top: 5rem;
}
.progress {
  height: 3px;
  width: 0%;
  background-color: #00a900;
  position: fixed;
  top: 0;
  left: 0;
  animation: progress 1s linear;
}
@keyframes progress {
  to {
    background-color: #00a900;
    width: 100%;
  }
}
:root * {
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -1s);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
.nav-icon-6 {
  width: 35px;
  height: 30px;
  margin: 10px 10px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.nav-icon-6 span {
  background-color: #111820;
  position: absolute;
  border-radius: 2px;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 4px;
}
.nav-icon-6 span:nth-child(1) {
  top: 0px;
  left: 0px;
}
.nav-icon-6 span:nth-child(2) {
  top: 13px;
  left: 0px;
}
.nav-icon-6 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
}
.nav-icon-6:not(.open):hover span:nth-child(1) {
  transform: scaleY(1.2);
  left: -5px;
}
.nav-icon-6:not(.open):hover span:nth-child(2) {
  transform: rotate(5deg) scaleY(1.1);
}
.nav-icon-6:not(.open):hover span:nth-child(3) {
  transform: scaleY(1.2);
  left: 5px;
}
.nav-icon-6.open span:nth-child(1) {
  transform: rotate(45deg) scaleX(0.7);
  top: 13px;
  left: -8px;
}
.nav-icon-6.open span:nth-child(2) {
  transform: scale(0);
  transition-duration: 50ms;
}
.nav-icon-6.open span:nth-child(3) {
  transform: rotate(-45deg) scaleX(0.7);
  top: 13px;
  left: 7px;
}
@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");
}
body {
  overflow-x: hidden;
  font-family: "Poppins Regular" !important;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #111820;
}
::-webkit-scrollbar-thumb {
  background: #00a900;
}
.line {
  width: 25%;
  height: 0.2rem;
  background-color: #00a900;
}
.top-bar {
  background-color: #111820;
}
.top-bar .phone a {
  color: #eee;
}
.top-bar .hours {
  color: #eee;
}
.top-bar svg {
  color: #00a900;
}
.navbar {
  background-color: #fff;
  color: #111820;
  border-bottom: 0.3rem solid #111820;
}
.navbar .navbar-toggler {
  color: #111820;
  transition: all 0.3s ease-in-out;
  border: none;
}
.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar .navbar-toggler:focus[aria-expanded="true"] {
  color: #00a900;
}
.navbar .navbar-nav .nav-item .nav-link {
  color: #111820;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  overflow: hidden;
}
.navbar .navbar-nav .nav-item .nav-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 0.2rem;
  position: relative;
  left: -120%;
  background-color: #00a900;
  transition: all 0.3s ease-in-out;
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: #00a900;
}
.navbar .navbar-nav .nav-item .nav-link:hover::after {
  left: 0;
}
.hero-section {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
}
@media (max-width: 768px) {
  .hero-section {
    background-position: 25%;
  }
}
.hero-section .container {
  height: 100vh;
}
.hero-section .container .holder .typewriter span {
  overflow: hidden;
  border-right: 0.15em solid #00a900;
  white-space: nowrap;
  margin: 0 auto;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink-caret {
  from,
  to {
    border-color: rgba(0, 0, 0, 0);
  }
  50% {
    border-color: #00a900;
  }
}
@media (max-width: 768px) {
  .hero-section .container .holder {
    width: 100% !important;
  }
}
.hero-section .container .holder span {
  color: #111820;
}
.hero-section .container .holder .hero-title {
  color: #00a900;
  text-shadow: 3px 2px #111820;
  transition: all 0.3s ease-in-out;
  font-size: 3rem !important;
}
.hero-section .container .holder .hero-title span {
  color: #fff;
}
@media (max-width: 768px) {
  .hero-section .container .holder .hero-title {
    font-size: 2.5rem !important;
  }
}
.hero-section .container .holder a {
  background-color: #00a900;
  color: #fff;
  border: none;
}
.hero-section .container .holder .hero-desc {
  color: #111820;
}
@media (max-width: 768px) {
  .hero-section .container .holder .hero-desc {
    width: 100% !important;
    font-size: 1rem !important;
  }
}
.intro {
  background-color: #111820;
  height: 5rem;
}
@media (max-width: 768px) {
  .intro {
    height: auto;
    text-align: center;
    width: 100% !important;
  }
}
.intro .question {
  color: #fff;
}
@media (max-width: 768px) {
  .intro .question {
    height: 3rem !important;
    line-height: 3rem;
  }
}
.intro .book {
  background-color: #00a900;
  line-height: 5rem;
  color: #111820;
}
.section-1 .content .bg-text {
  color: #00a900;
  font-weight: 800;
}
@media (max-width: 768px) {
  .section-1 .content .bg-text {
    font-size: 1rem;
  }
}
.section-1 .content .section-title {
  color: #111820;
}
.section-1 .content .section-title span {
  color: #00a900;
}
.section-1 .content .btn {
  background-color: #111820;
  color: #fff;
  border: none;
}
.counter {
  background-color: #111820;
}
.counter p {
  color: #f8f8f8;
}
.counter #counter {
  max-width: 100%;
  list-style: none;
}
.counter #counter li {
  text-align: center;
}
.counter #counter span {
  color: #00a900;
}
.counter #counter svg {
  color: #fff;
}
.section-2 {
  position: relative;
}
.section-2 .content .bg-text {
  color: #00a900;
  font-weight: 800;
}
@media (max-width: 768px) {
  .section-2 .content .bg-text {
    font-size: 1rem;
  }
}
.section-2 .content .section-2-title {
  color: #111820;
}
.section-2 .content .btn {
  background-color: #111820;
  color: #fff;
  border: none;
}
.section-2 .custom-shape-divider-bottom-1677670170 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.section-2 .custom-shape-divider-bottom-1677670170 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 58px;
}
.section-2 .custom-shape-divider-bottom-1677670170 .shape-fill {
  fill: #111820;
}
.slider img {
  border-radius: 50%;
}
.slider h2 {
  text-transform: capitalize;
  color: #00a900;
}
.slider p {
  color: #111820;
}
.slider svg {
  color: #f1cf0c;
}
.section-discount {
  background-color: #111820;
}
.section-discount .content span {
  color: #fff;
}
.section-discount .content .section-title {
  color: #00a900;
}
.section-discount .content .desc {
  color: #fff;
}
.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%;
  }
}
.section-contact .title {
  color: #111820;
}
form.CUS input.subject {
  display: none;
}
legend {
  color: #00a900;
  font-weight: 600;
  background-color: rgba(#fff, 1);
  border: 1px solid #111820;
  padding: 0.5rem;
  width: fit-content;
  float: none !important;
  margin: auto !important;
}
.service-date {
  border: 1px solid rgba(#111820, 0.5);
}
.service-time {
  border: 1px solid rgba(#111820, 0.5);
  padding: 0.3rem !important;
}
.section-contact form ::-moz-placeholder {
  color: #293a80;
}
.section-contact form ::placeholder {
  color: #293a80;
}
.section-contact form .form-control {
  background-color: rgba(0, 0, 0, 0);
  border: 0.1rem solid #111820;
}
.section-contact form .form-control:focus {
  border-color: #111820;
  box-shadow: none;
}
.section-contact form .btn {
  background-color: #111820;
  color: #fff;
}
.section-contact .map {
  width: 100%;
  height: 100%;
}
.cars-slider .row div {
  width: 7rem;
  margin: 0.5rem;
}
.cars-slider .row div img {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  transition: all 0.2s ease-in-out;
}
.cars-slider .row div img:hover {
  filter: none;
  -webkit-filter: grayscale(0);
}
.about {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}
.about .title {
  color: #fff;
}
.about .details .mail {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.about .details .mail a {
  text-decoration: none;
  color: inherit;
}
.about .about-contact-title {
  color: #00a900;
}
.about .service-locations a {
  background-color: #111820;
  color: #fff;
  border: none;
  margin: 0.3rem;
}
footer {
  background-color: #111820;
  border-top: 0.3rem solid #00a900;
}
footer .social svg {
  color: #969696;
  margin: 0.25rem;
}
footer .social svg:hover {
  color: #00a900;
}
.btn-top {
  position: fixed;
  bottom: 1rem;
  left: 5rem;
  font-size: 2em;
  cursor: pointer;
  display: none;
  color: #00a900;
  stroke: #111820;
}
@media (max-width: 768px) {
  .btn-top {
    font-size: 1.5em;
    left: 85%;
    bottom: 1.2rem;
  }
}
.hvr-shutter-out-horizontal {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #111820 !important;
  border: 2px solid #fff !important;
  transition-property: color;
  transition-duration: 0.3s;
}
.hvr-shutter-out-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #00a900;
  transform: scaleX(0);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.hvr-shutter-out-horizontal:hover,
.hvr-shutter-out-horizontal:focus,
.hvr-shutter-out-horizontal:active {
  color: #fff !important;
}
.hvr-shutter-out-horizontal:hover:before,
.hvr-shutter-out-horizontal:focus:before,
.hvr-shutter-out-horizontal:active:before {
  transform: scaleX(1);
} /*# sourceMappingURL=main.css.map */
