* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  font-family: "Nunito Sans", sans-serif;
  background-color: #FAFAFA;
}

header {
  height: 7vh;
  padding: 0px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 10;
}

header .title {
  text-decoration: none;
}

header .title:hover {
  text-decoration: none;
}

header button {
  border-width: 0;
  background-color: transparent;
  font-family: "Nunito Sans", sans-serif;
  font-weight: bolder;
  font-size: 17px;
  border-radius: 10px;
  height: 40px;
  width: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}

header button:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body main .skeleton article, .animation {
  -webkit-animation: titilar infinite 1s;
          animation: titilar infinite 1s;
}

@-webkit-keyframes titilar {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.4;
  }
}

@keyframes titilar {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.4;
  }
}

section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  height: 100%;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 45px;
}

section article {
  height: 370px;
  width: 300px;
  border-radius: 10px;
}

section article img {
  width: 100%;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px 5px 0 0;
}

section article a {
  text-decoration: none;
}

section article a:hover {
  text-decoration: underline;
}

section article h3 {
  padding: 15px 20px;
}

section article p {
  font-weight: bolder;
  padding: 5px 20px;
}

section article p span {
  font-weight: lighter;
}

form {
  margin: 30px 0px;
  width: 25vw;
}

form input {
  height: 60px;
  width: 25vw;
  border-radius: 10px;
  border-color: transparent;
  padding-left: 70px;
  font-family: "Nunito Sans", sans-serif;
}

form div {
  position: relative;
}

form div span {
  position: absolute;
  bottom: 22px;
  left: 30px;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu select {
  height: 60px;
  padding-right: 70px;
  padding-left: 20px;
  border-radius: 10px;
  border-color: transparent;
  font-family: "Nunito Sans", sans-serif;
}

@media (max-width: 798px) {
  section article {
    width: 270px;
  }
  form input {
    width: 40vw;
  }
}

@media (max-width: 726px) {
  section {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section article {
    width: 300px;
  }
  form input {
    width: 40vw;
  }
}

@media (max-width: 610px) {
  .menu {
    display: block;
    margin: 20px 0;
  }
  .menu form {
    margin: 0;
  }
  .menu form input {
    width: 70vw;
  }
  .menu select {
    margin-top: 10px;
    width: 70vw;
  }
  section {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  section article {
    width: 300px;
  }
}

@media (max-width: 425px) {
  .menu {
    margin: 0px auto 20px auto;
  }
  form input {
    width: 80vw !important;
  }
  select {
    width: 80vw !important;
  }
  main {
    padding: 20px !important;
  }
}

@media (max-width: 368px) {
  form input {
    height: 5vh;
  }
  form div span {
    bottom: 15px;
  }
  select {
    height: 5vh !important;
  }
}

@media (max-width: 522px) {
  h1 {
    font-size: 25px;
  }
  header {
    padding: 15px;
  }
  header button {
    font-size: 15px;
    display: inline;
  }
  header button span {
    margin-right: 5px;
  }
}

@media (max-width: 397px) {
  h1 {
    font-size: 23px;
  }
  header button {
    font-size: 13px;
  }
}

@media (max-width: 368px) {
  h1 {
    font-size: 17px;
  }
  header button {
    font-size: 11px;
  }
}

main {
  padding: 0 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 5vh;
}
/*# sourceMappingURL=main.css.map */