/* UTILIDADES */
.hidden {
    display: none!important;
}

.barra-verde {
    position: relative;
}

.barra-verde::before {
    content: ''; /* No es necesario poner texto, solo el contenedor */
    position: absolute;
    left: 0;
    top: 0;
    height: 100%; /* Asegura que la barra tenga la misma altura que el h2 */
    width: 8px; /* Ancho de la barra verde */
    background-color: #D31243; /* Color verde */
}
.form .field-name-imagen{
  box-shadow: none;
}
/* BANNER */
.section-banner {
    position: relative;
    background: #000;
}

.section-banner .description-banner {
    position: absolute;
    font-size: 34px;
    font-weight: 700;
    line-height: 41.21px;
    color: #fff;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 400px;
    padding-top: 10%;
    margin-left: 10%;
}
.section-banner .description-banner h1 {
  font-size: 34px;
}
.section-banner .video-banner {
    position: relative;
    height: auto;
    max-height: max-content;
}

.section-banner .video-banner img,
.section-banner .video-banner video {
  height: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
  overflow: hidden;
}
.section-banner .video-banner video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 130%);
  /* object-fit: scale-down; */
}

.section-banner .video-banner .picture-imagen {
    height: 100%;
}

.video-banner .field-name-play-consideracion,
.video-banner .field-name-pause {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  bottom: 0px;
  left: 0px;
  z-index: 40;
}
.video-banner .field-name-pause,
.video-banner .field-name-play-consideracion.playing {
  display: none;
}
.video-banner .field-name-pause.active {
  display: flex;
}
.video-banner .field-name-play-consideracion .play-video {
  display: flex;
  justify-content: center;
  color: #FFF;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background-color: #D01A49;
  transition: all 0.3s ease-in-out 0s;
  box-shadow: rgba(193,244,246,0) 0px 0px 0px 0px;
  animation: 1.2s cubic-bezier(0.8, 0, 0, 1) 0s infinite normal none running pulseplay;
  align-items: center;
  border: 0;
  opacity: 1;
  cursor: pointer;
}

.video-banner .field-name-play-consideracion .play-video:is(:hover, :focus) {
  transform: scale(1);
}

.section-banner .icons-banner-links {
  position: absolute;
  background: #000;
  display: flex;
  bottom: -30px;
  width: 100%;
  max-width: 665px;
  height: 164px;
  align-items: center;
  justify-content: space-around;
  color: #fff;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 41;
  padding: 28px;
  gap: 20px;
}

.section-banner .icons-banner-links > a {
    color: #fff;
    text-decoration: none;
}

.section-banner .icons-banner-links .icon-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.section-banner .icons-banner-links .icon-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  height: 100px;
  border: 1px solid white;
  border-radius: 4px;
  padding: 8px 10px 8px 10px;
}
.section-banner .icons-banner-links .icon-banner .icon-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 19.39px;
}

.section-banner .icons-banner-links .icon-banner-title {
    line-height: 24px;
    font-size: 20px;
    width: 160px;
    font-weight: 700;
}

.field-name-imagen {
  position: relative;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0,0,0,0.2);
  -moz-box-shadow: 0 4px 12px 0 rgba(0,0,0,0.2);
  box-shadow: 0 4px 12px 0 rgba(0,0,0,0.2);
}

.field-name-imagen .field-name-button > button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.field-name-imagen .field-name-button .btn-icon > svg {
    display: flex;
    justify-content: center;
    color: #FFF;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    transition: all 0.3s ease-in-out 0s;
    box-shadow: #ffffff27 0px 0px 0px 0px;
    animation: 1.2s cubic-bezier(0.8, 0, 0, 1) 0s infinite normal none running pulse_2;
    align-items: center;
    border: 0;
    opacity: 1;
    cursor: pointer;
}

@keyframes pulse_2 {
    100% {
      box-shadow: 0 0 0 12px #ffffff27;
    }
}

.accordion-button svg {
    transition: transform 0.3s ease-in-out;
    min-width: 14px;
}

.accordion-button:not(.collapsed) svg {
    transform: rotate(180deg);
}

.container-component-bloque {
    position: relative;
}

.swiper-buttons {
    position: absolute;
    bottom: -60px;
    right: 0px;
    display: flex;
    gap: 15px;
}

.swiper-buttons button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D31243;
    border: 0;
}

.swiper-buttons button.swiper-button-disabled {
    background: #D3124380!important;
}

.container-component-header > svg {
    width: 8px!important;
    height: 8px!important;
    margin-top: 8px;
    min-width: 8px;
}

/* STATIC */
.static-navbar {
    position: fixed;
    bottom: 100px;
    right: 0;
    z-index: 100;
}

.static-navbar .static-navbar-inscribete {
    background: #D01A49;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    cursor: pointer;
}

.static-navbar .static-navbar-indice {
    border: 1px solid #fff;
    background: #000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.static-navbar .content-indice .submenu {
    display: flex;
    position: absolute;
    padding: 0 15px;
    width: 365px;
    top: auto;
    bottom: 0;
    right: 100%;
    border: 1px solid #FFF;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 1);
}

.static-navbar .content-indice .submenu .link-scroll {
    height: auto;
    font-weight: 400;
    text-align: left;
    font-size: 14px;
    line-height: 1.2;
    border-width: 0 0 1px 0;
    border-color: rgb(255 255 255 / 40%);
    border-style: solid;
    padding: 15px 0;
    justify-content: space-between;
    display: flex;
    gap: 10px;
    color: #FFF;
    text-decoration: none;
}

.static-navbar .content-indice .submenu .link-scroll > svg {
    min-width: 18px;
    max-width: none;
}

.static-navbar .static-navbar-inscribete {
    position: relative;
}

.static-navbar .content-info .inscribete-texto {
    display: flex;
    position: absolute;
    right: 100%;
    top: auto;
    bottom: -1px;
    width: max-content;
    height: 60px;
    align-items: center;
    padding: 0 15px;
    background: #D01A49;
    justify-content: center;
    border: 1px solid #fff;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.static-navbar .static-navbar-inscribete-desktop {
    display: flex;
}

.static-navbar-inscribete-movil {
    display: none!important;
}

