* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Cairo", sans-serif;
}

html {
  direction: rtl;
  scroll-behavior: smooth;
}

:root {
  --main-font-color: WHITE;
  --main-color: #1e2f41;
  --secondery-color: ORANGE;
  --secondery-color: #f1801f;
  --dark-blue: #203066;
  --lighter-blue: #385bd4;
  --position: 50%;
  --xlarge: 50px;
  --large: 30px;
  --normal: 20px;
  --small: 14px;
}

.background {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -1;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 500;
}
.background.visible {
  display: block;
  opacity: 1;
}

.nav_ul {
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100%;
  width: 250px;
  right: 0px;
  top: 0%;
  align-items: flex-start;
  background-color: var(--main-color);
  justify-content: center;
  z-index: 999;
  transform: translateX(100%);
  transition: 0.3s;
  box-shadow: 0px 0px 100px 100px transparent;
}
.nav_ul.visible {
  box-shadow: 0px 0px 100px 0px black;
  transform: translateX(0px);
}
.nav_ul .close-icon {
  display: block;
  cursor: pointer;
}
.nav_ul li {
  border-top: 1px solid var(--lighter-blue);
  width: 100%;
  display: block;
}
.nav_ul li a {
  display: block;
  text-decoration: none;
  color: white;
  padding: 32px 12px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: var(--small);
  cursor: pointer;
  transition: 0.2s;
  font-size: 18px;
  padding: 16px;
  display: block;
}
.nav_ul li a.active, .nav_ul li a:hover {
  color: var(--secondery-color);
}

.close-icon {
  display: none;
  width: 20px;
  position: absolute;
  top: 30px;
  right: 30px;
}
.close-icon path {
  fill: white;
}

.faded-text {
  color: rgba(255, 255, 255, 0.8);
  color: var(--secondery-color);
  font-weight: bold;
}

.main-button {
  font-weight: bold;
  background-color: var(--secondery-color);
  color: var(--dark-blue);
  color: white;
  font-size: larger;
  border: 1px solid var(--secondery-color);
  padding: 16px 40px;
  border-radius: 8px;
  text-transform: capitalize;
  cursor: pointer;
  transition: 0.3s background;
}
.main-button:hover {
  background-color: var(--main-color);
}

.hollow-button {
  font-weight: bold;
  background-color: transparent;
  color: var(--dark-blue);
  border: 1px solid var(--secondery-color);
  padding: 16px 40px;
  border-radius: 8px;
  text-transform: capitalize;
  cursor: pointer;
  transition: 0.3s background;
}
.hollow-button:hover {
  background-color: var(--secondery-color);
}

.whatsapp-link {
  text-decoration: none;
  color: inherit;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}

