/* ==============================================================
   USAM
   NUEVO INGRESO
   V1.0.4
   ============================================================== */


/* ==============================================================
   00. VARIABLES
   ============================================================== */

.admissions-page {
  --ni-navy: #081a40;
  --ni-navy-light: #0b2c5d;
  --ni-blue: #0b4f9c;
  --ni-text: #2a4a77;
  --ni-red: #ac0a35;
  --ni-red-light: #c8102e;
  --ni-aqua: #6eb4ce;
  --ni-line: #bcd9f2;
  --ni-gray: #f1f1f1;
  --ni-white: #ffffff;

  width: 100%;

  overflow-x: clip;
}


.admissions-page *,
.admissions-page *::before,
.admissions-page *::after {
  box-sizing: border-box;
}


.admissions-page img {
  max-width: 100%;
}


.admissions-page [hidden] {
  display: none !important;
}


.admissions-page button,
.admissions-page input,
.admissions-page select {
  font: inherit;
}


/* ==============================================================
   ACCESIBILIDAD
   ============================================================== */

.sr-only {
  position: absolute !important;

  width: 1px !important;
  height: 1px !important;

  padding: 0 !important;
  margin: -1px !important;

  overflow: hidden !important;

  clip:
    rect(
      0,
      0,
      0,
      0
    ) !important;

  white-space: nowrap !important;

  border: 0 !important;
}



/* ==============================================================
   01. HERO
   ============================================================== */

.hero-nuevo-ingreso {
  position: relative;

  width: 100%;
  height: 520px;

  overflow: hidden;

  top: -53px;
}


.hero-nuevo-ingreso
.hero-bg {
  position: absolute;

  inset: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform:
    scale(1.05);
}


.hero-nuevo-ingreso
.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(8, 26, 64, .75) 0%,
      rgba(8, 26, 64, .55) 40%,
      rgba(8, 26, 64, .15) 70%,
      rgba(8, 26, 64, 0) 100%
    );
}


.hero-nuevo-ingreso
.hero-content {
  position: relative;

  z-index: 2;

  height: 100%;

  display: flex;

  flex-direction: column;

  justify-content: center;

  color: #fff;
}


.hero-title {
  margin-bottom: 0;

  color: #fff;

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 56px;

  font-weight: 600;

  letter-spacing: -.5px;

  line-height: 1.1;
}


.hero-subtitle {
  max-width: 720px;

  margin-top: 0;

  color: #fff;

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 22px;

  font-weight: 200;

  line-height: 1.4;
}



/* ==============================================================
   02. MENÚ
   ============================================================== */

.nuevo-ingreso-menu {
  position: relative;

  z-index: 5;

  margin-top: -30px;

  background: #fff;
}


.nuevo-ingreso-menu-inner {
  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(
      6,
      minmax(0, 1fr)
    );

  gap: 18px;
}


.nuevo-ingreso-item {
  position: relative;

  padding:
    28px
    22px
    30px;

  background: #fff;

  text-decoration: none;

  transition:
    background .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}


.nuevo-ingreso-item::before {
  content: "";

  position: absolute;

  top: 14px;
  left: 22px;

  width: 60%;
  height: 6px;

  background: transparent;
}


.nuevo-ingreso-item h4 {
  margin-bottom: 10px;

  color: #0b3257;

  font-size: 22px;

  font-weight: 700;

  line-height: 1.1;
}


.nuevo-ingreso-item p {
  margin-bottom: 0;

  color: #0b3257;

  font-size: 13px;

  line-height: 1.4;
}


.nuevo-ingreso-item:hover,
.nuevo-ingreso-item:focus-visible {
  z-index: 2;

  background: #b10f2e;

  transform:
    translateY(-3px);

  box-shadow:
    0
    14px
    28px
    rgba(8, 26, 64, .12);

  outline: none;
}


.nuevo-ingreso-item:hover h4,
.nuevo-ingreso-item:hover p,
.nuevo-ingreso-item:focus-visible h4,
.nuevo-ingreso-item:focus-visible p {
  color: #fff;
}


.nuevo-ingreso-item:hover::before,
.nuevo-ingreso-item:focus-visible::before {
  background: #fff;
}


.nuevo-ingreso-item.active {
  background: #b10f2e;
}


.nuevo-ingreso-item.active h4,
.nuevo-ingreso-item.active p {
  color: #fff;
}


.nuevo-ingreso-item.active::before {
  background: #fff;
}



/* ==============================================================
   03. FILTRO
   ============================================================== */