/* .swiper-wrapper {
    transform: none!important;
    z-index: none;
} */

/* TESTIMONIOS */
#seccion-testimonios {
    background-color: #333;
    background-image:
        linear-gradient(180deg, #333 15%, rgba(255, 255, 255, 0) 95.72%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect x="0" y="0" width="3" height="3" fill="rgba(255, 255, 255, 0.2)" /></svg>');
    background-repeat: no-repeat, repeat;
    background-size: auto, 30px 30px;
}

#seccion-testimonios .container-section {
    width: 80%;
    margin: 0 auto;
    padding: 80px 0 80px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#seccion-testimonios .container-videos {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 25px;
    gap: 20px;
}

#seccion-testimonios .container-videos .field-name-imagen {
    width: 420px;
    position: relative;
}

#seccion-testimonios .container-description {
    color: #fff;
}

#seccion-testimonios .container-description h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 21.82px;
}

#seccion-testimonios .container-description h2 {
    font-size: 27px;
    font-weight: 700;
    line-height: 32.72px;
    max-width: 651px;
}

#seccion-testimonios .container-description p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.39px;
    max-width: 823px;
}

#seccion-testimonios .container-description .barra-verde::before {
    left: -15px;
    top: 2px;
    height: 60px;
}

#seccion-testimonios .container-description .barra-verde.subtitulo::before {
    left: -15px;
    top: -30px;
    height: 90px;
}

/* EMPLEABILIDAD */
#seccion-empleabilidad {
    background: #F2F2F2;
}

#seccion-empleabilidad .container-section {
    width: 80%;
    margin: 0 auto;
    padding: 80px 0 80px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#seccion-empleabilidad .container-description .barra-verde::before {
    left: -15px;
    top: -2px;
    height: 33px;
}

#seccion-empleabilidad .container-description .barra-verde.subtitulo::before {
    left: -15px;
    top: -30px;
    height: 60px;
}

#seccion-empleabilidad .container-description span {
    font-size: 18px;
    font-weight: 400;
    line-height: 21.82px;
    color: #666262;
}

#seccion-empleabilidad .container-description h2 {
    font-size: 27px;
    font-weight: 700;
    line-height: 32.72px;
}

#seccion-empleabilidad .container-description p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.39px;
    max-width: 843px;
}

#seccion-empleabilidad .container-components {
    margin-top: 40px;
}

#seccion-empleabilidad .container-components .container-component-header {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

#seccion-empleabilidad .container-components .container-component-header svg {
    margin-bottom: 20px;
}

#seccion-empleabilidad .container-components .container-component-header h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 26.63px;
}

#seccion-empleabilidad .container-components .container-component-header p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.39px;
    max-width: 541px;
}

#seccion-empleabilidad .block-views-blockprogramas-block-1 .view-content {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#seccion-empleabilidad .block-views-blockprogramas-block-1 .view-content .views-row {
    padding: 40px;
    background: #E0E0E0;
}

/* #seccion-empleabilidad .block-views-blockprogramas-block-1 .view-content .views-row:nth-child(odd) {
    background: #8CD8C9;
}

#seccion-empleabilidad .block-views-blockprogramas-block-1 .view-content .views-row:nth-child(even) {
    background: #B8EAE0;
} */

#seccion-empleabilidad .block-views-blockprogramas-block-1 .view-content .views-row .content-rows-programa {
    display: flex;
    justify-content: space-evenly;
    gap: 30px;
    align-items: center;
}

#seccion-empleabilidad .block-views-blockprogramas-block-1 .view-content .views-row .content-rows-programa .row-left {
    max-width: 539px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#seccion-empleabilidad .block-views-blockprogramas-block-1 .view-content .views-row .content-rows-programa .row-left > h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 26.63px;
}

#seccion-empleabilidad .block-views-blockprogramas-block-1 .view-content .views-row .content-rows-programa .row-left > div {
    padding: 0px;
    text-align: left;
    font-size: 16px;
    line-height: 19.39px;
}

#seccion-empleabilidad .block-views-blockprogramas-block-1 .view-content .views-row .content-rows-programa .row-left .programa-accordion {
    width: 100%;
    /* height: 44px; */
    background: #000;
    color: #fff;
    text-align: left;
    display: flex;
    align-items: center;
    font-weight: 700;
    border: 0;
    outline: 0;
    padding: 12px;
    justify-content: space-between;
    margin-top: 5px;
}

#seccion-empleabilidad .block-views-blockprogramas-block-1 .view-content .views-row .content-rows-programa .row-left .programa-accordion p {
    margin: 0;
    font-size: 1rem;
}

#seccion-empleabilidad .block-views-blockprogramas-block-1 .view-content .views-row .content-rows-programa .row-left .accordion-collapse > ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 16px;
    font-weight: 400;
    background: #F3F3F3;
    padding: 15px 35px;
}

#seccion-empleabilidad .block-views-blockprogramas-block-1 .view-content .views-row .content-rows-programa .row-right {
    order: 1;
}

#seccion-empleabilidad .block-views-blockprogramas-block-1 .view-content .views-row .content-rows-programa .row-right img {
    width: 395px;
    min-width: 395px;
    height: 216px;
}

/* TRABAJO */
#seccion-trabajo {
  background-color: #fff;
  background-image: linear-gradient(270deg, #fff 40%, rgba(255, 255, 255, 0) 95.72%),
  url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect x="0" y="15" width="3" height="3" fill="rgba(0, 0, 0, 0.1)" /></svg>');
  background-repeat: no-repeat, repeat;
  background-size: auto, 30px 30px;
}

#seccion-trabajo .container-section {
    width: 80%;
    margin: 0 auto;
    padding: 80px 0 80px 0;
    display: flex;
    flex-direction: column;
}

#seccion-trabajo .container-components {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

#seccion-trabajo .container-components .container-component-header {
    max-width: 330px;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

#seccion-trabajo .container-components .container-component-header svg {
}

#seccion-trabajo .container-components .container-component-header h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 26.63px;
}

#seccion-trabajo .container-components .container-component-header p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.39px;
}

#seccion-trabajo .container-components .container-components-accordions .accordion-body {
    display: none;
}