.flex-vertical {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.container {
  max-width: 1440px;
  margin: auto;
  padding: 0px 8px;
}

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

body {
  position: relative;
}

nav {
  border-bottom: 1px solid #f1801f;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 99;
  width: 100%;
  background-color: #f1801f;
}
nav .container {
  padding: 0px 8px;
}
nav .container .logo {
  width: 180px;
}
nav .container .menu {
  display: none;
}
nav .container img {
  width: 100px;
}
nav .container ul {
  list-style: none;
  display: flex;
  flex-direction: row-reverse;
}
nav .container ul li {
  display: inline-block;
}
nav .container ul li a {
  display: block;
  text-decoration: none;
  color: white;
  padding: 16px 12px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: var(--small);
  cursor: pointer;
  transition: 0.2s;
}
nav .container ul li a.active, nav .container ul li a:hover {
  color: var(--main-color);
}

header {
  position: relative;
  background-color: var(--main-color);
  height: 90vh;
  color: white;
  overflow: hidden;
  z-index: 1;
  display: grid;
  place-items: center;
  background: rgb(14, 73, 117);
  background: radial-gradient(circle, rgb(14, 73, 117) 0%, rgb(30, 47, 65) 50%);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container .car-hero {
  height: 750px;
  transform: translateX(-100%);
  transition: transform 0.4s;
}
header .container .car-hero.visible {
  transform: translateX(0px);
}
header .header-bg {
  position: absolute;
  top: 50%;
  left: 0px;
  max-width: 100%;
  transform: translateY(-50%);
  z-index: 2;
}
header .container {
  justify-content: space-between;
  width: 90%;
  position: relative;
  z-index: 3;
}
header .container span.intro {
  margin-left: 56px;
  color: var(--secondery-color);
  position: relative;
  display: block;
  width: 80px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 30px;
}
header .container span.intro::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -70%;
  width: 50%;
  height: 2px;
  transform: translateY(-50%);
  background-color: var(--secondery-color);
}
header .container p.hero {
  font-size: 57px;
  font-weight: bold;
  max-width: 400px;
}
header .container button {
  display: block;
  margin-top: 30px;
}
header .container .card {
  display: block;
  position: absolute;
  right: 0px;
  top: -30%;
  justify-content: space-between;
  display: flex;
  gap: 30px;
  flex-direction: row-reverse;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.3);
  padding: 30px;
  border: 1px solid var(--lighter-blue);
  border-radius: 32px;
  z-index: 3;
  background-color: var(--main-color);
}
header .container .card img {
  border-radius: 50%;
  width: 60px;
}
header .container .card div {
  gap: 18px;
  align-items: flex-end;
}
header .container .card div p {
  z-index: 3;
  font-weight: bold;
  font-size: var(--normal);
}
header .container .card div span.faded-text {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8);
}
header .steps {
  position: absolute;
  width: 90%;
  margin: auto;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  justify-content: space-evenly;
  color: white;
  display: flex;
  justify-content: space-evenly;
}
header .steps p {
  width: 100px;
  position: relative;
  font-weight: bold;
}
header .steps p::before {
  content: "";
  width: 120%;
  position: absolute;
  left: -120%;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background-color: var(--lighter-blue);
}

.experience {
  background-color: var(--main-color);
  padding-bottom: 200px;
  position: relative;
}
.experience .container .grid {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 5%;
  width: 75%;
  margin: auto;
}
.experience .container .grid .details {
  padding: 20px;
  background-color: var(--secondery-color);
  border-radius: 30px;
}
.experience .container .grid .details p.heading {
  font-size: 56px;
  font-weight: bold;
  margin: 50px 0px 50px;
  color: white;
}
.experience .container .grid .details span {
  font-weight: bold;
}
.experience .container .grid .details p.faded-text {
  line-height: 200%;
  color: var(--main-color);
}
.experience .container .grid .details > .flex {
  margin-top: 50px;
  justify-content: left;
  gap: 100px;
  align-items: center;
}
.experience .container .grid .details > .flex .main-button {
  background-color: white;
  color: var(--main-color);
}
.experience .container .grid .details .feedback {
  gap: 30px;
  width: 300px;
  line-height: 150%;
  padding: 9px;
}
.experience .container .grid .image {
  background-size: cover;
  background-color: white;
  border-radius: 30px;
  background-repeat: no-repeat;
  color: var(--main-color);
  font-size: 1.5em;
  text-transform: capitalize;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}
.experience .container .grid .image .benifits {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0px 20px;
  z-index: 3;
}
.experience .container .grid .image .benifits p {
  margin: 20px 0px;
}
.experience .container .grid .image .benifits p:nth-child(1) {
  color: var(--main-color);
}
.experience .container .grid .image .benifits p:nth-child(2) {
  color: var(--secondery-color);
}
.experience .container .grid .image .benifits p:nth-child(3) {
  color: red;
}
.experience .container .grid .image .benifits p span {
  display: block;
  text-align: center;
  font-size: 1.6em;
  font-weight: bold;
  line-height: 40px;
}
.experience .container .grid .image .benifits p span.counter {
  display: inline;
}
.experience .container .grid .image .floating_images {
  position: absolute;
  z-index: 2;
}
.experience .container .grid .image .floating_images.plate {
  bottom: -10px;
  left: -10px;
  transform: scale(0.9);
  opacity: 0.7;
}
.experience .container .grid .image .floating_images.burger {
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}
.experience .container .grid .image span.important {
  font-size: 2em;
  text-transform: uppercase;
}
.experience .container .grid .image .shield {
  display: block;
  text-align: center;
  width: 120px;
  height: 120px;
  display: grid;
  place-content: center;
  margin: 20px auto;
}
.experience .container .grid .image .shield img {
  width: 90px;
}
.experience .transtion-image {
  position: absolute;
  z-index: 9;
}
.experience .transtion-image.plate {
  width: 400px;
  right: -330px;
  transition: right 1s cubic-bezier(0.42, 0, 0, 1.02);
}
.experience .transtion-image.plate.visible {
  right: -30px;
}
.experience .transtion-image.transition {
  bottom: 0px;
  width: 200px;
  left: 50%;
  transform: translate(-50%, 50%);
}

