:root{
    --blue:#2A375A;
    --teal: #405C74;
    --lightColor:#e7e6e6;
}
*{
    padding: 0;
    margin: 0;
}

body{
    background-color: var(--lightColor);
    }

.navbar .container-fluid {
  padding: 5px;
}

.nav-item {
  position: relative;
  padding: 0px 5px;
}
.nav-item a {
  transition: all 0.6s;
  background-color: transparent;
  border-radius: 20px;
}
.nav-item .active {
  color: var(--teal);
}
.nav-item a:hover {
  background-color: var(--teal);
  color: var(--lightColor);
}

.navbar::after {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: 0 10px 10px 0px rgba(90, 77, 71, 0.8);
}

.heroSection{
    background-image: url(../images/blured.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;

}

.contentHeroSection{
    position: relative;
    border-radius: 3%;
    margin: 50px;
    background-color: var(--teal);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
}

  
.contentHeroSection h1
{
  font-weight: bold;
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #092c5f 0%,
    #C4ECAD 29%,
    #9F907A 67%,
    #487288 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}



.page {
 animation: slide 3s forwards;
}

@keyframes slide {
  0%   { transform: translate(0px,100px); }
  100% { transform: translate(0px,0px); }
}

.atimatedImg{
 animation: animatedImg 6s forwards;
}

@keyframes animatedImg {
  0%   { opacity: 0;}
  100% { opacity: 1; }
}


.button-33 {
  animation: btn 5s forwards;
  background-color: #61A99E;;
  border-radius: 100px;
  box-shadow: rgba(169, 204, 182, 0.2) 0 -25px 18px -14px inset,rgba(44, 187, 99, .15) 0 1px 2px,rgba(44, 187, 99, .15) 0 2px 4px,rgba(44, 187, 99, .15) 0 4px 8px,rgba(10, 44, 23, 0.15) 0 8px 16px,rgba(41, 80, 56, 0.15) 0 16px 32px;
  color:var(--lightColor);
  cursor: pointer;
  display: inline-block;
  font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif;
  padding: 7px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 25px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-33:hover {
  box-shadow: rgba(44, 187, 132, 0.35) 0 -25px 18px -14px inset,rgba(185, 187, 44, 0.25) 0 1px 2px,rgba(44,187,99,.25) 0 2px 4px,rgba(44,187,99,.25) 0 4px 8px,rgba(187, 185, 44, 0.25) 0 8px 16px,rgba(44,187,99,.25) 0 16px 32px;
  transform: scale(1.1) rotate(-1deg);
}


@keyframes btn {
  0%   { transform: translate(0px,100px); }
  100% { transform: translate(0px,0px); }
}

.reveal {
    position: relative;
    opacity: 0;
  }

 
  .reveal.active {
    opacity: 1;
  }
  .active.fade-bottom {
    animation: fade-bottom 1s ease-in;
  }
  .active.fade-left {
    animation: fade-left 1s ease-in;
  }
  .active.fade-right {
    animation: fade-right 1s ease-in;
  }
  @keyframes fade-bottom {
    0% {
      transform: translateY(50px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes fade-left {
    0% {
      transform: translateX(-100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes fade-right {
    0% {
      transform: translateX(100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }




.HourImgs{
    display: flex;
  }

.HourImgs img{
  transition: all 0.3s ease-in-out;
}

.image-container:hover img{
  transform: scale(1.3);
}

.image-container .overlay{
  transition: all 0.3s;
}

.image-container:hover .overlay{
  transform: translateY(-70px);
  color: white;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}

.image-container .overlay{
  color: #61A99E;
}


.two h2 {
  text-transform: capitalize;
  position: relative;
}
.two h2:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  content: "";
  background-color: #61A99E;
  left:48%; 
}

.two h2 p {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 3em;
  padding-left: 0.25em;
  color: rgba(0, 0, 0, 0.4);
}


.Hours span{
  color: #61a99e;
  animation: mymove 5s infinite;
}

@keyframes mymove {
  50% {transform: rotate(180deg);}
}


.numOne{
  color: var(--lightColor);
  background-image: url("../images/background.webp");
  /* background-image: url("../images/background-teal.webp"); */
  background-attachment: fixed;
  background-size: cover;
  /* background-position: center center; */
}

.numOneAuto{
  background-image: url("../images/automotive-background.webp");

}

.keyReplacementNumOne{
  background-image: url("../images/key-replacement-background.webp");

}

.ingnitionNumOne{
  background-image: url("../images/ignition-key-repair-background.webp");

}

.transponderNumOne{
  background-image: url("../images/transponder-key-background.webp");
}

.title h3, .title h2 {
  font-weight: 800;
  letter-spacing: 3px;
}

.title h3 {
  font-size: 3rem;
  color: rgb(120, 187, 187);
}

.title h2 {
  font-size: 1.5rem;
  color: rgb(233, 231, 231);
  font-weight: bold;
} 

.elcoupon img{
  transition: all 0.5s;
}

.elcoupon img:hover{
  transform:scale(1.1) ;
}




.footer{
  color: black;
  background-image: url(../images/blured.webp);
  background-size: cover;
  background-position: center bottom;
}

.footer2{
  border-top: 1px solid var(--lightColor);
  background-image: url(../images/blured.webp);
  background-size: cover;
  background-position: center bottom;

}

.mediaIcons a{
  color: black;
  transition: all 0.4s;
  text-decoration: unset;
}

.mediaIcons a:hover{
  color: #E1E9AD;
}

 
.serviceAreas a,
.zipCodes a{
 text-decoration: none;
 border-radius: 5px;
 background-color: #708B86;
 color: rgb(3, 3, 32);
 padding: 5px;
 margin: 5px;
 transition: all 0.5s;
 width: unset;
 transition: all 0.2s;
}

.serviceAreas a:hover,
.zipCodes a:hover{
  background-color: var(--teal);
 color: var(--lightColor);
 transform: scale(1.1);
 
}


.contactUs .formSection{
background-color: var(--teal);
border: 2px solid #61A99E;
border-radius: 70px;
}   


.contactUs input , select{
width: 100%;
font-size: 16px;
color: #fff;
margin-bottom: 10px;
border: none;
border-bottom: 2px solid #C4ECAD;
outline: none;
background: transparent;
}


 form.CUS input.subject { display: none; }