#seccion-trabajo .container-components .container-components-accordions {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: end;
}

#seccion-trabajo .container-components .container-components-accordions .container-accordion {
    max-width: 800px;
    width: 100%;
}

#seccion-trabajo .container-components .container-components-accordions .container-accordion button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px 14px 20px;
    background: #f1f1f1;
    border: 0;
    font-size: 20px;
    font-weight: 700;
}

#seccion-trabajo .container-components .container-components-accordions .accordion-collapse .accordion-body-content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 20px;
}

#seccion-trabajo .container-components .container-components-accordions .accordion-collapse .accordion-body-content .accordion-body-desciption {
    max-width: 470px;
}

#seccion-trabajo .container-components .container-components-accordions .accordion-collapse .accordion-body-content .accordion-body-img {
    width: 270px;
    height: 202px;
    min-width: 270px;
}

#seccion-trabajo .container-components .container-components-accordions .accordion-collapse .accordion-body-content .accordion-body-img img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#seccion-trabajo .container-section-top {
    display: flex;
    width: 100%;
}

#seccion-trabajo .container-section-top .container-description {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

#seccion-trabajo .container-section-top .container-description h2.barra-verde{
    font-size: 22px;
    line-height: 26px;
    width: 473px;
}

#seccion-trabajo .container-section-top .container-videos{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#seccion-trabajo .container-section-top .container-videos .field-name-imagen{
    width: 450px;
    height: 250px;
}

#seccion-trabajo .container-section-top .container-description h2.barra-verde::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 10px;
  height: 8px;
  width: 8px;
  background-color: #D31243;
}
/* ACOMPANIAMIENTO */

#seccion-acompaniamiento {
    background: #f2f2f2;
}

#seccion-acompaniamiento .container-section {
    width: 80%;
    margin: 0 auto;
    padding: 80px 0 80px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#seccion-acompaniamiento .container-components .container-component-header {
    display: flex;
    align-items: start;
    gap: 10px;
    position: relative;
}

#seccion-acompaniamiento .container-components .container-component-header > div {
    max-width: 577px;
}

#seccion-acompaniamiento .container-components .container-component-header h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 26.63px;
}

#seccion-acompaniamiento .container-components .container-component-header p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.39px;
}

#seccion-acompaniamiento .container-components .container-component-header .swiper-buttons {
    position: absolute;
    bottom: 15px;
    right: 0;
    display: flex;
    gap: 15px;
}

#seccion-acompaniamiento .container-components .container-component-header .swiper-buttons button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D31243;
    border: 0;
}

#seccion-acompaniamiento .container-component-bloque .view-content {
    display: flex;
    /* width: calc(100% + 12%);
    overflow-x: hidden; */
    /* gap: 20px; */
    margin-top: 25px;
}

#seccion-acompaniamiento .container-component-bloque .view-content .views-row {
    max-width: 579px;
    padding: 20px;
    background: #E0E0E0;
}


/* #seccion-acompaniamiento .container-component-bloque .view-content .views-row:nth-child(odd) {
    background: #C6E7E1;
}

#seccion-acompaniamiento .container-component-bloque .view-content .views-row:nth-child(even) {
    background: #8CD8C9;
} */

#seccion-acompaniamiento .container-component-bloque .view-content .views-row .content-rows-acompaniamiento {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#seccion-acompaniamiento .container-component-bloque .view-content .views-row .content-rows-acompaniamiento .content-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

#seccion-acompaniamiento .container-component-bloque .view-content .views-row .content-rows-acompaniamiento .content-row-img {
    width: 270px;
    height: 206px;
    object-fit: cover;
    object-position: center;
}

#seccion-acompaniamiento .container-component-bloque .view-content .views-row .content-rows-acompaniamiento .content-row-description {
    width: 246px;
}

#seccion-acompaniamiento .container-component-bloque .view-content .views-row .content-rows-acompaniamiento .content-row-description h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 26.63px;
}

#seccion-acompaniamiento .container-component-bloque .view-content .views-row .content-rows-acompaniamiento .content-row-description > div {
    padding: 0;
    text-align: left;
    font-size: 16px;
    line-height: 19.39px;
}

#seccion-acompaniamiento .container-component-bloque .view-content .views-row .content-rows-acompaniamiento .content-row-accordions {
    margin-top: 20px;
}

#seccion-acompaniamiento .container-component-bloque .view-content .views-row .content-rows-acompaniamiento .content-row-accordions .content-accordion > button {
    width: 100%;
    text-align: left;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    background: #000;
    border: 0;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#seccion-acompaniamiento .container-component-bloque .view-content .views-row .content-rows-acompaniamiento .content-row-accordions .accordion-body-acompaniamiento {
    padding: 20px 15px;
    background: #F3F3F4;
}

#seccion-acompaniamiento .view-id-programas.view-display-id-block_2 {
    overflow: hidden;
    width: calc(100% + 12%);
}


/* LABORATORIOS */
#seccion-laboratorios {
    background-color: #333;
    background-image:
        linear-gradient(180deg, #333 50%, rgba(255, 255, 255, 0) 95.72%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect x="0" y="0" width="3" height="3" fill="rgba(255, 255, 255, 0.2)" /></svg>');
    background-repeat: no-repeat, repeat;
    background-size: auto, 30px 30px;
}

#seccion-laboratorios .container-section {
    width: 80%;
    margin: 0 auto;
    padding: 80px 0 140px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#seccion-laboratorios .container-section .container-section-top {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

#seccion-laboratorios .container-description .barra-verde::before {
    left: -15px;
    top: 10px;
    height: 65px;
}

#seccion-laboratorios .container-description .barra-verde.subtitulo::before {
    left: -15px;
    top: -23px;
    height: 100px;
}

#seccion-laboratorios .container-description span {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.39px;
    color: #fff5f5;
}

#seccion-laboratorios .container-description h2 span {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    color: #FFFFFF;
    font-family: 'tomorrow';
}

#seccion-laboratorios .container-description h2 {
    font-size: 27px;
    font-weight: 700;
    line-height: 32.72px;
    color: #ffffff;
    max-width: 350px;
}

#seccion-laboratorios .container-description > p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.39px;
    max-width: 843px;
    color: #f2f2f2;
    max-width: 504px;
}

