* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: Arial, Helvetica, sans-serif;
}

.ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  list-style: none;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  justify-content: space-around;
  background-color: grey;
  border: solid 2px black;
  border-radius: 50px;
  color: black;
  padding: 10px;
  width: 100%;
  height: auto;
  margin-top: 20px;
  padding: 40px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}
.ul .logo {
  height: 40vh;
  width: 40vh;
}
.ul button {
  padding: 3px 8px;
  border-radius: 10px;
}
.ul button:hover {
  background-color: rgb(56, 49, 49);
  color: antiquewhite;
}
.ul #id {
  text-align: center;
  border: solid black 1px;
  background-color: rgb(226, 220, 220);
  margin-top: 15px;
  gap: 10px;
  height: 3vh;
  width: 40vh;
}

@media (max-width: 430px) {
  .ul {
    margin-top: 15px;
    gap: 20px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    align-items: center;
  }
  .ul button {
    padding: 1px 7px;
  }
  .ul button:hover {
    background-color: rgb(56, 49, 49);
    color: antiquewhite;
  }
}
.sobre {
  width: 600px;
  height: 550px;
  background-color: rgb(45, 125, 195);
  background-size: border-box;
  text-align: center;
  padding: 50px;
  border-radius: 50px;
  margin: auto;
  margin-top: 30px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}
.sobre .imagen-sobre {
  width: 450px;
  height: 300px;
}

@media (max-width: 430px) {
  .sobre {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
  }
  .sobre .imagen-sobre {
    width: 300px;
    height: 30vh;
  }
  .sobre .about {
    margin-top: 20px;
  }
}
@keyframes whats {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(20px);
  }
  40% {
    transform: translateX(-20px);
  }
  60% {
    transform: translateX(0);
  }
}
footer .wp {
  animation: whats 2s infinite ease-in-out;
}

@keyframes scale {
  from {
    scale: 1;
  }
  to {
    scale: 1.5;
  }
}
.ul-ofertas .img-ofertas:hover {
  animation: scale 1s forwards ease-in-out;
}

.ul-ofertas {
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  justify-content: space-evenly;
  background-color: pink;
  border: solid 2px black;
  border-radius: 50px;
  color: black;
  padding: 10px;
  width: 100%;
  height: auto;
  margin-top: 20px;
  padding: 40px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}
.ul-ofertas #p-ofertas {
  text-align: center;
  border: solid black 1px;
  background-color: rgb(226, 220, 220);
  margin-top: 15px;
}
.ul-ofertas .img-ofertas {
  height: 40vh;
  width: 40vh;
}
@media (max-width: 430px) {
  .ul-ofertas {
    margin-top: 15px;
    gap: 20px;
    width: 360px;
    display: flex;
    flex-direction: column;
    justify-items: center;
    width: 100%;
    align-items: center;
  }
  .ul-ofertas .img-ofertas {
    height: 250px;
    width: 300px;
  }
}
.color-index {
  background-color: rgb(224, 172, 101);
}

.main-index {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 80px;
}

.img-car {
  width: 80vh;
  height: auto;
  object-fit: contain;
}

.pindex {
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 430px) {
  .main-index {
    flex-direction: column;
    padding: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .pindex {
    margin-top: 25px;
    padding: 10px;
    font-size: 1.2rem;
    text-align: center;
  }
  p {
    text-align: center;
    font-size: 15px;
    text-align: left;
  }
  .color-index {
    background-color: rgb(177, 172, 172);
  }
}
header {
  position: sticky;
  top: 0px;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-flow: column;
  justify-content: space-around;
  background-color: rgb(58, 183, 225);
  padding: 10px;
  width: 100%;
  box-shadow: 5px 5px 10px black;
  z-index: 10;
}

.mcg {
  width: 15vh;
  height: 15vh;
  margin-left: 20px;
  margin-bottom: 10px;
}

h1 {
  font-family: Arial, Helvetica, sans-serif;
  color: navy;
  text-align: center;
}

nav ul {
  font-family: Arial, Helvetica, sans-serif;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-around;
}
nav ul .menu {
  font-family: Arial, Helvetica, sans-serif;
  color: antiquewhite;
  display: flex;
  border: solid 2px black;
  padding: 3px 50px;
  background-color: blue;
  text-decoration: none;
}
nav ul .menu:hover {
  background-color: rgb(224, 172, 101);
  color: black;
}

@media (max-width: 430px) {
  header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px;
  }
  header .mcg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 10vh;
    height: 10vh;
  }
  header .menu {
    width: 5vw;
    height: auto;
    padding: 10px 10px;
    display: flex;
    justify-content: center;
  }
  h1 {
    display: none;
  }
}
footer {
  margin-top: 20px;
  height: 18vh;
  width: auto;
}
footer .foot {
  height: 8vh;
  width: 8vh;
}
footer .wp {
  margin-bottom: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  height: 8vh;
  width: 8vh;
}

@media (max-width: 430px) {
  footer {
    position: absolute;
    margin-bottom: 0;
    flex-direction: column;
  }
  footer .foot {
    height: 40px;
    width: 40px;
  }
  footer .wp {
    height: 50px;
    width: 50px;
  }
}
form {
  margin: 0 auto;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(198, 143, 249);
  padding: 80px;
  text-align: center;
  border-radius: 20px;
  width: 70vh;
  box-shadow: 5px 5px 10px black;
  gap: 4px;
}
form .boton-contacto {
  margin-top: 10px;
  font-family: Arial, Helvetica, sans-serif;
  background-color: rgb(163, 67, 163);
  color: black;
}
form .boton-contacto:hover {
  background-color: rgb(214, 83, 105);
}
form .comentario {
  margin-top: 10px;
  height: 100px;
  width: 400px;
  padding: 50px;
  border: none;
}
form label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}
form input {
  height: 25px;
  width: 400px;
}
form iframe {
  border-radius: 10px;
}

@media (max-width: 430px) {
  form {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    width: 100%;
    height: 1000px;
    background-color: brown;
    margin-bottom: 20px;
  }
  form .comentario {
    width: 43vh;
    height: 120px;
  }
  input {
    width: 20px;
  }
  iframe {
    width: 43vh;
    height: 300px;
    border-radius: 5px;
  }
}

/*# sourceMappingURL=styles.css.map */
