/* --- Variables y Estilos Globales --- */
:root {
    --utp-red: #D9002E;
    --utp-black: #212529;
    --utp-white: #FFFFFF;
}

div#header-top,
header#header,
footer#footer {
    display: none !important;
}

body {
    margin: 0;
    background-color: #f0f0f0;
}

* {
    box-sizing: border-box;
}

.hidden {
    display: none !important;
}

/* --- Estructura del Banner --- */

#banner-emp {
    position: relative;
    width: 100%;
    height: 100%;
    /* Ocupa toda la altura de la pantalla */
    min-height: 1050px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--utp-white);
    overflow: hidden;
}

#video-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        linear-gradient(to right, transparent 40%, rgba(17, 17, 17, 0.7) 90%),
        url('https://www.utp.edu.pe/sites/default/files/empleabilidad/banner-emp.webp');
    background-size: cover;
    background-position: center;
}

.banner-container {
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

/* --- Header del Banner (Logo) --- */
.banner-header {
    position: absolute;
    top: 40px;
    left: 40px;
}

.banner-header .logo {
    width: 150px;
    /* Ajusta el tamaño del logo */
}

/* --- Contenido Principal del Banner --- */
.banner-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* --- Contenido de Texto --- */
.text-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    top: 170px;
    max-width: 368px;
}

.title-box {
    background-color: var(--utp-red);
    padding: 25px 30px;
    display: inline-block;
    height: 159px;
    display: flex;
    align-items: center;
    /* border-radius: 0px;
    corner-shape: bevel; */
    clip-path: polygon(0px 0%,calc(100% - 30px) 0%,100% 30px,100% calc(100% - 15px),calc(100% - 0px) 100%,30px 100%,0% calc(100% - 30px),0% 15px);
}

/* @supports (corner-shape: bevel) {
    .title-box {
        corner-shape: bevel;
        border-radius: 0px 30px 0 30px;
    }
} */

.title-box h1 {
    font-size: 42px;
    max-width: 368px;
    font-weight: 900;
    line-height: 40px;
    margin: 0;
    text-transform: uppercase;
    font-family: 'TT Squares', sans-serif;
}

.subtitle-box {
    background-color: var(--utp-black);
    padding: 20px 30px;
    display: inline-block;
    position: relative;
    top: -45px;
    left: 110px;
    z-index: -1;
    max-width: 368px;
    width: 368px;
    height: 159px;
    display: flex;
    align-items: flex-end;
    padding: 0px 40px 25px 40px;
    clip-path: polygon(0px 0%,calc(100% - 30px) 0%,100% 30px,100% calc(100% - 15px),calc(100% - 0px) 100%,30px 100%,0% calc(100% - 30px),0% 15px);
}

.subtitle-box p {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    line-height: 25px;
}

/* --- Área del Video y Botón Play --- */
.video-player-area {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.play-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
    z-index: 1;
}

.play-button.my-index {
    display: none;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    width: 80px;
    height: 80px;
}

/* --- Playlist de Videos (Lateral) --- */
.video-playlist {
    justify-self: end;
    position: relative;
    z-index: 1;
}

.video-playlist ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.video-playlist ul>li {
    display: flex;
    justify-content: end;
}

.video-thumb {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 15px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 5px;
    cursor: pointer;
    color: var(--utp-white);
    width: auto;
    /* Ancho del botón */
    transition: background-color 0.3s ease, border-color 0.3s ease;
    height: 82px;

    transform: scale(0.8);
    opacity: 0.5;
    position: relative;
    right: -10px;
    transition: 0.5s all ease;
}

.video-thumb>div {
    width: 82px;
    height: 82px;
    overflow: hidden;
    border-radius: 50%;
    background-color: #2125293b;
    display: flex;
    align-items: center;
    justify-content: center
}

.video-thumb>div>img {
    width: 70px;
    height: 70px;
}

.video-thumb.active {
    transform: scale(1);
    opacity: 1;
    position: relative;
    right: 0;
}

.video-thumb span {
    font-size: 0.9rem;
    font-weight: bold;
}

.video-thumb img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* --- Sección Formulario --- */

#form-emp {
    padding: 80px 40px;
    background-color: #f4f5f7;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 25px 25px;
    height: 760px;
}

