/*
Theme Name: Garage MLR Theme
Theme URI: https://garage-mlr.com
Author: Ken Hyler
Description: Custom WordPress theme for Garage MLR
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: automotive, responsive, garage
Text Domain: garage-mlr
*/



/* ============================================== */
/*          NAVIGATION STYLES                     */
/* ============================================== */

  .navigation-wrapper {
    z-index: 99999999;
  }
  .top-nav-left-links a {
  font-family: "Smooch Sans";
  font-size: 1.25rem;
  margin: 0 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.slant-link {
  display: inline-block;
  transform: skew(-17deg);
  text-decoration: none;
  padding: 0.5rem 1.3rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  line-height: 75px;
  position: relative;
  border-left: 2px solid #222;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
letter-spacing: 2px;
font-family: 'Smooch Sans', sans-serif;

  /*letter-spacing: 1px;
  font-size: 1em;
  old nav styles
  */
}
.slant-link:hover {
  background-color: #b91c1c; /* Tailwind's red-600 */
  color: #fff;

  text-shadow: 2px 2px 0px black;
}
.slant-link .icon {
  transform: skew(10deg);
}
.slant-link:hover .icon svg {
 /*fill: #fff;*/
}
.slant-link.active {
  background-color: #870000;
  color: #fff;
  text-shadow: 2px 2px 0px black;
  /* text-transform: lowercase; */
}

.slant-link:hover::before,
.slant-link.active::before {
  content: ' ';
  width: 100%;
  height: 5px;
  bottom: 0px;
  left: 0px;
  position: absolute;
  background-color: #570000;
  transition: all 0.3s ease;
  /*text-shadow: 2px 2px 0px black;*/
}
.logo-a {
  padding: 0;
  top: 1.2rem;
}
.logo-a::after {
  content: " ";
  width: calc(100% + 110px);
  height: 120%;
  background: black;

  position: absolute;
  top: 14px;
  z-index: -2;
  left: -50px;
  transform: skew(-28deg); 
}
.bg-neutral-111 {
  background-color: #111111;
}

/*
    nav {
      font-family: 'Arial', sans-serif;
    }

    nav ul li ul {
      display: none;
      position: absolute;
      background-color: #fff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      list-style: none;
      z-index: 1000;
      left: -130px;
    }

nav ul li ul li {
  margin: 0;
  min-width: 320px;
  border-bottom: 1px solid #c0c0c0;
}
    nav ul li ul li:last-child {
      border-bottom: none;
    }

    nav ul li ul li a {
      text-decoration: none;
      color: #c9c9c9;
      display: block;
      transition: color 0.3s ease, background-color 0.3s ease;
    }

    nav ul li ul li a:hover {
      color: #fff;
      background-color: #b91c1c;
    }

    nav ul li:hover ul {
      display: block; 
    }

    nav ul li ul {
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    nav ul li:hover ul {
      opacity: 1;
      visibility: visible;
    }


*/


#general-mechanic h2 {
  line-height: 6.2rem;
}
#general-mechanic p.text-lg {
  font-size: 1.25rem;
}
#general-mechanic ul li {
  font-size: 1.25rem;
}



@media (max-width: 768px) {

  .logo-a {
    top: 0;
  }
  .logo-a::after {
    display: none;
  }
  .navigation-wrapper {
  z-index: 99999999;
  background: black;
  }
  nav#primary-navigation {
  margin-top: 0 !important;
  height: 75px;
  }
nav#primary-navigation a.logo-a img {
  max-height: 60px !important;
  top: -7px;
  position: relative;
}

.mobile-menu-section {
  position: relative;
  padding-top: 25px;
  padding-bottom: 25px;
}

nav#primary-navigation > div.justify-between {
  min-height: 75px;
}
nav#primary-navigation div.mobile-menu-section ul li {
  text-align: center;
  text-transform: uppercase;
  font-family: "Smooch Sans";
  font-size: 1.8rem;
  line-height: 1.95rem;
}
nav#primary-navigation div.mobile-menu-section ul li a {
  padding: 0.5rem;
}


[aria-expanded="true"] {
  background: #870000;
  width: 100% !important;
  display: block;
}


section#general-mechanic {
  padding: 3rem 0;
}



}



.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Centers the button vertically */
  background-color: #000; /* Background for visibility */
}

.custom-button {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff0000; /* Red text */
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  position: relative;
  background: none;
  border: none;
  outline: none;
}

