@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Noto Sans", Arial, sans-serif;
  background-color: #ffffff;
  color: #242424;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  body::before {
    height: 60px;
  }
}

.main-content {
  position: relative;
  z-index: 99 !important;
  margin-top: 80px;
  margin-bottom: 0px;
}

@media (max-width: 767px) {
  .main-content {
    margin-top: 56.16px;
    margin-bottom: 0;
  }
}
.container-fluid {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 374px) {
  .container-fluid {
    max-width: 374px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 375px) and (max-width: 767px) {
  .container-fluid {
    max-width: 767px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .container-fluid {
    max-width: 1023px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .container-fluid {
    max-width: 1439px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1440px) {
  .container-fluid {
    max-width: 1440px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.rounded {
  border-radius: 8px !important;
}

.rounded-lg {
  border-radius: 12px !important;
}

.rounded-xl {
  border-radius: 16px !important;
}

.required::before {
  content: "*";
  color: #ae1c22;
  font-size: 16px;
  margin-right: 4px; /* espaciado entre el * y el texto */
}

.list-decoration-none {
  list-style: none;
  padding: 0;
  margin: 0;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* Tu flecha SVG */
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='15' height='8.55' viewBox='0 0 16 10' fill='none'><path d='M8 9.49995L0.5 1.99995L1.55 0.949951L8 7.39995L14.45 0.949951L15.5 1.99995L8 9.49995Z' fill='%23161A1D'/></svg>") no-repeat right 1.35rem center/15px 8.55px;
  padding-right: 3rem; /* 🔥 MÁS espacio entre texto y flecha */
  cursor: pointer;
}

.form-label {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 420px) {
  .form-label {
    max-width: 298px;
    text-align: left;
  }
}
@media (max-width: 640px) {
  .form-label {
    max-width: 389px;
    text-align: left;
  }
}

.form-check-label {
  font-size: 16px;
  font-weight: 400;
  max-width: 248px;
  text-align: left;
}

.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Caja tooltip */
.tooltip {
  visibility: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  bottom: 120%; /* aparece arriba del icono */
  right: 0; /* pegado a la derecha */
  z-index: 10;
}

/* Caja visual */
.tooltip-box {
  background: #edf2fe;
  color: #224497;
  border: 1px solid #224497;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  min-width: 320px;
  max-width: 500px;
  line-height: 1.4;
  position: absolute;
  bottom: 130%; /* encima del icono */
  left: 50%; /* referencia al centro del icono */
  transform: translateX(-92%); /* centra horizontalmente */
}

/* Flechita */
.tooltip-box .tooltip-arrow {
  content: "";
  position: absolute;
  bottom: -10px; /* debajo del tooltip */
  right: 22.5px; /* referencia al centro del icono */
  transform: translateX(0%);
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #edf2fe transparent transparent transparent;
  filter: drop-shadow(0px 1px 0px #224497);
}

/* Mostrar al hover */
.tooltip-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.alert-info {
  padding: 8px;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #edf2fe;
  color: #224497;
  text-align: left;
}

hr {
  border-top: 1px solid #767676 !important;
}

.divider {
  border-top: 1px solid #dddddd !important;
}

.card-box-shadow {
  border-radius: 16px;
  background: #fff;
  border: 1px solid #f9f9f9;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}

.card-no-shadow {
  border-radius: 16px;
  background: #f9f9f9;
  border: none;
  box-shadow: none;
}

.card-outlined-primary {
  display: flex;
  padding: 16px;
  flex-direction: column;
  gap: 4px;
  flex: 1 0 0;
  align-self: stretch;
  align-items: stretch;
  border-radius: 16px;
  border: 2px solid #1e5b4f;
  text-align: left;
  min-height: 169px;
}
.card-outlined-primary .card-outlined-primary-body {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: left;
}
.card-outlined-primary .card-outlined-primary-body img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.card-outlined-primary .card-outlined-primary-body p {
  flex: 1;
  min-width: 200px;
}
@media (max-width: 1024px) {
  .card-outlined-primary {
    max-width: 275px;
    min-height: 288px;
    margin: 2rem auto;
  }
  .card-outlined-primary .card-outlined-primary-body {
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
  }
}

.gradiant-dark-text {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(118deg, #373f3e 0.81%, #686969 102.97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-content-cer {
  background: linear-gradient(180deg, rgba(250, 251, 251, 0.9) 0%, rgba(241, 248, 246, 0.9) 100%);
  padding: 24px 32px;
  border-radius: 16px;
  border: 1px solid #f9f9f9;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 1180px) {
  .card-content-cer {
    padding: 24px 24px;
  }
}
@media (max-width: 920px) {
  .card-content-cer {
    padding: 22px 20px;
  }
}
@media (max-width: 767px) {
  .card-content-cer {
    padding: 20px 16px;
  }
}
@media (max-width: 540px) {
  .card-content-cer {
    padding: 18px 8px;
  }
}
@media (max-width: 390px) {
  .card-content-cer {
    padding: 16px 6px;
  }
}
@media (max-width: 330px) {
  .card-content-cer {
    padding: 12px 4px;
  }
}

.certifications {
  width: 100%;
}
.certifications .certifications-filters .filters-desktop {
  width: 100%;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  overflow-x: auto;
}
.certifications .certifications-filters .filters-desktop .card-certification {
  min-width: 233.2px;
  display: flex;
  flex: row;
  flex-direction: column;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 16px;
  border: 0.25px solid #373f3e;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  padding: 16px;
  gap: 8px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transform: scale(0.99);
}
.certifications .certifications-filters .filters-desktop .card-certification:hover {
  transform: scale(1);
  transition: all 150ms ease-in-out;
}
.certifications .certifications-filters .filters-desktop .card-certification.active {
  background-color: #97a69d !important;
  border: none !important;
  color: #ffffff;
}
.certifications .certifications-filters .filters-desktop .card-certification.active .card-certification-title {
  background: linear-gradient(180deg, rgba(250, 251, 251, 0.9) 0%, rgba(241, 248, 246, 0.9) 100%);
  color: #161a1d;
}
.certifications .certifications-filters .filters-desktop .card-certification.active .card-certification-info {
  color: #ffffff !important;
}
.certifications .certifications-filters .filters-desktop .card-certification .card-certification-title {
  width: 100%;
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 26px;
  background-color: #97a69d;
  font-size: 16px;
  font-weight: 600;
  color: white;
}
.certifications .certifications-filters .filters-desktop .card-certification .card-certification-info {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: #161a1d;
  margin: 0 auto;
  text-align: center;
}
.certifications .certifications-filters .filters-mobile {
  display: none;
}
@media (max-width: 767px) {
  .certifications .certifications-filters .filters-desktop {
    display: none;
  }
  .certifications .certifications-filters .filters-mobile {
    width: 100%;
    display: block;
  }
  .certifications .certifications-filters .filters-mobile .dropdown {
    width: 100%;
    max-width: 685px;
    position: relative;
  }
  .certifications .certifications-filters .filters-mobile .dropdown .dropdown-toggle {
    width: 100%;
    min-height: 32px;
    border-radius: 26px;
    background-color: #97a69d;
    border: none !important;
    color: #ffffff;
    padding: 4px 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
  }
  .certifications .certifications-filters .filters-mobile .dropdown .dropdown-toggle:hover {
    background-color: #97a69d !important;
    color: #ffffff !important;
    box-shadow: none;
    border: none;
    outline: none;
  }
  .certifications .certifications-filters .filters-mobile .dropdown .dropdown-toggle:focus {
    background-color: #97a69d !important;
    color: #ffffff !important;
    box-shadow: none;
    border: none !important;
    outline: none;
  }
  .certifications .certifications-filters .filters-mobile .dropdown .dropdown-toggle:before {
    filter: invert(1) !important;
    width: 24px !important;
    height: 24px !important;
  }
  .certifications .certifications-filters .filters-mobile .dropdown .dropdown-toggle.show {
    transition: all 150ms ease;
    border-radius: 8px 8px 0 0 !important;
  }
  .certifications .certifications-filters .filters-mobile .dropdown .dropdown-toggle.show:before {
    top: 25%;
    transform: rotate(180deg);
  }
  .certifications .certifications-filters .filters-mobile .dropdown .dropdown-menu {
    transition: all 300ms ease-in-out;
    /** 👇 Fuerza el ancho completo del botón */
    width: 100% !important;
    min-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    /** Ajustes de diseño */
    border: none !important;
    border-radius: 0 0 4px 4px !important;
    box-shadow: 0 2.75px 9px 0 rgba(109, 109, 109, 0.19) !important;
    overflow-y: auto;
    max-height: 260px;
    padding: 16px 8px;
  }
  .certifications .certifications-filters .filters-mobile .dropdown .dropdown-menu .dropdown-item {
    font-size: 16px;
    font-weight: 400;
    color: #222 !important;
    text-align: left;
  }
  .certifications .certifications-filters .filters-mobile .dropdown .dropdown-menu .dropdown-item:hover, .certifications .certifications-filters .filters-mobile .dropdown .dropdown-menu .dropdown-item:focus {
    border: none !important;
    color: #909090 !important;
    background: transparent !important;
  }
  .certifications .certifications-filters .filters-mobile .dropdown .dropdown-menu .dropdown-item.active {
    font-weight: 700;
    background-color: #f1f1f1 !important;
  }
}
.certifications .certification-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
@media (max-width: 1440px) {
  .certifications .certification-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
@media (max-width: 1158px) {
  .certifications .certification-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .certifications .certification-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.certifications .certification-grid .card-certification {
  width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 16px;
  border: 0.25px solid #373f3e;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
  user-select: none;
}
@media (max-width: 1158px) {
  .certifications .certification-grid .card-certification {
    max-width: 96%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .certifications .certification-grid .card-certification {
    max-width: 385px;
    margin: 0 auto;
  }
}
.certifications .certification-grid .card-certification .card-title {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f3f3f3;
  color: #373f3e;
  border-bottom: 1px solid #767676;
  padding: 16px;
  gap: 16px;
}
.certifications .certification-grid .card-certification .card-title .item-institution {
  margin-top: 16px;
  background-color: transparent;
  max-width: 194px;
  height: 72px;
  display: flex;
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  flex: 1 0 0;
  align-self: stretch;
  font-size: 24px;
  font-weight: 700px;
}
.certifications .certification-grid .card-certification .card-title .item-institution img {
  max-height: 70px;
}
@media (max-width: 1220px) {
  .certifications .certification-grid .card-certification .card-title .item-institution {
    padding: 16px 12px;
  }
  .certifications .certification-grid .card-certification .card-title .item-institution img {
    width: 100% !important;
  }
}
@media (max-width: 820px) {
  .certifications .certification-grid .card-certification .card-title .item-institution {
    max-width: 160px;
    height: 56px;
    padding: 16px 12px;
  }
  .certifications .certification-grid .card-certification .card-title .item-institution img {
    width: 100% !important;
    max-height: 50px;
  }
}
@media (max-width: 540px) {
  .certifications .certification-grid .card-certification .card-title .item-institution {
    max-width: 140px;
    padding: 16px 12px;
  }
  .certifications .certification-grid .card-certification .card-title .item-institution img {
    width: 100% !important;
  }
}
.certifications .certification-grid .card-certification .card-title .item-source {
  flex: 0 0 auto;
  width: 103px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  text-align: right;
}
.certifications .certification-grid .card-certification .card-title .item-source .item-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 99px;
  height: 32px;
  padding: 4px 12px;
  gap: 4px;
  background: #ece2f5;
  border-radius: 100px;
  border: 1px solid #7d1dd8;
  color: #7d1dd8;
  font-size: 14px;
  font-weight: 600;
}
.certifications .certification-grid .card-certification .card-title .item-source .item-badge i {
  font-size: 24px;
}
.certifications .certification-grid .card-certification .card-title .item-source .item-asociation {
  display: flex;
  flex-direction: column; /* 👈 texto arriba, logo abajo */
  align-items: flex-start; /* 👈 alinea ambos al mismo inicio (izquierda del texto) */
  justify-content: flex-start;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 12px;
  color: #000;
  text-align: left;
}
.certifications .certification-grid .card-certification .card-title .item-source .item-asociation .association-logo {
  width: 83px !important;
  height: 23px !important;
  object-fit: contain;
  display: block;
  margin-top: 4px;
}
.certifications .certification-grid .card-certification .card-body {
  padding: 16px;
}
@media (max-width: 540px) {
  .certifications .certification-grid .card-certification .card-body {
    padding: 12px;
  }
}
.certifications .certification-grid .card-certification .card-body .profile {
  min-height: 119px;
  padding: 16px;
  margin: 1rem 0;
  border-radius: 16px;
  line-height: 19px;
  background: linear-gradient(180deg, rgba(250, 251, 251, 0.9) 0%, rgba(241, 248, 246, 0.9) 100%);
}
.certifications .certification-grid .card-certification .card-body .cost-cup {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 540px) {
  .certifications .certification-grid .card-certification .card-body .cost-cup {
    gap: 4px;
  }
}
.certifications .certification-grid .card-certification .card-body .cost-cup .card-outlined {
  flex: 0 0 calc(50% - 4px);
  width: calc(50% - 4px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 16px;
  gap: 8px;
  border-radius: 16px;
  border: 1px solid #aaa;
  background-color: #fff;
  margin-bottom: 24px;
  box-sizing: border-box;
}
@media (max-width: 1400px) {
  .certifications .certification-grid .card-certification .card-body .cost-cup .card-outlined {
    padding: 16px 8px;
  }
}
@media (max-width: 1240px) {
  .certifications .certification-grid .card-certification .card-body .cost-cup .card-outlined {
    padding: 16px 4px 16px 4px;
  }
}
@media (max-width: 1148px) {
  .certifications .certification-grid .card-certification .card-body .cost-cup .card-outlined {
    padding: 16px 8px;
  }
}
@media (max-width: 540px) {
  .certifications .certification-grid .card-certification .card-body .cost-cup .card-outlined {
    flex: 0 0 calc(50% - 4px);
    width: calc(50% - 4px);
  }
}
.certifications .certification-grid .card-certification .card-body .cost-cup .card-outlined h6 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.certifications .certification-grid .card-certification .card-body .cost-cup .card-outlined .value-row {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 4px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 300px) {
  .certifications .certification-grid .card-certification .card-body .cost-cup .card-outlined .value-row {
    gap: 0px;
  }
}
.certifications .certification-grid .card-certification .card-body .cost-cup .card-outlined .value-row span {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1400px) {
  .certifications .certification-grid .card-certification .card-body .cost-cup .card-outlined .value-row span {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .certifications .certification-grid .card-certification .card-body .cost-cup .card-outlined .value-row span {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .certifications .certification-grid .card-certification .card-body .cost-cup .card-outlined .value-row span {
    font-size: 24px;
  }
}
@media (max-width: 540px) {
  .certifications .certification-grid .card-certification .card-body .cost-cup .card-outlined .value-row span {
    font-size: 20px;
  }
}
.certifications .certification-grid .card-certification .card-body .cost-cup .card-outlined .value-row small {
  font-size: 16px;
  font-weight: 500;
  transform: translateY(-2px);
}
@media (max-width: 540px) {
  .certifications .certification-grid .card-certification .card-body .cost-cup .card-outlined .value-row small {
    transform: translateY(0px);
    font-size: 14px;
  }
}
@media (max-width: 540px) {
  .certifications .certification-grid .card-certification .card-body .cost-cup .card-outlined .value-row small {
    transform: translateY(0px);
    font-size: 14px;
  }
}
.certifications .certification-grid .card-certification .card-body .locations .locations-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.certifications .certification-grid .card-certification .card-body .locations .locations-container .location-badge {
  width: fit-content;
  height: 28px;
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid #aaa;
  background: #f3f3f3;
}

.badge {
  /* max-width: 325px; */
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(118deg, #373f3e 0.81%, #686969 102.97%);
  border-radius: 26px;
  white-space: normal !important;
}

.footer_juub {
  width: 100%;
  min-height: 360px;
  padding: 2.5rem 1rem;
  margin: 0;
  color: #fff;
  text-align: left;
  background-repeat: no-repeat;
  background-size: 150%;
  background-position: center;
  /* --- Contenedor interno --- */
  /* --- Vista móvil --- */
}
.footer_juub .flex-footer {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  /* --- Columna izquierda: logotipo --- */
  /* --- Columna derecha: texto --- */
}
.footer_juub .flex-footer .flex-1 {
  position: relative;
}
.footer_juub .flex-footer .flex-1 img {
  width: 400px;
  height: auto;
}
@media (max-width: 967px) {
  .footer_juub .flex-footer .flex-1 img {
    width: 309px;
  }
}
.footer_juub .flex-footer .flex-2 {
  max-width: 902px;
  text-align: left;
  /* Ajustes responsivos progresivos */
}
.footer_juub .flex-footer .flex-2 h5 {
  position: relative;
  margin-top: 0;
  line-height: normal;
  transform: translateY(-30px);
}
.footer_juub .flex-footer .flex-2 p {
  position: relative;
  line-height: normal;
  transform: translateY(25px);
}
@media (max-width: 1380px) {
  .footer_juub .flex-footer .flex-2 p {
    transform: translateY(15px);
  }
}
@media (max-width: 1278px) {
  .footer_juub .flex-footer .flex-2 h5 {
    transform: translateY(-20px);
  }
  .footer_juub .flex-footer .flex-2 p {
    transform: translateY(10px);
  }
}
@media (max-width: 1024px) {
  .footer_juub .flex-footer .flex-2 h5 {
    transform: translateY(-10px);
  }
  .footer_juub .flex-footer .flex-2 p {
    transform: translateY(15px);
  }
}
@media (max-width: 991px) {
  .footer_juub .flex-footer .flex-2 {
    max-width: 100%;
    text-align: center;
  }
  .footer_juub .flex-footer .flex-2 h5 {
    transform: none;
    margin-bottom: 24px;
  }
  .footer_juub .flex-footer .flex-2 p {
    transform: none;
  }
}
@media (max-width: 991px) {
  .footer_juub {
    min-height: auto;
    padding: 2rem 0;
    background-size: cover;
  }
  .footer_juub .flex-footer {
    flex-direction: column;
    text-align: center;
  }
  .footer_juub .flex-footer .flex-1 img {
    width: 180px;
    margin: 0 auto;
  }
  .footer_juub .flex-footer .flex-2 {
    max-width: 100%;
  }
  .footer_juub .flex-footer .flex-2 h5 {
    font-size: 24px;
    font-weight: 700;
    transform: none;
    margin-bottom: 24px;
  }
  .footer_juub .flex-footer .flex-2 p {
    transform: none;
    font-size: 16px;
    font-weight: 400;
  }
}

.primary--text {
  color: #1e5b4f !important;
}

.bg-primary {
  background-color: #1e5b4f !important;
}

.border-primary {
  border-color: #1e5b4f !important;
}

.primary-dark--text {
  color: #13322e !important;
}

.bg-primary-dark {
  background-color: #13322e !important;
}

.border-primary-dark {
  border-color: #13322e !important;
}

.secondary--text {
  color: #a57f2c !important;
}

.bg-secondary {
  background-color: #a57f2c !important;
}

.border-secondary {
  border-color: #a57f2c !important;
}

.background--text {
  color: #f3f3f3 !important;
}

.bg-background {
  background-color: #f3f3f3 !important;
}

.border-background {
  border-color: #f3f3f3 !important;
}

.text--text {
  color: #161a1d !important;
}

.bg-text {
  background-color: #161a1d !important;
}

.border-text {
  border-color: #161a1d !important;
}

.white--text {
  color: #ffffff !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.border-white {
  border-color: #ffffff !important;
}

.gray--text {
  color: #f8f8f8 !important;
}

.bg-gray {
  background-color: #f8f8f8 !important;
}

.border-gray {
  border-color: #f8f8f8 !important;
}

.noto-sans {
  font-family: "Noto Sans", sans-serif !important;
}

.patria {
  font-family: "Patria", sans-serif !important;
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

@media (min-width: 320px) {
  .fw-xs-100 {
    font-weight: 100 !important;
  }
  .fw-xs-200 {
    font-weight: 200 !important;
  }
  .fw-xs-300 {
    font-weight: 300 !important;
  }
  .fw-xs-400 {
    font-weight: 400 !important;
  }
  .fw-xs-500 {
    font-weight: 500 !important;
  }
  .fw-xs-600 {
    font-weight: 600 !important;
  }
  .fw-xs-700 {
    font-weight: 700 !important;
  }
  .fw-xs-800 {
    font-weight: 800 !important;
  }
  .fw-xs-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 375px) {
  .fw-sm-100 {
    font-weight: 100 !important;
  }
  .fw-sm-200 {
    font-weight: 200 !important;
  }
  .fw-sm-300 {
    font-weight: 300 !important;
  }
  .fw-sm-400 {
    font-weight: 400 !important;
  }
  .fw-sm-500 {
    font-weight: 500 !important;
  }
  .fw-sm-600 {
    font-weight: 600 !important;
  }
  .fw-sm-700 {
    font-weight: 700 !important;
  }
  .fw-sm-800 {
    font-weight: 800 !important;
  }
  .fw-sm-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 768px) {
  .fw-md-100 {
    font-weight: 100 !important;
  }
  .fw-md-200 {
    font-weight: 200 !important;
  }
  .fw-md-300 {
    font-weight: 300 !important;
  }
  .fw-md-400 {
    font-weight: 400 !important;
  }
  .fw-md-500 {
    font-weight: 500 !important;
  }
  .fw-md-600 {
    font-weight: 600 !important;
  }
  .fw-md-700 {
    font-weight: 700 !important;
  }
  .fw-md-800 {
    font-weight: 800 !important;
  }
  .fw-md-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 1024px) {
  .fw-lg-100 {
    font-weight: 100 !important;
  }
  .fw-lg-200 {
    font-weight: 200 !important;
  }
  .fw-lg-300 {
    font-weight: 300 !important;
  }
  .fw-lg-400 {
    font-weight: 400 !important;
  }
  .fw-lg-500 {
    font-weight: 500 !important;
  }
  .fw-lg-600 {
    font-weight: 600 !important;
  }
  .fw-lg-700 {
    font-weight: 700 !important;
  }
  .fw-lg-800 {
    font-weight: 800 !important;
  }
  .fw-lg-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 1440px) {
  .fw-xl-100 {
    font-weight: 100 !important;
  }
  .fw-xl-200 {
    font-weight: 200 !important;
  }
  .fw-xl-300 {
    font-weight: 300 !important;
  }
  .fw-xl-400 {
    font-weight: 400 !important;
  }
  .fw-xl-500 {
    font-weight: 500 !important;
  }
  .fw-xl-600 {
    font-weight: 600 !important;
  }
  .fw-xl-700 {
    font-weight: 700 !important;
  }
  .fw-xl-800 {
    font-weight: 800 !important;
  }
  .fw-xl-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 1920px) {
  .fw-xxl-100 {
    font-weight: 100 !important;
  }
  .fw-xxl-200 {
    font-weight: 200 !important;
  }
  .fw-xxl-300 {
    font-weight: 300 !important;
  }
  .fw-xxl-400 {
    font-weight: 400 !important;
  }
  .fw-xxl-500 {
    font-weight: 500 !important;
  }
  .fw-xxl-600 {
    font-weight: 600 !important;
  }
  .fw-xxl-700 {
    font-weight: 700 !important;
  }
  .fw-xxl-800 {
    font-weight: 800 !important;
  }
  .fw-xxl-900 {
    font-weight: 900 !important;
  }
}
.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-34 {
  font-size: 34px !important;
}

.fs-36 {
  font-size: 36px !important;
}

.fs-38 {
  font-size: 38px !important;
}

.fs-40 {
  font-size: 40px !important;
}

.fs-42 {
  font-size: 42px !important;
}

.fs-44 {
  font-size: 44px !important;
}

.fs-46 {
  font-size: 46px !important;
}

.fs-48 {
  font-size: 48px !important;
}

.fs-50 {
  font-size: 50px !important;
}

.fs-52 {
  font-size: 52px !important;
}

.fs-54 {
  font-size: 54px !important;
}

.fs-56 {
  font-size: 56px !important;
}

.fs-58 {
  font-size: 58px !important;
}

.fs-60 {
  font-size: 60px !important;
}

.fs-62 {
  font-size: 62px !important;
}

.fs-64 {
  font-size: 64px !important;
}

.fs-66 {
  font-size: 66px !important;
}

.fs-68 {
  font-size: 68px !important;
}

.fs-70 {
  font-size: 70px !important;
}

.fs-72 {
  font-size: 72px !important;
}

.fs-74 {
  font-size: 74px !important;
}

.fs-76 {
  font-size: 76px !important;
}

.fs-78 {
  font-size: 78px !important;
}

.fs-80 {
  font-size: 80px !important;
}

@media (min-width: 320px) {
  .fs-xs-12 {
    font-size: 12px !important;
  }
  .fs-xs-14 {
    font-size: 14px !important;
  }
  .fs-xs-16 {
    font-size: 16px !important;
  }
  .fs-xs-18 {
    font-size: 18px !important;
  }
  .fs-xs-20 {
    font-size: 20px !important;
  }
  .fs-xs-22 {
    font-size: 22px !important;
  }
  .fs-xs-24 {
    font-size: 24px !important;
  }
  .fs-xs-26 {
    font-size: 26px !important;
  }
  .fs-xs-28 {
    font-size: 28px !important;
  }
  .fs-xs-30 {
    font-size: 30px !important;
  }
  .fs-xs-32 {
    font-size: 32px !important;
  }
  .fs-xs-34 {
    font-size: 34px !important;
  }
  .fs-xs-36 {
    font-size: 36px !important;
  }
  .fs-xs-38 {
    font-size: 38px !important;
  }
  .fs-xs-40 {
    font-size: 40px !important;
  }
  .fs-xs-42 {
    font-size: 42px !important;
  }
  .fs-xs-44 {
    font-size: 44px !important;
  }
  .fs-xs-46 {
    font-size: 46px !important;
  }
  .fs-xs-48 {
    font-size: 48px !important;
  }
  .fs-xs-50 {
    font-size: 50px !important;
  }
  .fs-xs-52 {
    font-size: 52px !important;
  }
  .fs-xs-54 {
    font-size: 54px !important;
  }
  .fs-xs-56 {
    font-size: 56px !important;
  }
  .fs-xs-58 {
    font-size: 58px !important;
  }
  .fs-xs-60 {
    font-size: 60px !important;
  }
  .fs-xs-62 {
    font-size: 62px !important;
  }
  .fs-xs-64 {
    font-size: 64px !important;
  }
  .fs-xs-66 {
    font-size: 66px !important;
  }
  .fs-xs-68 {
    font-size: 68px !important;
  }
  .fs-xs-70 {
    font-size: 70px !important;
  }
  .fs-xs-72 {
    font-size: 72px !important;
  }
  .fs-xs-74 {
    font-size: 74px !important;
  }
  .fs-xs-76 {
    font-size: 76px !important;
  }
  .fs-xs-78 {
    font-size: 78px !important;
  }
  .fs-xs-80 {
    font-size: 80px !important;
  }
}
@media (min-width: 375px) {
  .fs-sm-12 {
    font-size: 12px !important;
  }
  .fs-sm-14 {
    font-size: 14px !important;
  }
  .fs-sm-16 {
    font-size: 16px !important;
  }
  .fs-sm-18 {
    font-size: 18px !important;
  }
  .fs-sm-20 {
    font-size: 20px !important;
  }
  .fs-sm-22 {
    font-size: 22px !important;
  }
  .fs-sm-24 {
    font-size: 24px !important;
  }
  .fs-sm-26 {
    font-size: 26px !important;
  }
  .fs-sm-28 {
    font-size: 28px !important;
  }
  .fs-sm-30 {
    font-size: 30px !important;
  }
  .fs-sm-32 {
    font-size: 32px !important;
  }
  .fs-sm-34 {
    font-size: 34px !important;
  }
  .fs-sm-36 {
    font-size: 36px !important;
  }
  .fs-sm-38 {
    font-size: 38px !important;
  }
  .fs-sm-40 {
    font-size: 40px !important;
  }
  .fs-sm-42 {
    font-size: 42px !important;
  }
  .fs-sm-44 {
    font-size: 44px !important;
  }
  .fs-sm-46 {
    font-size: 46px !important;
  }
  .fs-sm-48 {
    font-size: 48px !important;
  }
  .fs-sm-50 {
    font-size: 50px !important;
  }
  .fs-sm-52 {
    font-size: 52px !important;
  }
  .fs-sm-54 {
    font-size: 54px !important;
  }
  .fs-sm-56 {
    font-size: 56px !important;
  }
  .fs-sm-58 {
    font-size: 58px !important;
  }
  .fs-sm-60 {
    font-size: 60px !important;
  }
  .fs-sm-62 {
    font-size: 62px !important;
  }
  .fs-sm-64 {
    font-size: 64px !important;
  }
  .fs-sm-66 {
    font-size: 66px !important;
  }
  .fs-sm-68 {
    font-size: 68px !important;
  }
  .fs-sm-70 {
    font-size: 70px !important;
  }
  .fs-sm-72 {
    font-size: 72px !important;
  }
  .fs-sm-74 {
    font-size: 74px !important;
  }
  .fs-sm-76 {
    font-size: 76px !important;
  }
  .fs-sm-78 {
    font-size: 78px !important;
  }
  .fs-sm-80 {
    font-size: 80px !important;
  }
}
@media (min-width: 768px) {
  .fs-md-12 {
    font-size: 12px !important;
  }
  .fs-md-14 {
    font-size: 14px !important;
  }
  .fs-md-16 {
    font-size: 16px !important;
  }
  .fs-md-18 {
    font-size: 18px !important;
  }
  .fs-md-20 {
    font-size: 20px !important;
  }
  .fs-md-22 {
    font-size: 22px !important;
  }
  .fs-md-24 {
    font-size: 24px !important;
  }
  .fs-md-26 {
    font-size: 26px !important;
  }
  .fs-md-28 {
    font-size: 28px !important;
  }
  .fs-md-30 {
    font-size: 30px !important;
  }
  .fs-md-32 {
    font-size: 32px !important;
  }
  .fs-md-34 {
    font-size: 34px !important;
  }
  .fs-md-36 {
    font-size: 36px !important;
  }
  .fs-md-38 {
    font-size: 38px !important;
  }
  .fs-md-40 {
    font-size: 40px !important;
  }
  .fs-md-42 {
    font-size: 42px !important;
  }
  .fs-md-44 {
    font-size: 44px !important;
  }
  .fs-md-46 {
    font-size: 46px !important;
  }
  .fs-md-48 {
    font-size: 48px !important;
  }
  .fs-md-50 {
    font-size: 50px !important;
  }
  .fs-md-52 {
    font-size: 52px !important;
  }
  .fs-md-54 {
    font-size: 54px !important;
  }
  .fs-md-56 {
    font-size: 56px !important;
  }
  .fs-md-58 {
    font-size: 58px !important;
  }
  .fs-md-60 {
    font-size: 60px !important;
  }
  .fs-md-62 {
    font-size: 62px !important;
  }
  .fs-md-64 {
    font-size: 64px !important;
  }
  .fs-md-66 {
    font-size: 66px !important;
  }
  .fs-md-68 {
    font-size: 68px !important;
  }
  .fs-md-70 {
    font-size: 70px !important;
  }
  .fs-md-72 {
    font-size: 72px !important;
  }
  .fs-md-74 {
    font-size: 74px !important;
  }
  .fs-md-76 {
    font-size: 76px !important;
  }
  .fs-md-78 {
    font-size: 78px !important;
  }
  .fs-md-80 {
    font-size: 80px !important;
  }
}
@media (min-width: 1024px) {
  .fs-lg-12 {
    font-size: 12px !important;
  }
  .fs-lg-14 {
    font-size: 14px !important;
  }
  .fs-lg-16 {
    font-size: 16px !important;
  }
  .fs-lg-18 {
    font-size: 18px !important;
  }
  .fs-lg-20 {
    font-size: 20px !important;
  }
  .fs-lg-22 {
    font-size: 22px !important;
  }
  .fs-lg-24 {
    font-size: 24px !important;
  }
  .fs-lg-26 {
    font-size: 26px !important;
  }
  .fs-lg-28 {
    font-size: 28px !important;
  }
  .fs-lg-30 {
    font-size: 30px !important;
  }
  .fs-lg-32 {
    font-size: 32px !important;
  }
  .fs-lg-34 {
    font-size: 34px !important;
  }
  .fs-lg-36 {
    font-size: 36px !important;
  }
  .fs-lg-38 {
    font-size: 38px !important;
  }
  .fs-lg-40 {
    font-size: 40px !important;
  }
  .fs-lg-42 {
    font-size: 42px !important;
  }
  .fs-lg-44 {
    font-size: 44px !important;
  }
  .fs-lg-46 {
    font-size: 46px !important;
  }
  .fs-lg-48 {
    font-size: 48px !important;
  }
  .fs-lg-50 {
    font-size: 50px !important;
  }
  .fs-lg-52 {
    font-size: 52px !important;
  }
  .fs-lg-54 {
    font-size: 54px !important;
  }
  .fs-lg-56 {
    font-size: 56px !important;
  }
  .fs-lg-58 {
    font-size: 58px !important;
  }
  .fs-lg-60 {
    font-size: 60px !important;
  }
  .fs-lg-62 {
    font-size: 62px !important;
  }
  .fs-lg-64 {
    font-size: 64px !important;
  }
  .fs-lg-66 {
    font-size: 66px !important;
  }
  .fs-lg-68 {
    font-size: 68px !important;
  }
  .fs-lg-70 {
    font-size: 70px !important;
  }
  .fs-lg-72 {
    font-size: 72px !important;
  }
  .fs-lg-74 {
    font-size: 74px !important;
  }
  .fs-lg-76 {
    font-size: 76px !important;
  }
  .fs-lg-78 {
    font-size: 78px !important;
  }
  .fs-lg-80 {
    font-size: 80px !important;
  }
}
@media (min-width: 1440px) {
  .fs-xl-12 {
    font-size: 12px !important;
  }
  .fs-xl-14 {
    font-size: 14px !important;
  }
  .fs-xl-16 {
    font-size: 16px !important;
  }
  .fs-xl-18 {
    font-size: 18px !important;
  }
  .fs-xl-20 {
    font-size: 20px !important;
  }
  .fs-xl-22 {
    font-size: 22px !important;
  }
  .fs-xl-24 {
    font-size: 24px !important;
  }
  .fs-xl-26 {
    font-size: 26px !important;
  }
  .fs-xl-28 {
    font-size: 28px !important;
  }
  .fs-xl-30 {
    font-size: 30px !important;
  }
  .fs-xl-32 {
    font-size: 32px !important;
  }
  .fs-xl-34 {
    font-size: 34px !important;
  }
  .fs-xl-36 {
    font-size: 36px !important;
  }
  .fs-xl-38 {
    font-size: 38px !important;
  }
  .fs-xl-40 {
    font-size: 40px !important;
  }
  .fs-xl-42 {
    font-size: 42px !important;
  }
  .fs-xl-44 {
    font-size: 44px !important;
  }
  .fs-xl-46 {
    font-size: 46px !important;
  }
  .fs-xl-48 {
    font-size: 48px !important;
  }
  .fs-xl-50 {
    font-size: 50px !important;
  }
  .fs-xl-52 {
    font-size: 52px !important;
  }
  .fs-xl-54 {
    font-size: 54px !important;
  }
  .fs-xl-56 {
    font-size: 56px !important;
  }
  .fs-xl-58 {
    font-size: 58px !important;
  }
  .fs-xl-60 {
    font-size: 60px !important;
  }
  .fs-xl-62 {
    font-size: 62px !important;
  }
  .fs-xl-64 {
    font-size: 64px !important;
  }
  .fs-xl-66 {
    font-size: 66px !important;
  }
  .fs-xl-68 {
    font-size: 68px !important;
  }
  .fs-xl-70 {
    font-size: 70px !important;
  }
  .fs-xl-72 {
    font-size: 72px !important;
  }
  .fs-xl-74 {
    font-size: 74px !important;
  }
  .fs-xl-76 {
    font-size: 76px !important;
  }
  .fs-xl-78 {
    font-size: 78px !important;
  }
  .fs-xl-80 {
    font-size: 80px !important;
  }
}
@media (min-width: 1920px) {
  .fs-xxl-12 {
    font-size: 12px !important;
  }
  .fs-xxl-14 {
    font-size: 14px !important;
  }
  .fs-xxl-16 {
    font-size: 16px !important;
  }
  .fs-xxl-18 {
    font-size: 18px !important;
  }
  .fs-xxl-20 {
    font-size: 20px !important;
  }
  .fs-xxl-22 {
    font-size: 22px !important;
  }
  .fs-xxl-24 {
    font-size: 24px !important;
  }
  .fs-xxl-26 {
    font-size: 26px !important;
  }
  .fs-xxl-28 {
    font-size: 28px !important;
  }
  .fs-xxl-30 {
    font-size: 30px !important;
  }
  .fs-xxl-32 {
    font-size: 32px !important;
  }
  .fs-xxl-34 {
    font-size: 34px !important;
  }
  .fs-xxl-36 {
    font-size: 36px !important;
  }
  .fs-xxl-38 {
    font-size: 38px !important;
  }
  .fs-xxl-40 {
    font-size: 40px !important;
  }
  .fs-xxl-42 {
    font-size: 42px !important;
  }
  .fs-xxl-44 {
    font-size: 44px !important;
  }
  .fs-xxl-46 {
    font-size: 46px !important;
  }
  .fs-xxl-48 {
    font-size: 48px !important;
  }
  .fs-xxl-50 {
    font-size: 50px !important;
  }
  .fs-xxl-52 {
    font-size: 52px !important;
  }
  .fs-xxl-54 {
    font-size: 54px !important;
  }
  .fs-xxl-56 {
    font-size: 56px !important;
  }
  .fs-xxl-58 {
    font-size: 58px !important;
  }
  .fs-xxl-60 {
    font-size: 60px !important;
  }
  .fs-xxl-62 {
    font-size: 62px !important;
  }
  .fs-xxl-64 {
    font-size: 64px !important;
  }
  .fs-xxl-66 {
    font-size: 66px !important;
  }
  .fs-xxl-68 {
    font-size: 68px !important;
  }
  .fs-xxl-70 {
    font-size: 70px !important;
  }
  .fs-xxl-72 {
    font-size: 72px !important;
  }
  .fs-xxl-74 {
    font-size: 74px !important;
  }
  .fs-xxl-76 {
    font-size: 76px !important;
  }
  .fs-xxl-78 {
    font-size: 78px !important;
  }
  .fs-xxl-80 {
    font-size: 80px !important;
  }
}
@media (max-width: 767px) {
  .fs-80 {
    font-size: 54px !important;
  }
  .fs-72 {
    font-size: 48px !important;
  }
  .fs-64 {
    font-size: 44px !important;
  }
  .fs-56 {
    font-size: 40px !important;
  }
  .fs-48 {
    font-size: 36px !important;
  }
  .fs-40 {
    font-size: 32px !important;
  }
  .fs-32 {
    font-size: 28px !important;
  }
}
@media (max-width: 425px) {
  .fs-80 {
    font-size: 48px !important;
  }
  .fs-72 {
    font-size: 42px !important;
  }
  .fs-64 {
    font-size: 38px !important;
  }
  .fs-56 {
    font-size: 32px !important;
  }
  .fs-48 {
    font-size: 28px !important;
  }
  .fs-40 {
    font-size: 24px !important;
  }
  .fs-32 {
    font-size: 20px !important;
  }
}
@media (max-width: 767px) {
  .fs-30 {
    font-size: 21px !important;
  }
  .fs-32 {
    font-size: 22.4px !important;
  }
  .fs-34 {
    font-size: 23.8px !important;
  }
  .fs-36 {
    font-size: 25.2px !important;
  }
  .fs-38 {
    font-size: 26.6px !important;
  }
  .fs-40 {
    font-size: 28px !important;
  }
  .fs-42 {
    font-size: 29.4px !important;
  }
  .fs-44 {
    font-size: 30.8px !important;
  }
  .fs-46 {
    font-size: 32.2px !important;
  }
  .fs-48 {
    font-size: 33.6px !important;
  }
  .fs-50 {
    font-size: 35px !important;
  }
  .fs-52 {
    font-size: 36.4px !important;
  }
  .fs-54 {
    font-size: 37.8px !important;
  }
  .fs-56 {
    font-size: 39.2px !important;
  }
  .fs-58 {
    font-size: 40.6px !important;
  }
  .fs-60 {
    font-size: 42px !important;
  }
  .fs-62 {
    font-size: 43.4px !important;
  }
  .fs-64 {
    font-size: 44.8px !important;
  }
  .fs-66 {
    font-size: 46.2px !important;
  }
  .fs-68 {
    font-size: 47.6px !important;
  }
  .fs-70 {
    font-size: 49px !important;
  }
  .fs-72 {
    font-size: 50.4px !important;
  }
  .fs-74 {
    font-size: 51.8px !important;
  }
  .fs-76 {
    font-size: 53.2px !important;
  }
  .fs-78 {
    font-size: 54.6px !important;
  }
  .fs-80 {
    font-size: 56px !important;
  }
}
@media (max-width: 425px) {
  .fs-30 {
    font-size: 16.5px !important;
  }
  .fs-32 {
    font-size: 17.6px !important;
  }
  .fs-34 {
    font-size: 18.7px !important;
  }
  .fs-36 {
    font-size: 19.8px !important;
  }
  .fs-38 {
    font-size: 20.9px !important;
  }
  .fs-40 {
    font-size: 22px !important;
  }
  .fs-42 {
    font-size: 23.1px !important;
  }
  .fs-44 {
    font-size: 24.2px !important;
  }
  .fs-46 {
    font-size: 25.3px !important;
  }
  .fs-48 {
    font-size: 26.4px !important;
  }
  .fs-50 {
    font-size: 27.5px !important;
  }
  .fs-52 {
    font-size: 28.6px !important;
  }
  .fs-54 {
    font-size: 29.7px !important;
  }
  .fs-56 {
    font-size: 30.8px !important;
  }
  .fs-58 {
    font-size: 31.9px !important;
  }
  .fs-60 {
    font-size: 33px !important;
  }
  .fs-62 {
    font-size: 34.1px !important;
  }
  .fs-64 {
    font-size: 35.2px !important;
  }
  .fs-66 {
    font-size: 36.3px !important;
  }
  .fs-68 {
    font-size: 37.4px !important;
  }
  .fs-70 {
    font-size: 38.5px !important;
  }
  .fs-72 {
    font-size: 39.6px !important;
  }
  .fs-74 {
    font-size: 40.7px !important;
  }
  .fs-76 {
    font-size: 41.8px !important;
  }
  .fs-78 {
    font-size: 42.9px !important;
  }
  .fs-80 {
    font-size: 44px !important;
  }
}
.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

@media (min-width: 320px) {
  .fw-xs-100 {
    font-weight: 100 !important;
  }
  .fw-xs-200 {
    font-weight: 200 !important;
  }
  .fw-xs-300 {
    font-weight: 300 !important;
  }
  .fw-xs-400 {
    font-weight: 400 !important;
  }
  .fw-xs-500 {
    font-weight: 500 !important;
  }
  .fw-xs-600 {
    font-weight: 600 !important;
  }
  .fw-xs-700 {
    font-weight: 700 !important;
  }
  .fw-xs-800 {
    font-weight: 800 !important;
  }
  .fw-xs-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 375px) {
  .fw-sm-100 {
    font-weight: 100 !important;
  }
  .fw-sm-200 {
    font-weight: 200 !important;
  }
  .fw-sm-300 {
    font-weight: 300 !important;
  }
  .fw-sm-400 {
    font-weight: 400 !important;
  }
  .fw-sm-500 {
    font-weight: 500 !important;
  }
  .fw-sm-600 {
    font-weight: 600 !important;
  }
  .fw-sm-700 {
    font-weight: 700 !important;
  }
  .fw-sm-800 {
    font-weight: 800 !important;
  }
  .fw-sm-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 768px) {
  .fw-md-100 {
    font-weight: 100 !important;
  }
  .fw-md-200 {
    font-weight: 200 !important;
  }
  .fw-md-300 {
    font-weight: 300 !important;
  }
  .fw-md-400 {
    font-weight: 400 !important;
  }
  .fw-md-500 {
    font-weight: 500 !important;
  }
  .fw-md-600 {
    font-weight: 600 !important;
  }
  .fw-md-700 {
    font-weight: 700 !important;
  }
  .fw-md-800 {
    font-weight: 800 !important;
  }
  .fw-md-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 1024px) {
  .fw-lg-100 {
    font-weight: 100 !important;
  }
  .fw-lg-200 {
    font-weight: 200 !important;
  }
  .fw-lg-300 {
    font-weight: 300 !important;
  }
  .fw-lg-400 {
    font-weight: 400 !important;
  }
  .fw-lg-500 {
    font-weight: 500 !important;
  }
  .fw-lg-600 {
    font-weight: 600 !important;
  }
  .fw-lg-700 {
    font-weight: 700 !important;
  }
  .fw-lg-800 {
    font-weight: 800 !important;
  }
  .fw-lg-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 1440px) {
  .fw-xl-100 {
    font-weight: 100 !important;
  }
  .fw-xl-200 {
    font-weight: 200 !important;
  }
  .fw-xl-300 {
    font-weight: 300 !important;
  }
  .fw-xl-400 {
    font-weight: 400 !important;
  }
  .fw-xl-500 {
    font-weight: 500 !important;
  }
  .fw-xl-600 {
    font-weight: 600 !important;
  }
  .fw-xl-700 {
    font-weight: 700 !important;
  }
  .fw-xl-800 {
    font-weight: 800 !important;
  }
  .fw-xl-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 1920px) {
  .fw-xxl-100 {
    font-weight: 100 !important;
  }
  .fw-xxl-200 {
    font-weight: 200 !important;
  }
  .fw-xxl-300 {
    font-weight: 300 !important;
  }
  .fw-xxl-400 {
    font-weight: 400 !important;
  }
  .fw-xxl-500 {
    font-weight: 500 !important;
  }
  .fw-xxl-600 {
    font-weight: 600 !important;
  }
  .fw-xxl-700 {
    font-weight: 700 !important;
  }
  .fw-xxl-800 {
    font-weight: 800 !important;
  }
  .fw-xxl-900 {
    font-weight: 900 !important;
  }
}
.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.navbar {
  position: relative;
  z-index: 9990 !important;
  height: 80px;
  transition: height 0.3s ease;
  font-family: inherit;
  background-color: #1e5b4f !important;
  line-height: 85%;
  position: fixed;
  width: 100%;
  left: 0;
  text-align: center;
  z-index: 9999 !important;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 300;
}
.navbar .container {
  width: 1440px;
  max-width: 1440px;
}
.navbar .container .navbar-collapse {
  position: relative;
}
.navbar .container .navbar-collapse .nav-pills {
  position: absolute !important;
  right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .navbar .container {
    width: 100%;
    max-width: auto;
  }
  .navbar .container .navbar-collapse {
    position: relative;
  }
  .navbar .container .navbar-collapse .nav-pills {
    position: relative !important;
  }
}

@media (max-width: 767px) {
  .navbar {
    height: 60px;
  }
  .navbar #GobnavbarPrincipal {
    display: none;
  }
  .navbar .navbar-brand {
    margin-top: -20px;
    margin-left: -15px;
  }
  .navbar .navbar-toggler {
    margin-top: -20px;
    margin-left: -5px;
  }
}
.main-footer {
  background-color: #1e5b4f !important;
}

.main-footer {
  position: relative;
  z-index: 9996 !important;
}

.btn-primary {
  width: auto;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  transition: all 300ms;
  background-color: transparent;
  color: #1e5b4f !important;
  border: 2px solid #1e5b4f !important;
}
.btn-primary [class^=icon-],
.btn-primary [class*=" icon-"] {
  display: inline-block;
  vertical-align: middle;
  color: inherit !important;
}
.btn-primary:focus {
  background-color: transparent;
}
.btn-primary:hover, .btn-primary:active {
  background-color: rgb(23.6776859504, 71.8223140496, 62.3512396694) !important;
  border-color: rgb(23.6776859504, 71.8223140496, 62.3512396694) !important;
  color: #ffffff !important;
  transition: all 300ms;
}
.btn-primary.active {
  background: #1e5b4f !important;
  color: #ffffff !important;
  border-color: #1e5b4f !important;
}
.btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active:active {
  background-color: rgb(23.6776859504, 71.8223140496, 62.3512396694) !important;
  border-color: rgb(23.6776859504, 71.8223140496, 62.3512396694) !important;
  transition: all 300ms;
}
.btn-primary:disabled, .btn-primary.disabled {
  background-color: transparent;
  border-color: #e0e0e0;
  color: #9e9e9e;
  cursor: not-allowed;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 16px;
  color: #1e5b4f;
  background: transparent;
  border: none !important;
  text-decoration: none !important;
  box-shadow: none !important;
  padding: 0;
  cursor: pointer;
}
.btn-link:visited {
  color: #1e5b4f;
}
.btn-link svg {
  stroke: #1e5b4f;
}
.btn-link:hover {
  background-color: transparent !important;
  color: rgb(23.6776859504, 71.8223140496, 62.3512396694) !important;
  text-decoration-line: none;
}
.btn-link:hover svg {
  stroke: rgb(23.6776859504, 71.8223140496, 62.3512396694) !important;
}
.btn-link:focus {
  outline: none;
  text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
  color: #9e9e9e;
  cursor: not-allowed;
}
.btn-link:disabled svg, .btn-link.disabled svg {
  stroke: #9e9e9e;
}

.btn-gradient {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff !important;
  color: #1e5b4f !important;
  transition: all 300ms ease;
  box-shadow: none;
  border: none !important;
}
.btn-gradient:hover {
  background: #ffffff !important;
  color: #1e5b4f !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1);
}
.btn-gradient:focus {
  background: #ffffff !important;
  color: #1e5b4f !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1);
}
.btn-gradient:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gradient--text {
  background: linear-gradient(117.26deg, #17433d 2.82%, #2e5a52 27.22%, #3e6960 52.67%, #67978a 92.24%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 490px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: left;
}
.hero-container .hero-wave {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.hero-container .hero-wave svg {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.hero-container .hero-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 5rem;
}
.hero-container .hero-row .hero-col-1 {
  width: 1104px;
}
.hero-container .hero-row .hero-col-1 h1 {
  margin-top: 0;
  color: #fff;
  font-family: "Noto Sans";
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 2rem;
}
.hero-container .hero-row .hero-col-1 p {
  max-width: 790px;
  color: #fff;
  font-family: "Noto Sans";
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  padding: 8px 0;
  margin-bottom: 3rem;
}
@media (max-width: 1147px) {
  .hero-container .hero-row {
    padding: 5rem 3rem;
  }
  .hero-container .hero-row .hero-col-1 {
    width: 100%;
  }
  .hero-container .hero-row .hero-col-1 p {
    max-width: 100%;
  }
}
@media (max-width: 920px) {
  .hero-container .hero-row {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .hero-container .hero-row {
    flex-wrap: wrap-reverse;
    padding: 3rem 0;
    text-align: center;
  }
  .hero-container .hero-row .hero-col-1 .btn {
    margin: 0 auto;
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .hero-container .hero-row {
    padding: 3rem 0.5rem;
  }
  .hero-container .hero-row .hero-col-1 h1 {
    font-size: 40px;
    line-height: normal;
    margin-bottom: 1.5rem;
  }
  .hero-container .hero-row .hero-col-1 p {
    font-size: 20px;
  }
  .hero-container .hero-row .hero-col-1 .btn {
    width: 184px !important;
    height: 44px !important;
  }
}
@media (max-width: 360px) {
  .hero-container {
    height: 100%;
    padding-top: 1rem;
    padding-bottom: 5rem;
  }
  .hero-container .hero-row .hero-col-1 h1 {
    font-size: 36px;
    margin-bottom: 1rem;
  }
  .hero-container .hero-row .hero-col-1 p {
    margin-bottom: 1.5rem;
  }
  .hero-container .hero-row .hero-col-1 .btn {
    font-size: 16px !important;
  }
}

.file-drop {
  margin-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  border-radius: 12px;
  border: 2px dashed #dddddd;
  background: #ffffff;
  min-height: 61px;
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color 0.3s;
  font-family: sans-serif;
}
.file-drop .file-content {
  line-height: 1.22;
}
.file-drop .file-content #file-name {
  font-size: 16px;
  font-weight: 600;
}
.file-drop .file-content #file-info {
  font-size: 14px;
  font-weight: 400;
}
.file-drop .file-selector {
  line-height: 1.22;
}
.file-drop .file-selector .btn-file label {
  width: 230px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #800040;
  color: #800040 !important;
  border-radius: 8px;
  margin: 0 auto;
  cursor: pointer;
}
.file-drop .file-selector .btn-file label span {
  margin-right: 0.25rem;
}
.file-drop #clearFileBtn {
  display: none;
  border: none;
  background: transparent;
  font-weight: 500;
  color: #8c8c8c;
  font-size: 24px;
}
.file-drop input {
  display: none;
}
.file-drop:hover {
  border-color: #800040; /* morado */
}

@media (max-width: 767px) {
  .file-drop {
    display: block;
    justify-content: space-between;
    text-align: center;
    padding: 8px 16px;
  }
  .file-drop .file-selector {
    line-height: 1.44;
    padding: 1rem 0;
  }
}
#file-name-desktop {
  font-size: 16px;
  font-weight: 600;
}

#file-name-mobile {
  font-size: 14px;
  font-weight: 600;
}

#file-info-desktop {
  font-size: 14px;
  font-weight: 600;
}

#file-info-mobile {
  font-size: 14px;
  font-weight: 400;
}

/* Estilizado de cada dropdown */
.dropdown {
  position: static;
  /* Cuando Popper está activo, Bootstrap añade [data-bs-popper] al menú */
}
.dropdown .dropdown-menu[data-bs-popper] {
  position: fixed !important;
  z-index: 2147483647 !important;
}
.dropdown .dropdown-toggle {
  position: relative;
  border-radius: 2rem;
  background: #fff;
  border: 1px solid #ccc;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  padding: 8px 42px 8px 16px;
  white-space: nowrap;
}
.dropdown .dropdown-toggle:hover, .dropdown .dropdown-toggle:focus {
  background-color: #fff !important;
  border: 1px solid #161a1d !important;
  outline: none !important;
  box-shadow: none !important;
}
.dropdown .dropdown-toggle:before {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M12 16.5L4.5 9.00001L5.55 7.95001L12 14.4L18.45 7.95001L19.5 9.00001L12 16.5Z' fill='%23161A1D'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
.dropdown .dropdown-menu {
  min-width: 200px;
  max-height: 100%;
  overflow-y: auto;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  border: 1px solid #161a1d;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15) !important;
  line-height: 2;
}
.dropdown .dropdown-menu .dropdown-item {
  font-size: 16px;
  font-weight: 400;
  color: #222 !important;
}
.dropdown .dropdown-menu .dropdown-item:hover, .dropdown .dropdown-menu .dropdown-item:focus {
  color: #909090 !important;
  background: transparent !important;
}

/* Parent container: stack vertically on mobile, horizontally on md+ */
.buttons-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem; /* ✅ reduced vertical spacing on mobile */
}

@media (min-width: 768px) {
  .buttons-container {
    flex-direction: row;
    gap: 3; /* no gap needed in horizontal layout */
  }
}
/* Buttons: full width on mobile, centered text */
.btn-cancel,
.btn-submit {
  width: 100%;
  display: block;
  text-align: center; /* ✅ ensure text is centered */
  justify-content: center; /* in case flexbox is applied */
  align-items: center;
}

/* Fixed width and order on desktop */
@media (min-width: 768px) {
  .btn-cancel {
    width: 117px;
    order: 1;
    margin-right: 1rem; /* spacing between buttons horizontally */
  }
  .btn-submit {
    width: 236px;
    order: 2;
  }
}
/* Order on mobile */
.btn-cancel {
  order: 2;
}

.btn-submit {
  order: 1;
}

.form-check-input[type=checkbox] {
  border-radius: 1px;
  background-color: transparent;
  border: 2px solid #808080;
  box-shadow: none;
}
.form-check-input[type=checkbox]:focus {
  border-color: #611232 !important;
  box-shadow: none !important;
  outline: none !important;
}
.form-check-input[type=checkbox]:checked {
  background-color: transparent;
  border-color: #611232;
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23611232' d='M13.485 1.929a1 1 0 0 1 1.415 1.414l-8.07 8.071a1 1 0 0 1-1.414 0L1.1 7.1a1 1 0 1 1 1.414-1.414l3.9 3.9 7.071-7.071z'/%3e%3c/svg%3e");
}

.icon-download {
  display: inline-block;
  width: 16px;
  height: 18px;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 18'><path d='M1.75 13.75V16.25H14.25V13.75H15.5V16.25C15.5 16.66 15.34 17.05 15.06 17.33C14.78 17.61 14.39 17.77 14 17.77H2C1.61 17.77 1.22 17.61 0.94 17.33C0.66 17.05 0.5 16.66 0.5 16.25V13.75H1.75ZM8.62 0V11.38L13.38 6.62L14.25 7.5L8 13.75L1.75 7.5L2.62 6.62L7.38 11.38V0H8.62Z'/></svg>") no-repeat center;
  mask-size: contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 18'><path d='M1.75 13.75V16.25H14.25V13.75H15.5V16.25C15.5 16.66 15.34 17.05 15.06 17.33C14.78 17.61 14.39 17.77 14 17.77H2C1.61 17.77 1.22 17.61 0.94 17.33C0.66 17.05 0.5 16.66 0.5 16.25V13.75H1.75ZM8.62 0V11.38L13.38 6.62L14.25 7.5L8 13.75L1.75 7.5L2.62 6.62L7.38 11.38V0H8.62Z'/></svg>") no-repeat center;
  -webkit-mask-size: contain;
  background-color: currentColor;
}

.icon-education {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: currentColor; /* 👈 el color del ícono lo hereda */
  /* Versión estándar */
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M19.5 22.5H18V20.25C17.9988 19.2558 17.6034 18.3027 16.9004 17.5996C16.1973 16.8966 15.2442 16.5012 14.25 16.5H9.75C8.7558 16.5012 7.80265 16.8966 7.09964 17.5996C6.39664 18.3027 6.00117 19.2558 6 20.25V22.5H4.5V20.25C4.50163 18.8581 5.05527 17.5237 6.03949 16.5395C7.0237 15.5553 8.35811 15.0016 9.75 15H14.25C15.6419 15.0016 16.9763 15.5553 17.9605 16.5395C18.9447 17.5237 19.4984 18.8581 19.5 20.25V22.5Z'/><path d='M3.75 4.5C3.55109 4.5 3.36032 4.57902 3.21967 4.71967C3.07902 4.86032 3 5.05109 3 5.25V12H4.5V5.25C4.5 5.05109 4.42098 4.86032 4.28033 4.71967C4.13968 4.57902 3.94891 4.5 3.75 4.5Z'/><path d='M3 1.5V3H6.75V8.25C6.75 9.64239 7.30312 10.9777 8.28769 11.9623C9.27226 12.9469 10.6076 13.5 12 13.5C13.3924 13.5 14.7277 12.9469 15.7123 11.9623C16.6969 10.9777 17.25 9.64239 17.25 8.25V3H21V1.5H3ZM8.25 3H15.75V5.25H8.25V3ZM12 12C11.0054 12 10.0516 11.6049 9.34835 10.9017C8.64509 10.1984 8.25 9.24456 8.25 8.25V6.75H15.75V8.25C15.75 9.24456 15.3549 10.1984 14.6517 10.9017C13.9484 11.6049 12.9946 12 12 12Z'/></svg>") no-repeat center;
  mask-size: contain;
  /* Versión para WebKit (Chrome, Safari) */
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M19.5 22.5H18V20.25C17.9988 19.2558 17.6034 18.3027 16.9004 17.5996C16.1973 16.8966 15.2442 16.5012 14.25 16.5H9.75C8.7558 16.5012 7.80265 16.8966 7.09964 17.5996C6.39664 18.3027 6.00117 19.2558 6 20.25V22.5H4.5V20.25C4.50163 18.8581 5.05527 17.5237 6.03949 16.5395C7.0237 15.5553 8.35811 15.0016 9.75 15H14.25C15.6419 15.0016 16.9763 15.5553 17.9605 16.5395C18.9447 17.5237 19.4984 18.8581 19.5 20.25V22.5Z'/><path d='M3.75 4.5C3.55109 4.5 3.36032 4.57902 3.21967 4.71967C3.07902 4.86032 3 5.05109 3 5.25V12H4.5V5.25C4.5 5.05109 4.42098 4.86032 4.28033 4.71967C4.13968 4.57902 3.94891 4.5 3.75 4.5Z'/><path d='M3 1.5V3H6.75V8.25C6.75 9.64239 7.30312 10.9777 8.28769 11.9623C9.27226 12.9469 10.6076 13.5 12 13.5C13.3924 13.5 14.7277 12.9469 15.7123 11.9623C16.6969 10.9777 17.25 9.64239 17.25 8.25V3H21V1.5H3ZM8.25 3H15.75V5.25H8.25V3ZM12 12C11.0054 12 10.0516 11.6049 9.34835 10.9017C8.64509 10.1984 8.25 9.24456 8.25 8.25V6.75H15.75V8.25C15.75 9.24456 15.3549 10.1984 14.6517 10.9017C13.9484 11.6049 12.9946 12 12 12Z'/></svg>") no-repeat center;
  -webkit-mask-size: contain;
}