.ni-filter-section {
  position: relative;

  z-index: 90;

  width: 100%;

  background: #fff;
}


.ni-filter-container {
  position: relative;

  width: 90%;

  max-width: 1200px;

  min-height: 76px;

  margin: 0 auto;

  display: flex;

  align-items: center;

  gap: 18px;
}


.ni-filter-clear {
  padding: 0;

  border: 0;

  background: transparent;

  color: #0b4f9c;

  font-size: 13px;

  font-weight: 600;

  cursor: pointer;
}


.ni-filter-clear:hover,
.ni-filter-clear:focus-visible {
  color: #ac0a35;

  text-decoration: underline;

  outline: none;
}


.ni-filter-wrapper {
  position: relative;

  z-index: 100;
}


.ni-filter-button {
  min-height: 43px;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding:
    0
    17px;

  border: 0;

  border-radius: 999px;

  background: #c8102e;

  color: #fff;

  cursor: pointer;

  box-shadow:
    0
    8px
    20px
    rgba(172, 10, 53, .17);
}


.ni-filter-button:hover,
.ni-filter-button:focus-visible {
  background: #ac0a35;

  outline: none;
}


.ni-filter-button
> .material-icons:first-child {
  font-size: 19px;
}


.ni-filter-label {
  font-size: 13px;

  font-weight: 700;
}


.ni-filter-selected {
  padding-left: 9px;

  border-left:
    1px solid
    rgba(255, 255, 255, .45);

  font-size: 11px;

  font-weight: 600;
}


.ni-filter-chevron {
  font-size: 18px;

  transition:
    transform .2s ease;
}


.ni-filter-button[aria-expanded="true"]
.ni-filter-chevron {
  transform:
    rotate(180deg);
}



/* ==============================================================
   03.1 PANEL
   ============================================================== */

.ni-filter-panel {
  position: absolute;

  top:
    calc(
      100% + 8px
    );

  left: 0;

  width: 260px;

  padding: 12px;

  border:
    1px solid
    #dbe2ec;

  border-radius: 15px;

  background: #fff;

  box-shadow:
    0
    18px
    45px
    rgba(8, 26, 64, .18);

  z-index: 999;
}


.ni-filter-panel-title {
  display: block;

  margin:
    2px
    6px
    9px;

  color: #0b2c5d;

  font-size: 11px;

  font-weight: 700;

  text-transform: uppercase;
}


.ni-filter-option {
  width: 100%;

  min-height: 41px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 12px;

  margin-bottom: 5px;

  padding:
    0
    12px;

  border: 0;

  border-radius: 9px;

  background: #f4f6f9;

  color: #0b2c5d;

  font-size: 12px;

  font-weight: 600;

  text-align: left;

  cursor: pointer;
}


.ni-filter-option:last-child {
  margin-bottom: 0;
}


.ni-filter-option
.material-icons {
  display: none;

  font-size: 17px;
}


.ni-filter-option:hover,
.ni-filter-option:focus-visible {
  background: #edf2f7;

  color: #ac0a35;

  outline: none;
}


.ni-filter-option.active {
  background: #081a40;

  color: #fff;
}


.ni-filter-option.active
.material-icons {
  display: block;
}



/* ==============================================================
   04. PROCESOS
   ============================================================== */

.ni-processes {
  width: 100%;
}


.ni-process[hidden] {
  display: none !important;
}


.nuevo-ingreso {
  background: #fff;
}


.ni-container {
  width: 90%;

  max-width: 1200px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    520px
    minmax(0, 1fr);

  gap: 40px;

  padding:
    40px
    0;
}



/* ==============================================================
   04.1 IMAGEN
   ============================================================== */

.ni-media {
  position: relative;

  min-width: 0;

  overflow: hidden;

  background: #e6edf5;
}


.ni-media img {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform .5s ease;
}


.ni-media:hover img {
  transform:
    scale(1.015);
}



/* ==============================================================
   04.2 CONTENIDO
   ============================================================== */

.ni-content {
  min-width: 0;
}


.ni-process-badge {
  display: inline-flex;

  align-items: center;

  margin-bottom: 8px;

  padding:
    5px
    11px;

  border-radius: 999px;

  background: #f8e7ec;

  color: #ac0a35;

  font-size: 10px;

  font-weight: 700;

  text-transform: uppercase;
}


.ni-content h2 {
  margin:
    0
    0
    10px;

  color: #0b2c5d;

  font-size: 40px;

  font-weight: 800;

  line-height: 1.1;
}