.custom-button::before,
.custom-button::after {
  content: '';
  position: absolute;
  border: 2px solid #ff0000; /* Red borders */
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

.custom-button::before {
  transform: translate(-10px, 0);
  border-right: none;
  border-left: 2px solid #ff0000;
}

.custom-button::after {
  transform: translate(10px, 0);
  border-left: none;
  border-right: 2px solid #ff0000;
}

.custom-button:hover::before {
  transform: translate(-15px, -5px); /* Expand slightly to the top-left */
  width: 105%; /* Make the bar wider */
}

.custom-button:hover::after {
  transform: translate(15px, 5px); /* Expand slightly to the bottom-right */
  width: 105%; /* Make the bar wider */
}

.custom-button:hover {
  color: #fff; /* Change text color on hover */
}

















/*nav ul li ul li a {
  font-size: 1.15rem;
  line-height: 2rem;
  color: #c9c9c9;
  font-weight: 500;
  padding-left: 20px;
  display: block;
  left: -7px;
  position: relative;
}
nav ul li ul li:hover a {
  background-color: #870000;
  color: white;
  text-shadow: 1px 1px 0 black;
}
nav h3 {
  font-family: "Smooch Sans";
  font-size: 1.7rem;
  color: white !important;
  line-height: 3rem;
  position: relative;
  background: #870000;
  text-align: center;
  transform: skew(-17deg);
  text-shadow: 2px 2px 0 black;
  text-transform: uppercase;
  letter-spacing: 1px;
}*/

#primary-navigation ul li {
  margin-left: 0;
}
.advert {
  font-size: 0.85rem;
  line-height: 2.3rem;
  text-align: center;
  padding: 2rem;
  background: #d9d9d9;
  font-weight: 500;
  font-family: Roboto;
}
.advert strong {
  color: #870000;
  display: block;
  font-size: 3.4rem;
  font-family: "Smooch Sans";
}

/*
nav#primary-navigation ul li div h4 {
  font-family: "Smooch Sans";
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  background: #333;
  color: white;
  font-weight: 500;
  margin-top: 15px;
}
*/

nav#primary-navigation ul li div h4 {
  font-family: "Smooch Sans";
  font-size: 2rem;
  /* left: 5px; */
  text-transform: uppercase;
  letter-spacing: 0;
  position: relative;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  background: #B3B3B3;
  color: black;
  font-weight: 700;
  margin-top: 15px;
  font-style: italic;
}

nav#primary-navigation ul li div h4::after {
  content: ' ';
  position: absolute;
  width: 100%;
  height: 3px;
  background: #333;
  left: 0;
  font-weight: 600;
  bottom: -10px;
  display: none;
}

nav#primary-navigation ul li div.grid div {
  transition: all 0.3s ease;
}
nav#primary-navigation ul li div.grid div:hover {
  background-color: rgba(255 255 255 / 0.35);
}
nav#primary-navigation ul li div.grid div#tire-brands-hover {
  background-color: none !important;  
}

nav#primary-navigation ul li div.grid div:hover h4 {
  background-color: #870000;
  color: white;
  text-shadow: 2px 2px 0 black;
}
nav#primary-navigation ul li div ul {
  margin-top: 1.53rem;
  margin-bottom: 0;
}
nav#primary-navigation ul li div ul li {
  line-height: 2rem; /* was 1.82rem */
  font-weight: 500;
}
nav#primary-navigation ul li div ul li a {
  color: #333;
  display: block;
  padding: 0 0 0 20px;
  font-size: 1.05rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}
nav#primary-navigation ul li div ul li:hover a {
  color: #870000;
  background: #e6e6e6;
}
nav#primary-navigation ul li div ul li.current-page.active a {
  color: #870000;
  background: #e6e6e6;

}
#primary-navigation ul li > div {
  background-color: #c9c9c9;
}
#primary-navigation ul li > div {
  background-color: #c9c9c9; 
  border-top: 3px solid #870000; 
  border-bottom: 5px solid #870000; 
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); 
  padding: 15px; 
}
.nav-blurb {
  font-size: 1.42rem;
  font-weight: 300;
  font-family: Roboto;
}

.advert-blurb {
  font-weight: 600;
  /* font-family: Roboto; */
  text-align: left;
  font-size: 0.75rem;
  padding: 1rem;
  background: rgba(255 255 255 / 0.51);
  line-height: 1.255rem;
  min-height: 74px;
  font-family: "Roboto", sans-serif;
  text-align: center;
  text-transform: uppercase;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  border-left: 1px solid rgba(0 0 0 / 0.05);
  border-right: 1px solid rgba(0 0 0 / 0.05);
  letter-spacing: 0;
  color: white;
  background: #870000;
}
nav#primary-navigation ul li div ul.advert-list {
  margin: 0;
  text-align: left;
  background-color: rgba(255 255 255 / 0.2);
}


nav#primary-navigation ul li div ul.advert-list li {
  padding-left: 1rem;
  border-left: 1px solid #c9c9c9;
  border-right: 1px solid #c9c9c9;
  border-top: 1px solid #c9c9c9;
  list-style: circle;
  list-style-position: inside;
  background: rgba(255 255 255 / 0.51);
}

nav#primary-navigation ul li div ul.advert-list li:last-of-type {
  border-bottom: 1px solid #c9c9c9;
}

nav#primary-navigation div#tire-brands-hover ul li:hover a {
  background: none !important;

}
#tire-brands-hover img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-filter 0.25s ease-in-out;
  transition: filter 0.25s ease-in-out;
  background-color: rgba(255 255 255 / 0);
}

#tire-brands-hover img:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  background-color: rgba(255 255 255 / 1);
}



nav#primary-navigation ul li div ul li {
  position: relative;
}
nav#primary-navigation ul li div ul li a::before {
  content: ' ';
  width: 2px;
  height: 60%;
  background: #a9a9a9;
  position: absolute;
  left: 0;
  top: 20%;
}
nav#primary-navigation ul li div#tire-brands-hover ul li a::before {
  display: none !important;
}
nav#primary-navigation ul li div#tire-brands-hover ul li a {
  padding-left: 0;
}
nav#primary-navigation ul li div ul li:hover a::before {
  background: #870000;
  left: 5px;
}
nav#primary-navigation ul li div ul li.current-page.active a::before {
  background: #870000;  
  left: 5px;
}

