.header {
  background-color: #ab5a2b;
  padding: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.header__logo {
  margin-right: auto;
}

.navbar {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  order: 1;
}
.navbar__link {
  color: #544a48;
  font-size: 25px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.navbar__button {
  background-color: white;
  border-radius: 20px;
  font-size: 13px;
  opacity: 0.5;
}

.menu-icon {
  display: none;
  cursor: pointer;
  order: 2;
  font-size: 50px;
  padding-right: 20px;
}

@media screen and (max-width: 992px) {
  .navbar {
    flex-direction: column;
    display: none;
    order: 3;
  }
  .navbar__link {
    margin: 5px 0;
  }
  .navbar.-active {
    display: flex;
  }
  .menu-icon {
    display: block;
  }
}
body {
  color: #544a48;
  font-family: "Montserrat", sans-serif;
}

.main {
  margin-left: 20%;
  margin-right: 20%;
}
.main__title {
  font-size: 40px;
  font-weight: bold;
}
.main__subtitle {
  font-size: 25px;
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

figure {
  display: block;
}

.btn-adanse {
  background-color: #ab5a2b;
}
.btn-adanse:hover {
  background-color: #ab5a2b;
}
.btn-adanse a {
  text-decoration: none;
  color: #544a48;
}

@media screen and (max-width: 992px) {
  .main {
    margin-left: 10%;
    margin-right: 10%;
  }
}
.form__group {
  width: 100%;
  margin-bottom: 15px;
}
.form__group.-label {
  display: block;
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: bold;
}
.form__group.-input {
  width: 50%;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 20px;
  border-width: 0;
  border-color: #D1D3E2;
  background-color: #EEEBEB;
}
.form.-button {
  width: 200px;
  height: 40px;
  font-size: 25px;
  font-family: "MuseoModerno", sans-serif;
  background-color: #D7A456;
  color: white;
  border-radius: 20px;
  border-width: 0;
  cursor: pointer;
  margin-top: 20px;
}

@media screen and (max-width: 992px) {
  .form__group.-input {
    width: 100%;
  }
  .form.-button {
    margin-left: 15%;
  }
}
@media screen and (min-width: 992px) {
  .form {
    margin-left: 30%;
  }
  .form.-button {
    margin-left: 10%;
  }
}
.main__content {
  width: 100%;
}
.main__content.-flex {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10%;
}
.main__content.-flex .card {
  margin-bottom: 5%;
  width: 18rem;
}
.main__content.-flex .card img {
  max-width: 300px;
  max-height: 300px;
}

img {
  margin-bottom: 15px;
  max-width: 100%;
  height: auto;
}

/*# sourceMappingURL=app.output.css.map */