.strength_points {
  background-color: #cbbead;
  padding-top: 150px;
}
.strength_points .container .header {
  width: 40%;
  margin: 0px auto 100px;
}
.strength_points .container .header .small {
  color: var(--main-color);
  display: block;
  text-align: center;
}
.strength_points .container .header .hero {
  font-size: var(--xlarge);
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
  margin: 20px 0px;
}
.strength_points .container .header .faded-text {
  text-align: center;
  color: var(--main-color);
}
.strength_points .container .flex {
  position: relative;
  justify-content: space-between;
  margin-top: 50px;
}
.strength_points .container .flex > .flex-vertical {
  width: 30%;
  gap: 50px;
}
.strength_points .container .flex > .flex-vertical .feature {
  position: relative;
  align-items: flex-start;
  width: 50%;
  text-align: right;
  gap: 15px;
}
.strength_points .container .flex > .flex-vertical .feature .faded-text {
  color: var(--main-color);
}
.strength_points .container .flex > .flex-vertical .feature .number {
  text-align: left;
  font-weight: bold;
  color: var(--main-color);
}
.strength_points .container .flex > .flex-vertical .feature .number::before {
  content: "";
  width: 50%;
  height: 1px;
  position: absolute;
  top: 9px;
  right: 30px;
  background-color: var(--main-color);
}
.strength_points .container .flex > .flex-vertical .feature .name {
  font-weight: bold;
  font-size: 22px;
  color: var(--main-color);
}
.strength_points .container .flex > .flex-vertical .feature img {
  width: 100px;
}
.strength_points .container .flex > .flex-vertical:first-child .feature {
  text-align: right;
  align-items: flex-start;
}
.strength_points .container .flex > .flex-vertical:first-child .feature .number {
  text-align: left;
}
.strength_points .container .flex > .flex-vertical:first-child .feature .number::before {
  content: "";
  width: 50%;
  height: 1px;
  position: absolute;
  top: 9px;
  left: 30px;
  background-color: var(--main-color);
}
.strength_points .container .flex > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 800px;
  -o-object-fit: contain;
     object-fit: contain;
}

