: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: #2B7687;
}
main.home nav.navbar .navbar-brand {
  max-width: 16rem;
}
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(43, 118, 135, 0.8509803922);
  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;
  text-align: right;
}
main.home section {
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.2;
}
main.home section .title {
  background-color: #309AB1;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
main.home section .title h2 {
  color: white;
  flex-grow: 1;
}
main.home section .title a {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
}
main.home section .title a img {
  filter: invert(49%) sepia(90%) saturate(340%) hue-rotate(143deg) brightness(89%) contrast(90%);
  stroke: #ffffff !important;
}
main.home section h3 {
  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: 1rem 0.5rem;
}
main.home section ul li {
  margin-bottom: 0.25rem;
  position: relative;
  padding-left: 1rem;
}
main.home section ul li::before {
  content: "";
  background-color: #000;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  margin-right: 1rem;
  margin-top: 6px;
  margin-bottom: auto;
}
main.home section ol.bold {
  counter-reset: item;
  list-style-type: none;
  margin-left: 0;
}
main.home section ol.bold li {
  display: flex;
}
main.home section ol.bold li::before {
  content: counter(item) " ";
  counter-increment: item;
  width: 1rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
  font-weight: bold;
  text-align: right;
}
main.home section a {
  color: #000;
  word-wrap: break-word;
  text-decoration: underline;
}
main.home section .subtitle {
  font-size: 1.25rem;
  font-weight: bold;
}
main.home .procesos-wrapper {
  display: grid;
  row-gap: 2rem;
  column-gap: 1rem;
}
main.home .procesos-wrapper .proceso {
  display: flex;
  flex-direction: column;
}
main.home .procesos-wrapper .proceso .header {
  background-color: currentColor;
  border-radius: 20px;
  display: flex;
  padding: 1rem;
  align-items: center;
}
main.home .procesos-wrapper .proceso .header span {
  background-color: #fff;
  color: inherit;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.25rem;
}
main.home .procesos-wrapper .proceso .header p {
  margin-left: 1rem;
  color: #fff;
  font-weight: bold;
}
main.home .procesos-wrapper .proceso .body {
  padding: 1rem;
  border: 1px solid #C4C4C4;
  border-radius: 20px;
  margin-top: 1rem;
}
main.home .procesos-wrapper .proceso .body > *:not(h5) {
  color: #000;
}
main.home .procesos-wrapper .proceso .body h5 {
  color: inherit;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
main.home .procesos-wrapper .proceso .body hr {
  margin-left: -1rem;
  width: calc(100% + 2rem);
  border-top-color: #C4C4C4;
}
main.home .normatividades-wrapper .normatividad {
  display: flex;
  flex-direction: column;
}
main.home .normatividades-wrapper .normatividad:not(:last-child) {
  margin-bottom: 2rem;
}
main.home .normatividades-wrapper .normatividad a {
  background-color: #3F872B;
  color: #fff;
  text-decoration: none;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  margin-bottom: 1rem;
}
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: 13rem;
    padding: 0.25rem 1rem;
  }
  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 .procesos-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }
  main.home .procesos-wrapper .proceso .header {
    min-height: 5rem;
    padding: 0.25rem 1rem;
  }
  main.home .procesos-wrapper .proceso .body {
    flex-grow: 1;
  }
  main.home .normatividades-wrapper .normatividad {
    flex-direction: row;
    align-items: center;
  }
  main.home .normatividades-wrapper .normatividad a {
    flex-shrink: 0;
    width: 12rem;
    padding: 1.5rem 1rem;
    margin-bottom: 0;
  }
  main.home .normatividades-wrapper .normatividad p {
    padding-left: 1rem;
  }
  main.home #contacto {
    margin-bottom: 2rem;
  }
  main.home #contacto a {
    color: #616160;
  }
}

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