.ni-content > p {
  margin:
    0
    0
    10px;

  color: #2a4a77;

  font-size: 13px;

  line-height: 1.45;
}



/* ==============================================================
   05. DOCUMENTOS
   ============================================================== */

.ni-links {
  list-style: none;

  margin:
    16px
    0
    20px;

  padding: 0;
}


.ni-links li {
  position: relative;

  min-height: 41px;

  display: flex;

  align-items: center;

  padding:
    6px
    34px
    6px
    18px;

  border-bottom:
    1px solid
    #bcd9f2;

  color: #0b2c5d;

  font-size: 14px;
}


.ni-links li::before {
  content: "›";

  position: absolute;

  left: 0;

  top: 50%;

  transform:
    translateY(-50%);

  font-size: 18px;

  font-weight: 700;
}

.ni-document-highlight {
  background-color: #ac0a35!important;
  border-radius: 17px;
  padding: 7px 14px!important;
  color: white!important;
  margin-left: -7px;
  display: inline-block;
}

.ni-document-link {
  width: 100%;

  padding: 0;

  border: 0;

  background: transparent;

  color: #0b2c5d;

  font-size: inherit;

  text-align: left;

  text-decoration: none;

  cursor: pointer;
}


.ni-document-link:hover,
.ni-document-link:focus-visible {
  color: #ac0a35;

  outline: none;
}


.ni-document-link--portal {
  font-weight: 700;
}


.ni-document-icon {
  position: absolute;

  right: 0;

  top: 50%;

  transform:
    translateY(-50%);

  color: #e00032;

  font-size: 20px;
}



/* ==============================================================
   06. FORMULARIO
   ============================================================== */

.ni-contact-header {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 16px;

  margin-top: 20px;
}


.ni-contact-title {
  margin:
    0
    0
    8px;

  color: #ac0a35;

  font-size: 27px;

  font-weight: 700;

  line-height: 1.1;
}


.ni-contact-process {
  flex:
    0
    0
    auto;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding:
    5px
    13px;

  border-radius: 999px;

  background: #edf3f8;

  color: #0b2c5d;

  font-size: 10px;

  font-weight: 700;
}


.ni-form {
  position: relative;

  width: 100%;
}



/* ==============================================================
   06.1 RADIO
   ============================================================== */

.ni-radios {
  min-width: 0;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap:
    8px
    18px;

  margin:
    0
    0
    12px;

  padding: 0;

  border: 0;

  color: #7b8494;

  font-size: 11px;
}


.ni-radios label {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  min-height: 22px;

  margin: 0;

  cursor: pointer;
}


.ni-radios
input[type="radio"] {
  position: relative !important;

  left: auto !important;

  width: 15px !important;

  height: 15px !important;

  flex:
    0
    0
    15px;

  margin: 0 !important;

  padding: 0 !important;

  opacity: 1 !important;

  pointer-events: auto !important;

  appearance: auto !important;

  -webkit-appearance: radio !important;

  accent-color: #c8102e;
}


/*
 * Evita que Materialize genere
 * un segundo radio.
 */

.ni-radios
input[type="radio"]
+ span {
  height: auto !important;

  min-height: 0 !important;

  padding-left: 0 !important;

  color: inherit;

  font-size: inherit;

  line-height: 1.3;
}


.ni-radios
input[type="radio"]
+ span::before,
.ni-radios
input[type="radio"]
+ span::after {
  content: none !important;

  display: none !important;
}



/* ==============================================================
   06.2 CAMPOS
   ============================================================== */

.ni-field {
  min-width: 0;
}


.ni-field-full {
  margin-bottom: 10px;
}


.ni-form
input[type="text"],
.ni-form
input[type="email"],
.ni-form
input[type="tel"],
.ni-form
input[type="date"],
.ni-form
select {
  box-sizing: border-box !important;

  width: 100% !important;

  height: 38px !important;

  margin: 0 !important;

  padding:
    0
    15px !important;

  border:
    1px solid
    #386195 !important;

  border-radius: 22px !important;

  background: #fff !important;

  color: #0b2c5d !important;

  font-family: inherit !important;

  font-size: 11px !important;

  line-height: 38px !important;

  box-shadow: none !important;

  outline: none !important;
}


.ni-form
select {
  display: block !important;

  padding-right: 36px !important;

  cursor: pointer;
}


.ni-form
input::placeholder {
  color: #a1a9b6;

  opacity: 1;
}


