@charset "UTF-8";
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
* {
  font-family: "Poppins", sans-serif;
}

/* // Ejemplo de uso de las variables y mixins
.header {
  background: $primary-color;
  color: $white;
  padding: $spacing-lg;
  @include flex-between;

  .logo {
    font-size: $font-size-xl;
    font-weight: $font-weight-bold;
  }

  @include mobile {
    padding: $spacing-md;
    flex-direction: column;
    gap: $spacing-md;
  }
}

.button {
  @include button-variant($primary-color);

  &--secondary {
    @include button-variant($secondary-color);
  }

  &--outline {
    @include button-base;
    background: transparent;
    color: $primary-color;
    border: 2px solid $primary-color;

    &:hover {
      background: $primary-color;
      color: $white;
    }
  }
}

.card {
  @include card;

  .card-title {
    font-size: $font-size-lg;
    font-weight: $font-weight-semibold;
    color: $text-primary;
    margin-bottom: $spacing-md;
    @include text-truncate;
  }
}

.form-input {
  @include input-base;

  &--error {
    border-color: $error-color;

    &:focus {
      border-color: $error-color;
    }
  }
}

.hero-banner {
  @include gradient($primary-color, $secondary-color, to right);
  color: $white;
  padding: $spacing-xxl;
  text-align: center;
  @include fade-in;
} */
/*! 
 * Reset CSS Moderno
 * Basado en Normalize.css y mejores prácticas actuales
 * Diseñado para trabajar con las variables de Sass
 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  scroll-behavior: smooth;
  height: 100%;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #0A254D;
  background-color: #ffffff;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
}

h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul, li,
figure, figcaption,
hr, div, address,
article, aside, details,
footer, header, main,
nav, section, summary {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: "";
  content: none;
}

hr {
  border: none;
  height: 1px;
  background-color: #ecf0f1;
  margin: 1.5rem 0;
}

a {
  color: #0A254D;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
}
a:hover, a:focus {
  text-decoration: underline;
  outline: none;
}
a:active {
  outline: none;
}

b, strong {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

small {
  font-size: 0.875rem;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

code, kbd, samp, pre {
  font-family: "Courier New", monospace;
  font-size: 0.875rem;
  background-color: #ecf0f1;
  padding: 0.125em 0.25em;
  border-radius: 2px;
}

pre {
  display: block;
  padding: 1rem;
  margin: 1rem 0;
  overflow: auto;
  white-space: pre;
  border-radius: 4px;
}
pre code {
  background: none;
  padding: 0;
  font-size: inherit;
}

mark {
  background-color: #ffff00;
  color: #000000;
  padding: 0 0.125em;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  outline: none;
}

input, textarea, select {
  width: 100%;
  border: 2px solid #ecf0f1;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  -webkit-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}
input:focus, textarea:focus, select:focus {
  border-color: #0A254D;
  outline: none;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
  color: #bdc3c7;
  opacity: 1;
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #bdc3c7;
  opacity: 1;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
  color: #bdc3c7;
  opacity: 1;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder, select::-ms-input-placeholder {
  color: #bdc3c7;
  opacity: 1;
}
input::placeholder, textarea::placeholder, select::placeholder {
  color: #bdc3c7;
  opacity: 1;
}
input:disabled, textarea:disabled, select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #ecf0f1;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 16px;
  padding-right: 2rem;
}

input[type=checkbox],
input[type=radio] {
  width: auto;
  margin-right: 0.25rem;
}

label {
  display: inline-block;
  font-weight: 500;
  margin-bottom: 0.25rem;
  cursor: pointer;
}

fieldset {
  border: 1px solid #ecf0f1;
  border-radius: 4px;
  padding: 1rem;
  margin: 1rem 0;
}

legend {
  font-weight: 600;
  padding: 0 0.5rem;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  display: inline-block;
  vertical-align: middle;
}

video {
  width: 100%;
  height: auto;
}

audio {
  width: 100%;
}

iframe {
  border: none;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin: 1.5rem 0;
}

th, td {
  padding: 0.5rem 1rem;
  text-align: left;
  border-bottom: 1px solid #ecf0f1;
  vertical-align: top;
}

th {
  font-weight: 600;
  background-color: #ecf0f1;
}

thead th {
  border-bottom: 2px solid #95a5a6;
}

tbody tr:hover {
  background-color: rgba(236, 240, 241, 0.5);
}

caption {
  padding: 1rem;
  font-weight: 600;
  text-align: left;
}

details {
  margin: 1rem 0;
  border: 1px solid #ecf0f1;
  border-radius: 4px;
  padding: 1rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
  margin: -1rem;
  padding: 1rem;
}
summary:hover {
  background-color: #ecf0f1;
}

progress {
  width: 100%;
  height: 1rem;
  border: none;
  border-radius: 4px;
  background-color: #ecf0f1;
}
progress::-webkit-progress-bar {
  border-radius: 4px;
  background-color: #ecf0f1;
}
progress::-webkit-progress-value {
  border-radius: 4px;
  background-color: #0A254D;
}
progress::-moz-progress-bar {
  border-radius: 4px;
  background-color: #0A254D;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
  }
}
:focus-visible {
  outline: 2px solid #0A254D;
  outline-offset: 2px;
}

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: black !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: absolute;
  inset-block-start: 2.0245454545rem;
  width: 100%;
  padding-block: 1.3636363636rem;
  padding-inline: 6.0731818182rem;
}
@media (max-width: 479px) {
  .navbar {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.navbar__brand img {
  max-height: 2.4736363636rem;
}
.navbar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.7813636364rem;
}
@media (max-width: 479px) {
  .navbar__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.navbar__list a {
  font-size: 0.8095454545rem;
  color: white;
  text-decoration: none;
}
.navbar__cta a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.3313636364rem;
  font-size: 0.8277272727rem;
  font-weight: bold;
  padding: 0.5104545455rem 0.6622727273rem;
  color: #054A76;
  background-color: #ADCCE3;
  border-radius: 0.6622727273rem;
  text-decoration: none;
}
@media (max-width: 479px) {
  .navbar__cta a {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.navbar__cta a:hover {
  background-color: white;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
* {
  font-family: "Poppins", sans-serif;
}

/* // Ejemplo de uso de las variables y mixins
.header {
  background: $primary-color;
  color: $white;
  padding: $spacing-lg;
  @include flex-between;

  .logo {
    font-size: $font-size-xl;
    font-weight: $font-weight-bold;
  }

  @include mobile {
    padding: $spacing-md;
    flex-direction: column;
    gap: $spacing-md;
  }
}

.button {
  @include button-variant($primary-color);

  &--secondary {
    @include button-variant($secondary-color);
  }

  &--outline {
    @include button-base;
    background: transparent;
    color: $primary-color;
    border: 2px solid $primary-color;

    &:hover {
      background: $primary-color;
      color: $white;
    }
  }
}

.card {
  @include card;

  .card-title {
    font-size: $font-size-lg;
    font-weight: $font-weight-semibold;
    color: $text-primary;
    margin-bottom: $spacing-md;
    @include text-truncate;
  }
}

.form-input {
  @include input-base;

  &--error {
    border-color: $error-color;

    &:focus {
      border-color: $error-color;
    }
  }
}

.hero-banner {
  @include gradient($primary-color, $secondary-color, to right);
  color: $white;
  padding: $spacing-xxl;
  text-align: center;
  @include fade-in;
} */
.banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 44.7272727273rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#000104), color-stop(45%, rgba(10, 37, 77, 0.2)), color-stop(92%, #000104)), url("/img/banner-back.png");
  background: linear-gradient(to bottom, #000104 0%, rgba(10, 37, 77, 0.2) 45%, #000104 92%), url("/img/banner-back.png");
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center top, center top;
  -webkit-padding-after: 3.7209090909rem;
          padding-block-end: 3.7209090909rem;
}
@media (max-width: 479px) {
  .banner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.banner__img {
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  inset-block-start: 9.0909090909rem;
}
@media (max-width: 479px) {
  .banner__img {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.banner__img img {
  position: relative;
  max-height: 21.0127272727rem;
  -webkit-animation: vertical-move 4s ease-in-out infinite;
          animation: vertical-move 4s ease-in-out infinite;
  z-index: 500;
}
.banner__title {
  position: relative;
  -webkit-margin-before: 23.0777272727rem;
          margin-block-start: 23.0777272727rem;
  line-height: 13.9695454545rem;
  font-weight: 800;
  color: white;
  font-size: 13.9695454545rem;
  letter-spacing: -1.2727272727rem;
}
.banner__subtitle {
  position: relative;
  font-weight: 600;
  color: #4CBB81;
  font-size: 1.6195454545rem;
  line-height: 1.6195454545rem;
}
.banner__text {
  font-weight: 300;
  color: white;
  font-size: 1.2145454545rem;
  text-align: center;
  -webkit-margin-before: 1.6168181818rem;
          margin-block-start: 1.6168181818rem;
}

@-webkit-keyframes vertical-move {
  0% {
    inset-block-start: 0;
  }
  50% {
    inset-block-start: -0.9090909091rem;
  }
  100% {
    inset-block-start: 0;
  }
}

@keyframes vertical-move {
  0% {
    inset-block-start: 0;
  }
  50% {
    inset-block-start: -0.9090909091rem;
  }
  100% {
    inset-block-start: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
* {
  font-family: "Poppins", sans-serif;
}

/* // Ejemplo de uso de las variables y mixins
.header {
  background: $primary-color;
  color: $white;
  padding: $spacing-lg;
  @include flex-between;

  .logo {
    font-size: $font-size-xl;
    font-weight: $font-weight-bold;
  }

  @include mobile {
    padding: $spacing-md;
    flex-direction: column;
    gap: $spacing-md;
  }
}

.button {
  @include button-variant($primary-color);

  &--secondary {
    @include button-variant($secondary-color);
  }

  &--outline {
    @include button-base;
    background: transparent;
    color: $primary-color;
    border: 2px solid $primary-color;

    &:hover {
      background: $primary-color;
      color: $white;
    }
  }
}

.card {
  @include card;

  .card-title {
    font-size: $font-size-lg;
    font-weight: $font-weight-semibold;
    color: $text-primary;
    margin-bottom: $spacing-md;
    @include text-truncate;
  }
}

.form-input {
  @include input-base;

  &--error {
    border-color: $error-color;

    &:focus {
      border-color: $error-color;
    }
  }
}

.hero-banner {
  @include gradient($primary-color, $secondary-color, to right);
  color: $white;
  padding: $spacing-xxl;
  text-align: center;
  @include fade-in;
} */
.references {
  width: 100%;
  background-color: #000104;
  padding-block: 1.3636363636rem;
}
.references__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 3.2790909091rem;
  height: 2.5736363636rem;
}
@media (max-width: 479px) {
  .references__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.references__container img {
  height: 80%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
* {
  font-family: "Poppins", sans-serif;
}

/* // Ejemplo de uso de las variables y mixins
.header {
  background: $primary-color;
  color: $white;
  padding: $spacing-lg;
  @include flex-between;

  .logo {
    font-size: $font-size-xl;
    font-weight: $font-weight-bold;
  }

  @include mobile {
    padding: $spacing-md;
    flex-direction: column;
    gap: $spacing-md;
  }
}

.button {
  @include button-variant($primary-color);

  &--secondary {
    @include button-variant($secondary-color);
  }

  &--outline {
    @include button-base;
    background: transparent;
    color: $primary-color;
    border: 2px solid $primary-color;

    &:hover {
      background: $primary-color;
      color: $white;
    }
  }
}

.card {
  @include card;

  .card-title {
    font-size: $font-size-lg;
    font-weight: $font-weight-semibold;
    color: $text-primary;
    margin-bottom: $spacing-md;
    @include text-truncate;
  }
}

.form-input {
  @include input-base;

  &--error {
    border-color: $error-color;

    &:focus {
      border-color: $error-color;
    }
  }
}

.hero-banner {
  @include gradient($primary-color, $secondary-color, to right);
  color: $white;
  padding: $spacing-xxl;
  text-align: center;
  @include fade-in;
} */
.categories {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 4.5454545455rem;
}
@media (max-width: 479px) {
  .categories {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.categories__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 85vw;
  gap: 2.1818181818rem;
  padding: 3.1818181818rem;
  background-color: #F3F7F8;
  border: 0.0454545455rem solid #AFCCDE;
  border-radius: 2.7272727273rem;
}
@media (max-width: 479px) {
  .categories__main {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.categories__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}
@media (max-width: 479px) {
  .categories__header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.categories__header h4 {
  font-weight: 800;
  font-size: 5.4545454545rem;
  color: #0A254D;
  line-height: 5.4545454545rem;
  letter-spacing: -0.5rem;
}
.categories__header span {
  font-size: 0.7272727273rem;
  font-weight: 300;
  color: #0A254D;
  padding: 0.4545454545rem 0.9090909091rem;
  border-radius: 2.7272727273rem;
  border: 0.0454545455rem solid #0A254D;
}
.categories__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 479px) {
  .categories__body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.categories__img {
  width: 50%;
}
.categories__icon {
  width: 4.3313636364rem;
}
.categories__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-padding-start: 3.3636363636rem;
          padding-inline-start: 3.3636363636rem;
  gap: 2.5454545455rem;
}
@media (max-width: 479px) {
  .categories__description {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.categories__description h5 {
  font-weight: 700;
  font-size: 4.0909090909rem;
  line-height: 100%;
}
.categories__description p {
  font-size: 0.8181818182rem;
  color: #3A3A3A;
  font-weight: 300;
}
.categories__description button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.4218181818rem;
  background-color: #FF985B;
  padding: 0.6327272727rem 0.8436363636rem;
  border-radius: 0.8436363636rem;
}
@media (max-width: 479px) {
  .categories__description button {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.categories__description button span {
  font-weight: 700;
  color: #F5F2FE;
}
.categories__chars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 3.0454545455rem;
  border-top: #AFCCDE 0.0454545455rem solid;
  -webkit-padding-before: 1.8181818182rem;
          padding-block-start: 1.8181818182rem;
}
@media (max-width: 479px) {
  .categories__chars {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.categories__att {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4545454545rem;
  padding-block: 0.9090909091rem;
  padding-inline: 0.9090909091rem 0;
}
@media (max-width: 479px) {
  .categories__att {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.categories__att img {
  width: 2.6513636364rem;
}
.categories__att span {
  font-weight: 700;
  font-size: 0.735rem;
  color: #0A254D;
}
.categories__att p {
  font-weight: 300;
  font-size: 0.735rem;
}
.categories__selectors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.9090909091rem;
  -webkit-margin-before: 1.8636363636rem;
          margin-block-start: 1.8636363636rem;
}
@media (max-width: 479px) {
  .categories__selectors {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.categories__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  border-radius: 1.3636363636rem;
  height: 10.4090909091rem;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  overflow: hidden;
  background-color: #3A3A3A;
  -webkit-transition-duration: 50ms;
          transition-duration: 50ms;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-property: height;
  transition-property: height;
}
@media (max-width: 479px) {
  .categories__select {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.categories__select span {
  position: absolute;
  font-size: 1.1895454545rem;
  color: white;
  font-weight: 600;
}
.categories__select:hover {
  cursor: pointer;
  height: 11.8181818182rem;
}
.categories__breadcumb {
  position: absolute;
  height: 18.1818181818rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
* {
  font-family: "Poppins", sans-serif;
}

/* // Ejemplo de uso de las variables y mixins
.header {
  background: $primary-color;
  color: $white;
  padding: $spacing-lg;
  @include flex-between;

  .logo {
    font-size: $font-size-xl;
    font-weight: $font-weight-bold;
  }

  @include mobile {
    padding: $spacing-md;
    flex-direction: column;
    gap: $spacing-md;
  }
}

.button {
  @include button-variant($primary-color);

  &--secondary {
    @include button-variant($secondary-color);
  }

  &--outline {
    @include button-base;
    background: transparent;
    color: $primary-color;
    border: 2px solid $primary-color;

    &:hover {
      background: $primary-color;
      color: $white;
    }
  }
}

.card {
  @include card;

  .card-title {
    font-size: $font-size-lg;
    font-weight: $font-weight-semibold;
    color: $text-primary;
    margin-bottom: $spacing-md;
    @include text-truncate;
  }
}

.form-input {
  @include input-base;

  &--error {
    border-color: $error-color;

    &:focus {
      border-color: $error-color;
    }
  }
}

.hero-banner {
  @include gradient($primary-color, $secondary-color, to right);
  color: $white;
  padding: $spacing-xxl;
  text-align: center;
  @include fade-in;
} */
.covers {
  position: relative;
  overflow: hidden;
}
.covers__section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 479px) {
  .covers__section {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.covers__img {
  position: absolute;
  z-index: -10;
  width: 100%;
  inset-block-start: 0;
}
.covers__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 6.095rem 6.0731818182rem;
  -webkit-margin-before: 6.1772727273rem;
          margin-block-start: 6.1772727273rem;
  width: 100%;
  gap: 2rem;
  padding-block: 6.4090909091rem 1.8181818182rem;
}
@media (max-width: 479px) {
  .covers__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.covers__title {
  font-weight: 800;
  font-size: 4.9436363636rem;
  color: #F5F2FE;
  line-height: 100%;
  text-transform: uppercase;
  text-align: end;
}
.covers__text {
  font-weight: 300;
  font-size: 0.9090909091rem;
  color: white;
  width: 26.6818181818rem;
  text-align: end;
}
.covers__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.3718181818rem;
  padding: 0.5577272727rem 0.7436363636rem;
  background-color: white;
  color: #00381B;
  border-radius: 0.7436363636rem;
  font-size: 0.9295454545rem;
  font-weight: 700;
}
@media (max-width: 479px) {
  .covers__cta {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.covers__cta img {
  width: 1.0336363636rem;
  height: 1.0336363636rem;
}
.covers__chars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  gap: 1.0454545455rem;
  -webkit-margin-before: 0.9090909091rem;
          margin-block-start: 0.9090909091rem;
  padding-inline: 6.1172727273rem 6.0731818182rem;
  -webkit-margin-after: 2.45rem;
          margin-block-end: 2.45rem;
}
@media (max-width: 479px) {
  .covers__chars {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.covers__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 0.4713636364rem;
  border: 0.0118181818rem solid #00FF7A;
  background: rgba(255, 255, 255, 0.21);
  backdrop-filter: blur(0.3272727273rem);
  -webkit-backdrop-filter: blur(0.3272727273rem); /* Para Safari */
  padding: 0.7072727273rem;
  width: 8.2436363636rem;
  gap: 0.495rem;
}
@media (max-width: 479px) {
  .covers__box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.covers__box img {
  width: 0.8522727273rem;
  height: 0.8522727273rem;
  -webkit-margin-after: 0.495rem;
          margin-block-end: 0.495rem;
}
.covers__box span {
  font-weight: 700;
  font-size: 0.5454545455rem;
  color: white;
}
.covers__box p {
  font-weight: 500;
  font-size: 0.5454545455rem;
  color: white;
}
.covers__arrow {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 1.5886363636rem;
  height: 1.5886363636rem;
  inset-block-start: calc(50% - 0.7943181818rem);
  z-index: 20;
}
@media (max-width: 479px) {
  .covers__arrow {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.covers__arrow--back {
  inset-inline-start: 3.0495454545rem;
}
.covers__arrow--next {
  inset-inline-end: 3.0495454545rem;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
* {
  font-family: "Poppins", sans-serif;
}

/* // Ejemplo de uso de las variables y mixins
.header {
  background: $primary-color;
  color: $white;
  padding: $spacing-lg;
  @include flex-between;

  .logo {
    font-size: $font-size-xl;
    font-weight: $font-weight-bold;
  }

  @include mobile {
    padding: $spacing-md;
    flex-direction: column;
    gap: $spacing-md;
  }
}

.button {
  @include button-variant($primary-color);

  &--secondary {
    @include button-variant($secondary-color);
  }

  &--outline {
    @include button-base;
    background: transparent;
    color: $primary-color;
    border: 2px solid $primary-color;

    &:hover {
      background: $primary-color;
      color: $white;
    }
  }
}

.card {
  @include card;

  .card-title {
    font-size: $font-size-lg;
    font-weight: $font-weight-semibold;
    color: $text-primary;
    margin-bottom: $spacing-md;
    @include text-truncate;
  }
}

.form-input {
  @include input-base;

  &--error {
    border-color: $error-color;

    &:focus {
      border-color: $error-color;
    }
  }
}

.hero-banner {
  @include gradient($primary-color, $secondary-color, to right);
  color: $white;
  padding: $spacing-xxl;
  text-align: center;
  @include fade-in;
} */
.value {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 4.5454545455rem 6.0909090909rem;
  gap: 3.7272727273rem;
  background-color: #EEE;
}
@media (max-width: 479px) {
  .value {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.value__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 9.8636363636rem;
}
@media (max-width: 479px) {
  .value__header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.value__header h5 {
  font-size: 3.1818181818rem;
  font-weight: 700;
  line-height: 100%;
  color: #0A254D;
}
.value__header p {
  font-size: 0.9090909091rem;
  font-weight: 300;
  color: #0A254D;
}
.value__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 7.2727272727rem 2.0072727273rem;
  padding-inline: 1.8181818182rem;
  border-radius: 2.2727272727rem;
  background: url("/img/kingspec-board.png");
  gap: 4.1772727273rem;
  width: 100%;
  background-size: cover;
}
@media (max-width: 479px) {
  .value__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.value__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4090909091rem;
  width: 100%;
}
@media (max-width: 479px) {
  .value__body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.value__body h5 {
  font-weight: 600;
  font-size: 3.215rem;
  line-height: 100%;
  width: 21.4090909091rem;
  color: #F5F2FE;
}
.value__body p {
  font-weight: 300;
  font-size: 0.7272727273rem;
  color: white;
  text-align: start;
  width: 21.4090909091rem;
}
.value__body button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0.5577272727rem 0.7436363636rem;
  background: #FF0000;
  color: white;
  gap: 0.3718181818rem;
  border-radius: 0.7436363636rem;
  font-weight: 700;
}
@media (max-width: 479px) {
  .value__body button {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.value__body button img {
  width: 1.0336363636rem;
  height: 1.0336363636rem;
}
.value__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.7304545455rem;
  width: 100%;
}
@media (max-width: 479px) {
  .value__gallery {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.value__img {
  border-radius: 0.9740909091rem;
  height: 9.1545454545rem;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  overflow: hidden;
}
.value__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
* {
  font-family: "Poppins", sans-serif;
}

/* // Ejemplo de uso de las variables y mixins
.header {
  background: $primary-color;
  color: $white;
  padding: $spacing-lg;
  @include flex-between;

  .logo {
    font-size: $font-size-xl;
    font-weight: $font-weight-bold;
  }

  @include mobile {
    padding: $spacing-md;
    flex-direction: column;
    gap: $spacing-md;
  }
}

.button {
  @include button-variant($primary-color);

  &--secondary {
    @include button-variant($secondary-color);
  }

  &--outline {
    @include button-base;
    background: transparent;
    color: $primary-color;
    border: 2px solid $primary-color;

    &:hover {
      background: $primary-color;
      color: $white;
    }
  }
}

.card {
  @include card;

  .card-title {
    font-size: $font-size-lg;
    font-weight: $font-weight-semibold;
    color: $text-primary;
    margin-bottom: $spacing-md;
    @include text-truncate;
  }
}

.form-input {
  @include input-base;

  &--error {
    border-color: $error-color;

    &:focus {
      border-color: $error-color;
    }
  }
}

.hero-banner {
  @include gradient($primary-color, $secondary-color, to right);
  color: $white;
  padding: $spacing-xxl;
  text-align: center;
  @include fade-in;
} */
.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 6rem 4.4545454545rem;
  padding-inline: 6.0740909091rem;
  gap: 3.7272727273rem;
}
@media (max-width: 479px) {
  .news {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.news__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8636363636rem;
  width: 100%;
}
@media (max-width: 479px) {
  .news__header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.news__header span {
  font-size: 0.7272727273rem;
  font-weight: 400;
  color: #054A76;
}
.news__header h4 {
  font-size: 2.7272727273rem;
  font-weight: 800;
  line-height: 109.1%;
  max-width: 49.2272727273rem;
  text-align: center;
}
.news__container {
  display: -ms-grid;
  display: grid;
  gap: 0.7854545455rem;
  width: 100%;
  -ms-grid-columns: 1fr 0.7854545455rem 1fr 0.7854545455rem 1fr 0.7854545455rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: 2fr 0.7854545455rem 1fr;
  grid-template-rows: 2fr 1fr;
}
.news__container > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.news__container > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.news__container > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.news__container > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
.news__container > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.news__container > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.news__container > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.news__container > *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}
.news__item {
  position: relative;
  border-radius: 1.15rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #333;
  min-height: 11.3636363636rem;
}

.item-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0))), url("/img/grid1.png");
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%), url("/img/grid1.png");
  min-height: 400px;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  padding-inline: 1.15rem;
  padding-block: 2.1809090909rem;
  background-position: center, center;
}
@media (max-width: 479px) {
  .item-1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.item-1 h2 {
  font-weight: 800;
  font-size: 3.2972727273rem;
  line-height: 3.0681818182rem;
  text-align: start;
  color: white;
  max-width: 21.8531818182rem;
}
.item-1 p {
  font-weight: 400;
  font-size: 0.8536363636rem;
  line-height: 1.1590909091rem;
  color: white;
  max-width: 18.0959090909rem;
}

.item-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url("/img/grid2.png");
  min-height: 500px;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3/5;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  padding: 1.38rem 1.9168181818rem;
}
@media (max-width: 479px) {
  .item-2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.item-2 .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.46rem;
}
@media (max-width: 479px) {
  .item-2 .buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.item-2 .buttons button {
  font-size: 0.7840909091rem;
  font-weight: 700;
  padding: 0.4704545455rem 0.6272727273rem;
  border-radius: 0.6272727273rem;
}
.item-2 .buttons__primary {
  color: #054A76;
  background: #ADCCE3;
}
.item-2 .buttons__secondary {
  border: white 0.0381818182rem solid;
  color: white;
  background: none;
}

.item-3 {
  background-image: url("/img/grid3.png");
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}

.item-4 {
  background-image: url("/img/grid4.png");
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}

.item-3, .item-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 1.5336363636rem;
  padding-block: 1.7636363636rem;
}
@media (max-width: 479px) {
  .item-3, .item-4 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.item-3 h3, .item-4 h3 {
  font-weight: 700;
  font-size: 1.5336363636rem;
  color: white;
  line-height: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
* {
  font-family: "Poppins", sans-serif;
}

/* // Ejemplo de uso de las variables y mixins
.header {
  background: $primary-color;
  color: $white;
  padding: $spacing-lg;
  @include flex-between;

  .logo {
    font-size: $font-size-xl;
    font-weight: $font-weight-bold;
  }

  @include mobile {
    padding: $spacing-md;
    flex-direction: column;
    gap: $spacing-md;
  }
}

.button {
  @include button-variant($primary-color);

  &--secondary {
    @include button-variant($secondary-color);
  }

  &--outline {
    @include button-base;
    background: transparent;
    color: $primary-color;
    border: 2px solid $primary-color;

    &:hover {
      background: $primary-color;
      color: $white;
    }
  }
}

.card {
  @include card;

  .card-title {
    font-size: $font-size-lg;
    font-weight: $font-weight-semibold;
    color: $text-primary;
    margin-bottom: $spacing-md;
    @include text-truncate;
  }
}

.form-input {
  @include input-base;

  &--error {
    border-color: $error-color;

    &:focus {
      border-color: $error-color;
    }
  }
}

.hero-banner {
  @include gradient($primary-color, $secondary-color, to right);
  color: $white;
  padding: $spacing-xxl;
  text-align: center;
  @include fade-in;
} */
.cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  background: url("/img/cta-back.png");
  min-height: 31.8009090909rem;
  background-position: center;
  background-size: cover;
  -webkit-padding-after: 3.6363636364rem;
          padding-block-end: 3.6363636364rem;
}
@media (max-width: 479px) {
  .cta {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.cta button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.3718181818rem;
  border-radius: 0.7436363636rem;
  background: #4cbb81;
  color: #00381B;
  font-weight: 700;
  font-size: 0.9295454545rem;
  padding: 0.5577272727rem 0.7436363636rem;
}
@media (max-width: 479px) {
  .cta button {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.cta button img {
  width: 1.0336363636rem;
  height: 1.0336363636rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
* {
  font-family: "Poppins", sans-serif;
}

/* // Ejemplo de uso de las variables y mixins
.header {
  background: $primary-color;
  color: $white;
  padding: $spacing-lg;
  @include flex-between;

  .logo {
    font-size: $font-size-xl;
    font-weight: $font-weight-bold;
  }

  @include mobile {
    padding: $spacing-md;
    flex-direction: column;
    gap: $spacing-md;
  }
}

.button {
  @include button-variant($primary-color);

  &--secondary {
    @include button-variant($secondary-color);
  }

  &--outline {
    @include button-base;
    background: transparent;
    color: $primary-color;
    border: 2px solid $primary-color;

    &:hover {
      background: $primary-color;
      color: $white;
    }
  }
}

.card {
  @include card;

  .card-title {
    font-size: $font-size-lg;
    font-weight: $font-weight-semibold;
    color: $text-primary;
    margin-bottom: $spacing-md;
    @include text-truncate;
  }
}

.form-input {
  @include input-base;

  &--error {
    border-color: $error-color;

    &:focus {
      border-color: $error-color;
    }
  }
}

.hero-banner {
  @include gradient($primary-color, $secondary-color, to right);
  color: $white;
  padding: $spacing-xxl;
  text-align: center;
  @include fade-in;
} */
.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 2.7272727273rem 1.1363636364rem;
  padding-inline: 6.0454545455rem;
  width: 100%;
  background: #020B18;
  gap: 0.4545454545rem;
}
@media (max-width: 479px) {
  .footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.9090909091rem;
  width: 100%;
}
@media (max-width: 479px) {
  .footer__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.1363636364rem;
  max-width: 15.7272727273rem;
}
@media (max-width: 479px) {
  .footer__info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer__info span {
  font-size: 1.3636363636rem;
  font-weight: 600;
  color: white;
}
.footer__img {
  width: 8.0972727273rem;
}
.footer__img img {
  width: 100%;
}
.footer__text {
  font-weight: 300;
  font-size: 0.7272727273rem;
  text-align: start;
  color: white;
}
.footer__email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.4545454545rem;
  -webkit-border-after: 0.0454545455rem solid white;
          border-block-end: 0.0454545455rem solid white;
  border-radius: 0.4545454545rem;
  padding: 0.4545454545rem;
}
@media (max-width: 479px) {
  .footer__email {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer__email img {
  width: 1.0909090909rem;
  height: 1.0909090909rem;
}
.footer__email input {
  font-size: 0.7272727273rem;
  color: white;
  background: none;
  font-weight: 300;
  border: none;
  padding: 0;
}
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.1363636364rem;
}
@media (max-width: 479px) {
  .footer__menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer__menu h5 {
  font-size: 1.3636363636rem;
  font-weight: 600;
  color: white;
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4545454545rem;
}
@media (max-width: 479px) {
  .footer__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer__list a {
  font-size: 0.7272727273rem;
  font-weight: 300;
  color: white;
  text-decoration: none;
}
.footer__terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-padding-before: 0.9090909091rem;
          padding-block-start: 0.9090909091rem;
  -webkit-border-before: 0.0454545455rem solid white;
          border-block-start: 0.0454545455rem solid white;
  width: 100%;
}
@media (max-width: 479px) {
  .footer__terms {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer__terms span {
  font-weight: 400;
  font-size: 0.6363636364rem;
  color: white;
}
.footer__policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.3636363636rem;
}
@media (max-width: 479px) {
  .footer__policy {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer__policy a {
  font-weight: 400;
  font-size: 0.6363636364rem;
  color: white;
  text-decoration: none;
}