nav#primary-navigation ul li div.grid div:hover .advert {
  background: #870000;
  color: white;
  border-top: 1px solid white;
  text-shadow: 2px 2px 0 black;
}

nav#primary-navigation ul li div.grid div:hover .advert strong {
  color: white;  
  text-shadow: 3px 3px 0 black;
}
.menu-booknow {
  visibility: hidden;
}
nav#primary-navigation ul li div.grid div:hover .menu-booknow {
  visibility: visible;
}
.contact-mega-menu p {
  font-size: 1.1rem;
  line-height: 1.5rem;
}






























section#about-us {
  background-position: right;
  background-size: 52%;
  background-repeat: no-repeat;
  background-color: #060606;
}

/*
.mlrcsslogo {
  font-family: Roboto, sans-serif;
  font-weight: 800;
  color: black;
  transform: skew(-17deg);
  display: inline-block;
  background: black;
  line-height: 30px;
  padding-right: 16px;
}

.mlrcsslogo .mlrcsslogo-garage {
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  display: inline-block;
  color: white;
  padding: 7px 3px 7px 16px;
  font-size: 1rem;
  letter-spacing: 2px;
}*/

.mlrcsslogo {
  padding: 0 0 0 0;
  display: inline-block;
  transform: skew(-17deg);
  font-family: Roboto, sans-serif;
  font-weight: 800;
  left: -3px;
  position:relative;
}
.mlrcsslogo .mlrcsslogo-ml {
  color: white;
  display: inline-block;
  position: relative;
  z-index: 5;
  font-size: 1.8rem;
  top: 5px;
  letter-spacing:0;
  font-size: 1.8rem;
  top: 5px;
  font-size: 1.3rem;
  top: 0;
  left: 7px;
}
.mlrcsslogo .mlrcsslogo-r {
  color: red;
  position: relative;
  display: inline-block;
  z-index: 3;
  font-size: 1.8rem;
  top: 5px;
  /*left: -9px;*/
  font-size: 1.8rem;
  top: 5px;
  font-size: 1.3rem;
  top: 0;
}
.mlrcsslogo-r::before {
  content: ' ';
  width: 6px;
  height: 1px;
  background: black;
  display: block;
  position: absolute;
  top: 11px;
  left: 1px;
}

u.u-redline {
  text-decoration-color: rgb(220,38,38,1);
}





/*
#dynamic-service-cta ul li {
  list-style: none;
  color: #c9c9c9;
  margin-bottom: 50px;
  padding: 85px 3rem 25px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  background: rgba(0 0 0 / 0.5);
  position: relative;
  min-height: 145px;
  text-align: center;
  font-weight: 500;
}
#dynamic-service-cta ul li::before {
  content: ' ';
  position: absolute;
  width: 5px;
  height: 100%;
  background: rgba(0 0 0 / 0.50);
  left: 0;
  top: 0;
}

#dynamic-service-cta ul li span {
  position: absolute;
  display: block;
  text-align: left;
  font-size: 2.4rem;
  color: #c9c9c9;
  cursor: pointer;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration-color: #696969;
  text-decoration: none;
  top: 0;
  left: 0;
  width: 100%;
  right: 0;
  margin: 0 auto;
  text-align: center;
  line-height: 65px;
  background: black;
  font-family: 'Smooch Sans', sans-serif;
  color: white;
  background-color: #870000;
  text-shadow: 3px 3px 0 black;

}

#dynamic-service-cta ul li span::before, #dynamic-service-cta ul li span::after {
  content: ' - ';
}
*/


.custom-service-section-header::before, .custom-service-section-header::after {
  content: ' - ';
  /*color: #870000;*/
  color: white;
}
.tab-link.new-custom-service-button-pattern.active-service {
  /*border: 6px solid #670000;*/
}



/* ============================================== */
/*                HERO STYLES                     */
/* ============================================== */

/* Ensuring the text slider fits the parent */
.text-slider-container {
    width: 100%;
    overflow: hidden;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    height: 80px; /* Adjust based on your design */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

}

/* Positioning the list items properly */
#combined-list {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
    padding: 0;
    margin: 0;
}

/* Ensuring each list item takes full parent space */
#combined-list li {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    white-space: nowrap;
    padding: 10px;

    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); /* Optional */
}





/* Style 1: Inner Glow with Box Shadow */
.glow-box-shadow {
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8); /* Black inner glow */
}

/* Style 2: Inner Glow with Radial Gradient */
.glow-radial-gradient {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.6) 10%, rgba(0, 0, 0, 0.3) 40%, rgba(255, 255, 255, 0) 80%);
}

/* Style 3: Combined Inner Glow (Box Shadow + Radial Gradient) */
.glow-combined {
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8); /* Black inner glow */
    background: radial-gradient(circle, rgba(0, 0, 0, 0.6) 10%, rgba(0, 0, 0, 0.3) 40%, rgba(255, 255, 255, 0) 80%);
}