#seccion-laboratorios .container-section-top .container-videos .field-name-imagen {
    width: 409px;
    height: 265px;
    display: flex;
    align-items: center;
    position: relative;
}

#seccion-laboratorios .container-section-top .container-videos .field-name-imagen .cuadrado-blanco {
    position: absolute;
    width: 32px;
    height: 32px;
    background: #fff;
    bottom: 8px;
    left: -36px;
}


#seccion-laboratorios .container-section-top .container-videos .field-name-imagen .cuadrado-verde {
    position: absolute;
    right: -32px;
    top: 40px;
    width: 22px;
    height: 22px;
    background: #D31243;
}

#seccion-laboratorios .container-section-top .container-videos .field-name-imagen picture img {
    height: 265px;
    object-fit: cover;
    object-position: center;
}


#seccion-laboratorios .container-components .container-component-header {
    display: flex;
    gap: 10px;
}

#seccion-laboratorios .container-components .container-component-header svg {
}

#seccion-laboratorios .container-components .container-component-header h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 26.63px;
    color: #fff;
}

#seccion-laboratorios .container-components .container-component-header p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.39px;
    max-width: 474px;
    color: #fff;
}

#seccion-laboratorios .block-views-blockambientes-block-1 .view-content {
    margin-top: 20px;
    display: flex;
    /* gap: 30px; */
}

#seccion-laboratorios .block-views-blockambientes-block-1 .view-content .views-row {
    min-width: 312px;
    box-shadow: 0px 0px 12px 0px #00000040;
    position: relative;
    width: 312px;
}

#seccion-laboratorios .block-views-blockambientes-block-1 .view-content .views-row .content-rows-laboratorios {
    background: #f4f4f4;
}

#seccion-laboratorios .block-views-blockambientes-block-1 .view-content .views-row .content-rows-laboratorios > img {
    height: 290px;
    object-fit: cover;
    object-position: center;
}

#seccion-laboratorios .block-views-blockambientes-block-1 .view-content .views-row .content-info-laboratorio {
    position: absolute;
    bottom: 0;
    width: 100%;
}

#seccion-laboratorios .block-views-blockambientes-block-1 .view-content .views-row .content-info-laboratorio .content-info-laboratorio-button {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    width: 100%;
    border: 0;
    padding: 12px 20px;
    background: #f4f4f4;
    text-align: left;
    align-items: center;
}
#seccion-laboratorios .block-views-blockambientes-block-1 .view-content .views-row .content-info-laboratorio .content-info-laboratorio-button h4 {
  font-size: 18px;
}

#seccion-laboratorios .block-views-blockambientes-block-1 .view-content .views-row .content-info-laboratorio .content-info-laboratorio-description .content-accordion-body-laboratorio {
    background: #F3F3F3;
}

#seccion-laboratorios .block-views-blockambientes-block-1 .view-content .views-row .content-info-laboratorio .content-info-laboratorio-description .content-accordion-body-laboratorio > div {
    text-align: left;
    padding: 0 20px 20px 20px;
}

#seccion-laboratorios .view-id-ambientes.view-display-id-block_1 {
    overflow: hidden;
}

/* VIDA UNIVERSITARIA */
#seccion-vida-universitaria {
    background-color: #FFF; /* Color oscuro de fondo */
}

#seccion-vida-universitaria .container-section {
    width: 80%;
    margin: 0 auto;
    padding: 80px 0 80px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#seccion-vida-universitaria .container-components .container-component-header {
    display: flex;
    gap: 10px;
}

#seccion-vida-universitaria .container-components .container-component-header h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 26.63px;
}

#seccion-vida-universitaria .container-components .container-component-header p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.39px;
    max-width: 474px;
}

#seccion-vida-universitaria .block-views-blockvideo-campus-block-1 .view-content {
    margin-top: 20px;
    /* margin-left: 86px; */
    display: flex;
    /* gap: 30px; */
    /* overflow: hidden; */
}

#seccion-vida-universitaria .block-views-blockvideo-campus-block-1 .view-content .views-row {
    width: 316px;
    max-width: 316px;
    height: 318px;
    position: relative;
}

#seccion-vida-universitaria .block-views-blockvideo-campus-block-1 .view-content .views-row .content-rows-video-campus {
    width: 316px;
    max-width: 316px;
    height: 318px;
    position: relative;
}

#seccion-vida-universitaria .block-views-blockvideo-campus-block-1 .view-content .views-row .content-rows-video-campus .content-row-title {
    position: absolute;
    bottom: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 26.63px;
    color: #fff;
    z-index: 1;
    left: 10px;
}

#seccion-vida-universitaria .block-views-blockvideo-campus-block-1 .view-content .views-row .content-rows-video-campus .field-name-imagen,
#seccion-vida-universitaria .block-views-blockvideo-campus-block-1 .view-content .views-row .content-rows-video-campus .field-name-imagen picture {
    width: 100%;
    height: 100%;
}

#seccion-vida-universitaria .block-views-blockvideo-campus-block-1 .view-content .views-row .content-rows-video-campus .field-name-imagen picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#seccion-vida-universitaria .view-id-video_campus.view-display-id-block_1 {
    overflow: hidden;
}

/* CAMPUS */

#seccion-campus {
    background-color: #FFF; /* Color oscuro de fondo */
}

#seccion-campus .container-section {
    width: 80%;
    margin: 0 auto;
    padding: 40px 0 150px 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

#seccion-campus .container-components .container-component-header {
    display: flex;
    gap: 10px;
    align-items: start;
}

#seccion-campus .container-components .container-component-header > svg {
    margin-top: 19px;
}

#seccion-campus .container-components .container-component-header > div {
    max-width: 557px;
}

#seccion-campus .container-components .container-component-header h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 26.63px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#seccion-campus .container-components .container-component-header h4 > span {
    font-family: "Tomorrow";
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
}

#seccion-campus .container-components .container-component-header h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 26.63px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#seccion-campus .container-components .container-component-header h3 > span {
  font-family: "Tomorrow";
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}


#seccion-campus .container-components .container-component-header p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.39px;
}

