html {
  font-size: 100%;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Public Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  color: hsl(0, 0%, 0%);
  line-height: 1.3;
  overflow-x: hidden;
}
@media (min-width: 64em) {
  body {
    font-size: 1.125rem;
  }
}
body.noscroll {
  overflow: hidden;
}

h1, h2, h3 {
  margin-top: 0px;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 64em) {
  h1 {
    font-size: 3.25rem;
  }
}

h2 {
  font-size: 1.875rem;
  margin-bottom: 1.6rem;
}
@media (min-width: 64em) {
  h2 {
    font-size: 2.25rem;
  }
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 2.25rem;
}

p {
  line-height: 1.5;
  margin-bottom: 2.25rem;
  font-size: 1.1rem;
}

a, a:visited, a:hover {
  text-decoration: none;
}

.container {
  max-width: 69.375rem;
  margin: 0 auto;
}
.container--pall {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
@media (min-width: 64em) {
  .container--pall {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.container--py {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
@media (min-width: 64em) {
  .container--py {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.container--px {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.container--pt {
  padding-top: 4.375rem;
}
@media (min-width: 64em) {
  .container--pt {
    padding-top: 6rem;
  }
}
.container--pr {
  padding-right: 1.5rem;
}
.container--pb {
  padding-bottom: 4.375rem;
}
@media (min-width: 64em) {
  .container--pb {
    padding-bottom: 6rem;
  }
}
.container--pl {
  padding-left: 1.5rem;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

button, .button {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: linear-gradient(to right, hsl(206, 100%, 60%), hsl(206, 100%, 36%));
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: hsl(0, 0%, 100%);
  font-weight: bold;
  font-size: 0.875rem;
  transition: all 200ms ease-in-out;
}
button:hover, .button:hover {
  filter: saturate(1.5);
  transform: translateY(1px);
}

@media (max-width: 63.9375em) {
  .hide-for-mobile-tablet {
    display: none;
  }
}

@media (max-width: 39.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(225, 45%, 44%);
}

.gradient-text {
  background: linear-gradient(to right, hsl(0, 0%, 0%), hsl(206, 100%, 60%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 200ms ease-in-out;
}
.gradient-text:hover {
  transform: translateX(1px);
}

.button_2 {
  background: linear-gradient(to left, hsl(206, 100%, 36%), hsl(206, 100%, 60%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0.65rem;
  border: 1px dashed hsl(0, 0%, 0%);
  border-radius: 10px;
  transition: all 200ms ease-in-out;
}
.button_2:hover {
  transform: scale(1.05);
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: hsl(0, 0%, 100%);
  z-index: 1;
  box-shadow: 0 -6px 10px 5px rgba(0, 0, 0, 0.5);
}
.header.open .header__toggle > span:first-child {
  transform: rotate(45deg);
}
.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}
.header.open .header__toggle > span:last-child {
  transform: rotate(-45deg);
}
.header .overlay {
  opacity: 0;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(hsl(0, 0%, 50%), transparent);
}
@media (min-width: 64em) {
  .header .overlay {
    display: none;
  }
}
.header nav {
  position: relative;
  background-color: hsl(0, 0%, 100%);
  padding-top: 1.0625rem;
  padding-bottom: 1.0625rem;
}
.header__logo img {
  height: 2.3rem;
}
.header__toggle > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: hsl(0, 0%, 0%);
  transition: all 200ms ease-in-out;
  transform-origin: 3px 1px;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 5px;
}
.header__menu {
  background: hsl(0, 0%, 100%);
  padding: 1.625rem;
  position: absolute;
  border-radius: 10px;
  width: calc(100% - 3rem);
  left: 50%;
  transform: translateX(-50%);
  margin-top: 1.5rem;
  padding: 1.625rem;
}
.header__menu a {
  display: block;
  padding: 0.625rem;
  color: hsl(0, 0%, 0%);
  font-size: 1rem;
  text-align: center;
}
.header__links a {
  position: relative;
  font-size: 1rem;
  color: hsl(0, 0%, 50%);
  transition: color 100ms ease-in-out;
}
.header__links a:not(:last-child) {
  margin-right: 32px;
}
.header__links a::before {
  content: "";
  display: block;
  position: absolute;
  height: 5px;
  left: 0;
  right: 0;
  bottom: -30px;
  background: linear-gradient(to right, hsl(206, 100%, 60%), hsl(206, 100%, 36%));
  opacity: 0;
  transition: 200ms ease-in-out;
}
.header__links a:hover {
  color: hsl(0, 0%, 0%);
}
.header__links a:hover::before {
  opacity: 1;
}

.has-fade {
  visibility: hidden;
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
.fade-in {
  animation: fade-in 100ms ease-in-out forwards;
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.fade-out {
  animation: fade-out 100ms ease-in-out forwards;
}

.hero {
  background-color: hsl(0, 0%, 100%);
}
@media (min-width: 64em) {
  .hero .container {
    display: flex;
    align-items: center;
  }
}
.hero__image {
  position: relative;
  min-height: 20em;
}
@media (min-width: 64em) {
  .hero__image {
    flex: 1;
    order: 2;
  }
}
.hero__image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("/images/Pocket_CFDI.svg");
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center center;
}
.hero__text {
  text-align: center;
}
@media (min-width: 64em) {
  .hero__text {
    flex: 1;
    order: 1;
    text-align: left;
  }
}

.feature {
  background-color: rgb(249, 249, 249);
  text-align: center;
}
@media (min-width: 40em) {
  .feature {
    text-align: justify;
  }
}
@media (min-width: 64em) {
  .feature__intro {
    width: 55%;
  }
}
@media (min-width: 40em) {
  .feature__grid {
    display: flex;
    flex-wrap: wrap;
  }
}
.feature__item {
  padding: 2rem;
}
@media (min-width: 40em) {
  .feature__item {
    flex: 1 0 50%;
  }
}
@media (min-width: 64em) {
  .feature__item {
    flex: 1;
  }
}
.feature__icon {
  margin-bottom: 1.875rem;
}
.feature__icon img {
  width: 30%;
}
@media (min-width: 64em) {
  .feature__icon {
    margin-bottom: 2.75rem;
  }
}
.feature__title {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5;
  color: hsl(206, 100%, 36%);
  margin-bottom: 1rem;
}
@media (min-width: 64em) {
  .feature__title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}
.feature__description {
  font-size: 1rem;
  line-height: 1.5;
}
@media (min-width: 64em) {
  .feature__description {
    font-size: 1rem;
  }
}
.feature__images {
  text-align: center;
}
@media (min-width: 40em) {
  .feature__images {
    flex: 1 0 50%;
    display: flex;
  }
}
@media (min-width: 64em) {
  .feature__images {
    flex: 1;
  }
}
.feature__images img {
  width: 90%;
}

.presentation {
  font-size: 0.875rem;
  text-align: center;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 5rem;
}
.presentation h3 {
  font-size: 1.125rem;
}
@media (min-width: 40em) {
  .presentation {
    display: flex;
    flex-direction: column;
  }
}
.presentation__header {
  justify-content: space-between;
  text-align: center;
  padding-bottom: 2.5rem;
}
.presentation table {
  border: 1px solid hsl(0, 0%, 50%);
  border-spacing: 0;
  border-radius: 10px 10px 10px 10px;
  overflow: hidden;
}
.presentation table thead {
  background-color: hsl(206, 100%, 36%);
  color: hsl(0, 0%, 100%);
  transition: opacity 50ms ease-in-out;
}
.presentation table thead:hover {
  opacity: 90%;
}
.presentation table thead th {
  padding: 0.7rem;
}
.presentation table tbody tr {
  transition: color 50ms ease-in-out;
}
.presentation table tbody tr td {
  padding: 0.7rem;
  text-align: right;
}
.presentation table tbody tr:nth-child(even) {
  background-color: rgb(240, 240, 240);
}
.presentation table tbody tr:hover {
  color: hsl(206, 100%, 60%);
}
.presentation .pkt-content {
  display: flex;
  justify-content: center;
}
.presentation .pkt-content a {
  font-weight: bold;
}
.presentation .pkt-content a:not(:last-child) {
  margin-right: 2rem;
}

.footer {
  padding: 2.5rem;
  text-align: center;
}
.footer__logo {
  display: inline-block;
}
.footer__logo img {
  height: 1.5rem;
}

.attribution {
  padding-bottom: 1rem;
}/*# sourceMappingURL=style.css.map */