.page .cars {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 40px;
  padding-inline: 20px;
  padding-bottom: 70px;
  display: flex;
  gap: 25px;
  flex-direction: column;
}
.page .cars .car {
  width: 100%;
  height: auto;
  position: relative;
  border: 1px solid rgb(231, 231, 231);
  padding: 19px;
  border-radius: 6px;
  text-align: center;
}
.page .cars .car img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
.page .cars .car .name {
  margin-top: 15px;
  color: #1F1F1F;
  font-size: 24px;
}
.page .cars .car .price {
  margin-top: 15px;
  color: rgb(45, 206, 13);
  font-size: 17px;
}
.page .cars .car .des {
  margin-top: 15px;
  color: #1F1F1F;
  font-size: 16px;
}
.page .cars .car .icon {
  margin-top: 30px;
}
.page .cars .car .icon img {
  width: 90px;
  height: auto;
  margin-inline: 10px;
}
.page .contact {
  position: relative;
  padding-top: 40px;
  width: 100%;
  height: 100%;
}
.page .contact iframe {
  width: 100%;
  height: 500px;
  position: relative;
}
.page .contact .cards {
  position: relative;
  width: 100%;
  height: auto;
  padding-block: 60px;
  padding-inline: 20px;
  display: flex;
  gap: 18px;
  flex-direction: column;
}
.page .contact .cards .card {
  width: 100%;
  height: auto;
  border: 0;
  background: rgb(226, 226, 226);
  border-radius: 6px;
  margin-inline: auto;
  padding: 28px;
}
.page .contact .cards .card h2 {
  color: #1F1F1F;
  font-size: 17px;
}
.page .contact .cards .card h2 i {
  margin-right: 15px;
}
.page .contact .cards .card a {
  margin-bottom: 16px;
  color: #1F1F1F;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
}
.page .contact .contact-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 40px 20px;
  max-width: 590px;
}
.page .contact .contact-form h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #1F1F1F;
}
.page .contact .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page .contact .contact-form form input,
.page .contact .contact-form form textarea {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background: #f0f0f0;
  color: #333;
  resize: vertical;
  outline: none;
}
.page .contact .contact-form form input::-moz-placeholder, .page .contact .contact-form form textarea::-moz-placeholder {
  color: #888;
}
.page .contact .contact-form form input::placeholder,
.page .contact .contact-form form textarea::placeholder {
  color: #888;
}
.page .contact .contact-form form input:focus,
.page .contact .contact-form form textarea:focus {
  outline: none;
}
.page .contact .contact-form form button {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  text-align: center;
  color: white;
  background: #1F1F1F;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}
.page .contact .contact-form form button:hover {
  background: #222;
}
.page .contact .contact-form form button:active {
  background: #000;
}

@media only screen and (min-device-width: 1140px) {
  .page .cars {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 90px;
    padding-inline: 50px;
    padding-bottom: 120px;
    display: flex;
    justify-content: center;
    gap: 45px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page .cars .car {
    width: calc(33% - 45px);
    height: auto;
    position: relative;
    border: 1px solid rgb(231, 231, 231);
    padding: 19px;
    border-radius: 6px;
    text-align: center;
  }
  .page .cars .car img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: auto;
  }
  .page .cars .car .name {
    margin-top: 15px;
    color: #1F1F1F;
    font-size: 24px;
  }
  .page .cars .car .price {
    margin-top: 15px;
    color: rgb(45, 206, 13);
    font-size: 17px;
  }
  .page .cars .car .des {
    margin-top: 15px;
    color: #1F1F1F;
    font-size: 16px;
  }
  .page .cars .car .icon {
    margin-top: 30px;
  }
  .page .cars .car .icon img {
    width: 90px;
    height: auto;
    margin-inline: 10px;
  }
  .page .contact {
    position: relative;
    padding-top: 0;
    width: 100%;
    height: 100%;
  }
  .page .contact iframe {
    width: 100%;
    height: 629px;
    position: relative;
  }
  .page .contact .cards {
    position: relative;
    width: 100%;
    height: auto;
    padding-block: 110px;
    padding-bottom: 70px;
    padding-inline: 50px;
    display: flex;
    gap: 18px;
    flex-direction: row;
    max-width: 1500px;
    margin-inline: auto;
  }
  .page .contact .cards .card {
    width: 33%;
    height: auto;
    border: 0;
    background: rgb(226, 226, 226);
    border-radius: 6px;
    margin-inline: auto;
    padding: 28px;
    transition: 0.6s;
    cursor: pointer;
  }
  .page .contact .cards .card:hover {
    transform: scale(1.02);
    background: rgb(210, 210, 210);
  }
  .page .contact .cards .card h2 {
    color: #1F1F1F;
    font-size: 17px;
  }
  .page .contact .cards .card a {
    margin-bottom: 19px;
    color: #1F1F1F;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
  }
}/*# sourceMappingURL=ligier.css.map */