.ni-form
input:focus,
.ni-form
select:focus {
  border-color:
    #ac0a35 !important;

  box-shadow:
    0
    0
    0
    3px
    rgba(172, 10, 53, .08) !important;
}



/* ==============================================================
   06.3 CARRERA / FECHA
   ============================================================== */

.ni-row {
  width: 100%;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1.08fr);

  gap: 14px;

  margin-bottom: 10px;
}



/* ==============================================================
   06.4 CELULAR / CORREO
   ============================================================== */

.ni-row-contact {
  width: 100%;

  display: grid;

  grid-template-columns:
    minmax(145px, .72fr)
    minmax(0, 1.9fr);

  gap: 14px;

  margin-bottom: 14px;
}



/* ==============================================================
   06.5 CHECKBOX
   ============================================================== */

.ni-check {
  position: relative;

  width: 100%;

  display: grid;

  grid-template-columns:
    17px
    minmax(0, 1fr);

  column-gap: 10px;

  align-items: start;

  margin:
    9px
    0;

  padding: 0;

  color: #2a4a77;

  font-size: 11px;

  line-height: 1.4;

  cursor: pointer;
}


.ni-check
> input[type="checkbox"] {
  position: relative !important;

  left: auto !important;

  top: auto !important;

  display: block !important;

  width: 16px !important;

  height: 16px !important;

  flex:
    0
    0
    16px;

  margin:
    1px
    0
    0 !important;

  padding: 0 !important;

  opacity: 1 !important;

  pointer-events: auto !important;

  appearance: auto !important;

  -webkit-appearance: checkbox !important;

  accent-color: #ac0a35;
}


.ni-check
> input[type="checkbox"]
+ span {
  position: static !important;

  display: block !important;

  min-width: 0 !important;

  min-height: 0 !important;

  height: auto !important;

  margin: 0 !important;

  padding: 0 !important;

  color: #2a4a77 !important;

  font-size: 11px !important;

  line-height: 1.4 !important;

  white-space: normal !important;
}


.ni-check
> input[type="checkbox"]
+ span::before,
.ni-check
> input[type="checkbox"]
+ span::after {
  content: none !important;

  display: none !important;
}



/* ==============================================================
   06.6 HONEYPOT
   ============================================================== */

.ni-honeypot {
  position: absolute !important;

  left: -10000px !important;

  width: 1px !important;

  height: 1px !important;

  overflow: hidden !important;
}



/* ==============================================================
   06.7 ESTADO
   ============================================================== */

.ni-form-status {
  min-height: 17px;

  margin:
    7px
    0
    0 !important;

  color: #0b2c5d !important;

  font-size: 11px !important;

  line-height: 1.35 !important;
}


.ni-form-status.is-error {
  color: #b00020 !important;
}


.ni-form-status.is-success {
  color: #167340 !important;
}



/* ==============================================================
   06.8 BOTÓN
   ============================================================== */

.ni-submit-row {
  width: 100%;

  display: flex;

  justify-content: flex-end;

  margin-top: 10px;
}


.ni-submit {
  min-width: 156px;

  min-height: 34px;

  padding:
    7px
    20px;

  border: 0 !important;

  border-radius: 999px;

  background: #ac0a35;

  color: #fff;

  font-size: 11px;

  font-weight: 700;

  text-transform: none;

  cursor: pointer;

  box-shadow: none;
}


.ni-submit:hover,
.ni-submit:focus-visible {
  background: #8e082c;

  outline: none;
}


.ni-submit:disabled {
  opacity: .6;

  cursor: wait;
}



/* ==============================================================
   07. MOMENTO DESCUBRIR
   ============================================================== */

.momento-descubrir {
  background: #fff;
}


.md-intro {
  width: 90%;

  max-width: 1200px;

  margin: 0 auto;

  padding:
    40px
    0
    20px;
}


.md-intro h2 {
  margin:
    0
    0
    6px;

  color: #0b2c5d;

  font-size: 28px;

  font-weight: 800;
}


.md-intro p {
  max-width: 720px;

  margin: 0;

  color: #2a4a77;

  font-size: 13px;

  line-height: 1.45;
}



/* ==============================================================
   08. FRASE
   ============================================================== */

.momento-banner {
  background:
    linear-gradient(
      90deg,
      rgb(110 180 206) 0%,
      rgb(110 180 206) 40%,
      rgb(0 19 62) 40%,
      rgb(0 19 62) 100%
    );
}