.slider {
  position: relative;
  top: 150px;
  max-width: 90%;
  margin: auto;
}
.slider .container {
  width: -moz-fit-content;
  width: fit-content;
}
.slider .flex {
  height: 600px;
  justify-content: center;
  flex-direction: row-reverse;
}
.slider .flex .text {
  box-shadow: 20px 20px 50px 0px gray;
  width: 30%;
  background-color: white;
  height: 100%;
  align-items: flex-start;
  padding: 60px;
  gap: 30px;
  border-bottom-left-radius: 16px;
  border-top-left-radius: 16px;
  background-image: url("./images/carwash3-wrap-bg3.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: 9;
}
.slider .flex .text .small {
  font-size: var(--small);
  color: var(--main-color);
  font-weight: bold;
  position: relative;
}
.slider .flex .text .small::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--main-color);
  position: absolute;
  right: calc(100% + 5px);
  top: 50%;
  transform: translateY(-50%);
}
.slider .flex .text .hero {
  font-size: var(--xlarge);
  font-weight: bold;
  color: var(--main-color);
}
.slider .flex .text button {
  margin-top: 50px;
  background-color: var(--secondery-color);
  transition: 0.3s;
  border-color: var(--secondery-color);
}
.slider .flex .text button:hover {
  background-color: var(--secondery-color);
}
.slider .flex .slider-container {
  box-shadow: 20px 20px 50px 0px gray;
  height: 100%;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  direction: ltr;
}
.slider .flex .slider-container .before-after {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  justify-content: space-between;
  z-index: 5;
  transition: 0.5s opacity;
}
.slider .flex .slider-container .before-after p {
  background-color: white;
  padding: 8px 12px;
  border-radius: 5px;
  margin: 10px;
  color: #a6b7f5;
}
.slider .flex .slider-container .before-after.hidden {
  opacity: 0;
}
.slider .flex .slider-container .img-container img {
  display: block;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  height: 600px;
}
.slider .flex .slider-container .img-container .top {
  position: absolute;
  height: 100%;
  inset: 0;
  top: 0px;
  width: var(--position);
  z-index: 4;
}
.slider .flex .slider-container input {
  position: absolute;
  direction: ltr;
  inset: 0;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  opacity: 0;
  z-index: 11;
}
.slider .flex .slider-container svg {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  outline: 2px solid white;
  z-index: 10;
}
.slider .flex .slider-container .bolder {
  z-index: 10;
  pointer-events: none;
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: white;
  left: var(--position);
  transform: translateX(-50%);
  top: 0px;
}

.big-container {
  background-color: #cbbead;
  position: relative;
  z-index: 8;
}

