.map {
  width: 100%;
  height: 100%;
}
:root {
  --primary-color: #141a34;
  --secondary-color: #279eff;
  --third-color: #00854a;
  --line-color: #0059a3;
  --background-color: #fff;
  --text-color: #fff;
  --nav-color: #fff;
  --nav-text: #141a34;
  --title-color: #141a34;
  --hero-bg: #ffffff59;
  --hero-title: #00854a;
  --nav-icon: #141a34;
  --hero-text: #fff;
  --btn-bg-color: #141a34;
  --btn-text: #fff;
  --btn-hover: #00854a;
  --btn-text-hover: #fff;
  --btn-dark-text-hover: #fff;
  --dark-light: #141a34;
  --line-color-title: #00854a;
  --line-color: #00854a;
  --nav-border: #141a34;
  --nav-progress: #00854a;
  --number: #00854a;
  --counter-text: #141a34;
  --card-content: #141a34;
  --card-title: #141a34;
  --card-bg: #141a34;
  --card-title-dark: #7ec3f1;
  --card-content-dark: #fff;
  --estimate: #00854a;
  --contact-us: #141a34;
  --dropdown-text: #141a34;
  --dropdown-hover: #00854a;
  --active-color: #141a34;
  --nav-text-hover: #fff;
  --service-bg: #fff;
  --service-title: #141a34;
  --service-desc: #141a34;
  --link-color: #141a34;
  --service-bg-hover: #00854a;
  --link-color-hover: #00854a;
}
.dark {
  --primary-color: #fff;
  --secondary-color: #279eff;
  --nav-color: #141a34;
  --nav-text: #fff;
  --background-color: #141a34;
  --title-color: #fff;
  --hero-bg: #00000059;
  --hero-title: #00854a;
  --hero-text: #fff;
  --btn-bg-color: #279eff;
  --btn-text: #fff;
  --btn-text-hover: #141a34;
  --dark-light: #fff;
  --line-color-title: #00854a;
  --nav-border: #00854a;
  --nav-progress: #fff;
  --number: #fff;
  --counter-text: #fff;
  --card-content: #fff;
  --card-title: #7ec3f1;
  --card-bg: #fff;
  --card-title-dark: #141a34;
  --card-content-dark: #141a34;
  --estimate: #fff;
  --contact-us: #00854a;
  --active-color: #fff;
  --nav-text-hover: #00854a;
  --service-bg: #00854a;
  --service-bg-hover: #fff;
  --service-title: #fff;
  --service-desc: #141a34;
  --nav-icon: #fff;
  --link-color: #fff;
}
* {
  scroll-padding-top: 5rem;
  font-family: "Roboto";
}
.progress {
  height: 3px;
  width: 0%;
  background-color: var(--nav-progress);
  position: fixed;
  top: 0;
  left: 0;
  animation: progress 1s linear;
}
@keyframes progress {
  to {
    background-color: var(--nav-progress);
    width: 100%;
  }
}
:root * {
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -1s);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
.nav-icon-1 {
  width: 30px;
  height: 30px;
  position: relative;
  transition: 0.1s;
  margin: 10px 10px;
  cursor: pointer;
  display: inline-block;
}
.nav-icon-1 span {
  width: 5px;
  height: 5px;
  background-color: #fff;
  display: block;
  border-radius: 50%;
  position: absolute;
}
.nav-icon-1:hover span {
  transform: scale(1.2);
  transition: 350ms cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.nav-icon-1 span:nth-child(1) {
  left: 0;
  top: 0;
}
.nav-icon-1 span:nth-child(2) {
  left: 12px;
  top: 0;
}
.nav-icon-1 span:nth-child(3) {
  right: 0;
  top: 0;
}
.nav-icon-1 span:nth-child(4) {
  left: 0;
  top: 12px;
}
.nav-icon-1 span:nth-child(5) {
  position: absolute;
  left: 12px;
  top: 12px;
}
.nav-icon-1 span:nth-child(6) {
  right: 0px;
  top: 12px;
}
.nav-icon-1 span:nth-child(7) {
  left: 0px;
  bottom: 0px;
}
.nav-icon-1 span:nth-child(8) {
  position: absolute;
  left: 12px;
  bottom: 0px;
}
.nav-icon-1 span:nth-child(9) {
  right: 0px;
  bottom: 0px;
}
.nav-icon-1.open {
  transform: rotate(180deg);
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.nav-icon-1.open span {
  border-radius: 50%;
  transition-delay: 200ms;
  transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.nav-icon-1.open span:nth-child(2) {
  left: 6px;
  top: 6px;
}
.nav-icon-1.open span:nth-child(4) {
  left: 6px;
  top: 18px;
}
.nav-icon-1.open span:nth-child(6) {
  right: 6px;
  top: 6px;
}
.nav-icon-1.open span:nth-child(8) {
  left: 18px;
  bottom: 6px;
}
body {
  background-color: var(--background-color);
  transition: all 0.3s ease-in-out;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v20-latin-regular.eot");
  src: local("Roboto"), local("Roboto-Regular"),
    url("../fonts/roboto-v20-latin-regular.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/roboto-v20-latin-regular.woff2") format("woff2"),
    url("../fonts/roboto-v20-latin-regular.woff") format("woff"),
    url("../fonts/roboto-v20-latin-regular.ttf") format("truetype"),
    url("../fonts/roboto-v20-latin-regular.svg#Roboto") format("svg");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-v20-latin-500.eot");
  src: local("Roboto Medium"), local("Roboto-Medium"),
    url("../fonts/roboto-v20-latin-500.eot?#iefix") format("embedded-opentype"),
    url("../fonts/roboto-v20-latin-500.woff2") format("woff2"),
    url("../fonts/roboto-v20-latin-500.woff") format("woff"),
    url("../fonts/roboto-v20-latin-500.ttf") format("truetype"),
    url("../fonts/roboto-v20-latin-500.svg#Roboto") format("svg");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v20-latin-700.eot");
  src: local("Roboto Bold"), local("Roboto-Bold"),
    url("../fonts/roboto-v20-latin-700.eot?#iefix") format("embedded-opentype"),
    url("../fonts/roboto-v20-latin-700.woff2") format("woff2"),
    url("../fonts/roboto-v20-latin-700.woff") format("woff"),
    url("../fonts/roboto-v20-latin-700.ttf") format("truetype"),
    url("../fonts/roboto-v20-latin-700.svg#Roboto") format("svg");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/roboto-v20-latin-900.eot");
  src: local("Roboto Black"), local("Roboto-Black"),
    url("../fonts/roboto-v20-latin-900.eot?#iefix") format("embedded-opentype"),
    url("../fonts/roboto-v20-latin-900.woff2") format("woff2"),
    url("../fonts/roboto-v20-latin-900.woff") format("woff"),
    url("../fonts/roboto-v20-latin-900.ttf") format("truetype"),
    url("../fonts/roboto-v20-latin-900.svg#Roboto") format("svg");
  font-display: swap;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #b8e2fa;
}
::-webkit-scrollbar-thumb {
  background: var(--line-color);
}
.line {
  width: 25%;
  height: 0.2rem;
  background-color: var(--line-color-title);
  transition: all 0.3s ease-in-out;
}
.mood {
  background-color: var(--dark-light);
  position: fixed;
  z-index: 100 !important;
  top: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  left: 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.mood img {
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .mood {
    top: 1.2rem;
    left: 70%;
    width: 2.5rem;
  }
}
.top-bar {
  background-color: var(--primary-color);
}
.top-bar .phone a {
  color: #eee;
}
.top-bar .hours {
  color: #eee;
}
.top-bar svg {
  color: var(--secondary-color);
}
.navbar {
  background-color: var(--nav-color);
  transition: all 0.3s ease-in-out;
  border-bottom: 0.3rem solid var(--nav-border);
}
.navbar .navbar-toggler {
  color: #fff;
  transition: all 0.3s ease-in-out;
  border: none;
}
.navbar .navbar-toggler span {
  background-color: var(--nav-icon);
}
.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar .navbar-toggler:focus[aria-expanded="true"] {
  color: var(--secondary-color);
}
.navbar .navbar-nav .nav-item .nav-link {
  color: var(--nav-text);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  display: inline-block;
  border-radius: 3rem;
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--nav-text-hover);
  background-color: var(--active-color);
}
.navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--nav-text-hover);
  background-color: var(--active-color);
}
.navbar .navbar-nav .dropdown-menu li a {
  color: var(--dropdown-text);
}
.navbar .navbar-nav .dropdown-menu li a:hover {
  background-color: var(--dropdown-hover);
  color: #fff;
}
.navbar .navbar-nav .dropdown-menu li a.active {
  background-color: var(--dropdown-hover) !important;
  color: #fff;
}
.float {
  height: 3rem;
  padding: 0.5rem;
  background-color: var(--primary-color);
  transform: rotate(-90deg);
  position: fixed;
  top: 50%;
  left: -67px;
  color: var(--contact-us);
  z-index: 10;
  cursor: pointer;
  border-radius: 0 0 2rem 2rem;
  border: 2px solid var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.float:hover {
  background-color: #eee;
  left: -37px;
  color: var(--contact-us);
}
@media (max-width: 922px) {
  .float {
    display: none;
  }
}
.hero-section {
  height: 100vh;
  background-image: url("../assets/hero.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 992px) {
  .hero-section {
    background-position: 60%;
  }
}
.hero-section .container {
  position: relative;
}
.hero-section .container .holder {
  position: absolute;
  top: 70%;
  transform: translateY(50%);
  width: 50%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .hero-section .container .holder {
    width: 90% !important;
  }
}
.hero-section .container .holder .emergency {
  color: var(--hero-text);
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.hero-section .container .holder .emergency .line {
  width: 40%;
  height: 0.1rem;
  background-color: var(--hero-title);
  display: inline-block;
}
@media (max-width: 992px) {
  .hero-section .container .holder .emergency .line {
    width: 20%;
  }
}
.hero-section .container .holder .hero-title {
  color: var(--hero-title);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .hero-section .container .holder .hero-title {
    font-size: 2rem !important;
  }
}
.hero-section .container .holder a {
  background-color: var(--btn-hover);
  color: var(--btn-text);
  border: none;
  transition: all 0.3s ease-in-out;
  border-radius: 2rem;
}
.hero-section .container .holder a:hover {
  background-color: var(--btn-hover);
  transform: translateX(0.3rem);
}
.hero-section .container .holder .hero-desc {
  color: var(--hero-text);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .hero-section .container .holder .hero-desc {
    width: 100% !important;
    font-size: 1rem !important;
  }
}
.hero-residential-section {
  height: 100vh;
  background-image: url("../assets/hero-residential.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 992px) {
  .hero-residential-section {
    background-position: 60%;
  }
}
.hero-residential-section .container {
  position: relative;
}
.hero-residential-section .container .holder {
  position: absolute;
  top: 70%;
  transform: translateY(50%);
  width: 50%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .hero-residential-section .container .holder {
    width: 90% !important;
  }
}
.hero-residential-section .container .holder .emergency {
  color: var(--hero-text);
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.hero-residential-section .container .holder .emergency .line {
  width: 40%;
  height: 0.1rem;
  background-color: var(--hero-title);
  display: inline-block;
}
@media (max-width: 992px) {
  .hero-residential-section .container .holder .emergency .line {
    width: 20%;
  }
}
.hero-residential-section .container .holder .hero-title {
  color: var(--hero-title);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .hero-residential-section .container .holder .hero-title {
    font-size: 2rem !important;
  }
}
.hero-residential-section .container .holder a {
  background-color: var(--btn-hover);
  color: var(--btn-text);
  border: none;
  transition: all 0.3s ease-in-out;
  border-radius: 2rem;
}
.hero-residential-section .container .holder a:hover {
  background-color: var(--btn-hover);
  transform: translateX(0.3rem);
}
.hero-residential-section .container .holder .hero-desc {
  color: var(--hero-text);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .hero-residential-section .container .holder .hero-desc {
    width: 100% !important;
    font-size: 1rem !important;
  }
}
.hero-commercial-section {
  height: 100vh;
  background-image: url("../assets/hero-commercial.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 992px) {
  .hero-commercial-section {
    background-position: 60%;
  }
}
.hero-commercial-section .container {
  position: relative;
}
.hero-commercial-section .container .holder {
  position: absolute;
  top: 70%;
  transform: translateY(50%);
  width: 50%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .hero-commercial-section .container .holder {
    width: 90% !important;
  }
}
.hero-commercial-section .container .holder .emergency {
  color: var(--hero-text);
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.hero-commercial-section .container .holder .emergency .line {
  width: 40%;
  height: 0.1rem;
  background-color: var(--hero-title);
  display: inline-block;
}
@media (max-width: 992px) {
  .hero-commercial-section .container .holder .emergency .line {
    width: 20%;
  }
}
.hero-commercial-section .container .holder .hero-title {
  color: var(--hero-title);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .hero-commercial-section .container .holder .hero-title {
    font-size: 2rem !important;
  }
}
.hero-commercial-section .container .holder a {
  background-color: var(--btn-hover);
  color: var(--btn-text);
  border: none;
  transition: all 0.3s ease-in-out;
  border-radius: 2rem;
}
.hero-commercial-section .container .holder a:hover {
  background-color: var(--btn-hover);
  transform: translateX(0.3rem);
}
.hero-commercial-section .container .holder .hero-desc {
  color: var(--hero-text);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .hero-commercial-section .container .holder .hero-desc {
    width: 100% !important;
    font-size: 1rem !important;
  }
}
.hero-automotive-section {
  height: 100vh;
  background-image: url("../assets/hero-automotive.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 992px) {
  .hero-automotive-section {
    background-position: 60%;
  }
}
.hero-automotive-section .container {
  position: relative;
}
.hero-automotive-section .container .holder {
  position: absolute;
  top: 70%;
  transform: translateY(50%);
  width: 50%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .hero-automotive-section .container .holder {
    width: 90% !important;
  }
}
.hero-automotive-section .container .holder .emergency {
  color: var(--hero-text);
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.hero-automotive-section .container .holder .emergency .line {
  width: 40%;
  height: 0.1rem;
  background-color: var(--hero-title);
  display: inline-block;
}
@media (max-width: 992px) {
  .hero-automotive-section .container .holder .emergency .line {
    width: 20%;
  }
}
.hero-automotive-section .container .holder .hero-title {
  color: var(--hero-title);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .hero-automotive-section .container .holder .hero-title {
    font-size: 2rem !important;
  }
}
.hero-automotive-section .container .holder a {
  background-color: var(--btn-hover);
  color: var(--btn-text);
  border: none;
  transition: all 0.3s ease-in-out;
  border-radius: 2rem;
}
.hero-automotive-section .container .holder a:hover {
  background-color: var(--btn-hover);
  transform: translateX(0.3rem);
}
.hero-automotive-section .container .holder .hero-desc {
  color: var(--hero-text);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .hero-automotive-section .container .holder .hero-desc {
    width: 100% !important;
    font-size: 1rem !important;
  }
}
.hero-rekey-section {
  height: 100vh;
  background-image: url("../assets/hero-rekey.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 992px) {
  .hero-rekey-section {
    background-position: 60%;
  }
}
.hero-rekey-section .container {
  position: relative;
}
.hero-rekey-section .container .holder {
  position: absolute;
  top: 70%;
  transform: translateY(50%);
  width: 50%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .hero-rekey-section .container .holder {
    width: 90% !important;
  }
}
.hero-rekey-section .container .holder .emergency {
  color: var(--hero-text);
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.hero-rekey-section .container .holder .emergency .line {
  width: 40%;
  height: 0.1rem;
  background-color: var(--hero-title);
  display: inline-block;
}
@media (max-width: 992px) {
  .hero-rekey-section .container .holder .emergency .line {
    width: 20%;
  }
}
.hero-rekey-section .container .holder .hero-title {
  color: var(--hero-title);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .hero-rekey-section .container .holder .hero-title {
    font-size: 2rem !important;
  }
}
.hero-rekey-section .container .holder a {
  background-color: var(--btn-hover);
  color: var(--btn-text);
  border: none;
  transition: all 0.3s ease-in-out;
  border-radius: 2rem;
}
.hero-rekey-section .container .holder a:hover {
  background-color: var(--btn-hover);
  transform: translateX(0.3rem);
}
.hero-rekey-section .container .holder .hero-desc {
  color: var(--hero-text);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .hero-rekey-section .container .holder .hero-desc {
    width: 100% !important;
    font-size: 1rem !important;
  }
}
.hero-transponder-section {
  height: 100vh;
  background-image: url("../assets/hero-transponder.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 992px) {
  .hero-transponder-section {
    background-position: 60%;
  }
}
.hero-transponder-section .container {
  position: relative;
}
.hero-transponder-section .container .holder {
  position: absolute;
  top: 70%;
  transform: translateY(50%);
  width: 50%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .hero-transponder-section .container .holder {
    width: 90% !important;
  }
}
.hero-transponder-section .container .holder .emergency {
  color: var(--hero-text);
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.hero-transponder-section .container .holder .emergency .line {
  width: 40%;
  height: 0.1rem;
  background-color: var(--hero-title);
  display: inline-block;
}
@media (max-width: 992px) {
  .hero-transponder-section .container .holder .emergency .line {
    width: 20%;
  }
}
.hero-transponder-section .container .holder .hero-title {
  color: var(--hero-title);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .hero-transponder-section .container .holder .hero-title {
    font-size: 2rem !important;
  }
}
.hero-transponder-section .container .holder a {
  background-color: var(--btn-hover);
  color: var(--btn-text);
  border: none;
  transition: all 0.3s ease-in-out;
  border-radius: 2rem;
}
.hero-transponder-section .container .holder a:hover {
  background-color: var(--btn-hover);
  transform: translateX(0.3rem);
}
.hero-transponder-section .container .holder .hero-desc {
  color: var(--hero-text);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .hero-transponder-section .container .holder .hero-desc {
    width: 100% !important;
    font-size: 1rem !important;
  }
}
.hero-locked-out-section {
  height: 100vh;
  background-image: url("../assets/hero-locked-out.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 992px) {
  .hero-locked-out-section {
    background-position: 60%;
  }
}
.hero-locked-out-section .container {
  position: relative;
}
.hero-locked-out-section .container .holder {
  position: absolute;
  top: 70%;
  transform: translateY(50%);
  width: 50%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .hero-locked-out-section .container .holder {
    width: 90% !important;
  }
}
.hero-locked-out-section .container .holder .emergency {
  color: var(--hero-text);
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.hero-locked-out-section .container .holder .emergency .line {
  width: 40%;
  height: 0.1rem;
  background-color: var(--hero-title);
  display: inline-block;
}
@media (max-width: 992px) {
  .hero-locked-out-section .container .holder .emergency .line {
    width: 20%;
  }
}
.hero-locked-out-section .container .holder .hero-title {
  color: var(--hero-title);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .hero-locked-out-section .container .holder .hero-title {
    font-size: 2rem !important;
  }
}
.hero-locked-out-section .container .holder a {
  background-color: var(--btn-hover);
  color: var(--btn-text);
  border: none;
  transition: all 0.3s ease-in-out;
  border-radius: 2rem;
}
.hero-locked-out-section .container .holder a:hover {
  background-color: var(--btn-hover);
  transform: translateX(0.3rem);
}
.hero-locked-out-section .container .holder .hero-desc {
  color: var(--hero-text);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .hero-locked-out-section .container .holder .hero-desc {
    width: 100% !important;
    font-size: 1rem !important;
  }
}
.hero-change-lock-section {
  height: 100vh;
  background-image: url("../assets/hero-change-lock.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 992px) {
  .hero-change-lock-section {
    background-position: 60%;
  }
}
.hero-change-lock-section .container {
  position: relative;
}
.hero-change-lock-section .container .holder {
  position: absolute;
  top: 70%;
  transform: translateY(50%);
  width: 50%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .hero-change-lock-section .container .holder {
    width: 90% !important;
  }
}
.hero-change-lock-section .container .holder .emergency {
  color: var(--hero-text);
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.hero-change-lock-section .container .holder .emergency .line {
  width: 40%;
  height: 0.1rem;
  background-color: var(--hero-title);
  display: inline-block;
}
@media (max-width: 992px) {
  .hero-change-lock-section .container .holder .emergency .line {
    width: 20%;
  }
}
.hero-change-lock-section .container .holder .hero-title {
  color: var(--hero-title);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .hero-change-lock-section .container .holder .hero-title {
    font-size: 2rem !important;
  }
}
.hero-change-lock-section .container .holder a {
  background-color: var(--btn-hover);
  color: var(--btn-text);
  border: none;
  transition: all 0.3s ease-in-out;
  border-radius: 2rem;
}
.hero-change-lock-section .container .holder a:hover {
  background-color: var(--btn-hover);
  transform: translateX(0.3rem);
}
.hero-change-lock-section .container .holder .hero-desc {
  color: var(--hero-text);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .hero-change-lock-section .container .holder .hero-desc {
    width: 100% !important;
    font-size: 1rem !important;
  }
}
.hero-key-replacement-section {
  height: 100vh;
  background-image: url("../assets/hero-key-replacement.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 992px) {
  .hero-key-replacement-section {
    background-position: 60%;
  }
}
.hero-key-replacement-section .container {
  position: relative;
}
.hero-key-replacement-section .container .holder {
  position: absolute;
  top: 70%;
  transform: translateY(50%);
  width: 50%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .hero-key-replacement-section .container .holder {
    width: 90% !important;
  }
}
.hero-key-replacement-section .container .holder .emergency {
  color: var(--hero-text);
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.hero-key-replacement-section .container .holder .emergency .line {
  width: 40%;
  height: 0.1rem;
  background-color: var(--hero-title);
  display: inline-block;
}
@media (max-width: 992px) {
  .hero-key-replacement-section .container .holder .emergency .line {
    width: 20%;
  }
}
.hero-key-replacement-section .container .holder .hero-title {
  color: var(--hero-title);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .hero-key-replacement-section .container .holder .hero-title {
    font-size: 2rem !important;
  }
}
.hero-key-replacement-section .container .holder a {
  background-color: var(--btn-hover);
  color: var(--btn-text);
  border: none;
  transition: all 0.3s ease-in-out;
  border-radius: 2rem;
}
.hero-key-replacement-section .container .holder a:hover {
  background-color: var(--btn-hover);
  transform: translateX(0.3rem);
}
.hero-key-replacement-section .container .holder .hero-desc {
  color: var(--hero-text);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .hero-key-replacement-section .container .holder .hero-desc {
    width: 100% !important;
    font-size: 1rem !important;
  }
}
.our-service {
  position: relative;
  transform: translateY(-4rem);
}
.our-service .service {
  background-color: var(--service-bg);
  transition: all 0.3s ease-in-out;
}
.our-service .service .content .title {
  color: var(--service-title);
  transition: all 0.3s ease-in-out;
}
.our-service .service .content .desc {
  color: var(--service-desc);
  transition: all 0.3s ease-in-out;
}
.our-service .service:hover {
  background-color: var(--service-bg-hover);
}
.our-service .service:hover .title {
  color: var(--service-bg);
}
.section-1 .content .bg-text {
  color: var(--secondary-color);
  font-weight: 800;
}
@media (max-width: 768px) {
  .section-1 .content .bg-text {
    font-size: 1rem;
  }
}
.section-1 .content .section-title {
  color: var(--title-color);
  transition: all 0.3s ease-in-out;
}
.section-1 .content .section-title span {
  color: var(--secondary-color);
}
.section-1 .content .desc {
  color: var(--nav-text);
  transition: all 0.3s ease-in-out;
}
.section-1 .content .btn {
  background-color: var(--btn-hover);
  color: var(--btn-text);
  border: none;
  transition: all 0.3s ease-in-out;
}
.section-1 .content .btn:hover {
  transform: translateX(1rem);
  background-color: var(--btn-hover);
}
.why-choose-us .title {
  color: var(--title-color);
  transition: all 0.3s ease-in-out;
}
.why-choose-us .title span {
  color: var(--secondary-color);
  background-color: var(--primary-color);
}
.why-choose-us .card {
  height: 15rem;
  width: 15rem;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 15%;
  transition: all 0.3s ease-in-out !important;
  position: relative;
  overflow: hidden;
}
.why-choose-us .card img {
  width: 60%;
}
.why-choose-us .card h5 {
  color: var(--primary-color);
  transition: all 0.3s ease-in-out !important;
}
.why-choose-us .card .bg-color {
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.why-choose-us .card:hover .bg-color {
  width: 22rem;
  height: 22rem;
  background-color: var(--primary-color);
}
.why-choose-us .card:hover h5 {
  color: #fff;
}
.counter p {
  color: var(--number);
  transition: all 0.3s ease-in-out;
}
.counter #counter {
  list-style: none;
}
.counter #counter li {
  text-align: center;
  display: block;
}
.counter #counter span {
  color: var(--number);
  transition: all 0.3s ease-in-out;
}
.counter #counter p {
  color: var(--counter-text);
}
.section-2 {
  position: relative;
  background-color: var(--background-color);
  transition: all 0.3s ease-in-out;
}
.section-2 .content .bg-text {
  color: var(--secondary-color);
  font-weight: 800;
}
@media (max-width: 768px) {
  .section-2 .content .bg-text {
    font-size: 1rem;
  }
}
.section-2 .content .section-2-title {
  color: var(--title-color);
  transition: all 0.3s ease-in-out;
}
.section-2 .content .section-2-desc {
  color: var(--nav-text);
  transition: all 0.3s ease-in-out;
}
.section-2 .content .btn {
  background-color: var(--btn-hover);
  color: var(--btn-text);
  border: none;
  transition: all 0.3s ease-in-out;
}
.section-2 .content .btn:hover {
  transform: translateX(1rem);
  background-color: var(--btn-hover);
}
.testimonial .holder {
  height: auto;
}
.testimonial .holder .card {
  border-radius: 2rem;
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
}
.testimonial .holder .card:hover .bg {
  bottom: -3rem;
  left: 0;
}
.testimonial .holder .card:hover span {
  color: var(--primary-color);
}
.testimonial .holder .card:hover .btn {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}
.testimonial .holder .card span {
  color: var(--secondary-color);
  position: relative;
  z-index: 2;
  transition: all 0.5s ease-in-out;
}
.testimonial .holder .card p {
  color: #eee;
  position: relative;
  z-index: 2;
}
.testimonial .holder .card .btn {
  background-color: var(--secondary-color);
  position: relative;
  z-index: 2;
  color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.testimonial .holder .card .btn:hover {
  background-color: #eee;
  color: var(--primary-color);
}
.testimonial .holder .card .bg {
  position: absolute;
  width: 220%;
  height: 220%;
  border-radius: 50%;
  background-color: var(--secondary-color);
  z-index: 1;
  bottom: -200%;
  left: 0;
  transition: all 0.5s ease-in-out;
}
.testimonial .coupon-holder .coupon-img-holder {
  cursor: pointer;
}
.testimonial .coupon-holder .coupon {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 20;
  background-color: rgba(29, 29, 29, 0.596);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.testimonial .coupon-holder .coupon img {
  border-radius: 5px;
  border: 1px solid #eee;
  position: absolute;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 35%;
  transform: translate(-50%, -50%);
}
@media (max-width: 992px) {
  .testimonial .coupon-holder .coupon img {
    width: 75vw;
  }
}
.slider img {
  max-width: 8rem;
}
@media (max-width: 992px) {
  .slider img {
    max-width: 3rem;
  }
}
.slider h2 {
  text-transform: capitalize;
  color: var(--secondary-color);
}
.slider p {
  color: var(--primary-color);
}
.slider svg {
  color: #f1cf0c;
}
.section-3 .content span {
  color: #fff;
}
.section-3 .content .section-title {
  color: var(--title-color);
  transition: all 0.3s ease-in-out;
}
.section-3 .content .desc {
  color: var(--nav-text);
  transition: all 0.3s ease-in-out;
}
.section-3 .content a {
  background-color: var(--btn-hover);
  color: var(--btn-text);
  transition: all 0.3s ease-in-out;
}
.section-3 .content a:hover {
  transform: translateX(1rem);
  color: var(--btn-text);
  background-color: var(--btn-hover);
}
.section-3 .img-holder .service {
  color: #fff;
  cursor: pointer;
}
.section-3 .img-holder .service span {
  color: #fad017;
}
.section-3 .img-holder .service span:hover {
  color: var(--secondary-color);
}
.section-4 img {
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
}
.section-4 img:hover {
  filter: grayscale(0%);
}
.brand-section .title {
  color: var(--title-color);
  transition: all 0.3s ease-in-out;
}
.brand-section .brands {
  background-color: #fff;
}
.brand-section .brands .list-brand li {
  height: 4rem;
  width: 4rem;
  padding: 0.5rem;
}
.brand-section .brands .list-brand li img {
  filter: grayscale(100%);
}
.brand-section a {
  color: var(--link-color);
  transition: all 0.3s ease-in-out;
}
.brand-section a:hover {
  color: var(--link-color-hover);
}
.section-contact {
  background-image: url(../assets/contact-us.webp);
  background-position: 80%;
  background-repeat: no-repeat;
  background-size: cover;
}
form.CUS input.subject {
  display: none;
}
legend {
  color: #fff;
  font-weight: 600;
  background-color: rgba(#fff, 1);
  padding: 0.5rem;
  width: fit-content;
  float: none !important;
  margin: auto !important;
}
.service-date {
  border: 1px solid rgba(var(--btn-hover), 0.5);
}
.service-time {
  border: 1px solid rgba(var(--btn-hover), 0.5);
  padding: 0.3rem !important;
}
.section-contact .title {
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.section-contact form ::-moz-placeholder {
  color: gray;
}
.section-contact form ::placeholder {
  color: gray;
}
.section-contact form .form-control {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.section-contact form .form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: none;
}
.section-contact form .btn {
  background-color: var(--btn-hover);
  color: var(--btn-text);
  border: none;
  transition: all 0.3s ease-in-out;
}
.section-contact form .btn:hover {
  background-color: var(--btn-text);
  color: var(--btn-hover);
}
.section-contact .zipcodes {
  color: #fff;
}
.section-contact .zipcodes-list {
  color: #5f5f5f;
  font-size: 1rem;
}
.section-contact .service-locations button {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  margin: 0.3rem;
}
.section-contact .service-title {
  color: var(--primary-color);
}
.marquee {
  width: 100%;
  padding: 1rem;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  animation: marquee 50s linear infinite;
  color: #fff;
}
.marquee:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% {
    text-indent: 27.5em;
  }
  100% {
    text-indent: -105em;
  }
}
.footer {
  background-color: #000;
  color: #fff;
}
.footer .service-location li {
  width: 50%;
  float: left;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.footer .service-location li:hover {
  color: green;
}
.footer .social span {
  color: #fff;
  cursor: pointer;
  margin: 0.25rem;
}
.footer .social span:hover {
  color: green;
}
.footer .small-line {
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.btn-top {
  position: fixed;
  bottom: 1rem;
  left: 2rem;
  font-size: 2em;
  cursor: pointer;
  display: none;
  color: var(--secondary-color);
  stroke: var(--primary-color);
}
@media (max-width: 768px) {
  .btn-top {
    width: 2rem;
    height: 2rem;
    left: 5%;
    bottom: 1.2rem;
  }
}
main .not-found {
  width: 100%;
  height: 50vh;
  padding-top: 2em;
}
main .not-found img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 35%;
  margin: 0 auto;
  display: block;
}
@media only screen and (max-width: 992px) {
  main .not-found img {
    width: 50%;
    transform: translateY(40%);
  }
}
main .not-found-btn {
  position: absolute;
  text-decoration: none;
  padding: 10px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 10px;
  width: 200px;
  margin: 0 auto;
  display: block;
  text-align: center;
  bottom: 10%;
  right: calc(50% - 100px);
}
@media only screen and (max-width: 992px) {
  main .not-found-btn {
    bottom: 50%;
  }
} /*# sourceMappingURL=main.css.map */