.md-banner {
  position: relative;

  width: 1200px;

  height: 220px;

  max-width: 100%;

  margin: 0 auto;

  overflow: hidden;
}


.md-banner
> img:first-child {
  width: 674px;

  height: 100%;

  display: block;

  object-fit: cover;
}


.md-text {
  position: absolute;

  left: 560px;

  top: 50%;

  z-index: 2;

  transform:
    translateY(-50%);
}


.md-text h3 {
  margin: 0;

  color: #fff;

  font-size: 20px;

  font-weight: 700;

  line-height: 26px;
}


.md-text span {
  padding:
    2px
    6px;

  border-radius: 10px;

  background:
    linear-gradient(
      90deg,
      rgb(190 11 59) 20%,
      rgb(131 31 83) 40%,
      rgb(75 50 106) 50%,
      rgb(18 64 122) 100%
    );
}


.md-decor {
  position: absolute;

  right: 0;

  top: 0;

  z-index: 2;

  width: 260px !important;

  height: auto !important;
}



/* ==============================================================
   09. MÉTRICAS
   ============================================================== */

.metricas-usam {
  padding:
    40px
    0
    60px;

  background: #fff;
}


.mu-container {
  width: 90%;

  max-width: 1200px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(
      4,
      minmax(0, 1fr)
    );
}


.mu-item {
  min-height: 122px;

  padding:
    22px
    20px;

  background: #f1f1f1;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}


.mu-item:hover {
  z-index: 2;

  transform:
    translateY(-3px);

  box-shadow:
    0
    12px
    25px
    rgba(8, 26, 64, .08);
}


.mu-item strong {
  display: block;

  margin-bottom: 6px;

  color: #ac0a35;

  font-size: 43px;

  font-weight: 800;

  line-height: 1;
}


.mu-item p {
  margin: 0;

  color: #2a4a77;

  font-size: 11px;

  line-height: 14px;
}


.mu-item:nth-child(2),
.mu-item:nth-child(4),
.mu-item:nth-child(5),
.mu-item:nth-child(7) {
  background: #fff;
}



/* ==============================================================
   10. LIFE USAM
   ============================================================== */

.life-usam {
  padding:
    50px
    0;

  background: #fff;
}


.lu-container {
  width: 90%;

  max-width: 1200px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    420px
    minmax(0, 1fr);

  gap: 40px;

  align-items: center;
}


.lu-content h2 {
  margin:
    0
    0
    8px;

  color: #0b2c5d;

  font-size: 28px;

  font-weight: 800;
}


.lu-content p {
  margin:
    0
    0
    14px;

  color: #2a4a77;

  font-size: 13px;

  line-height: 18px;
}


.lu-list {
  list-style: none;

  margin: 0;

  padding: 0;
}


.lu-list li {
  position: relative;

  padding:
    5px
    0
    5px
    18px;

  border-bottom:
    1px solid
    #bcd9f2;

  color: #0b2c5d;

  font-size: 13px;
}


.lu-list li::before {
  content: "›";

  position: absolute;

  left: 0;

  top: 50%;

  transform:
    translateY(-50%);

  font-weight: 700;
}


.lu-list a {
  display: block;

  color: inherit;

  text-decoration: none;
}


.lu-list a:hover,
.lu-list a:focus-visible {
  color: #ac0a35;

  outline: none;
}


.lu-list li:nth-child(2),
.lu-list li:nth-child(2) a {
  color: #ac0a35;

  font-weight: 700;
}


.lu-media {
  position: relative;

  overflow: hidden;
}


.lu-media img {
  width: 100%;

  display: block;
}


.lu-play {
  position: absolute;

  left: 50%;

  top: 50%;

  width: 46px;

  height: 46px;

  display: flex;

  align-items: center;

  justify-content: center;

  transform:
    translate(
      -50%,
      -50%
    );

  border:
    3px solid
    #fff;

  border-radius: 50%;

  background: transparent;

  color: #fff;

  cursor: pointer;
}



/* ==============================================================
   11. CITA
   ============================================================== */

.cita-usam {
  padding:
    30px
    0;

  background: #081a40;
}


.cita-texto {
  position: relative;

  max-width: 619px;

  min-height: 142px;

  margin: 0 auto;

  padding-right: 40px;

  color: #a9e6e6;
}


.cita-foto {
  width: 172px;

  float: left;
}


.cita-foto img {
  width: 150px;

  height: 150px;

  border-radius: 50%;

  object-fit: cover;
}


.cita-texto p {
  margin:
    0
    0
    8px;

  color: inherit;

  font-size: 20px;

  font-weight: 500;

  line-height: 26px;
}


.ovalado {
  display: inline-block;

  padding:
    2px
    12px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      rgb(190 11 59) 20%,
      rgb(131 31 83) 40%,
      rgb(75 50 106) 50%,
      rgb(18 64 122) 100%
    );

  color: #fff;

  font-weight: 700;
}