.form-container {
    display: flex;
    gap: 120px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

.form-box {
    /* background-color: #2a2f35; */
    /* border-radius: 15px; */
    /* padding: 40px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* width: 400px; */
}

.form-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 500px;
    height: auto;
}

.form-text-content img {
    width: 100%;
}

.title-box-form {
    background-color: #D9002E;
    color: #FFFFFF;
    padding: 20px 30px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.title-box-form h2 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.title-box-form h2 strong {
    font-weight: 900;
}

.subtitle-box-form {
    background-color: #212529;
    color: #FFFFFF;
    padding: 20px 30px;
    margin-top: -10px;
    margin-left: 20px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    position: relative;
    /* z-index: -1; */
}

.subtitle-box-form p {
    margin: 0;
    font-size: 1.1rem;
}

.cta-button {
    background-color: #D9002E;
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 5px;
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #b80026;
}

.cta-button svg {
    width: 20px;
    height: 20px;
}

/* --- Sección Egresados --- */

#egresado-emp {
    position: relative;
    height: 90vh;
    background-image: url('https://www.utp.edu.pe/sites/default/files/empleabilidad/egresados-layout.webp');
    /* Asegúrate de tener la imagen de fondo */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.egresado-container {
    width: 100%;
    height: 100%;
    /* max-width: 1400px; */
    margin: 0 auto;
    position: relative;
}

.egresado-content {
    /* background-color: rgba(17, 17, 17, 0.8); */
    background-image: linear-gradient(to left, transparent 10%, rgba(17, 17, 17, 0.7) 60%);
    color: #FFFFFF;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    box-sizing: border-box;
}

.top5-graphic {
    display: flex;
    align-items: start;
    gap: 10px;
    font-family: 'Impact', 'Arial Black', sans-serif;
    /* Fuente de alto impacto */
    text-transform: uppercase;
}

.top5-text {
    font-size: 50px;
    font-weight: 900;
    -webkit-text-stroke: 3px #000;
    font-family: 'TT Squares', sans-serif;
    margin-top: 20px;
}

.top5-number {
    font-size: 130px;
    font-weight: 900;
    font-family: 'TT Squares', sans-serif;
    line-height: 1;
    /* padding: 0 15px 5px 15px; */
    border-radius: 5px;
    color: #000;
    -webkit-text-stroke: 3px #fff;
}

.egresado-title {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 900;
    margin: 20px 0;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.egresado-title span {
    padding: 5px 15px;
    display: inline-block;
    font-size: 40px;
    width: fit-content;
    font-family: 'TT Squares', sans-serif;
    font-weight: 900;
}

.egresado-title .line-1,
.egresado-title .line-2 {
    background-color: #D9002E;
}

.egresado-title .line-3 {
    background-color: #212529;
}

.source-info {
    margin-top: 30px;
}

.source-brand {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1.5rem;
    margin: 0 0 5px 0;
}

.source-detail {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    opacity: 0.9;
}

/* --- Sección Convenios y Ofertas --- */

#convenios-emp {
    padding: 100px 40px;
    background-color: #fff;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 25px 25px;
    text-align: center;
}

.convenios-container {
    max-width: 100%;
    margin: 0 auto;
}

.group-logos .group-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.group-logos .main-logo {
    max-width: 200px;
    margin-bottom: 40px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-grid img {
    width: 150px;
    object-fit: contain;
    height: 100px;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.separator {
    /* display: flex;
    align-items: center;
    text-align: center;
    color: #aaa; */
    margin: 40px 0 80px 0;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px dotted #ccc;
}

.separator span {
    padding: 0 15px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.job-offers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.offers-graphic {
    display: flex;
    align-items: start;
    gap: 10px;
    color: #212529;
}

.offers-graphic .plus-sign {
    font-size: 80px;
    font-weight: 900;
    font-family: 'TT Squares', sans-serif;
    -webkit-text-stroke: 3px #000;
    color: #fff
}

.offers-graphic .number-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.offers-graphic .number {
    font-size: 103px;
    font-family: 'TT Squares', sans-serif;
    font-weight: 900;
    line-height: 1;
    /* -webkit-text-stroke: 3px #fff; */
}

.offers-graphic .mil {
    font-size: 40px;
    margin-left: 5px;
    font-family: 'TT Squares', sans-serif;
    font-weight: 900;
    /* -webkit-text-stroke: 3px #fff; */
}

.offers-text {
    text-align: left;
}

.offers-title span {
    display: block;
    padding: 2px 8px;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    color: #FFFFFF;
    width: fit-content;
    font-family: 'TT Squares', sans-serif;
}

.offers-title .line-1 {
    background-color: #D9002E;
}

.offers-title .line-2 {
    background-color: #212529;
}

.offers-subtitle {
    margin-top: 10px;
    font-size: 16px;
    color: #000;
}

/* --- Sección Footer --- */

#footer-emp {
    background-color: #fff;
    color: #FFFFFF;
    padding: 0px 0px 80px 0px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    text-align: center;
}

/* --- Experience Collage - Testimonials Slider --- */
.swiper-button {
    position: relative;
    top: -22px !important;
    display: flex;
    justify-content: end;
    gap: 16px;
}

.swiper-button>div {
    position: initial;
    width: 40px;
    height: 40px;
    border: 2px solid #D3052D;
    border-radius: 2px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: 700;
    color: #D3052D;
}

.swiper-button>div:nth-child(1) {
    order: 1;
}

.experience-collage {
    /* max-width: 1200px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    gap: 100px;
    padding: 80px 0px 80px 40px;
    background-color: #fff;
    background-image: radial-gradient(circle, #e9e9e9 1.5px, transparent 1px);
    background-size: 20px 20px;
}

/* Header del collage */
.collage-header {
    margin-bottom: 50px;
    min-width: 315px;
}

.swiper-testimoniales {
    height: 500px;
    padding: 0 25px !important;
}

.swiper-wrapper {
    align-items: center;
}

.collage-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: 'TT Squares', sans-serif;
}

.collage-title span {
    padding: 1px 5px;
    display: inline-block;
    width: fit-content;
    text-transform: uppercase;
    font-size: 32px;
}

.collage-title .title-line-1 {
    background-color: #D9002E;
    color: #FFFFFF;
}

.collage-title .title-line-2 {
    background-color: #D9002E;
    color: #FFFFFF;
}

.collage-title .title-line-3 {
    background-color: #212529;
    color: #FFFFFF;
}

/* Slider de testimonios */
.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

/* Tarjeta de testimonio */
.testimonial-card {
    min-width: 350px;
    max-width: 350px;
    background: #FFFFFF;
    /* border-radius: 16px; */
    padding: 30px;
    box-shadow: 0px 0px 30px 0px #00000033;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    /* clip-path: polygon(0px 0%,calc(100% - 30px) 0%,100% 30px,100% calc(100% - 15px),calc(100% - 0px) 100%,30px 100%,0% calc(100% - 30px),0% 15px); */
}

/* Comillas decorativas */
.card-quote {
    display: flex;
    justify-content: flex-start;
}

.quote-icon {
    width: 40px;
    height: 32px;
}

.testimonial-card {
    width: 360px !important;
    height: 360px !important;
    display: flex !important;
    align-items: self-start !important;
    justify-content: center !important;
    position: relative !important;
}

.testimonial-card .card-body {
    display: flex;
    width: 80%;
}

/* Contenido de la tarjeta */
.card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.card-text {
    font-size: 18px;
    color: #212529;
    margin: 0;
    font-weight: 700;
    line-height: 25px;
    text-align: start;
}

/* Información del autor */
.card-author {
    margin-top: auto;
    text-align: start;
}

.card-author p {
    margin: 0;
}

.author-name {
    font-size: 12px;
    font-weight: 400;
    color: #D9002E;
    margin: 0 0 5px 0;
}

.author-position {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
}

/* Imagen del testimonio */
.card-image {
    height: 235px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: auto;
    position: absolute;
    bottom: 0px;
    right: 15px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* transition: transform 0.3s ease; */
}

/* .testimonial-card:hover .card-image img {
    transform: scale(1.05);
} */

/* Controles del slider */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    background: #FFFFFF;
    border: 2px solid #D9002E;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #D9002E;
}

.slider-btn:hover {
    background: #D9002E;
    color: #FFFFFF;
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

/* Dots de navegación */
.slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D9D9D9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #D9002E;
    width: 32px;
    border-radius: 6px;
}

.dot:hover {
    background: #D9002E;
    opacity: 0.7;
}

.community-cta {
    padding: 25px 40px;
    width: 500px;
}

.community-cta img {
    width: 100%;
}

.community-cta p strong {
    font-weight: 900;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-links p {
    margin: 0;
    color: #000;
    font-size: 26px;
}

.arrow-down {
    width: 24px;
    height: 24px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links .arrow-social {
    display: flex;
    flex-direction: column;
    height: 63px;
}

.social-links .arrow-social svg:nth-child(2) {
    position: relative;
    top: -20px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background-color: #e0e0e0;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    background-color: #D9002E;
    transform: scale(1.1);
}

.social-icons a:hover svg path {
    fill: #FFFFFF;
}

.social-icons svg {
    height: 20px;
    width: auto;
}

.vertical-menu.vertical-menu-desktop {
    width: 42px;
    height: 191px;
}

.vertical-menu.vertical-menu-desktop .menu-item {
    width: 42px;
}

.vertical-menu.vertical-menu-desktop .menu-item:nth-child(1) a {
    width: 42px;
    height: 42px;
    border: none;
    border-top-left-radius: 4px;
}


.vertical-menu.vertical-menu-desktop .menu-item:nth-child(2) a {
    width: 42px;
    height: 150px;
    border: none;
    border-bottom-left-radius: 4px;
}

.vertical-menu.vertical-menu-desktop .menu-item:nth-child(2) a p {
    transform: rotate(-90deg);
    width: 150px;
    text-wrap-mode: nowrap;
    margin-top: 20px;
}

.vertical-menu.vertical-menu-desktop .menu-item:nth-child(2) a p svg {
    margin-right: 5px;
}

.vertical-menu.vertical-menu-mobile {
    background: #fff;
    box-shadow: 0px 0px 16px 0px #00000040;
    display: none;
    align-items: center;
    justify-content: center;
    height: 74px;
    gap: 8px;
    padding: 0 10px;
}

.vertical-menu.vertical-menu-mobile .menu-item:nth-child(1) {
    width: 50px;
}

.vertical-menu.vertical-menu-mobile .menu-item:nth-child(1) a {
    width: 50px;
    height: 50px;
    border-radius: 4px;
}

.vertical-menu.vertical-menu-mobile .menu-item:nth-child(2) a {
    height: 50px;
    border-radius: 4px;
}

.vertical-menu.vertical-menu-mobile .menu-item:nth-child(2) a p {
    display: flex;
    gap: 25px;
    align-items: center;
}

/* FORMULARIO */
#formulario-inscribete .content {
    background: linear-gradient(309.69deg, #32363A 5.24%, #32383D 21.89%, #313E4A 97.77%);
}

#formulario-inscribete .form-group-radios {
    color: #FFFFFF;
}

#formulario-inscribete .form-group select,
#formulario-inscribete .form-label-group input,
#formulario-inscribete .choices__inner {
    background: #5D6874 !important;
    border: 1px solid #5D6874 !important;
    color: #F5F5F5;
}

#formulario-inscribete .form-label-group label {
    color: #F5F5F5;
}

#formulario-inscribete .form-check label,
#formulario-inscribete .form-check label a,
#formulario-inscribete .mensajes,
#formulario-inscribete .ruc-utp,
#formulario-inscribete #volver,
#formulario-inscribete .choices__list--single .choices__item,
#formulario-inscribete .msg-gracias h3,
#formulario-inscribete .msg-gracias p {
    color: #fff;
}