/* Styling the container */
#dynamic-service-cta {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    height: auto; /* Auto adjust to content */
}
/* Styling the merged list */
#dynamic-service-cta .slider-list {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
  transform: skew(-17deg);
}

/* Individual list items */
#dynamic-service-cta .slider-list li {
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 10px;
    box-sizing: border-box;
    white-space: nowrap;
    position: absolute; /* Needed for slide effect */
    left: 0;
}

#dynamic-service-cta div:first-of-type {
  min-height: 500px;
  width: 100%;
  width: 100% !important;
  margin: 0 auto;
  padding: 10rem 0;
  /*display: block; */
}
#dynamic-service-cta .slider-list li {
  color: #ffffff;
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 95px 45px 15px;
    box-sizing: border-box;
    white-space: nowrap;
    position: absolute; /* Needed for slide effect */
    left: 0;
    max-width: 1200px;
    word-wrap: anywhere !important;
    margin: 0 auto;
    right: 0;
}
#dynamic-service-cta div ul li {
  list-style: none;
  line-height: 2.22rem;
  margin-bottom: 3rem;
  font-size: 1.3rem;
  text-align: center;
}
#dynamic-service-cta div ul li span.underline {
  text-decoration: none;
  position: relative;
  display: block;
}
#dynamic-service-cta div ul li span.underline::before {
  content:' ';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 2px;
  width: 175px;
  background-color: #870000;  
}

.careers-open::after {
  content: ' (Now hiring)';
  /* color: #ff0000; */
}


#navigation-top {
  border-bottom: 1px solid #333;
}
#reviews-container {
  min-height: 230px;
}



/* Hero Section Base Styles */
.hero {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.hero.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fade-in 1.2s ease-in-out forwards;
}

.animate-slide-up {
  animation: slide-up 1.5s ease-in-out forwards;
}

.animate-fade-in.delay-200 {
  animation-delay: 0.2s;
}

.animate-slide-up.delay-400 {
  animation-delay: 0.4s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
}




/* ============================================== */
/*          HOME ABOUT SECTION STYLES             */
/* ============================================== */

.border-right-red {
  border-right: 5px solid #870000;
  background-color: #060606;
}

/* ============================================== */
/*          SERVICE SECTION STYLES                */
/* ============================================== */



/* Optional: Hide scrollbar for a cleaner slider */
  .scrollbar-hidden::-webkit-scrollbar {
    display: none;
  }
  .scrollbar-hidden {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .tab-content {
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .new-custom-service-list li {
    margin: 0 !important;
  }

  /*.tab-link.new-custom-service-button-pattern {
    position: relative;
    padding: 1.63rem 2rem;
    font-size: 1.2rem;
    font-family: Roboto, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    border-top: 4px solid #670000;
    min-height: 130px;
    border-bottom: 4px solid #670000;
    border-left: 2px solid #670000;
    border-right: 2px solid #670000;
    overflow: hidden;
  }*/

/*  .tab-link.new-custom-service-button-pattern::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #870000;
    z-index: 0;
    transition: top 0.5s ease;
  }
*/
  .tab-link.new-custom-service-button-pattern:hover::before {
    top: 0;
  }

  .tab-link.new-custom-service-button-pattern span {
    position: relative;
    z-index: 1;
    /*color: white;*/
  }

  .tab-link.new-custom-service-button-pattern{
    -webkit-transition: all ease 100ms;
    -o-transition: all ease 100ms;
    transition: all ease 100ms;
  }
  .tab-link.new-custom-service-button-pattern:hover,
  .tab-link.new-custom-service-button-pattern.active-service {
    /*background: #870000;*/
    color: white;
  }
  .tab-link.new-custom-service-button-pattern.active-service {
    background-color: #870000;
    text-shadow:2px 2px 0 black;
  }
  .bg-customdark{
  background-color: #060606;   
  }

  .bg-customdark2{
  background-color: #161616;   
  }

  .bg-customdark3{
  background-color: #101010;   
  }



.tab-link.new-custom-service-button-pattern {
  font-size: 1.4rem;
  font-weight: 700;
  color: #707070;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
  /* letter-spacing: 0.2rem; */
  /* text-transform: uppercase; */
}
.checkered-pattern .h-40 {
  height: 12rem;
}

.checkered-pattern .bg-black:hover .new-custom-service-button-pattern  {
color: white;
}
.checkered-pattern .bg-white {
  background-color: #ffffff;
  /*opacity: 0.0251;*/
  opacity: 0.0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.checkered-pattern .bg-white:hover {
  opacity: 0;
}

./*checkered-pattern .bg-white:hover {
  opacity: 0.06;
  background-image: url(imgs/logo3.png);
  background-position: center;
  background-size: contain;
  background-color: rgba(255 255 255 / 0);
}


*/




/*.tab-link.new-custom-service-button-pattern.active-service::before {
  content: ' ';
  width: 100%;
  height: 100%;
  border: 1px solid #3f0000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}*/


.tab-link.new-custom-service-button-pattern.active-service::after {
  content: ' - ';
  display: block;
  height: 0;
  color: whtie;
  font-size: 3rem;
  line-height: 17px;
  transform: scaleX(1.8);
  text-shadow: 1px 2px 0 black;
}


.tab-link.new-custom-service-button-pattern:not(.active-service)::after {


  content: 'VIEW';
  font-family: 'Smooch Sans', sans-serif;

  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 22px);
  line-height: 44px;
  color: rgba(255 255 255 / 1);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}




.tab-link.new-custom-service-button-pattern:not(.active-service):hover::after {
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 1;
}



.checkered-pattern .bg-black:hover .new-custom-service-button-pattern:not(.active-service) {
color: rgba(0 0 0 / 0);

    -webkit-transition: background-color 100ms linear;
    -ms-transition: background-color 100ms linear;
    transition: background-color 100ms linear;
}



.tab-content {
  transition: opacity 0.5s ease, transform 0.5s ease;
  padding: 0 4rem;
  line-height: 1.72rem;
  color: #c9c9c9;
}
/*old*/
/*.custom-service-section-header {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  line-height: 3rem;
  padding: 2rem;
  font-family: Roboto, sans-serif;
}
*/
.custom-service-section-header {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  line-height: 3rem;
  padding: 0.5rem 2rem;
  font-family: 'Smooch Sans', sans-serif;
  background-color: #870000;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 5rem 30px;
  text-shadow: 3px 3px 0px black;
  transform: skew(-17deg);
}

.tabs-content p {
  font-size: 1.25rem;
  /*text-shadow: 0 0 4px black;*/
  /*background: rgba(0 0 0 / 0.5);*/
  padding: 12px 10px;
  line-height: 1.7rem;
}
.checkered-pattern {
  /*background: rgba(0 0 0 / 0.1);*/
}
.tabs-content ul.list-disc.list-inside {
  display: none;
}
.tabs-content ul.list-disc.list-inside {
  list-style-type: none;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}
.tabs-content ul.list-disc.list-inside li span.underline {
  text-decoration: none;
}



/* ============================================== */
/*          VENDOR SECTION STYLES                 */
/* ============================================== */

.vendors-brands-container img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-filter 0.25s ease-in-out;
  transition: filter 0.25s ease-in-out;
  background-color: rgba(255 255 255 / 0);
  opacity: 0.3;
}

.vendors-brands-container img:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  background-color: rgba(255 255 255 / 1);
  opacity: 1;
}


