* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

header {
  position: fixed;
  width: 100%;
  min-height: 85px;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  z-index: 100;
}

.menuToggle {
  display: none;
}

header ul {
  position: relative;
}
header ul li {
  position: relative;
  list-style: none;
  float: left;
}

header ul li a {
  color: black;
  font-size: 0.96rem;
  padding: 20px 20px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  transition: all;
  transition-duration: 1s;
}

header ul li a:hover {
  color: grey;
}

header ul li ul {
  overflow: hidden;
  border: none;
  border-radius: 10px;
  position: absolute;
  left: 0;
  width: 180px;
  background-color: #383838;
  display: none;
}
header ul li ul li a {
  color: rgb(255, 255, 255);
}

header ul li ul a:hover {
  color: grey;
}

header ul li:hover ul {
  display: block;
}

header ul li ul li {
  position: relative;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

/* navbar responsive start here///////////////////////// */

@media (max-width: 1030px) {
  header {
    padding: 10px 20px;
  }

  header nav {
    position: absolute;
    width: 100%;
    top: 90px;
    left: 0;
    background: #383838;
    display: none;
  }
  header .logo {
    width: 70px;
  }

  header.active nav {
    display: initial;
  }

  header nav ul li {
    width: 100%;
  }
  header nav ul li a{
    color: white;
  }

  header nav ul li ul {
    position: relative;
    width: 100%;
    left: 0;
  }

  .menuToggle {
    display: block;
    cursor: pointer;
  }
}
.main-container {
  position: relative;
  top: 90px;
  height: 85vh;
  overflow: hidden;
  /* background: url("images/karvaan.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -9999;
  animation: main-con-ani;
  animation-duration: 50s;
  animation-iteration-count: infinite;
  animation-direction: alternate; */
}

@keyframes main-con-ani {
  25% {
    background: url("images/Oshan.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  45% {
    background: url("images/alsvin.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  65% {
    background: url("images/sherpa.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  85% {
    background: url("images/hero-silder1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  100% {
    background: url("images/karvaan.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.section-heading {
  position: relative;
  top: 150px;
  height: fit-content;
  text-align: center;
  font-size: 20px;
  color: black;
}

.section-bold {
  font-size: 36px;
  color: #383838;
}

.car-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}
.car-images-img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: 0.4s ease;
}

.items-links {
  width: 90%;
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.item-link {
  border: 2px solid #383838;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 400;
  color: #383838;
  cursor: pointer;
  border-radius: 30px;
  transition: 0.4s ease;
}

.item-link:hover {
  background-color: #383838;
  color: white;
}

.menu-active {
  background-color: #383838;
  color: white;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.car-images {
  border-radius: 12px;
  overflow: hidden;
  animation: Sclanimation 0.4s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.103);
}

.car-images:hover .overlay {
  top: 0;
}

.car-names {
  text-align: center;
  position: relative;
  bottom: 20px;
  color: #383838;
}
.overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0%;
  background: linear-gradient(transparent, #383838);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  transition: 0.4s ease;
}

.overlay h4 {
  font-size: 20px;
  color: white;
}

.overlay p {
  font-size: 14px;
  color: white;
  text-align: center;
  width: 90%;
}
.action-aeria {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-block;
  width: fit-content;
  padding: 10px 20px;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  color: #383838;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: 0.4s ease;
}
.btn:hover {
  background: transparent;
  border-color: white;
  color: white;
}

.btn-light {
  background: transparent;
  border-color: white;
  color: white;
}

.btn-light:hover {
  background: white;
  color: black;
}

@keyframes Sclanimation {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale((1));
  }
}

.car-images:hover img {
  transform: scale(1.02);
}

#projects {
  position: relative;
  top: 130px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

@media (max-width: 1030px) {
  .container {
    width: 90%;
  }
  .item-links {
    width: 90%;
  }
}

@media (max-width: 991px) {
  .items-links {
    width: 100%;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .items-links {
    justify-content: space-evenly;
    gap: 10px;
    flex-wrap: wrap;
  }
  .gallery {
    grid-template-columns: 1fr;
  }

  .car-images {
    height: max-content;
  }
}

.news_and_events {
  height: 70vh;
  background: black;
  position: relative;
  top: 170px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.news-section {
  position: relative;
  top: 500px;
}

.news-images {
  width: 40%;
  height: 70%;
  background: url("images/hero-slider3.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.news-content {
  width: 40%;
  height: 70%;
  color: white;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
}
.news-content p {
  font-size: 0.9rem;
  font-weight: 400;
}

@media (max-width: 1030px) {
  .news_and_events {
    height: max-content;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .news-images {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

/* .................................................Main-footer........................... */

.footer {
  background-color: #383838;
  position: relative;
  top: 380px;
  padding: 70px 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer_container {
  max-width: 1170px;
  margin: auto;
}

.footer-col h4 {
  color: white;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 35px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 20px;
}

/* .footer-col ul li{
  padding: 10px 0;
} */

.footer-col ul li a {
  font-size: 16px;
  color: rgb(223, 223, 223);
  text-decoration: none;
  font-weight: 300;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 10px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50px;
  color: white;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: white;
}

ul {
  list-style: none;
}

@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 574px) {
  .footer {
    position: relative;
    top: 200px;
  }
  .footer-col {
    width: 100%;
  }
}

/* ..........................................Main-Footer Ends ........................................ */

.about-footer {
  background-color: #383838;
  position: relative;
  top: 0px;
  padding: 70px 0;
}

.about-row {
  display: flex;
  flex-wrap: wrap;
}

.about-footer-col {
  width: 25%;
  padding: 0 15px;
}

.about-footer-container {
  max-width: 1170px;
  margin: auto;
}

.about-footer-col h4 {
  color: white;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 35px;
}

.about-footer-col ul li:not(:last-child) {
  margin-bottom: 20px;
}

.about-footer-col ul li a {
  font-size: 16px;
  color: rgb(223, 223, 223);
  text-decoration: none;
  font-weight: 300;
  display: block;
  transition: all 0.3s ease;
}

.about-footer-col ul li a:hover {
  color: white;
  padding-left: 10px;
}

.about-footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50px;
  color: white;
  transition: all 0.5s ease;
}

.about-footer-col .social-links a:hover {
  color: #24262b;
  background-color: white;
}

ul {
  list-style: none;
}

@media (max-width: 767px) {
  .about-footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 574px) {
  .about-footer {
    position: relative;
    top: 30px;
  }
  .about-footer-col {
    width: 100%;
  }
}

/* .......................packages_footer................................. */

.package_footer {
  background-color: #383838;
  position: relative;
  top: 150px;
  padding: 70px 0;
}

.package_row {
  display: flex;
  flex-wrap: wrap;
}

.package_footer-col {
  width: 25%;
  padding: 0 15px;
}

.package_footer-container {
  max-width: 1170px;
  margin: auto;
}

.package_footer-col h4 {
  color: white;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 35px;
}

.package_footer-col ul li:not(:last-child) {
  margin-bottom: 20px;
}

.package_footer-col ul li a {
  font-size: 16px;
  color: rgb(223, 223, 223);
  text-decoration: none;
  font-weight: 300;
  display: block;
  transition: all 0.3s ease;
}

.package_footer-col ul li a:hover {
  color: white;
  padding-left: 10px;
}

.package_footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50px;
  color: white;
  transition: all 0.5s ease;
}

.package_footer-col .social-links a:hover {
  color: #24262b;
  background-color: white;
}

ul {
  list-style: none;
}

@media (max-width: 767px) {
  .package_footer {
    position: relative;
    top: 100px;
  }
  .package_footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 574px) {
  .package_footer {
    position: relative;
    top: 100px;
  }
  .package_footer-col {
    width: 100%;
  }
}

/* .....................................About Us..................................... */

.about_section {
  position: relative;
  top: 30px;
  width: 100%;
  min-height: 100vh;
  background-color: black;
}

.about_container {
  width: 80%;
  display: block;
  margin: auto;
  padding-top: 100px;
}

.about_content_section {
  float: left;
  width: 55%;
}

.about_images {
  float: right;
  width: 40%;
}

.about_images img {
  position: relative;
  top: 70px;
  width: 100%;
  height: auto;
}

.about_content_section .about_title {
  text-transform: uppercase;
  font-size: 16px;
  color: white;
}

.about_content_section .about_title h2 {
  font-size: 30px;
  font-weight: 500;
}

.about_content_section .about_content h3 {
  margin-top: 20px;
  color: #a5a5a5;
  font-size: 16px;
}

.about_content_section .about_content p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: #a5a5a5;
}
.about_content_section .about_content .button {
  margin-top: 20px;
}

.about_content_section .about_content .button a {
  background-color: transparent;
  border: 2px solid #24262b;
  border-radius: 15px;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  transition: 0.4s ease;
}

.about_content_section .about_content .button a:hover {
  background-color: #24262b;
  color: white;
}

.about_content_section .social {
  margin-top: 35px;
}

.about_content_section .social i {
  color: white;
  font-size: 25px;
  padding: 10px 10px;
  transition: 0.4s ease;
}

.about_content_section .social i:hover {
  background: #24262b;
  color: white;
  border-radius: 50px;
}

@media (max-width: 768px) {

  .about_section{
    position: relative;
    height: 130vh;
  }
  .about_container {
    width: 80%;
    height: 120vh;
    display: block;
    margin: auto;
    padding-top: 120px;
  }

  .about_content_section {
    float: none;
    width: 100%;
    display: block;
    margin: auto;
  }

  .about_images {
    position: relative;
    top: -20px;
    float: none;
    margin: auto;
    width: 90%;
    z-index: 99;
  }

  .about_images img {
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
  }

  .about_content_section .title {
    text-align: center;
    font-size: 19px;
  }

  .about_content_section .about_content .button {
    text-align: center;
  }

  .about_content_section .about_content .button a {
    padding: 9px 30px;
  }
  .about_content_section .social {
    text-align: center;
  }
}

.package_container {
  position: relative;
  top: 50px;
  width: 100%;
  min-height: 100vh;
  background-color: #24262b;
}
.gold {
  color: goldenrod;
}
.Silver {
  color: silver;
}

.package_container h2 {
  color: white;
  font-size: 32px;
  padding: 50px 0;
  text-align: center;
}

.price-row {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.price-col {
  background: #383838;
  padding: 10% 15%;
  border-radius: 10px;
  color: white;
  text-align: center;
}

.price-col p {
  font-size: 22px;
}
.price-col h3 {
  font-size: 20px;
  margin: 20px 0 40px;
  font-weight: 500;
}

.price-col h3 span {
  font-size: 48px;
}

.price-col ul {
  text-align: left;
  margin: 20px 0;
  color: #ddd;
  list-style: none;
}

.price-col ul li {
  margin: 15px 0;
}

.price-col ul li::before {
  content: "\2022";
  color: #e33058;
  font-weight: bold;
  margin-right: 8px;
}

.price-col button {
  width: 40%;
  padding: 14px 0;
  background: transparent;
  color: white;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid white;
  border-radius: 6px;
  margin-top: 30px;
  cursor: pointer;
  transition: 0.4s ease;
}

.price-col button:hover {
  background-color: #24262b;
}

.service-booking-body {
  height: 100vh;
  background: url("images/hero-silder2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-booking-container {
  background: rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 65%;
  height: fit-content;
  min-width: 420px;
  padding: 35px 50px;
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 10px;
  box-shadow: 20px 30px 25px rgba(0, 0, 0, 0.15);
}

.service-booking-container h3 {
  position: relative;
  font-size: 30px;
  text-align: left;
  color: white;
  text-decoration: underline;
}

.service-booking-container p {
  position: relative;
  top: 10px;
  margin: auto;
  width: 100%;
  text-align: left;
  color: white;
  font-size: 14px;
  font-weight: 400;
}

form {
  width: 100%;
  position: relative;
  margin: 30px auto 0 auto;
}

.form-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px 30px;
  margin-bottom: 20px;
}

label {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

textarea,
input {
  border: 2px solid #dadada;
  border-radius: 7px;
  width: 100%;
  font-weight: 400;
  padding: 8px 10px;
  margin-top: 5px;
}

textarea {
  resize: none;
}

textarea:focus,
input:focus {
  outline: none;
  border-color: #003ad8c9;
  box-shadow: 0 0 10px #003ad8be;
}

form button {
  border: none;
  padding: 10px 20px;
  background: linear-gradient(130deg, #24262b, #383838);
  color: white;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.1s ease;
}
form button:hover{
  outline: none;
  border-color: #0044ffc9;
  box-shadow: 0 0 10px #0044ffbe;
}

select{
  outline: none;
  display: block;
  border: 2px solid #dadada;
  border-radius: 7px;
  width: 70%;
  font-weight: 400;
  padding: 8px 10px;
  margin-top: 5px;
}

option{
  height: max-content;
  font-size: 14px;
  overflow: hidden;
  border: none;
  border-radius: 10px;
  width: 180px;
  font-weight: 500;
}

.service-wrapper{
  position: relative;
  top: 70px;
  display: flex;
  width: 100vw;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #fafafa;

}
.service-wrapper a{
  text-decoration: none;
  margin-left: 70%;
  font-weight: 500;
  position: relative;
  bottom: 50px;
  border: 2px solid #24262b;
  border-radius: 25px;
  padding: 10px 20px;
  transition: .4s ease;
  color: #24262b;
}

.service-wrapper a:hover{
  background: #24262b;
  color: white;
}

.service-wrapper h2{
  color: #24262b;
  font-size: 2.5rem;
  margin: 25px 0;
  text-align: center;
  font-weight: 500;
}

.service-content-box{
  display: flex;
  justify-content: center;
  flex-wrap:wrap;
  width: 1000px;
  margin-top: 30px;
}

.card{
  min-height: 220px;
  width: 250px;
  padding: 30px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: white;
  margin: 10px 40px;
  box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.2);
  transition: .6s ease;
}

.card i{
  margin: 20px;
  font-size: 40px;
  color: #24262b;
}
.card h3{
  margin-bottom: 12px;
  font-weight: 400;
  text-align: center;

}

.card p{
  color: #383838;
  text-align: center;
}
.card:hover i,
.card:hover p{
  color: white;
}
.card:hover h3{
  color: white;
  font-weight: 500;
}


.card:nth-child(1):hover{
  background:linear-gradient(45deg,
  rgba(31, 31, 31, 0.87)0%,
  rgba(34, 34, 34, 0.7)100%),
  url(images/service.jpg);
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card:nth-child(2):hover{
  background:linear-gradient(45deg,
  rgba(31, 31, 31, 0.87)0%,
  rgba(34, 34, 34, 0.7)100%),
  url(images/general\ checkup.jpg);
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card:nth-child(3):hover{
  background:linear-gradient(45deg,
  rgba(31, 31, 31, 0.87)0%,
  rgba(34, 34, 34, 0.7)100%),
  url(images/ac\ checkup.jpg);
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card:nth-child(4):hover{
  background:linear-gradient(45deg,
  rgba(31, 31, 31, 0.87)0%,
  rgba(34, 34, 34, 0.7)100%),
  url(images/electrical.jpg);
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card:nth-child(5):hover{
  background:linear-gradient(45deg,
  rgba(31, 31, 31, 0.87)0%,
  rgba(34, 34, 34, 0.7)100%),
  url(images/images.jpg);
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
}


.card:nth-child(6):hover{
  background:linear-gradient(45deg,
  rgba(31, 31, 31, 0.87)0%,
  rgba(34, 34, 34, 0.7)100%),
  url(images/polish.jpeg);
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card:nth-child(7):hover{
  background:linear-gradient(45deg,
  rgba(31, 31, 31, 0.87)0%,
  rgba(34, 34, 34, 0.7)100%),
  url(images/shutterstock_282394004.jpg);
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media(max-width:1020px){

  .service-wrapper a{
    margin-left:0;
    position: relative;
    bottom: 10px;
  }
  .service-wrapper{
    padding: 25px;
  }
  .service-wrapper h2{
    font-size: 2.5rem;
    font-weight: 600;
  }

  .service-content-box{
    flex-direction: column;
    width: 100%;
  }
  .card{
    min-width: 300px;
    margin: 10px auto;
  }
}

.contact-body{
  background: #24262b;
}

.contact-section{
  display: flex;
  flex-direction: column;
  text-align:center;
  width: 100%;
  margin: auto;
  position: relative;
  top: 120px;
  /* margin-top: 2em; */
}

.sectionHeader{
  text-transform: capitalize;
  font-weight: bold;
  font-size: 1.1rem;
  color: white;
  margin-bottom: .5em;
}

.heading, .sub-heading{
  margin-bottom:.5em;
  font-weight: bold;
  color: white;

}


.sub-heading{
  text-align: left;
}

.para{
  color: white;
  font-size: 1.1rem;
  line-height: 1.5em;
  margin-bottom: 1em;

}

.para2{
  text-align: left;
}



.contactForm{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 3em;
  margin-top: 3em;

}

.innerForm{
  width: 40%;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
}

.form-input{
  border: 1px solid #24262b;
  width: 95%;
  max-width: 700px;
  font-size:.9rem;
  padding: 1em;
  outline: none;
  margin-bottom:1em;
  background-color: white;
  border-radius: 10px;
}

.submit{
  background-color: rgb(22, 37, 255);
  font-weight: 500;
  cursor: pointer;
  color: white;
}

.map-container{
  position: relative;
  width: 50%;
  height: 500px;

}

.mapBg{
  position: absolute;
  background-color: #383838;
  top: 0%;
  right: 0%;
  width: 200px;
  height: 90%;
  border-radius: 20px;

}
.map{
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 90%;
  height: 90%;
}

.map iframe{
  width: 100%;
  height: 100%;
}




@media (max-width:1000px) {
  .contact-section{
    max-width: 1100px;
  }

  .contactForm{
    flex-direction: column;
    height: max-content;
  }

  .map-container{
    width: 80%;
  }
  

  .innerForm{
    width: 60%;
  }
}


.slider{
  width: 100%;
  height: 600px;
  overflow: hidden;
}

figure{
  position: relative;
  left: 0%;
  width: 400%;
  animation: 30s slide infinite;
}

.slide{
  position: relative;
  width: 25%;
  height: 100%;
  float: left;
}

.slide img{
  max-width: 100%;
  height: 750px;
}


@keyframes slide{
  0%{
    left: 0;
  }

  10%{
    left: 0;
  }

  20%{
    left: -100%;
  }
  30%{
    left: -100%;
  }

  40%{
    left: -200%;
  }
  50%{
    left: -200%;
  }

  60%{
    left: -300%;
  }

70%{
    left: -300%;
  }

  80%{
    left: -200%;
  }

  90%{
    left: -200%;
  }
  100%{
    left: -100%;
  }
 