#formulario-inscribete .form-actions>p>svg>path,
#formulario-inscribete .form-actions>svg>path,
#formulario-inscribete #volver>svg>path {
    fill: #FFFFFF;
}

#formulario-inscribete #form-slim-gracias>svg>path {
    stroke: #fff;
}


@media (width <=1200px) {

    /* --- Sección Formulario --- */
    .form-container {
        gap: 60px;
    }

    .form-text-content {
        width: 430px;
    }
}

@media (width <=992px) {
    .banner-main-content {
        flex-direction: column;
        position: absolute;
        bottom: 0;
        width: 100%;
        left: 0;
        padding: 0px 40px 22px 40px;
    }

    .text-content {
        top: 80px;
        max-width: 368px;
        align-self: self-start;
    }

    .video-playlist {
        align-self: flex-end;
    }

    /* --- Sección Formulario --- */

    #form-emp {
        height: auto;
    }

    .form-container {
        flex-direction: column;
    }

    /* --- Sección Egresados --- */

    #egresado-emp {
        height: 500px;
    }

    .egresado-content {
        width: 55%;
        padding: 0 16px;
    }

    /* Seccion Testimonios */
    .collage-header {
        margin: 0;
    }

    .experience-collage {
        flex-direction: column;
        align-items: self-start;
        gap: 0;
        padding: 80px 0px 80px 16px;
    }

    .collage-title span {
        font-size: 22px;
    }

    .testimonial-card {
        width: 300px !important;
        height: 300px !important;
        min-width: 300px;
    }

    .card-text {
        font-size: 15px;
        line-height: 20px;
    }

    .author-name {
        font-size: 10px;
    }

    .author-position {
        font-size: 12px;
    }

    .card-image {
        right: 5px;
    }

    .swiper-testimoniales {
        width: 100%;
        height: 425px;
        padding: 0 25px 0px 15px !important;
    }
}