.cita-autor {
  margin-top: 6px;

  color: #fff;

  font-size: 11px;

  line-height: 14px;
}


.cita-titulo {
  color: #00c8cc;
}


.cita-comilla {
  position: absolute;

  width: 56px;
}


.cita-comilla-left {
  left: -57px;

  top: 6px;
}


.cita-comilla-right {
  right: -28px;

  top: 18px;
}



/* ==============================================================
   12. INVESTIGACIÓN / VINCULACIÓN
   AJUSTES ESPECÍFICOS NUEVO INGRESO
   ============================================================== */

/*
 * El estilo principal proviene del componente:
 *
 * public/css/components/investigacion-vinculacion.css
 */


/* ==============================================================
   TABLET
   1 tarjeta por grupo
   ============================================================== */

@media
(min-width: 601px)
and
(max-width: 992px) {

  .admissions-page
  .iv-header {
    display: none;
  }


  .admissions-page
  .iv-groups {
    width:
      calc(
        100% - 90px
      );

    display: flex;

    flex-direction: column;

    gap: 55px;

    margin:
      0
      auto;

    box-shadow: none;
  }


  .admissions-page
  .iv-group {
    width: 100%;
  }


  .admissions-page
  .iv-group-header {
    display: block;

    width: 90%;

    margin:
      0
      auto
      28px;

    text-align: center;
  }


  .admissions-page
  .iv-group-prev {
    left: -34px;
  }


  .admissions-page
  .iv-group-next {
    right: -34px;
  }

}



/* ==============================================================
   MÓVIL
   VINCULACIÓN PRIMERO
   ============================================================== */

@media
(max-width: 600px) {

  .admissions-page
  .iv-header {
    display: none;
  }


  .admissions-page
  .iv-groups {
    width:
      calc(
        100% - 76px
      );

    display: flex;

    flex-direction: column;

    gap: 48px;

    margin:
      0
      auto;

    box-shadow: none;
  }


  /*
   * Vinculación primero.
   */

  .admissions-page
  .iv-group-vinculacion {
    order: 1;
  }


  .admissions-page
  .iv-group-investigacion {
    order: 2;
  }


  .admissions-page
  .iv-group {
    width: 100%;
  }


  .admissions-page
  .iv-group-header {
    display: block;

    width:
      calc(
        100% + 50px
      );

    margin:
      0
      -25px
      25px;

    text-align: center;
  }


  .admissions-page
  .iv-group-prev {
    left: -30px;
  }


  .admissions-page
  .iv-group-next {
    right: -30px;
  }

}



/* ==============================================================
   13. MODAL
   ============================================================== */

.ni-modal {
  position: fixed;

  inset: 0;

  z-index: 10000;

  display: grid;

  place-items: center;

  padding: 24px;
}


.ni-modal[hidden] {
  display: none !important;
}


.ni-modal-backdrop {
  position: absolute;

  inset: 0;

  background:
    rgba(3, 15, 39, .78);
}


.ni-modal-dialog {
  position: relative;

  z-index: 2;

  width:
    min(
      1100px,
      96vw
    );

  height:
    min(
      800px,
      90vh
    );

  display: grid;

  grid-template-rows:
    auto
    minmax(0, 1fr);

  overflow: hidden;

  border-radius: 18px;

  background: #fff;

  box-shadow:
    0
    25px
    80px
    rgba(0, 0, 0, .35);

  outline: none;
}


.ni-modal-header {
  position: relative;

  z-index: 5;

  min-height: 60px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding:
    12px
    18px;

  border-bottom:
    1px solid
    #e0e6ed;

  background: #fff;
}


.ni-modal-header h2 {
  margin: 0;

  color: #0b2c5d;

  font-size: 18px;

  font-weight: 700;
}


.ni-modal-close {
  position: relative;

  z-index: 6;

  width: 38px;

  min-width: 38px;

  height: 38px;

  min-height: 38px;

  flex:
    0
    0
    38px;

  display: grid;

  place-items: center;

  border: 0;

  border-radius: 50%;

  background: #f0f3f6;

  color: #0b2c5d;

  cursor: pointer;
}