.testmonials {
  background-color: #f0f4f4;
  margin-bottom: 0px;
  padding: 0px 0px 50px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.testmonials .hovering-images {
  position: absolute;
  z-index: 1;
}
.testmonials .hovering-images.orange-juice {
  top: 30%;
  left: 0px;
  z-index: 2;
}
.testmonials .hovering-images.red-orange {
  top: 130px;
  left: 0px;
}
.testmonials .hovering-images.lemon {
  top: 60%;
  left: -120px;
}
.testmonials .hovering-images.strawberry {
  top: 50%;
  right: 0px;
}
.testmonials .hovering-images.orange {
  top: 120px;
  right: 0px;
}
.testmonials .hovering-images.count-number {
  position: relative;
  display: block;
  margin: 150px auto 50px;
  width: 60%;
}
.testmonials .container {
  margin-top: 0px;
  z-index: 2;
}
.testmonials .comment {
  color: var(--main-color);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row-reverse;
  margin-top: 200px;
  gap: 50px;
  z-index: 2;
}
.testmonials .comment .intro {
  font-weight: bold;
  font-size: var(--xlarge);
  max-width: 300px;
}
.testmonials .comment .intro p {
  color: var(--main-color);
}
.testmonials .comment .intro .flex {
  justify-content: right;
}
.testmonials .comment .intro .flex p {
  color: var(--main-color);
}
.testmonials .comment .person {
  background-image: linear-gradient(bottom, white, transparent);
  border-radius: 16px;
}
.testmonials .comment .person img {
  width: 265px;
}
.testmonials .comment .card {
  background-color: white;
  padding: 50px;
  border-radius: 16px;
  z-index: 2;
  max-width: 600px;
}
.testmonials .comment .card .flex {
  gap: 30px;
  align-items: center;
}
.testmonials .comment .card .small {
  color: var(--main-color);
  line-height: 150%;
  max-width: 500px;
}
.testmonials .comment .card > p {
  color: var(--main-color);
  padding-top: 70px;
  font-weight: bold;
  font-size: var(--normal);
  text-align: right;
}
.testmonials .comment div .flex {
  flex-direction: row-reverse;
  justify-content: left;
}
.testmonials .comment div .flex .bubble {
  width: 50px;
  margin-left: 20px;
}
.testmonials .display {
  margin: 150px auto;
  position: relative;
  height: 375px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.testmonials .display .clients-count {
  max-width: 800px;
  width: 90%;
  display: block;
  z-index: -1;
}
.testmonials .display .content {
  z-index: 2;
}
.testmonials .display .content p {
  text-align: center;
  font-size: var(--xlarge);
  font-weight: bold;
  color: var(--main-color);
}
.testmonials .display .content p.small {
  font-size: var(--small);
  font-weight: normal;
}
.testmonials .display .content button {
  display: block;
  margin: 50px auto;
}
.testmonials .subscription {
  display: flex;
  gap: 2%;
  background-size: cover;
  justify-content: space-evenly;
}
.testmonials .subscription .card {
  padding: 60px 30px;
  width: 23%;
  gap: 50px;
  background-color: white;
  border-radius: 32px;
  z-index: 2;
  border: 2px solid var(--main-color);
}
.testmonials .subscription .card li,
.testmonials .subscription .card span {
  color: var(--main-color);
}
.testmonials .subscription .card:last-child {
  background-color: var(--main-color);
}
.testmonials .subscription .card:last-child * {
  color: white;
}
.testmonials .subscription .card * {
  width: 90%;
  text-align: center;
  justify-content: left;
}
.testmonials .subscription .card .name {
  font-size: var(--large);
  text-transform: capitalize;
}
.testmonials .subscription .card .price {
  font-size: var(--xlarge);
  font-weight: bold;
}
.testmonials .subscription .card ul {
  list-style-type: none;
}
.testmonials .subscription .card ul li {
  margin: 20px 0px;
  gap: 15px;
}
.testmonials .subscription .card ul li.disabled {
  color: #b7b7b7;
}
.testmonials .subscription .card ul li svg {
  width: 20px;
  background-color: var(--secondery-color);
  padding: 2px;
}
.testmonials .subscription .card ul li svg.minus {
  background-color: #b7b7b7;
}
.testmonials .subscription .card ul li svg path {
  fill: white;
}

footer {
  padding: 30px 0px 0px;
  background-color: white;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  color: var(--main-color);
  background-color: var(--secondery-color);
}
footer .container {
  position: relative;
}
footer .container hr {
  border: none;
  height: 1px;
  background-color: var(--main-color);
}
footer .container .logo {
  width: 250px;
}
footer .container > img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  top: -20%;
}
footer .offer {
  align-items: center;
  height: auto;
  flex-direction: row;
}
footer .offer button {
  border: 2px solid var(--main-color);
  background-color: var(--main-color);
  color: white;
}
footer .offer div p {
  font-size: var(--large);
  font-weight: bold;
  color: var(--main-color);
  max-width: 75%;
}
footer .offer div span {
  display: block;
  margin-top: 50px;
  font-size: var(--xlarge);
  font-weight: bold;
  color: var(--main-color);
}
footer .contacts {
  padding: 30px 0px;
  margin-top: 50px;
}
footer .contacts .number {
  font-size: var(--large);
  font-weight: bold;
}
footer .contacts .small {
  max-width: 250px;
}
footer .copyrights {
  padding: 30px 0px;
}
footer .copyrights button {
  background-color: transparent;
  border: 1px solid black;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: grid;
  place-content: center;
  border-radius: 8px;
}

@media (max-width: 1280px) {
  nav {
    padding: 8px;
  }
  nav .container .menu {
    width: 40px;
    cursor: pointer;
  }
  nav .container .menu path {
    fill: var(--main-color);
  }
  nav .container .menu li {
    display: none;
  }
  nav .container .menu li a {
    padding: 16px 12px;
  }
  header .container .car-hero {
    top: 70%;
    height: 600px;
  }
  header .container .card {
    gap: 15px;
    padding: 15px;
    border-radius: 20px;
    z-index: 3;
  }
  header .container p.hero {
    font-size: 50px;
  }
  .experience {
    padding-top: 50px;
  }
  .experience .container .grid .image .car {
    max-width: 100%;
  }
  .experience .transtion-image.plate {
    width: 400px;
  }
  .strength_points .container .flex > img {
    height: 700px;
  }
}
@media (max-width: 940px) {
  .container {
    width: 95%;
  }
  :root {
    --xlarge: 40px;
    --large: 20px;
    --normal: 12px;
    --small: 8px;
  }
  .flex {
    flex-direction: column;
  }
  nav .container .menu {
    display: block;
  }
  nav .container ul {
    display: none;
  }
  nav .container .nav_ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100%;
    width: 250px;
    right: 0px;
    top: 0%;
    align-items: flex-start;
    background-color: var(--main-color);
    justify-content: center;
    z-index: 999;
    transform: translateX(100%);
    transition: 0.3s;
    box-shadow: 0px 0px 100px 100px transparent;
  }
  nav .container .nav_ul.visible {
    box-shadow: 0px 0px 100px 0px black;
    transform: translateX(0px);
  }
  nav .container .nav_ul .close-icon {
    display: block;
    cursor: pointer;
  }
  nav .container .nav_ul li {
    border-top: 1px solid var(--lighter-blue);
    width: 100%;
    display: block;
  }
  nav .container .nav_ul li a {
    font-size: 18px;
    padding: 16px;
    display: block;
  }
  nav div.flex {
    flex-direction: row-reverse;
  }
  header .container div .hero {
    font-size: 48px;
  }
  header .container .car-hero {
    height: auto;
    width: 50%;
  }
  header .container .card {
    display: none;
  }
  header .steps {
    flex-direction: row;
    transform: translateX(-50%);
  }
  header .steps p::before {
    left: -60px;
    width: 50px;
  }
  .experience {
    background-color: var(--main-color);
    color: white;
  }
  .experience .container {
    padding: 10px;
  }
  .experience .container .grid {
    width: 100%;
    display: block;
  }
  .experience .container .grid .details p.heading {
    font-size: var(--xlarge);
  }
  .experience .container .grid .image {
    margin-top: 50px;
  }
  .experience .container .grid .image .shield img {
    width: 90px;
  }
  .experience .transtion-image.plate {
    display: none;
  }
  .strength_points {
    padding-top: 30px;
  }
  .strength_points .container .header {
    width: 90%;
    margin: auto;
  }
  .strength_points .container .flex {
    margin-top: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .strength_points .container .flex > .flex-vertical {
    order: 2;
    width: 50%;
    gap: 50px;
  }
  .strength_points .container .flex > .flex-vertical .feature {
    position: relative;
    align-items: flex-start;
    width: 50%;
    text-align: center;
    gap: 15px;
  }
  .strength_points .container .flex > .flex-vertical .feature .number {
    text-align: left;
    font-weight: bold;
    color: var(--secondery-color);
    display: block;
    width: 80%;
  }
  .strength_points .container .flex > .flex-vertical .feature .number::before {
    content: "";
    width: 50%;
    height: 1px;
    position: absolute;
    top: 9px;
    right: 30%;
    transform: translateX(50%);
    background-color: var(--secondery-color);
  }
  .strength_points .container .flex > .flex-vertical .feature .name {
    color: white;
    font-weight: bold;
    font-size: 22px;
  }
  .strength_points .container .flex > .flex-vertical .feature img {
    width: 100%;
    border-radius: 8px;
  }
  .strength_points .container .flex > .flex-vertical:first-child .feature {
    text-align: left;
    align-items: flex-start;
  }
  .strength_points .container .flex > .flex-vertical:first-child .feature .number {
    text-align: left;
  }
  .strength_points .container .flex > .flex-vertical:first-child .feature .number::before {
    content: "";
    width: 50%;
    height: 1px;
    position: absolute;
    top: 9px;
    right: 30%;
    transform: translateX(50%);
    left: unset;
    background-color: var(--secondery-color);
  }
  .strength_points .container .flex > img {
    order: 1;
    position: static;
    transform: none;
    width: 90%;
    margin: 10px auto;
  }
  .slider {
    top: 50px;
  }
  .slider .flex {
    height: auto;
    max-width: 100%;
    flex-direction: column;
  }
  .slider .flex .text {
    background-position: left;
    margin-top: 0px;
    width: 100%;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    flex-direction: column;
    padding: 60px 40px;
  }
  .slider .flex .text > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
  }
  .slider .flex .text > div button {
    margin: 0px 40px 0px 0px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .slider .flex .slider-container {
    width: 100%;
  }
  .slider .flex .slider-container .before-after {
    flex-direction: row;
  }
  .testmonials {
    margin-bottom: 0px;
    padding: 0px 0px;
  }
  .testmonials .hovering-images {
    position: absolute;
    z-index: 1;
  }
  .testmonials .hovering-images.orange-juice {
    z-index: 1;
    top: 60%;
    left: 0px;
    width: 350px;
  }
  .testmonials .hovering-images.red-orange {
    top: 130px;
    left: 0px;
  }
  .testmonials .hovering-images.lemon {
    top: 60%;
    left: -120px;
  }
  .testmonials .hovering-images.strawberry {
    top: 50%;
    right: 0px;
  }
  .testmonials .hovering-images.orange {
    top: 50px;
    right: 0px;
    width: 250px;
  }
  .testmonials .hovering-images.count-number {
    position: relative;
    display: block;
    margin: 0px auto 50px;
    width: 60%;
  }
  .testmonials .container {
    margin-top: 0px;
  }
  .testmonials .comment {
    flex-wrap: wrap;
  }
  .testmonials .display {
    margin: 150px auto;
    position: relative;
    height: 375px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .testmonials .display .content {
    z-index: 2;
  }
  .testmonials .display .content p {
    text-align: center;
    font-size: var(--xlarge);
    font-weight: bold;
    color: var(--main-color);
  }
  .testmonials .display .content p.small {
    font-size: var(--small);
    font-weight: normal;
  }
  .testmonials .display .content button {
    display: block;
    margin: 50px auto;
  }
  .testmonials .subscription {
    display: flex;
    gap: 2%;
    background-size: cover;
    flex-wrap: wrap;
    justify-content: center;
  }
  .testmonials .subscription .card {
    padding: 60px 30px;
    min-width: 250px;
    width: 40%;
    gap: 50px;
    margin: 20px 0px;
  }
  .testmonials .subscription .card ul li {
    flex-direction: row;
    justify-content: flex-start;
  }
  footer .container {
    position: relative;
  }
  footer .container > img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    top: -20%;
  }
  footer .offer {
    flex-direction: row;
    height: auto;
  }
  footer .contacts {
    flex-direction: row;
  }
  footer .copyrights {
    padding: 30px 0px;
    flex-direction: row;
  }
}
@media (max-width: 500px) {
  nav .container .logo {
    width: 135px;
  }
  nav div.flex {
    flex-direction: row-reverse;
  }
  header {
    height: auto;
    padding-top: 200px;
  }
  header .container {
    flex-direction: column;
    margin-top: 0px;
  }
  header .container .car-hero {
    top: 60%;
    left: 40%;
    margin-top: 65px;
    width: 90%;
    -o-object-fit: contain;
       object-fit: contain;
    margin-top: 65px;
    height: auto;
    margin-top: 0px;
  }
  header .steps {
    bottom: 10px;
    transform: none;
    position: st;
  }
  header .steps p {
    position: relative;
    right: 50%;
    transform: translateX(-50%);
  }
  header .container p.hero {
    font-size: var(--xlarge);
  }
  header .container .card {
    display: none;
  }
  header .steps {
    flex-direction: row;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: end;
    left: 50%;
  }
  header .steps p {
    margin: 8px 0px;
    width: 50%;
  }
  header .steps p::before {
    left: -45px;
    width: 50px;
  }
  .experience {
    background-color: var(--main-color);
    color: white;
    padding-top: 0px;
  }
  .experience .container .grid {
    display: block;
  }
  .experience .container .grid .image {
    margin-top: 50px;
    padding-bottom: 50px;
  }
  .strength_points {
    padding-top: 30px;
  }
  .strength_points .container .header {
    width: 90%;
    margin: auto;
  }
  .strength_points .container .flex {
    margin-top: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .strength_points .container .flex > .flex-vertical {
    order: 2;
    width: 50%;
    gap: 50px;
  }
  .strength_points .container .flex > .flex-vertical .feature {
    position: relative;
    align-items: flex-start;
    width: 50%;
    text-align: center;
    gap: 15px;
  }
  .strength_points .container .flex > .flex-vertical .feature .number {
    text-align: left;
    font-weight: bold;
    color: var(--secondery-color);
    display: block;
    width: 80%;
  }
  .strength_points .container .flex > .flex-vertical .feature .number::before {
    content: "";
    width: 50%;
    height: 1px;
    position: absolute;
    top: 9px;
    right: 30%;
    transform: translateX(50%);
    background-color: var(--secondery-color);
  }
  .strength_points .container .flex > .flex-vertical .feature .name {
    color: white;
    font-weight: bold;
    font-size: 22px;
  }
  .strength_points .container .flex > .flex-vertical .feature img {
    width: 100%;
    border-radius: 8px;
  }
  .strength_points .container .flex > .flex-vertical:first-child .feature {
    text-align: left;
    align-items: flex-start;
  }
  .strength_points .container .flex > .flex-vertical:first-child .feature .number {
    text-align: left;
  }
  .strength_points .container .flex > .flex-vertical:first-child .feature .number::before {
    content: "";
    width: 50%;
    height: 1px;
    position: absolute;
    top: 9px;
    right: 30%;
    transform: translateX(50%);
    left: unset;
    background-color: var(--secondery-color);
  }
  .strength_points .container .flex > img {
    order: 1;
    position: static;
    transform: none;
    width: 90%;
    margin: 10px auto;
  }
  .slider {
    top: 180px;
  }
  .slider .flex {
    height: 380px;
  }
  .slider .flex .text {
    padding: 30px;
    width: 90%;
  }
  .slider .flex .text > div button {
    margin: 0px;
  }
  .slider .flex .slider-container {
    width: 90%;
  }
  .slider .flex .slider-container .img-container img {
    height: 100%;
  }
  .slider .flex .slider-container .before-after {
    flex-direction: row;
  }
  .testmonials {
    margin-bottom: 0px;
    padding: 150px 0px 50px;
  }
  .testmonials .container {
    margin-top: 0px;
  }
  .testmonials .comment {
    flex-wrap: wrap;
  }
  .testmonials .display {
    margin: 150px auto;
    position: relative;
    height: 375px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .testmonials .display .content {
    z-index: 2;
  }
  .testmonials .display .content p {
    text-align: center;
    font-size: var(--xlarge);
    font-weight: bold;
    color: var(--main-color);
  }
  .testmonials .display .content p.small {
    font-size: var(--normal);
    font-weight: normal;
  }
  .testmonials .display .content button {
    display: block;
    margin: 50px auto;
  }
  .testmonials .subscription {
    background-image: url("./images/carwash3-section-bg2.webp");
    display: flex;
    gap: 2%;
    background-size: cover;
    flex-wrap: wrap;
    justify-content: center;
  }
  .testmonials .subscription .card {
    padding: 60px 30px;
    min-width: 250px;
    width: 90%;
    gap: 50px;
    margin: 20px 0px;
  }
  .testmonials .subscription .card ul li {
    flex-direction: row;
  }
  footer {
    padding-top: 90px;
  }
  footer .container {
    position: relative;
  }
  footer .container > img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    top: -20%;
  }
  footer .offer {
    flex-direction: column;
    height: auto;
  }
  footer .offer div p {
    max-width: 90%;
    text-align: center;
    margin: auto;
    font-size: 14px;
  }
  footer .offer div span {
    margin: 20px auto;
    text-align: center;
    font-size: 30px;
  }
  footer .contacts {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  footer .contacts .small {
    font-size: var(--normal);
    margin-bottom: 20px;
  }
  footer .contacts .number {
    font-size: 16px;
  }
  footer .contacts img {
    margin: 35px auto;
  }
  footer .copyrights {
    padding: 30px 0px;
    flex-direction: column;
  }
}
.cls-1 {
  stroke-dasharray: 4573;
  animation: 10s fillsvg ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes fillsvg {
  0% {
    stroke-dashoffset: 0;
  }
  40%, 60% {
    stroke-dashoffset: 4573;
  }
  100% {
    stroke-dashoffset: 0;
  }
}/*# sourceMappingURL=style.css.map */