#seccion-campus .block-views-blockcampus-block-1 .view-content {
    padding: 20px 0;
    display: flex;
    /* gap: 15px; */
    /* overflow: hidden; */
}

#seccion-campus .block-views-blockcampus-block-1 .view-content .views-row {
    width: 228px;
    height: 330px;
    box-shadow: 0px 4px 12px -4px #00000040;
}

#seccion-campus .block-views-blockcampus-block-1 .view-content .views-row .content-rows-campus .content-campus-direction {
    padding: 10px 12px;
}

#seccion-campus .block-views-blockcampus-block-1 .view-content .views-row .content-rows-campus .content-campus-direction > div {
    padding: 0;
    text-align: left;
    font-size: 15.38px;
    font-weight: 500;
    line-height: 18.65px;
}

#seccion-campus .block-views-blockcampus-block-1 .view-content .views-row .content-rows-campus .content-campus-img {
    position: relative;
    max-height: 222px;
}

#seccion-campus .block-views-blockcampus-block-1 .view-content .views-row .content-rows-campus .content-campus-img img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    max-height: 222px;
}

#seccion-campus .block-views-blockcampus-block-1 .view-content .views-row .content-rows-campus .content-campus-title {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
    background-color: #FFF;
    border-radius: 15px 0 0 0;
    text-align: center;
}

#seccion-campus .block-views-blockcampus-block-1 .view-content .views-row .content-rows-campus .content-campus-title h4 {
    color: #000;
    text-decoration: none;
    display: flex;
    padding: 5px 15px;
    align-items: center;
    font-size: 16px;
    margin: 0;
    min-height: 35px;
}

#seccion-campus .block-views-blockcampus-block-1 .view-content .views-row .content-rows-campus .content-campus-maps {
    padding: 0 10px
}

#seccion-campus .block-views-blockcampus-block-1 .view-content .views-row .content-rows-campus .content-campus-maps a {
    font-size: 14.07px;
    color: #D01A49;
}

#seccion-campus .view-id-campus.view-display-id-block_1 {
    overflow: hidden;
}

/* FORM */

#seccion-form {
  background-image: url('../img/bg-square-black.png');
  background-repeat: repeat-y;
  background-size: contain;
}

#seccion-form .container-section {
    width: 80%;
    margin: 0 auto;
    padding: 80px 0 80px 0;
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: space-around;
}

#seccion-form .container-description .barra-verde::before {
    left: -15px;
}

#seccion-form .container-description h2 {
    font-size: 27px;
    font-weight: 700;
    line-height: 32.72px;
    color:#FFF;
}

#seccion-form .container-description > p {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    max-width: 436px;
    color:#FFF;
}

#seccion-form .container-videos {
    margin-top: 30px;
}

#seccion-form .container-videos .field-name-imagen img {
    width: 467px;
    height: 359px;
}

#seccion-form .container-components .container-component-header svg {
    display: none;
}
/* Preguntas Frecuentes*/
#seccion-fqa .container-section {
  width: 80%;
  margin: 0 auto;
  padding: 80px 0 80px 0;
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: space-around;
}

#seccion-fqa .container-section .fqa-box{
 display: flex;
  padding: 0 4%;
}

#seccion-fqa .container-section .fqa-box > div{
  flex: 50%;
}
#seccion-fqa .container-section .fqa-box > div > h4{
  font-size: 27px;
  position: relative;
  margin-top: 20px;
}
#seccion-fqa .container-section .fqa-box > div > h4::before {
  content: "";
  background-color: var(--bs-color-rojo);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  height: 28px;
  width: 10px;
}

#seccion-fqa .container-section .fqa-box .fqa-box-item > h5{
    padding: 25px 0;
    border-bottom: 1px solid #000;
    font-size: 18px;
}

#seccion-fqa .container-section .fqa-box .fqa-box-item .accordion-button{
  border: none;
}
#seccion-fqa .container-component-bloque{
  flex: 100%;
}

#seccion-fqa .container-section-top{
  display: none;
}
#seccion-fqa .container-components{
  display: none;
}

#seccion-fqa .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%3E%3Cline%20y1='8.25'%20x2='16'%20y2='8.25'%20stroke='black'%20stroke-width='1.5'/%3E%3C/svg%3E");
}

#seccion-fqa .accordion-button::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%3E%3Cline%20x1='7.75'%20y1='3.27834e-08'%20x2='7.75'%20y2='16'%20stroke='black'%20stroke-opacity='0.75'%20stroke-width='1.5'/%3E%3Cline%20y1='8.25'%20x2='16'%20y2='8.25'%20stroke='black'%20stroke-opacity='0.75'%20stroke-width='1.5'/%3E%3C/svg%3E");
  background-position: center;
  position: absolute;
  width: 15px;
  height: 15px;
  background-size: 100%;
  right: 20px;
  transition: all 0.5s;
}


/* MODAL */

.modal .modal-content {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}

.modal .modal-content .btn-close {
    position: absolute;
    right: -29px;
    color: #fff !important;
    opacity: 1;
    background: transparent;
}

.modal .modal-content .modal-body {
    padding: 0;
}

.view-content .modal {
    /* Aquí puedes desactivar cualquier estilo que afecte solo al modal dentro de view-content */
    all: unset; /* O utiliza las propiedades específicas que necesitas */
}

.modal-dialog.modal-dialog-centered {
    justify-content: center;
    width: 80%;
    margin: 0 auto;
}

@keyframes pulseplay {
    100% {
      box-shadow: 0 0 0 25px rgba(193,244,246,0);
    }
}

@media (width <= 1200px) {
    /* TRABAJO */

    #seccion-trabajo .container-components .container-components-accordions .accordion-collapse .accordion-body-content {
        flex-direction: column;
        padding: 20px;
    }
}

@media (width <= 1150px) {
    /* EMPLEABILIDAD */
    #seccion-empleabilidad .block-views-blockprogramas-block-1 .view-content .views-row .content-rows-programa {
        flex-direction: column;
    }

    #seccion-empleabilidad .block-views-blockprogramas-block-1 .view-content .views-row .content-rows-programa .row-right {
        order: -1;
    }
}