.ni-modal-close:hover,
.ni-modal-close:focus-visible {
  background: #ac0a35;

  color: #fff;

  outline: none;
}


.ni-modal-body {
  position: relative;

  min-width: 0;

  min-height: 0;

  overflow: hidden;

  background: #e8edf1;
}


.ni-modal-body iframe {
  width: 100%;

  height: 100%;

  display: block;

  border: 0;
}


.ni-modal-video {
  width: 100%;

  height: 100%;

  min-width: 0;

  min-height: 0;

  display: grid;

  place-items: center;

  overflow: hidden;

  background: #000;
}


/*
 * Video local (MP4).
 * Mantiene la relación de aspecto dentro del modal
 * y evita que los controles o el video invadan el encabezado.
 */

.ni-modal-video
> video {
  display: block;

  width: 100%;

  max-width: 100%;

  height: 100%;

  max-height: 100%;

  margin: 0 auto;

  border: 0;

  background: #000;

  object-fit: contain;
}



/* ==============================================================
   14. REVEAL
   ============================================================== */

.admissions-page
.reveal {
  opacity: 0;

  transform:
    translateY(20px);

  transition:
    opacity .6s ease,
    transform .6s ease;
}


.admissions-page
.reveal.is-visible {
  opacity: 1;

  transform: none;
}



/* ==============================================================
   15. TABLET GRANDE
   ============================================================== */

@media
(max-width: 1100px) {

  .nuevo-ingreso-menu-inner {
    width:
      calc(
        100% - 40px
      );

    grid-template-columns:
      repeat(
        3,
        minmax(0, 1fr)
      );
  }


  .ni-container {
    grid-template-columns:
      44%
      minmax(0, 1fr);

    gap: 30px;
  }


  .md-banner {
    width: 100%;
  }


  .md-banner
  > img:first-child {
    width: 56%;
  }


  .md-text {
    left: 48%;
  }

}



/* ==============================================================
   16. TABLET
   ============================================================== */

@media
(max-width: 992px) {

  .hero-nuevo-ingreso {
    height: 440px;
  }


  .hero-title {
    font-size: 42px;
  }


  .hero-subtitle {
    font-size: 20px;
  }


  .ni-container {
    grid-template-columns:
      1fr
      1fr;

    gap: 25px;
  }


  .ni-content h2 {
    font-size: 34px;
  }


  .lu-container {
    grid-template-columns:
      38%
      minmax(0, 1fr);
  }

}



/* ==============================================================
   17. TABLET ESTRECHA
   ============================================================== */

@media
(max-width: 850px) {

  .ni-container {
    grid-template-columns:
      1fr;
  }


  .lu-container {
    grid-template-columns:
      1fr;

    gap: 25px;
  }


  .mu-container {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );
  }


  .cita-usam {
    padding:
      40px
      25px;
  }


  .cita-texto {
    width: 100%;

    max-width: 650px;

    min-height: 150px;

    padding-right: 0;
  }


  .cita-comilla-left {
    left: -20px;
  }


  .cita-comilla-right {
    right: -10px;
  }

}



/* ==============================================================
   18. MÓVIL
   ============================================================== */

