:root {
  font-size: 16px;
}

main.home h1,
main.home h2,
main.home h3,
main.home h4,
main.home h5 {
  font-family: "Ancizar Sans";
}
main.home a:hover,
main.home button:hover {
  filter: brightness(0.9);
}
main.home nav.navbar {
  background: #81A32E;
}
main.home nav.navbar .navbar-brand {
  max-width: 13rem;
}
main.home nav.navbar .navbar-brand img {
  width: 100%;
}
main.home nav.navbar .navbar-nav .nav-item {
  display: flex;
  justify-content: center;
  width: 100%;
}
main.home nav.navbar .navbar-nav .nav-item .nav-link {
  color: #FFF;
  font-size: 1.25rem;
}
main.home nav.navbar .dropdown-toggle {
  margin-left: auto;
}
main.home nav.navbar .dropdown-toggle::after {
  display: none;
}
main.home nav.navbar .dropdown-toggle span {
  background-image: url("/images/bad/navbar-bars.png");
}
main.home nav.navbar .dropdown-menu {
  right: 0;
  left: unset;
  margin: 0;
  background-color: rgba(129, 163, 46, 0.8);
  background-clip: border-box;
  border-radius: 0 0 20px 20px;
  backdrop-filter: blur(3px);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1019607843);
}
main.home nav.navbar .dropdown-menu .navbar-nav {
  margin-left: 0;
  padding: 0.5rem;
  padding-right: 0;
}
main.home nav.navbar .dropdown-menu .navbar-nav .nav-item {
  width: 100%;
  padding: 0.25rem 2rem;
  padding-right: 1rem;
  justify-content: right;
}
main.home section {
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.2;
}
main.home section h2 {
  color: #616160;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
main.home section p {
  line-height: 1.2;
}
main.home section ul {
  margin-left: 0;
}
main.home section ul li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}
main.home section ul li::before {
  content: "";
  background-color: #616160;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  border-radius: 50%;
  margin-right: 1rem;
  margin-top: 0.25rem;
  margin-bottom: auto;
}
main.home .from-to-dates-div {
  display: flex;
  width: 100%;
  background-color: #019587;
  border-radius: 10px;
  color: #616160;
  padding: 1rem;
}
main.home .from-to-dates-div .from, main.home .from-to-dates-div .to {
  background-color: white;
  width: 50%;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
main.home .from-to-dates-div .from span, main.home .from-to-dates-div .to span {
  width: 100%;
  font-weight: bold;
  text-align: center;
}
main.home .from-to-dates-div .from span:nth-child(1), main.home .from-to-dates-div .to span:nth-child(1) {
  font-weight: normal;
}
main.home .from-to-dates-div .from span:nth-child(2), main.home .from-to-dates-div .to span:nth-child(2) {
  font-size: 4rem;
}
main.home .from-to-dates-div .from {
  margin-right: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
main.home .from-to-dates-div .to {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
main.home #requisitos {
  border-radius: 20px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2509803922);
  margin: 1rem;
  padding: 1.5rem 2rem;
}
main.home #requisitos ul li {
  padding-left: 1.25rem;
}
main.home #requisitos ul li::before {
  top: 0.25rem;
  width: 0.5rem;
  height: 0.5rem;
}
main.home .infoCards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1rem;
}
main.home .infoCards .infoCard {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  border: 1px solid #C4C4C4;
  border-radius: 20px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 1rem;
  color: #404040;
}
main.home .infoCards .infoCard h5 {
  width: 100%;
  font-weight: bold;
}
main.home .infoCards .infoCard .card-icon {
  width: 5rem;
  margin: 1rem auto;
}
main.home .infoCards .infoCard a {
  background-color: #81A32E;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 2rem;
  font-size: 1.5rem;
  border-radius: 30px;
  display: block;
  width: fit-content;
  font-weight: bold;
}
main.home .infoCards .infoCard p {
  margin-top: 1rem;
}
main.home .infoCards .infoCard.fill {
  background-color: #81A32E;
  color: #fff;
}
main.home .infoCards .infoCard.fill a {
  background-color: #fff;
  color: #81A32E;
}
main.home .pasos .paso {
  border: 2px solid #019587;
  display: flex;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}
main.home .pasos .paso .numero {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #019587;
  color: #fff;
  font-size: 2.5rem;
  width: 2.5rem;
  max-width: 2.5rem;
  min-height: 2.5rem;
  flex-grow: 1;
  flex-shrink: 0;
}
main.home .pasos .paso p {
  padding: 1rem;
}
main.home .pasos .paso a {
  color: #0C51A0;
  text-decoration: none;
}
main.home .pasos .paso span.importante {
  color: #019587;
}
main.home .faq-div .question {
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 10px;
  display: flex;
  text-align: start;
  align-items: center;
  padding: 1rem 0;
  width: 100%;
  margin-top: 1rem;
}
main.home .faq-div .question .number {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  width: 2.5rem;
  max-width: 2.5rem;
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 0.8;
}
main.home .faq-div .question p {
  margin-right: 1rem;
}
main.home .faq-div .question .arrow {
  display: block;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin: auto;
  margin-right: 1rem;
  border-bottom: 6px solid #616160;
  border-right: 6px solid #616160;
  transform: translateY(-25%) rotateZ(45deg);
  transition: all 0.25s ease-in-out;
}
main.home .faq-div .question:not(.collapsed) .arrow {
  transform: translateY(25%) rotateZ(-135deg);
}
main.home .faq-div .answer .card {
  border: none;
}
main.home .faq-div .answer ul li::before {
  width: 0.5rem;
  height: 0.5rem;
  top: 0.25rem;
}
main.home #contacto p {
  color: #616160;
  font-size: 1rem;
}

@media (min-width: 768px) {
  main.home {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
  }
  main.home nav.navbar {
    border-radius: 20px;
    position: relative;
    width: 100%;
  }
  main.home nav.navbar .navbar-brand {
    max-width: 19rem;
    padding: 0.75rem;
  }
  main.home nav.navbar .navbar-toggler-icon {
    width: 2rem;
    height: 2rem;
  }
  main.home nav.navbar.show {
    border-end-end-radius: 0;
  }
  main.home section {
    padding: 0;
    padding-top: 2rem;
    width: 100%;
  }
  main.home section h2 {
    margin-bottom: 2rem;
  }
  main.home .from-to-dates-div {
    max-width: 40rem;
  }
  main.home .from-to-dates-div .from, main.home .from-to-dates-div .to {
    flex-direction: row;
    padding: 0 1rem;
  }
  main.home .from-to-dates-div .from span:nth-child(2), main.home .from-to-dates-div .to span:nth-child(2) {
    font-size: 5rem;
  }
  main.home .from-to-dates-div .from span:nth-child(3), main.home .from-to-dates-div .to span:nth-child(3) {
    text-align: left;
    margin-left: 0.5rem;
  }
  main.home #requisitos {
    margin: 0;
    margin-top: 3rem;
    margin-right: 2rem;
    width: calc(40% - 2rem);
  }
  main.home #inscripcion-y-normativa {
    width: 60%;
    margin-top: 3rem;
    padding-top: 1.5rem;
  }
  main.home .infoCards {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }
  main.home .pasos {
    max-width: 40rem;
  }
  main.home .pasos .paso .numero {
    font-size: 3rem;
    width: 4rem;
    max-width: 4rem;
  }
  main.home .faq-div {
    max-width: 35rem;
  }
  main.home #contacto {
    margin-bottom: 2rem;
  }
}

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