@media (width <=768px) {
    #banner-emp {
        min-height: 800px;
    }

    .banner-background {
        background-image:
            linear-gradient(to right, transparent 40%, rgba(17, 17, 17, 0.7) 75%),
            url('https://www.utp.edu.pe/sites/default/files/empleabilidad/banner-emp.webp');
    }

    .text-content {
        max-width: 188px;
        top: 0px;
    }

    .title-box {
        height: 80px;
        padding: 25px 16px;
        clip-path: polygon(0px 0%,calc(100% - 15px) 0%,100% 15px,100% calc(100% - 15px),calc(100% - 0px) 100%,15px 100%,0% calc(100% - 15px),0% 15px);
    }

    .title-box h1 {
        font-size: 22px;
        max-width: 188px;
        line-height: 22px;
    }

    .subtitle-box {
        max-width: 188px;
        height: 80px;
        top: -22px;
        left: 55px;
        padding: 0px 22px 13px 22px;
        clip-path: polygon(0px 0%,calc(100% - 15px) 0%,100% 15px,100% calc(100% - 15px),calc(100% - 0px) 100%,15px 100%,0% calc(100% - 15px),0% 15px);
    }

    .subtitle-box p {
        font-size: 12px;
        line-height: 12px;
    }

    .play-button svg {
        width: 64px;
        height: 64px;
    }

    .video-thumb {
        height: 48px;
    }

    .video-thumb>div {
        width: 48px;
        height: 48px;
    }

    /* --- Sección Egresados --- */

    .top5-text {
        font-size: 25px;
        -webkit-text-stroke: 2px #000 !important;
        margin-top: 8px;
    }

    .top5-number {
        font-size: 70px;
        -webkit-text-stroke: 2px #fff !important;
    }

    .egresado-title {
        font-size: 22px;
    }

    .egresado-title span {
        font-size: 22px;
        padding: 5px 10px;
    }

    .source-detail {
        font-size: 10px;
    }

    .egresado-content {
        width: 60%;
        padding: 0 16px;
    }


    .vertical-menu.vertical-menu-mobile {
        display: flex;
    }

    .logo-grid img {
        width: 120px;
        height: 50px;
    }
}

