@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

.input_text {
  border: none;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 1.3rem;
  border-bottom: 1px solid #494949;
}
.input_text:focus {
  outline: none;
}

.button {
  font-size: 1.2rem;
  background: #BB0102;
  color: #fff;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  padding: 10px 20px;
  border: none;
  font-weight: 600;
}
.button:hover {
  cursor: pointer;
}

.form_status {
  text-align: center;
  margin: 20px 0px;
}

#nav {
  background: #fff;
  padding: 0px 10px;
  display: flex;
  justify-content: space-between;
  height: 100px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  box-shadow: 0px 0px 4px 3px rgba(0, 0, 0, 0.16);
}
#nav #toggleMenu {
  border: none;
  background: none;
}
#nav #toggleMenu:hover {
  cursor: pointer;
}
#nav #navList {
  background: #fff;
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 200px 0px;
  text-transform: uppercase;
}
#nav #navList #closeMenu {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border: none;
  background: none;
}
#nav #navList #closeMenu:hover {
  cursor: pointer;
}
#nav #navList li a {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.3rem;
  color: #BB0102;
  font-weight: 500;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#nav #navList li a:hover {
  color: #494949;
}

.home_header {
  background-image: url("/img/header_bg.png");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 600px;
  padding: 120px 20px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.home_header h1 {
  font-family: "IBM Plex Sans", sans-serif;
  color: #fff;
  font-size: 42px;
  -webkit-text-stroke-color: #BB0102;
  -webkit-text-stroke-width: 2px;
  text-align: center;
}
.home_header ul li {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  color: #fff;
  font-size: 20px;
  -webkit-text-stroke-color: #BB0102;
  -webkit-text-stroke-width: 1px;
  font-weight: 600;
}

.home_services {
  padding: 50px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home_services h2 {
  font-family: "IBM Plex Sans", sans-serif;
  color: #BB0102;
  font-size: 42px;
  text-transform: uppercase;
  text-align: center;
}
.home_services ul {
  max-width: 700px;
}
.home_services ul li {
  margin: 20px 0px;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 20px;
  text-align: justify;
}

.home_cars {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: #BB0102;
  padding: 50px 10px;
  font-family: "IBM Plex Sans", sans-serif;
}
.home_cars h2, .home_cars p {
  font-size: 42px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
.home_cars p {
  font-size: 20px;
  font-family: "IBM Plex Sans Condensed", sans-serif;
}
.home_cars .car {
  width: 80%;
  max-width: 450px;
  height: 300px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  margin-bottom: 30px;
}
.home_cars .car h3 {
  text-transform: uppercase;
}
.home_cars .car img {
  width: 200px;
}
.home_cars .car p {
  font-weight: 600;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-style: italic;
  color: #BB0102;
}

.home_reviews {
  padding: 25px 20px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin: auto;
}
.home_reviews h2 {
  font-family: "IBM Plex Sans", sans-serif;
  color: #BB0102;
  font-size: 42px;
  text-transform: uppercase;
  text-align: center;
  margin: 0px 0px 20px;
}
.home_reviews p {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  color: #494949;
  font-size: 20px;
  text-align: center;
}
.home_reviews .review {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin: 30px 0px;
  max-width: 500px;
  width: 100%;
}
.home_reviews .review .score {
  color: #BB0102;
}
.home_reviews .review small {
  font-family: "IBM Plex Sans", sans-serif;
  margin: 5px 0px;
  color: #494949;
}
.home_reviews .review .comment {
  text-align: start;
  color: #BB0102;
  margin-bottom: 10px;
}
.home_reviews .review button {
  font-size: 1rem;
}

.home_create_review {
  padding: 25px 20px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin: auto;
}
.home_create_review h2 {
  font-family: "IBM Plex Sans", sans-serif;
  color: #BB0102;
  font-size: 42px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}
.home_create_review p {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  color: #494949;
  font-size: 20px;
  text-align: center;
}
.home_create_review #createVisitorReviewForm {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home_create_review #createVisitorReviewForm .form_group {
  margin: 20px 0px;
}
.home_create_review #createVisitorReviewForm textarea {
  margin-bottom: 30px;
  max-width: 500px;
  max-height: 300px;
}

.connexion_header {
  width: 100%;
  height: 600px;
  padding: 140px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  font-family: "IBM Plex Sans", sans-serif;
}
.connexion_header h1 {
  color: #BB0102;
  text-transform: uppercase;
}
.connexion_header form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.connexion_header form .input_text {
  margin: 20px 0px;
}

.admin_pannel {
  width: 100%;
  height: auto;
  padding: 140px 20px;
  font-family: "IBM Plex Sans", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.admin_pannel h2 {
  color: #BB0102;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 42px;
  text-transform: uppercase;
  text-align: center;
}
.admin_pannel .create_employee {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
.admin_pannel .create_employee form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.admin_pannel .create_employee form small {
  text-align: center;
}
.admin_pannel .create_employee form input {
  margin: 20px 0px;
}
.admin_pannel .manage_schedule form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.admin_pannel .manage_schedule form .form-group {
  margin: 10px 0px;
}

.employee_pannel {
  width: 100%;
  height: auto;
  padding: 140px 20px;
  font-family: "IBM Plex Sans", sans-serif;
  text-align: center;
}
.employee_pannel h2 {
  color: #BB0102;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 42px;
  text-transform: uppercase;
}
.employee_pannel .create_car {
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
}
.employee_pannel .create_car form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  padding: 0px 20px;
}
.employee_pannel .create_car form small {
  text-align: start;
}
.employee_pannel .create_car form .form_group {
  display: flex;
  margin: 10px 0px;
}
.employee_pannel .create_car form .form_group label {
  margin-right: 10px;
  color: #BB0102;
  text-transform: uppercase;
  font-weight: 600;
}
.employee_pannel .create_car form button {
  align-self: center;
}
.employee_pannel .moderate_review {
  padding: 50px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.employee_pannel .moderate_review #moderateReviewStatus {
  margin: 10px 0px;
}
.employee_pannel .moderate_review .unmoderated_review {
  border: 2px solid #BB0102;
  margin: 20px 0px;
  width: 100%;
  max-width: 500px;
  padding: 10px;
}
.employee_pannel .moderate_review .unmoderated_review p {
  margin: 10px 0px;
}
.employee_pannel .moderate_review .unmoderated_review .review_score {
  color: #BB0102;
  font-weight: 600;
}
.employee_pannel .moderate_review .unmoderated_review .review_date {
  font-style: italic;
}
.employee_pannel .moderate_review .unmoderated_review form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.employee_pannel .moderate_review .unmoderated_review form button {
  margin: 10px 0px;
}
.employee_pannel .create_review {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
}
.employee_pannel .create_review form {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "IBM Plex Sans Condensed", sans-serif;
}
.employee_pannel .create_review form .form_group {
  margin: 20px 0px;
}
.employee_pannel .create_review form label {
  color: #494949;
  text-transform: uppercase;
  font-weight: 600;
}
.employee_pannel .create_review form textarea {
  padding: 5px;
  font-family: "IBM Plex Sans", sans-serif;
  width: 100%;
  margin-bottom: 40px;
}
.employee_pannel .create_review form textarea:focus {
  outline: none;
}

.cars_section {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 140px 20px;
}
.cars_section h2 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 42px;
  color: #BB0102;
  text-transform: uppercase;
  text-align: center;
}
.cars_section h3 {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  text-transform: uppercase;
  margin: 20px 0px;
}
.cars_section form {
  margin-bottom: 50px;
  font-family: "IBM Plex Sans Condensed", sans-serif;
}
.cars_section form label {
  font-weight: 500;
}
.cars_section #cars_display {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
  background: #BB0102;
  height: auto;
  padding: 20px;
}
.cars_section #cars_display .car {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 450px;
  height: auto;
  margin: 20px 0px;
  background: #fff;
  color: #BB0102;
  font-family: "IBM Plex Sans", sans-serif;
  padding: 20px;
}
.cars_section #cars_display .car p {
  align-self: start;
  margin: 10px 0px;
}
.cars_section #cars_display .car p strong {
  color: #494949;
}
.cars_section #cars_display .car h3 {
  text-transform: uppercase;
  font-size: 1.5rem;
  margin: 20px 0px;
  text-align: center;
}
.cars_section #cars_display .car img {
  width: 100%;
  max-width: 300px;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "IBM Plex Sans", sans-serif;
  background: #BB0102;
  color: #fff;
  padding: 40px 20px;
}
footer h3, footer p, footer ul {
  margin: 20px 0px;
}

@media screen and (min-width: 900px) {
  #toggleMenu, #closeMenu {
    display: none;
  }
  #navList {
    display: flex !important;
    position: unset !important;
    height: unset !important;
    width: unset !important;
    padding: unset !important;
    flex-direction: row !important;
  }
  #navList a {
    font-size: 1.2rem !important;
    margin: 0px 20px;
  }
}/*# sourceMappingURL=style.css.map */