@media (width <= 992px) {
    /* TESTIMONIOS */
    #seccion-testimonios .container-videos {
        flex-direction: column;
    }


    /* ACOMPANIAMIENTO */
    #seccion-acompaniamiento .container-components .container-component-header > div {
        max-width: 415px;
    }

    /* LABORATORIOS */
    #seccion-laboratorios .container-section .container-section-top {
        align-items: center;
        gap: 20px;
    }

    #seccion-laboratorios .container-section-top .container-videos .field-name-imagen {
        width: 312px;
        height: 192px;
    }

    #seccion-laboratorios .container-section-top .container-videos .field-name-imagen .cuadrado-blanco,
    #seccion-laboratorios .container-section-top .container-videos .field-name-imagen .cuadrado-verde {
        display: none;
    }

    /* FORM */
    #seccion-form .container-section {
        flex-direction: column;
    }

    #seccion-form .container-videos {
        display: none;
    }
}

@media (width <= 768px) {
  #header-top{
    padding: 0;
  }
    /* BANNER */
  .section-banner{
    height: 40vh;
  }
  .section-banner .video-banner{
    height: 40vh;
  }
    .video-banner .img-banner-d {
        display: none;
    }

    .video-banner .img-banner-m {
        display: block;
    }

    .play-video > svg {
        width: 32px!important;
        height: 32px!important;
    }

    .video-banner .field-name-play-consideracion .play-video {
        width: 32px;
        height: 32px;
    }

    .section-banner .description-banner {
        font-size: 24px;
        margin-left: 5%;
        align-items: end;
        height: 70%;
        width: auto;
    }
  .section-banner .description-banner h1 {
    font-size: 24px;
  }
  .section-banner .icons-banner-links {
    position: absolute;
    background: #000;
    display: flex;
    bottom: -30px;
    width: 100%;
    max-width: 665px;
    height: 130px;
    align-items: center;
    justify-content: space-around;
    color: #fff;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 41;
    padding: 18px;
    gap: 10px;
  }

  .section-banner .icons-banner-links > a {
    color: #fff;
    text-decoration: none;
  }

  .section-banner .icons-banner-links .icon-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
  }

  .section-banner .icons-banner-links .icon-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    height: 100px;
    border: 1px solid white;
    border-radius: 4px;
    padding: 8px 10px 8px 10px;
  }
  .section-banner .icons-banner-links .icon-banner .icon-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 19.39px;
  }

  .section-banner .icons-banner-links .icon-banner-title {
    line-height: 24px;
    font-size: 20px;
    width: 160px;
    font-weight: 700;
  }


  @keyframes pulse {
        100% {
          box-shadow: 0 0 0 15px #ffffff27;
        }
    }

    /* TESTIMONIOS */
    #seccion-testimonios .container-section {
        padding: 60px 0 20px 0;
    }

    #seccion-testimonios .container-description h3 {
        font-size: 16px;
    }

    #seccion-testimonios .container-description h2 {
        font-size: 20px;
        line-height: 24.24px;
    }

    /* EMPLEABILIDAD */

    #seccion-empleabilidad .container-description h3 {
        font-size: 16px;
    }

    #seccion-empleabilidad .container-description h2 {
        font-size: 20px!important;
        line-height: 24.24px!important;
    }

    #seccion-empleabilidad .container-components .container-component-header h3 {
        font-size: 18px;
    }

    /* TRABAJO */
    #seccion-trabajo .container-components {
        flex-direction: column;
    }

    #seccion-trabajo .container-components .container-components-accordions {
        width: 100%;
    }

    #seccion-trabajo .container-section-top {
      flex-direction: column;
    }
    #seccion-trabajo .container-section-top .container-description {
      display: flex;
      align-items: center;
      justify-content: start;
      width: 100%;
      padding-left: 20px;
      margin-bottom: 20px;
    }

    #seccion-trabajo .container-section-top .container-description h2.barra-verde {
      font-size: 18px;
      line-height: 21px;
      width: 100%;
    }
    #seccion-trabajo .container-section-top .container-videos {
      width: 100%;
    }
    #seccion-trabajo .container-section-top .container-videos .field-name-imagen {
      width: auto;
      height: auto;
    }

    /* ACOMPANIAMIENTO */
    #seccion-acompaniamiento .container-components .container-component-header > div {
        max-width: 370px;
    }

    #seccion-acompaniamiento .view-id-programas.view-display-id-block_2 {
        width: 100%;
    }

    #seccion-acompaniamiento .container-component-bloque .view-content {
        flex-direction: column;
        gap: 20px;
    }

    #seccion-acompaniamiento .container-components .container-component-header .swiper-buttons {
        display: none;
    }

    #seccion-acompaniamiento .container-component-bloque .view-content .views-row .content-rows-acompaniamiento .content-row-description h5 {
        font-size: 18px;
        line-height: 21.78px;
    }

    /* LABORATORIOS */

    #seccion-laboratorios .container-section .container-section-top {
        flex-direction: column;
        gap: 30px;
    }

    #seccion-laboratorios .container-section-top .container-videos .field-name-imagen {
        width: 100%;
        height: 100%;
        max-width: 390px;
    }

    #seccion-laboratorios .container-section-top .container-videos .field-name-imagen picture img {
        height: 212px;
    }

  #seccion-fqa .container-section .fqa-box{
    flex-direction: column;
  }


  .menu-secondary-mobile ul.nav li a {
    display: block;
    --bs-nav-link-padding-y: 12px;
    --bs-nav-link-padding-x: 15px;
    --bs-nav-link-color: #FFF;
    background-color: #d01a49;
    color: #FFF;
    font-weight: 700;
    font-size: 16px;
    margin-top: .5rem;
  }
  .menu-secondary-mobile ul.nav li:first-child a {
    background-color: #FFF;
    display: block;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 0 none;
    padding: 14px 15px;
  }
}

@media (width <= 650px) {
    /* ACOMPANIAMIENTO */

    #seccion-acompaniamiento .container-component-bloque .view-content .views-row .content-rows-acompaniamiento .content-row {
        flex-direction: column;
    }

    #seccion-acompaniamiento .container-component-bloque .view-content .views-row .content-rows-acompaniamiento .content-row-img {
        order: -1;
        width: 100%;
    }

    #seccion-acompaniamiento .container-component-bloque .view-content .views-row .content-rows-acompaniamiento .content-row-description {
        width: 100%;
    }

    /* TRABAJO */

    #seccion-trabajo .container-components .container-component-header {
        max-width: 100%;
    }

}