@media (width <=600px) {
    #form-emp {
        padding: 50px 20px;
    }

    .form-box {
        width: 100%;
    }

    /* --- Sección Convenios y Ofertas --- */
    #convenios-emp {
        padding: 50px 20px;
    }

    .group-logos .main-logo {
        width: 150px;
    }

    .group-logos .group-title {
        font-size: 16px;
    }

    .offers-graphic .plus-sign {
        font-size: 34px;
        -webkit-text-stroke: 2px #000;
    }

    .offers-graphic .number {
        font-size: 50px;
    }

    .offers-graphic .mil {
        font-size: 18px;
    }

    .offers-title span {
        font-size: 17px;
    }

    .offers-subtitle {
        font-size: 10px;
    }

    /* SECCION FOOTER */

    .community-cta {
        width: 324px;
        padding: 0;
    }

    .social-links p {
        font-size: 16px;
    }
}

@media (width <=498px) {

    /* --- Sección Formulario --- */
    .banner-main-content {
        padding: 0px 20px 22px 20px;
    }

    .form-text-content {
        width: 100%;
    }

    /* Seccion Egresados */

    #egresado-emp {
        height: 319px;
    }

    .egresado-content {
        width: 80%;
        padding: 0 16px;
        background-image: linear-gradient(to left, transparent 10%, rgba(17, 17, 17, 0.7) 90%);
    }

    .egresado-title {
        margin: 0 0;
    }
}