/* ============================================== */
/*          REVIEW SECTION STYLES                 */
/* ============================================== */



/* Hide all reviews by default */
.review {
    display: none;
}
/* Show only the active review */
.review.review--active {
    display: block;
}




.default-service-container h2.text-sm {
  font-size: 1.75rem;
}
.default-service-container h3.text-sm {
  font-size: 1.35rem;
}












































/* ============================================== */
/* 					FOOTER STYLES   		              	  */
/* ============================================== */



footer h3 {
  font-family: "Smooch Sans";
  font-size: 2rem ;
}
    .csslogo {
      display: inline-block;
      font-family: 'Smooch Sans', sans-serif;
      font-weight: 700;
      text-transform: uppercase;
    }

.csslogo-garage {
  font-size: 1.5rem;
  color: white;
  background: black;
  padding: 5px 10px;
  letter-spacing: 2px;
  transform: skew(-30deg);
  display: inline-block;
  /*margin-right: 100px;*/
}

.csslogo-mlr {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1;
  z-index: 1;
  position: relative;
  font-weight: 900;
  transform: skew(-30deg);
  left: 0.5rem;
}
.csslogo-ml {
  color: white;
  text-shadow: none;
  text-shadow: 1px 0 10px black;
  stroke: black;
  stroke-width: 2px;
  fill: white;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.csslogo-r {
  color: red;
  text-shadow: none;
  -webkit-text-stroke: 1px black;
  stroke: black;
  stroke-width: 2px;
  fill: red;
  display: inline-block;
  left: -0.2rem;
  position: relative;
  z-index: 1;
  text-shadow: 1px 0 10px black;
}


.slant-service-container {
  display: inline-block;
  border: 5px solid black;
  font-family: 'Smooch Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 3rem;
  color: white;
  background: black;
  padding: 1rem 4rem;
  letter-spacing: 2px;
  transform: skew(-23deg);
  display: inline-block;
  /* margin-right: 100px; */
}
.slant-service-container-2 {
  display: inline-block;
  border: 5px solid black;
  font-family: 'Smooch Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 3rem;
  color: white;
  background: transparent;
  padding: 1rem 4rem;
  letter-spacing: 2px;
  transform: skew(-23deg);
  display: inline-block;
  /* margin-right: 100px; */
}
.garage-services-content {
  max-width: 830px;
  margin: 50px auto 0;
}

.garage-services-content p {
  font-size: 1.25rem;
}


#about-us p {
  font-size: 1.25rem;
  /* text-align: center; */
}





.checkered-pattern .bg-black {
  background-color: rgba(0 0 0 / 0.5);
}





/* Background Shimmer Effect 
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 600%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0) 70%);
  animation: shimmer-effect 5s infinite;
  pointer-events: none;
  opacity: 0.02;
}

@keyframes shimmer-effect {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
*/

/* Background Shimmer Effect */
.shimmer {
  position: relative;
  overflow: hidden;
  --shimmer-angle: 120deg; /* Default angle */
}

.shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 1000%;
  height: 300%;
  background: linear-gradient(var(--shimmer-angle), rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.051) 30%, rgba(255, 255, 255, 0) 70%);
  animation: shimmer-effect 25s infinite;
  pointer-events: none;
  opacity: 0.01;
}

@keyframes shimmer-effect {
  0% {
    transform: translateX(-100%);
  }
  /*50% {
    transform: translateX(-100%);
  }*/
  100% {
    transform: translateX(100%);
  }
}






/* Wrapper to contain the waving flag background */
.waving-flag-container {
  position: relative;
  z-index: 1; /* Ensures content stays above the flag */
}

.waving-flag {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Matches the height of the container */
  z-index: -1; /* Positions it behind other content */
  overflow: hidden;
  background: linear-gradient(to right, #ffffff, #ffd700, #ffffff); /* White and Gold stripes */
  background-size: 500% 100%;
  opacity: 0.025;
}

.waving-flag::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  background-size: 500% 100%;
  animation: waving-effect 9s infinite ease-in-out;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes waving-effect {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}




/* ============================================== */
/*          SERVICE PAGE STYLES                   */
/* ============================================== */


.service-header-h3 {
  font-family: "Smooch Sans";
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.strong-list-header-bg {
  font-family: "Smooch Sans";
  font-size: 1.45rem;
  display: block;
  background: rgba(255 255 255 / 0.075);
  color: white;
  /* text-shadow: 1p 1px 0 black; */
  text-transform: uppercase;
  text-align: center;
  /* margin-top: 15px; */
  transition: all 0.3s ease;
  letter-spacing: 1px;
  font-weight: 700;
  text-shadow: 1px 1px 0 black;
  line-height: 3rem;
}
.service-list-section ul li {
  line-height: 2.5rem;
  text-align: center;
  font-weight: 500;
}


.garage-services-content.inner-page-service-content ul li {
  line-height: 1rem;
  margin-bottom: 1rem;
}
.slant-service-container.inner-page-service {
  font-size: 3rem;
  background-color: #870000;
  text-shadow: 3px 3px 0 black;
  line-height: 1.65rem;
}
.slant-service-container.inner-page-service.text-sm {
  font-size: 2.3rem;
}

.garage-services-content.inner-page-service-content {
  /*max-width: 1000px;*/
}

.service-text-container h3 {
  background: #870000;
  text-align: center;
  padding: 0.5rem;
  font-size: 2rem;
  font-family: "Smooch Sans";
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 black;
  margin-bottom: 35px;
  transform: skew(-17deg);
}

.service-list-section .service-text-containers p {
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  margin-bottom: 35px;
}
.service-list-section .service-text-containers ul li {
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.7rem;
}

.slant-service-container.inner-page-service.smaller {
  font-size: 2rem;
}

.slant-service-container.inner-page-service.black {
  background: #060606;
  /* color: #870000; */
  text-shadow: 2px 2px 3px black;
  /*border: 5px solid #870000;*/
}
.service-header-h3.smallerfont {
  font-size: 1.71rem;
  font-weight: 500;
}

.service-page-hero h2 {
  font-family: "Smooch Sans";
  font-size: 2rem;
  font-weight: 500;
}

.bb-red-custom {
  border-bottom: 3px solid #870000;
}


.service-text-container.greyh3 h3 {
  background-color: #c9c9c9;
  color: black;
  text-shadow: none;
  margin-bottom: 0;
  transform: skew(0);
}

.border-box-3 {
  border: 2px solid #333;
  left: 0;
  position: relative;
  padding: 25px;
}

.garage-services-content.inner-page-service-content ul li strong {
  display: inline-block;
  padding: 0 5px;
  border-bottom: 2px solid #870000;
}
.garage-services-content.inner-page-service-content ul li strong {
  display: inline-block;
  padding: 0 5px;
  border-bottom: 1px solid #c9c9c9;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.15rem;
}


.bb-red-3 {
  border-bottom: 3px solid #870000;
}
.bt-red-3 {
  border-top: 3px solid #870000;
}

.service-cta-section {
  background: #670000;
}
.service-cta-heading {
  color: white;
  text-shadow:2px 2px 0 black;
}




/* ============================================== */
/*          DEFAULT SERVICE PAGE STYLES           */
/* ============================================== */

.default-service-container section {
  /*padding: 1.2rem;*/
 /* margin-bottom: 1.5rem;
  border-bottom: 1px solid #161616;*/
}
.default-service-container h2 {
  font-size: 2rem;
  font-family: "Smooch Sans";
  font-weight: 500;
  color: white;
  letter-spacing: 2px;
  line-height: 2.8rem;
  margin-bottom: 1rem;
  /*! padding: 0.5rem; */
  text-transform: uppercase;
  position: relative;
}
.default-service-container h3 {
  font-size: 1.75rem;
  font-family: "Smooch Sans";
  font-weight: 500;
  color: white;
  letter-spacing: 2px;
  line-height: 2.8rem;
  margin-bottom: 1rem;
  /*! padding: 0.5rem; */
  text-transform: uppercase;
  position: relative;
}

.default-service-container p {
  font-family: "Roboto";
  font-size: 1.05rem;
  margin-bottom: 15px;
}
.default-service-container ul {
  margin-bottom: 15px;
}
.default-service-container li {
  font-family: "Roboto";
  font-size: 1.03rem;
  position: relative;
  margin-left: 10px;
  line-height: 1.75;
}
.default-service-container li::before {
  background-color: #870000;
  position: absolute;
  content:" ";
  height: 80%;
  top: 10%;
  left: -10px;
  width: 2px;
}
.default-service-container .bg-customred2 li::before {
  background-color: #000000;
}




.default-service-container .custom-service-header {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
  padding: 0.5rem 1rem;
  font-family: 'Smooch Sans', sans-serif;
  background-color: #870000;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 3px 3px 0px black;
}

#pre-footer-container-element h2,
#footer-container-element h2 {
  font-family: "Smooch Sans";
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 3px 3px 0 black;
}

/*.default-service-container section:last-of-type {
  background: #060606;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}*/

.alignment-service-type {
  border: 1px solid #333333;
  margin-bottom: 2rem;
}

.default-service-container h3.service-type-advert-heading {
  font-family: "Smooch Sans";
  text-align: center;
  background-color: #B3B3B3;
  color: black;
  font-weight: 700;
  padding: 0.75rem;
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 0;
}

.default-service-container p.service-type-advert {
  font-size: 0.85rem;
  line-height: 2.3rem;
  text-align: center;
  padding: 2rem;
  background: #191919;
  font-weight: 500;
  font-family: Roboto;
  margin-bottom: 0;
}
.default-service-container p.service-type-advert strong {
  color: white;
  display: block;
  font-size: 3.4rem;
  font-family: "Smooch Sans";
  text-shadow: 3px 3px 0 black;
  margin-top: 1rem;
}

.default-service-container p.service-type-advert-label {
  padding: 1rem 2rem;
  text-align: center;
  background-color: #670000;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.91rem;
}
.default-service-container p.service-type-advert-text {
  padding: 1rem 2rem;
}
.default-service-container ul.service-type-advert-list {
}
.default-service-container ul.service-type-advert-list li {
  margin-left: 2.5rem;
  line-height: 1.75rem;
  margin-bottom: 0.5rem;
}


.warning-signs {
  max-width: 100%;
  /* padding: 2rem; */
  /* background: #0C0C0C; */
  /* box-shadow: 6px 6px 0 #670000; */
  /* border-top: 6px solid #870000; */
  margin: 3rem auto;
  width: 1000px;
  position: relative;
  /*border-bottom: 6px solid #870000;*/
}
ul.inline-list-items li {
  display: inline-block;
  margin: 0 1rem 1rem;
}
/*.warning-signs h2 {
  background: #870000;
  color: white;
  text-align: center;
  line-height: 3.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 0 black;
  transform: skew(-17deg);
}*/

.warning-signs p {
  padding: 2rem 0.5rem;
  text-align: center;
  font-size: 1.25rem;
}
.warning-signs ul {
  padding: 0 2rem 2rem 4rem;
  width: auto;
  margin: 0 auto;
  /*! line-height: 2rem; */
}

.warning-signs ul li {
  line-height: 2.5rem;
  font-size: 1.2rem;
}




ul.inline-list-items li.bg-customred1::before {
  display: none;
}

ul.inline-list-items li.bg-customred1 {
  margin: 0 0.2rem 0.71rem;
  padding: 0.5rem 1rem;
  background: #670000;
}

.bg-customred2 {
    background: #670000;
}

.custom-card {
  /* text-align: center; */
  /*background: #161616;*/
  /*padding: 1rem;*/
}

.custom-card.custom-card-p {
  padding: 2rem;
  font-size: 2rem;
  font-family: "Smooch Sans";
  font-weight: 400;
}


.service-text-container p {
  padding: 1.5rem 1rem;
  margin: 0 !important;
  background: #101010;
  min-height: 130px;
  /* text-align: match-parent; */
  border-bottom: 5px solid #060606;
}

.service-text-container ul {
  padding: 1.5rem 1rem;
}
.service-text-container ul li {
  line-height: 2rem;
  padding: 0.5rem;
}
.service-text-container.greyh3 {
  /* min-height: 430px; */
  /* border: 1px solid #191919; */
  background: #101010;
}




#home-cta-section {
  position: relative;
}
#home-cta-section::before {
  content: '';
  top: 0;
  left: 0;
  position: absolute;
  background-image: url('https://garagemlr.com/en/wp-content/themes/garage-mlr-theme/imgs/grunge-checkered-flag.png');
  z-index: 1;
  width: 100%;
  height: 100%;
  background-repeat: repeat-x;
  background-position: center center;
  background-size: cover;
  opacity: 0.051;
}
#home-cta-section > div {
  z-index: 10;
  position: relative;
}

