:root {
  --primary: #eb1624;
  --secondary: #0360a9;
  --accent: #f37721;
  --dark: #121212;
  --light: #fff;
  --white: #fff;
  --gray: #6d7a8c;
  --lightgray: #f9f9f9;
  --overlay-services: linear-gradient(45deg, #0c3f66e6, #770008b3, #4d2103cc);
  --overlay-performance: linear-gradient(9deg, #0360a9e6, #666666b3, #f37721cc);
  --overlay-restoration: linear-gradient(24deg, #88a0d7e6, #372627b3, #714729b0);
  --primary-light: #f04c56;
  --secondary-light: #2a7dbe;
  --accent-light: #ff8f45;
  --dark-10: #0000001a;
  --heading-font: "Oswald", sans-serif;
  --body-font: "Work Sans", sans-serif;
  --transition: all .3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--light);
  color: var(--dark);
  font-family: var(--body-font);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--dark);
  transition: var(--transition);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  z-index: 1000;
  background-color: #fff;
  width: 100%;
  transition: background .3s, box-shadow .3s;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 20px #0000001a;
}

.header__container {
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2px 20px 2px 0;
  display: flex;
  position: relative;
}

.header__logo {
  width: 440px;
  transition: width .3s;
}

.header__logo img {
  width: 100%;
  height: auto;
}

.header--scrolled .header__logo {
  width: 280px;
}

.header__nav {
  margin-left: auto;
}

.header__nav-link {
  color: #303030;
  font-weight: 600;
  text-decoration: none;
}

.header__nav-link.active, .header__nav-link:hover {
  color: var(--primary);
}

.header__nav-link:after {
  background-color: var(--primary);
  content: "";
  width: 0;
  height: 2px;
  transition: width .3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.header__nav-link.active:after, .header__nav-link:hover:after {
  width: 100%;
}

.header__nav ul {
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.header__nav ul li {
  margin-left: 30px;
}

.header__nav ul li a {
  color: #303030;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.header__nav ul li a.active, .header__nav ul li a:hover {
  color: var(--primary);
}

.header__nav ul li a:after {
  background-color: var(--primary);
  content: "";
  width: 0;
  height: 2px;
  transition: width .3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.header__nav ul li a.active:after, .header__nav ul li a:hover:after {
  width: 100%;
}

.header__nav.active {
  right: 0;
}

.header__menu-toggle {
  cursor: pointer;
  z-index: 1001;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  display: none;
}

.header__menu-toggle span {
  background-color: #303030;
  width: 100%;
  height: 2px;
  margin-bottom: 6px;
  transition: all .3s;
  display: block;
}

.header__menu-toggle span:last-child {
  margin-bottom: 0;
}

.header__menu-toggle.active span {
  background-color: #fff;
}

.header__menu-toggle.active span:first-child {
  transform: translateY(9px)rotate(45deg);
}

.header__menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px)rotate(-45deg);
}

.header__phone {
  background-color: var(--primary);
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  align-items: center;
  margin-left: 20px;
  padding: 5px 10px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.header__phone i {
  margin-right: 8px;
  font-size: 1rem;
}

.header__phone-number {
  white-space: nowrap;
  font-size: .9rem;
  font-weight: 600;
}

.header__phone:hover {
  background-color: #d03c3c;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px #00000026;
}

@media (width <= 992px) {
  .header__menu-toggle {
    display: flex;
  }

  .header__nav {
    background-color: #0a0a0ff2;
    width: 250px;
    height: 100vh;
    padding: 80px 20px 30px;
    transition: right .3s;
    position: fixed;
    top: 0;
    right: -100%;
  }

  .header__nav ul {
    flex-direction: column;
  }

  .header__nav ul li {
    text-align: left;
    margin: 12px 0;
  }

  .header__nav ul a {
    padding: 8px 0;
    font-size: 1.2rem;
    display: block;
    color: #fff !important;
  }

  .header__nav ul a.active, .header__nav ul a:hover {
    color: var(--primary);
  }

  .header__phone {
    z-index: 998;
    position: fixed;
    bottom: 20px;
    right: 20px;
    box-shadow: 0 4px 10px #0003;
  }
}

@media (width <= 768px) {
  .header__nav {
    width: 210px;
    padding: 70px 15px 20px;
  }

  .header__nav a {
    font-size: 1.1rem;
  }

  .header__phone {
    border-radius: 0;
    justify-content: center;
    width: 100%;
    padding: 10px;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 -2px 10px #0003;
    margin: 0 !important;
  }

  .header__phone .phone-number {
    margin-left: 8px;
    display: block;
  }

  .header__phone i {
    font-size: 1.1rem;
  }
}

.hero {
  color: var(--light);
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: relative;
}

.hero__background {
  z-index: -1;
  background-image: url("hero-a.38be5c3a.jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.hero__background, .hero__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero__overlay {
  z-index: 1;
  background: #000000b3;
}

.hero__container {
  text-align: center;
  z-index: 2;
  max-width: 1000px;
  padding: 70px 20px 0;
  position: relative;
}

.hero__title {
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 3.5rem;
}

.hero__text, .hero__title {
  z-index: 2;
  position: relative;
}

.hero__text {
  max-width: 600px;
  margin: 0 auto 80px;
  font-size: 1.2rem;
}

.hero--parallax {
  background-attachment: fixed;
}

@media (width <= 992px) {
  .hero__title {
    font-size: 3.2rem;
  }
}

@media (width <= 768px) {
  .hero__title {
    margin-top: -140px;
    font-size: 2.5rem;
  }
}

@supports (-webkit-touch-callout: none) {
  .hero__background {
    background-size: auto 100vh;
    background-attachment: scroll !important;
  }
}

.button {
  color: var(--white);
  cursor: pointer;
  letter-spacing: .05em;
  text-align: center;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  min-width: 200px;
  margin: .5rem;
  padding: clamp(.75rem, 2vw, 1rem) clamp(1.5rem, 5vw, 2rem);
  font-size: 1rem;
  font-weight: 600;
  transition: background-color .3s, transform .2s;
  display: inline-block;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background-color: var(--primary);
  border: 1px solid var(--primary);
}

.button--primary:hover {
  background-color: var(--primary-light);
}

.button--secondary {
  border: 1px solid var(--white);
  background-color: #0000;
}

.button--secondary:hover {
  background-color: var(--white);
  color: var(--primary);
}

.card {
  text-align: center;
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 5px 15px #0000000d;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px #0000001a;
}

.card__icon {
  color: var(--primary);
  text-align: center;
  margin-bottom: 20px;
  margin-inline: auto;
  font-size: 2.5rem;
}

.card__title {
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.card__text {
  color: var(--text);
  font-size: .95rem;
  line-height: 1.6;
}

.card--contact {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px #00000014;
}

.card--contact:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px #0000001f;
}

.card--service:nth-child(3n+1) .card__icon {
  color: var(--primary);
}

.card--service:nth-child(3n+2) .card__icon {
  color: var(--secondary);
}

.card--service:nth-child(3n+3) .card__icon {
  color: var(--accent);
}

.card--performance {
  text-align: left;
  position: relative;
  overflow: hidden;
}

.card--performance .card__icon {
  color: #ff6363;
  opacity: .05;
  pointer-events: none;
  z-index: 1;
  font-size: 8rem;
  position: absolute;
  top: -70px;
  right: 0;
}

.card--performance .card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.card--performance .card__list li {
  border-bottom: 1px solid #eee;
  padding: 8px 0 8px 20px;
  font-size: .95rem;
  position: relative;
}

.card--performance .card__list li:last-child {
  border-bottom: none;
}

.card--performance .card__list li:before {
  color: var(--primary, #e63946);
  content: "•";
  position: absolute;
  left: 0;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-sm {
  margin-top: 1rem;
}

.mt-md {
  margin-top: 2rem;
}

.mt-lg {
  margin-top: 3rem;
}

.mb-sm {
  margin-bottom: 1rem;
}

.mb-md {
  margin-bottom: 2rem;
}

.mb-lg {
  margin-bottom: 3rem;
}

.pt-sm {
  padding-top: 1rem;
}

.pt-md {
  padding-top: 2rem;
}

.pt-lg {
  padding-top: 3rem;
}

.pb-sm {
  padding-bottom: 1rem;
}

.pb-md {
  padding-bottom: 2rem;
}

.pb-lg {
  padding-bottom: 3rem;
}

.d-flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-sm {
  gap: 1rem;
}

.gap-md {
  gap: 2rem;
}

.text-nowrap {
  white-space: nowrap;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}

.color-accent {
  color: var(--accent);
}

.color-dark {
  color: var(--dark);
}

.color-light {
  color: var(--light);
}

.color-gray {
  color: var(--gray);
}

.bg-primary {
  background-color: var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-accent {
  background-color: var(--accent);
}

.bg-dark {
  background-color: var(--dark);
}

.bg-light {
  background-color: var(--light);
}

.bg-gray {
  background-color: #f8f8f8;
}

.border-top {
  border-top: 1px solid #eee;
}

.border-bottom {
  border-bottom: 1px solid #eee;
}

.shadow-sm {
  box-shadow: 0 2px 10px #0000000d;
}

.shadow-md {
  box-shadow: 0 5px 15px #0000001a;
}

.shadow-lg {
  box-shadow: 0 10px 30px #00000026;
}

.grid, .performance__grid, .restoration__grid, .services__grid {
  gap: 25px;
  margin: 40px 0;
  display: grid;
}

.grid--2, .restoration__grid {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3, .performance__grid {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4, .services__grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (width <= 1024px) {
  .grid--4, .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 768px) {
  .grid--2, .grid--3, .grid--4, .performance__grid, .restoration__grid, .services__grid {
    grid-template-columns: 1fr;
  }
}

.gradient-text {
  background: linear-gradient(45deg, var(--accent), var(--primary), var(--accent));
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  background-size: 200%;
  background-clip: text;
  animation: 3s infinite gradient-flow;
  display: inline-block;
}

@keyframes gradient-flow {
  0% {
    background-position: 0;
  }

  50% {
    background-position: 100%;
  }

  to {
    background-position: 0;
  }
}

.social {
  background-color: var(--lightgray);
  padding: 60px 0;
}

.social__feed {
  justify-content: center;
  margin: 40px 0;
  display: flex;
}

@media (width <= 540px) {
  .social__feed {
    margin: 30px -15px;
  }
}

.social__embed {
  width: 80% !important;
  margin: 0 auto !important;
}

.cta {
  color: var(--light);
  text-align: center;
  background-image: url("cta.4f8b6e58.jpg");
  padding: 100px 0;
  position: relative;
}

.cta__overlay {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.cta__container {
  z-index: 2;
  position: relative;
}

.cta__title {
  margin-bottom: 20px;
  font-size: 2.8rem;
}

.cta__text {
  max-width: 700px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
}

.cta--fullheight {
  height: 100vh;
}

.cta--halfheight {
  height: 50vh;
}

.cta--parallax {
  text-align: center;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cta--performance {
  background-image: url("cta-performance.d4adbf02.jpg");
}

.cta--performance .cta__overlay {
  background: var(--overlay-performance);
}

.cta--restoration {
  background-image: url("cta-restore2.f039aba3.jpg");
}

.cta--restoration .cta__overlay {
  background: var(--overlay-restoration);
}

.cta--services {
  background-image: url("cta.4f8b6e58.jpg");
}

.cta--services .cta__overlay {
  background: var(--overlay-services);
}

@supports (-webkit-touch-callout: none) {
  .cta--parallax {
    background-attachment: scroll;
  }
}

.section {
  padding: 80px 0;
}

.section__container {
  z-index: 1;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

.section__title {
  font-family: var(--heading-font);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.section__description {
  color: var(--gray);
  font-family: var(--body-font);
  margin: 0 auto 40px;
}

.section__description, .section__intro {
  text-align: center;
  max-width: 800px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.section__intro {
  margin: 0 auto 50px;
}

.section__note {
  color: var(--text);
  text-align: center;
  margin-top: 50px;
  font-size: .95rem;
}

.section--background {
  background: linear-gradient(115deg, #a3a3a324 50%, #16588e00 74%, #e7222e1c);
  position: relative;
}

.section--background:before {
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, #ffffff0d, #ffffff05 50%, #ffffff0d);
  position: absolute;
  inset: 0;
}

.footer {
  background-color: var(--dark, #212529);
  color: var(--light, #f8f9fa);
  z-index: 1;
  padding: 40px 0;
  position: relative;
}

.footer__grid {
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
  display: grid;
}

@media (width <= 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.footer__contact, .footer__links, .footer__social {
  flex-direction: column;
  display: flex;
}

.footer__contact ul, .footer__links ul, .footer__social ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__title {
  color: inherit;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer__link {
  color: #bbb;
  transition: color .3s, padding-left .3s;
}

.footer__link:hover {
  color: var(--light);
  padding-left: 5px;
}

.footer__contact li {
  color: #bbb;
  align-items: center;
  gap: 10px;
  display: flex;
}

.footer__contact li a {
  color: inherit;
}

.footer__contact li i {
  color: var(--primary);
}

.footer__social-icons {
  gap: 15px;
  display: flex;
}

.footer__social-link {
  color: inherit;
  background: #ffffff1a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: background-color .3s, transform .3s;
  display: flex;
}

.footer__social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer__copyright {
  color: #777;
  text-align: center;
  border-top: 1px solid #ffffff1a;
  padding-top: 30px;
  font-size: .9rem;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  to {
    transform: scale(1);
  }
}

.fade-in {
  animation: .8s forwards fadeIn;
}

.slide-up {
  opacity: 0;
  animation: .8s forwards slideUp;
}

.animate-pulse {
  animation: 2s infinite pulse;
}

.delay-200 {
  animation-delay: .2s;
}

.delay-400 {
  animation-delay: .4s;
}

.delay-600 {
  animation-delay: .6s;
}

.delay-800 {
  animation-delay: .8s;
}

.contact__cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  display: grid;
}

@media (width <= 768px) {
  .contact__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (width >= 577px) and (width <= 992px) {
  .contact__cards {
    grid-template: "call email"
                   "visit visit"
                   / 1fr 1fr;
  }

  .contact__cards .card:first-child {
    grid-area: call;
  }

  .contact__cards .card:nth-child(2) {
    grid-area: email;
  }

  .contact__cards .card:nth-child(3) {
    grid-area: visit;
  }
}

.restoration__note {
  text-align: center;
  margin-top: 40px;
  font-size: 1rem;
}

.restoration__process {
  margin-top: 80px;
}

.restoration__process-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.8rem;
}

.restoration__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.restoration__steps:before {
  display: none;
}

.restoration__step {
  margin-bottom: 40px;
  padding-left: 85px;
  position: relative;
}

.restoration__step:last-child {
  margin-bottom: 0;
}

.restoration__step-number {
  background: var(--primary);
  color: #fff;
  z-index: 1;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin-top: 38px;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.restoration__step-heading {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 700;
}

.restoration__step-text {
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

.restoration__step-content {
  background: #fff;
  border-radius: 8px;
  flex: 1;
  padding: 45px 25px;
  box-shadow: 0 5px 15px #0000000d;
}

@media (width <= 992px) {
  .restoration__step-number {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }
}

@media (width <= 768px) {
  .restoration__step-content {
    padding: 20px;
  }
}

.map {
  z-index: 2;
  margin-bottom: 0;
  line-height: 0;
  position: relative;
}

.map__iframe {
  border: none;
  width: 100%;
  height: 450px;
  display: block;
}

html {
  scroll-behavior: smooth;
}

@media (width <= 768px) {
  body {
    padding-top: 70px;
  }
}
/*# sourceMappingURL=MP-Autohaus.a761e083.css.map */