@media
(max-width: 600px) {

  /* HERO */

  .hero-nuevo-ingreso {
    height: 380px;
  }


  .hero-title {
    font-size: 34px;
  }


  .hero-subtitle {
    font-size: 18px;
  }



  /* MENÚ */

  .nuevo-ingreso-menu-inner {
    width: 100%;

    grid-template-columns:
      1fr;

    gap: 0;
  }


  .nuevo-ingreso-item {
    padding:
      22px
      25px;
  }


  .nuevo-ingreso-item h4 br {
    display: none;
  }



  /* FILTRO */

  .ni-filter-container {
    width:
      calc(
        100% - 36px
      );

    min-height: 72px;

    gap: 12px;
  }


  .ni-filter-clear {
    font-size: 11px;
  }


  .ni-filter-wrapper {
    flex:
      1
      1
      auto;
  }


  .ni-filter-button {
    width: 100%;

    justify-content: center;
  }


  .ni-filter-selected {
    max-width: 110px;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
  }


  .ni-filter-panel {
    left: auto;

    right: 0;

    width:
      min(
        260px,
        calc(
          100vw - 36px
        )
      );
  }



  /* PROCESOS */

  .ni-container {
    width:
      calc(
        100% - 36px
      );

    gap: 24px;

    padding:
      30px
      0
      40px;
  }


  .ni-content h2 {
    font-size: 32px;
  }



  /* FORMULARIO */

  .ni-contact-header {
    align-items: flex-start;
  }


  .ni-radios {
    flex-direction: column;

    align-items: flex-start;
  }


  .ni-row,
  .ni-row-contact {
    grid-template-columns:
      minmax(0, 1fr);

    gap: 10px;
  }


  .ni-form
  input[type="text"],
  .ni-form
  input[type="email"],
  .ni-form
  input[type="tel"],
  .ni-form
  input[type="date"],
  .ni-form
  select {
    height: 42px !important;

    line-height: 42px !important;
  }


  .ni-check,
  .ni-check
  > input[type="checkbox"]
  + span {
    font-size: 12px !important;
  }


  .ni-submit-row {
    justify-content: stretch;
  }


  .ni-submit {
    width: 100%;
  }



  /* FRASE */

  .md-intro {
    width:
      calc(
        100% - 36px
      );
  }


  .momento-banner {
    background: #00133e;
  }


  .md-banner {
    height: 330px;
  }


  .md-banner
  > img:first-child {
    width: 100%;

    height: 190px;
  }


  .md-text {
    left: 25px;

    right: 25px;

    top: auto;

    bottom: 42px;

    transform: none;
  }


  .md-text h3 {
    font-size: 18px;

    line-height: 24px;
  }


  .md-decor {
    width: 180px !important;
  }



  /* MÉTRICAS */

  .mu-container {
    width:
      calc(
        100% - 36px
      );

    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );
  }


  .mu-item strong {
    font-size: 35px;
  }



  /* LIFE */

  .lu-container {
    width:
      calc(
        100% - 36px
      );
  }


  .lu-media {
    order: -1;
  }



  /* CITA */

  .cita-texto {
    display: flex;

    flex-direction: column;

    padding: 0;
  }


  .cita-foto {
    width: auto;

    margin:
      0
      auto
      20px;

    float: none;
  }


  .cita-foto img {
    width: 120px;

    height: 120px;
  }


  .cita-texto p {
    text-align: center;

    font-size: 17px;

    line-height: 23px;
  }


  .cita-autor {
    text-align: center;
  }


  .cita-comilla {
    width: 38px;
  }


  .cita-comilla-left {
    left: 0;

    top: 120px;
  }


  .cita-comilla-right {
    right: 0;

    top: 180px;
  }



  /* MODAL */

  .ni-modal {
    padding: 10px;
  }


  .ni-modal-dialog {
    width: 100%;

    height: 92vh;

    border-radius: 13px;
  }


  .ni-modal-header {
    min-height: 54px;

    gap: 12px;

    padding:
      8px
      12px;
  }


  .ni-modal-header h2 {
    min-width: 0;

    font-size: 16px;

    line-height: 1.25;
  }


  .ni-modal-close {
    flex:
      0
      0
      38px;
  }

}



/* ==============================================================
   19. MÓVIL PEQUEÑO
   ============================================================== */

@media
(max-width: 430px) {

  .ni-filter-label {
    display: none;
  }


  .ni-filter-selected {
    padding-left: 0;

    border-left: 0;
  }


  .mu-container {
    grid-template-columns:
      1fr;
  }


  .mu-item:nth-child(odd) {
    background: #f1f1f1;
  }


  .mu-item:nth-child(even) {
    background: #fff;
  }

}



/* ==============================================================
   20. FULL
   ============================================================== */

@media
(min-width: 1921px) {

  .nuevo-ingreso-menu-inner {
    max-width: 1540px;
  }


  .ni-filter-container,
  .ni-container,
  .md-intro,
  .mu-container,
  .lu-container {
    max-width: 1440px;
  }


  .ni-container {
    grid-template-columns:
      600px
      minmax(0, 1fr);

    gap: 55px;
  }


  .md-banner {
    width: 1440px;
  }


  .md-banner
  > img:first-child {
    width: 800px;
  }


  .md-text {
    left: 680px;
  }

}



/* ==============================================================
   21. REDUCED MOTION
   ============================================================== */

@media
(prefers-reduced-motion: reduce) {

  .admissions-page *,
  .admissions-page *::before,
  .admissions-page *::after {
    animation-duration:
      .01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      .01ms !important;

    scroll-behavior:
      auto !important;
  }


  .admissions-page
  .reveal {
    opacity: 1;

    transform: none;
  }

}