.service-section-bg-url-1 {
  background-image: url('https://garagemlr.com/en/wp-content/uploads/sites/4/2025/02/slide2.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.service-section-bg-url-2 {
  background-image: url('https://garagemlr.com/en/wp-content/uploads/sites/4/2025/02/slide3.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service-section-bg-url-3 {
  background-image: url('https://garagemlr.com/en/wp-content/uploads/sites/4/2025/02/slide4.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.service-section-bg-url-4 {
  background-image: url('https://garagemlr.com/en/wp-content/uploads/sites/4/2025/02/slide5.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.bg-as-overlay {
  position: relative;
}
.bg-as-overlay::before {
  content: ' ';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background-color: rgba(0 0 0 / 0.65);
  z-index: 0;
}



/*https://garagemlr.com/en/services/general-auto-repair/transmission-service-fluid-change/#*/
div.grid.grid-cols-2 footer.service-cta-section {
  position: relative;
}
div.grid.grid-cols-2 footer.service-cta-section div#footer-container-element {
}
div.grid.grid-cols-2 footer.service-cta-section::before {

}

div.grid.grid-cols-2 footer.service-cta-section {
  background: none;
  position: relative;
}
div.grid.grid-cols-2 footer.service-cta-section::before {
  content: ' ';
  width: 120%;
  height: 100%;
  position: absolute;
  background: #670000;
  transform: skew(-17deg);
  top: 0;
  left: 0;
}

div.grid.grid-cols-2 footer.service-cta-section div#footer-container-element {
  position: relative;
  z-index: 5;
}

div.grid.grid-cols-2 div#pre-footer-container-element {
  position: relative;
  z-index: 5;
}





/*.end-triangle-bottom-right {
  position: relative;
  overflow: hidden;
}
.end-triangle-bottom-right::after {
  content: ' ';
  position: absolute;
  width: 500px;
  height: 500px;
  transform: skew(-17deg);
  background: orange;
}*/




@media (max-width: 768px) {

section#general-mechanic {
  padding: 3rem 0;
}
section#general-mechanic > div.h-full.grid {
  padding: 0;

}