@media (width <= 576px) {

    .static-navbar {
        position: fixed;
        top: auto;
        bottom: 0;
        right: 0;
        z-index: 100;
        width: 100%;
        height: 70px;
    }

    .static-navbar .static-navbar-buttons {
        display: flex;
        width: 100%;
        height: 100%;
    }

    .static-navbar .static-navbar-inscribete {
        flex-grow: 1;
        height: 100%;
        border: none;
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
    }

    .static-navbar .static-navbar-inscribete > div {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .static-navbar .static-navbar-inscribete > div .inscribete-texto {
        display: block;
    }

    .static-navbar .static-navbar-indice {
        height: 100%;
        border: none;
        width: 83px;
    }

    .static-navbar .content-indice .submenu {
        width: 100%;
        top: auto;
        bottom: 70px;
        left: 0;
    }

    .static-navbar .static-navbar-inscribete-desktop {
        display: none!important;
    }

    .static-navbar-inscribete-movil {
        display: flex!important;
    }

    .section-banner .video-banner {
       height: 80vh;
    }


    /* TESTIMONIOS */
    #seccion-testimonios .container-videos .field-name-imagen {
        width: 110%;
    }

    /* EMPLEABILIDAD */

    #seccion-empleabilidad .container-section {
        width: 90%;
        padding: 40px 0 40px 0;
    }

    #seccion-empleabilidad .container-components {
        margin-top: 20px;
    }

    #seccion-empleabilidad .container-section .container-section-top {
        width: 90%;
        margin: 0 auto;
    }

    #seccion-empleabilidad .container-description h3 {
        display: none;
    }

    #seccion-empleabilidad .container-description > p:nth-child(1) {
        margin-top: 30px;
    }

    #seccion-empleabilidad .container-description .barra-verde::before {
        top: 4px;
        height: 40px;
    }

    #seccion-empleabilidad .container-description .barra-verde.subtitulo::before {
        top: 4px;
        height: 40px;
    }

    #seccion-empleabilidad .block-views-blockprogramas-block-1 .view-content .views-row {
        padding: 20px;
    }

    #seccion-empleabilidad .block-views-blockprogramas-block-1 .view-content .views-row .content-rows-programa .row-right {
        width: 100%;
    }

    #seccion-empleabilidad .block-views-blockprogramas-block-1 .view-content .views-row .content-rows-programa .row-right img {
        min-width: 0px;
        width: 100%;
        height: 178px;
        object-fit: cover;
        object-position: center;
    }

    #seccion-empleabilidad .block-views-blockprogramas-block-1 .view-content .views-row .content-rows-programa .row-left > h4 {
        font-size: 18px;
        font-weight: 700;
        line-height: 21.78px;
    }

    /* TRABAJO */

    #seccion-trabajo .container-section {
        width: 90%;
        padding: 40px 0 40px 0;
    }

    #seccion-trabajo .container-components .container-component-header h4 {
        font-size: 18px;
        font-weight: 700;
        line-height: 21.78px;
    }

    #seccion-trabajo .container-components .container-components-accordions .container-accordion button {
        font-size: 18px;
    }

    /* ACOMPANIAMIENTO */
    #seccion-acompaniamiento .container-section {
        width: 90%;
        padding: 40px 0 40px 0;
        gap: 0;
    }

    #seccion-acompaniamiento .container-components .container-component-header {
        flex-direction: row;
    }

    #seccion-acompaniamiento .container-components .container-component-header h4 {
        font-size: 18px;
        line-height: 19.39px;
    }

    /* LABORATORIOS */

    #seccion-laboratorios .container-section {
        width: 85%;
        padding: 40px 0 120px 0;
    }

    #seccion-laboratorios .container-components .container-component-header {
        flex-direction: row;
    }

    #seccion-laboratorios .container-components .container-component-header h3 {
        font-size: 18px;
        line-height: 21.78px;
    }

    #seccion-laboratorios .container-description h2 {
        font-size: 20px;
        font-weight: 700;
        line-height: 24.24px;
        color: #ffffff;
    }

    #seccion-laboratorios .container-description > span {
        font-size: 34px;
        font-weight: 700;
        line-height: 40.8px;
    }

    #seccion-laboratorios .container-description .barra-verde::before {
        left: -15px;
        top: 10px;
        height: 60px;
    }

    #seccion-laboratorios .container-description .barra-verde.subtitulo::before {
        left: -15px;
        top: 10px;
        height: 60px;
    }

    /* VIDA UNIVERSITARIA */
    #seccion-vida-universitaria .container-section {
        width: 90%;
        padding: 10px 0 30px 0;
    }

    #seccion-vida-universitaria .container-components .container-component-header {
        flex-direction: row;
    }

    #seccion-vida-universitaria .container-components .container-component-header h4 {
        font-size: 18px;
        line-height: 21.78px;
    }

    /* CAMPUS */

    #seccion-campus .container-section {
        width: 90%;
        padding: 40px 0 110px 0;
    }

    #seccion-campus .container-components .container-component-header {
        flex-direction: row;
    }

    #seccion-campus .container-components .container-component-header h4 {
        font-size: 18px;
        line-height: 21.82px;
    }

    /* FORM */
    #seccion-form .container-section {
        width: 90%;
        padding: 40px 0 40px 0;
    }

    #seccion-form .container-description h2 {
        font-size: 20px;
        line-height: 25px;
    }

    #seccion-form .container-section .container-section-top  {
        margin-left: 15px;
    }

  #seccion-fqa .container-section .fqa-box{
    flex-direction: column;
  }

  #seccion-fqa .container-section {
    width: 85%;
    padding: 40px 0 40px 0;
  }
  .section-banner .icons-banner-links {
    position: relative;
    bottom: 0;
    height: 120px;
    max-width: 100%;
    transform: none;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-banner .icons-banner-links .icon-banner-title {
    line-height: 19px;
    font-size: 16px;
    width: 300px;
    font-weight: 700;
    grid-column-start: 1;
    grid-column-end: 4;
  }
  .section-banner .icons-banner-links .icon-banner {
    gap: 8px;
  }

  .section-banner .icons-banner-links .icon-banner .icon-svg {
    width: 44px;
    height: 44px;
    display: none;
  }

  .section-banner .icons-banner-links .icon-banner {
    height: auto;
    padding: 8px 4px 8px 4px;
  }

  .section-banner .icons-banner-links .icon-banner .icon-svg > svg {
    width: 24px;
  }

  .section-banner .icons-banner-links .icon-banner .icon-text {
    font-size: 13px;
  }


}
.loader-baner {
  position: absolute;
  z-index: 10;
  top: 47.5%;
  left: 49%;
}
/* HTML: <div class="loader"></div> */
.loader {
  width: 40px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #D01A49;
  --_m:
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
  display: none;
}
@keyframes l3 {to{transform: rotate(1turn)}}
.icons-banner-links-2{
  display: none;
}

.whatsapp-movil{
  display: none;
}
@media (width <= 500px) {
  .section-banner{
    height: 95vh;
  }
  .loader-baner {
    position: absolute;
    z-index: 10;
    top: 41.4%;
    left: 45.3%;
  }
  .swiper-buttons {
      justify-content: center;
      width: 100%;
  }

  /* VIDA UNIVERSITARIA */

  #seccion-vida-universitaria .block-views-blockvideo-campus-block-1 .view-content .views-row {
      max-width: 100%;
  }

  #seccion-vida-universitaria .block-views-blockvideo-campus-block-1 .view-content .views-row .content-rows-video-campus {
      width: 100%;
      max-width: 100%;
  }

  .modal .modal-content{
    aspect-ratio: 9/16;
  }
  #static-navbar-2{
    display: none;
  }

  .home2.section-banner  {
    height: 100vh;
  }

  .home2 .video-banner{
    height: 60vh;
  }
  .home2 .field-name-play-consideracion{
    display: none;
  }
  .home2 .description-banner {
    height: 60vh;
  }
  .home2 .icons-banner-links{
    display: none;
  }
  .home2 .icons-banner-links-2
  {
    display: flex;
    flex-direction: column;
    height: 40vh;
    position: relative;
    justify-content: center;
  }
  .home2 .icons-banner-links-2 .icons-banner-option {
    display: flex;
    position: absolute;
    background-color: black;
    width: 100%;
    padding: 20px 20px 0 20px;
    gap: 5%;
    z-index: 5;
    top: -150px;
  }

  .home2 .icons-banner-links-2 .icons-banner-option a{
      width: 100%;
      padding: 20px 5px;
      display: flex;
      justify-content: center;
      align-items: center;
      border: solid white 0.5px;
      border-radius: 4px;
      color: white;
      text-decoration: none;
  }

  .home2 .icons-banner-links-2 .icons-banner-option .icon-svg{
    display: flex;
    justify-content: center;
  }
  .home2 .icons-banner-links-2 .icons-banner-box {
    display: block;
    position: absolute;
    z-index: 10;
    background: black;
    width: 100%;
    flex-direction: column;
  }

  .home2 .icons-banner-links-2 .icons-banner-option .icon-text {
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
  }
  .icons-banner-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 10;
  }
  .icons-box-in{
    background: black;
    position: relative;
    /* bottom: 0; */
    z-index: 10;
  }

  .icons-banner-content .icons-row{
    display: flex;
    width: 100%;
    gap: 20px;
    padding: 0 20px;
  }
  .icons-row a {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    border: solid white 0.5px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 4px 8px 0px rgba(255,255,255,0.3);
    -moz-box-shadow: 0px 4px 8px 0px rgba(255,255,255,0.3);
    box-shadow: 0px 5px 8px 0px rgba(255,255,255,0.3);
  }
  .icons-row .icon-svg {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .icons-row .icon-text {
    font-size: 12px;
    line-height: 12px;
    font-weight: 600;
    text-align: center;
    margin-top: 4px;
  }

  .icons-row .whatsapp {
    background-color: #40C351;
    border: none;
    /* display: none; */
    -webkit-box-shadow: 0px 4px 8px 0px rgba(64,195,81,0.3);
    -moz-box-shadow: 0px 4px 8px 0px rgba(64,195,81,0.3);
    box-shadow: 0px 5px 8px 0px rgba(64,195,81,0.3);
  }

  .icons-row .info {
    background-color: #D01A49;
    border: none;
    /* display: none; */
    -webkit-box-shadow: 0px 4px 8px 0px rgba(208,26,73,0.3);
    -moz-box-shadow: 0px 4px 8px 0px rgba(208,26,73,0.3);
    box-shadow: 0px 5px 8px 0px rgba(208,26,73,0.3);
  }
  .slide-up {
    opacity: 0;
    transform: translateY(35vh); /* Comienza desplazado hacia abajo */
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .slide-up.visible {
    opacity: 1;
    transform: translateY(0); /* Se desliza hacia la posición final */
  }
  #icon-svg-close{
    display: none;
  }
  .modal-dialog.modal-dialog-centered{
    width: 85%;
  }
  .modal .modal-content .btn-close{
    top:-30px;
    right: 0;
  }
  .modal .modal-content video{
    width: 100%;
  }

  .section-banner .description-banner{
    line-height:normal;
    height: 75vh;
  }

  .whatsapp-movil {
    background-color: #40C351;
    width: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .home2 .description-banner {
    height: 58vh;
  }
  .menu-secondary-mobile ul.nav li a {
    display: block;
    --bs-nav-link-padding-y: 12px;
    --bs-nav-link-padding-x: 15px;
    --bs-nav-link-color: #FFF;
    background-color: #d01a49;
    color: #FFF;
    font-weight: 700;
    font-size: 16px;
    margin-top: .5rem;
  }
  .menu-secondary-mobile ul.nav li:first-child a {
    background-color: #FFF;
    display: block;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 0 none;
    padding: 14px 15px;
  }
}

.static-navbar .static-navbar-inscribete .whatsapp {
  background-color: #40C351;
}

.wsp-disabled {
  opacity: 0.8;
  pointer-events: none;
}