section#general-mechanic div.gm-textblock {
  padding: 0.5rem 2.5rem;
}
section#general-mechanic div.gm-textblock ul li {
  text-align: center;
}

section#about-us div.about-us-block {
  padding: 2rem;
  border: none;
}
.empty-grid-item {
  display: none;
}

ul#category1,
ul#category2,
ul#category3 {
  display: none;
}




.service-section-pattern-container section.bg-customdark {
  padding: 2rem 1rem;
}
.service-section-pattern-container section .services-intro-section-parent {
  padding: 8rem 1rem;
}

.service-section-pattern-container section .services-intro-section-parent .slant-service-container {
  font-size: 1.8rem;
  transform: skew(0);
  padding-left: 0.92rem;
  padding-right: 0.92rem;
  width: 49%;
}
.service-section-pattern-container section .services-intro-section-parent .slant-service-container-2 {
  font-size: 1.8rem;
  transform: skew(0);
  padding-left: 0.92rem;
  padding-right: 0.92rem;
  width: 49%;
}

.service-section-pattern-container section .services-intro-section h2 {
  transform: skew(-17deg);
}



.checkered-pattern .tab-link.new-custom-service-button-pattern {
  
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 0.85rem;

}
/*.checkered-pattern .bg-white:nth-of-type(5){
  display: none;
}

.checkered-pattern.grid-cols-4.waving-flag-container {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
*/

.mobile-padding-strip {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.tab-content {
  padding: 2rem 0;
}
.tab-content .custom-service-section-header {
  margin: 60px auto 30px;
  font-size: 1.5rem;
}
.tab-content > div {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

section.mobile-padding-strip div.grid.pb-32 {
  padding-bottom: 3rem;
}

#dynamic-service-cta .slider-list {
  transform: skew(0);
}
#reviews-container blockquote span {
  display: none;
}
#dynamic-service-cta .slider-list li {
  width: 95%; 
}
#dynamic-service-cta ul li span {
  font-size: 1.2rem;
  width: 100%;
}
#dynamic-service-cta .slider-list li {
  font-size: 0.82rem;
  padding-left: 15px;
  padding-right: 15px;
}

#dynamic-service-cta {
  height: 350px;
}
#dynamic-service-cta div:first-of-type {
  display: none;
}




#why-choose-us-section {
  padding: 0;
}
#why-choose-us-section div.grid > div.relative {
  padding-left: 0;
  padding-right: 0;
}

#why-choose-us-section p.text-lg {
  font-size: 1.25rem;
}

#general-mechanic div.grid div h2 {
  min-height: 200px;
  font-size: 2.5rem;
}

#general-mechanic div.grid div h2 span#rotatingWord {
  font-size: 2.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  line-height: 4rem;
}


.mlr-brands-section {
  display: none !important;
}

#hero-slider.h-screen {
  height: 70vh;
}
#hero-slider div.hero.h-screen {
  height: 70vh;
}





.tabs-content ul.list-disc.list-inside {
  display: block;
  padding: 0.5rem;
  background: rgba(0 0 0 / 0.5);
}

#why-choose-us-section h2 {
  font-size: 1.5rem !important;
}
#why-choose-us-section h3 {
  font-size: 2rem !important;
}

#reviews-container {
  padding: 2.5rem 0.5rem;
  background: #111;
  text-align: center;
}
#reviews-section {
  text-align: center;
}
#reviews-section h2.text-4xl {
  font-size: 2rem !important;
}






#home-cta-section h2.text-3xl {
  font-size: 2rem !important;
}
#home-cta-section p.text-lg {
  font-size: 1.0rem;
  line-height: 1.75rem;
}

.checkered-pattern .h-40 {
  height: 7rem;
}

[x-cloak] {
  display: none !important;
}






} /* end media query */






