 /* --------------------------------------------------------------
   CSS para Foro IDC
   -------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: #000  !important;
    color: #fff !important;
    font-family: "Outfit", sans-serif;
}
h1, h2, h3, h4, h5, h6,
p, span, a, li, blockquote, em, small, label,
input, button, textarea, select {
    font-family: "Outfit", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 200 !important;
}

/* ===================== Banner Foro IDC ===================== */

/* Envuelve todo el banner */
.banner-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Capa semitransparente si la necesitas */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Imagen de fondo del banner */
.banner-bg {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
    z-index: 0;
}

 /* ------------------ Header ------------------ */
  .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 35px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    background-color: #000;
    font-family: "Outfit", sans-serif;
  }

  .logo img {
    height: 40px;
  }

  .nav {
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 10;
  }

  .nav-item {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 8px;
    padding: 10px 0;
    text-align: center;
  }

  .nav-item.highlight {
    color: #fff;
    border-left: 1px solid #e50046;
    border-right: 1px solid #e50046;
    padding: 10px 20px;
  }

  .access-button {
    position: absolute;
    top: 110px;
    right: 60px;
    z-index: 3;
    background-color: #C10230;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 20px 35px;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 400 !important;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
  }

  /* ------------------ Ajustes para mobile ------------------ */
  @media (max-width: 768px) {
    .header {
      flex-direction: column;
      padding: 20px;
    }

    .logo {
      text-align: center;
      margin-bottom: 20px;
    }

    .nav {
      display: flex;
      justify-content: center;
      gap: 15px;
      width: 100%;
      margin-bottom: 20px;
    }

    .nav-item {
      font-size: 16px;
      letter-spacing: 5px;
      padding: 8px 0;
    }

    .nav-item.highlight {
      padding: 8px 0;
      border-left: none;
      border-right: none;
      
    }

    .access-button {
      position: static;
      margin: 0 auto;
      padding: 12px 25px;
      font-size: 13px;
      box-shadow: none;
    }
  }


/* ------------------ Contenido central del banner ------------------ */
.banner-content {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    padding: 0 10px;
}

.date {
    font-size: 20px;
    letter-spacing: 8px;
    margin-bottom: 15px;
}

.highlight-number {
    color: #e50046;
}

.location {
    font-size: 16px;
    letter-spacing: 6px;
}

.circular-pattern {
    margin: 0 auto;
    background-image: url('https://dev.idconline.mx/assets/images/foro-idc/logo-rumbo.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 1000 / 760;
    z-index: -10;
}

/* Ajustes responsivos específicas del banner */
@media (max-width: 600px) {
    .date {
        font-size: 18px;
        letter-spacing: 6px;
    }
    .location {
        font-size: 14px;
        letter-spacing: 4px;
    }
    .access-button {
        padding: 10px 16px;
        font-size: 12px;
        z-index: 15;
    }
    .banner-content {
        top: 65%;
        width: 100%;
        max-width: none;
    }
    .circular-pattern {
        max-width: 100%;
    } 
}

/* ==================== Eje Temático ==================== */
.container-eje {
    width: 100%;
    max-width: 900px;
    margin: 70px auto 50px auto;
    text-align: center;
    padding: 10px;
}

.description {
    font-size: 25px;
    line-height: 1.4;
    margin-bottom: 50px;
    padding: 0 10px;
    font-family: "Outfit", sans-serif;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: start;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 140px;
}

.stat-number {
    font-size: 48px;
    font-weight: 400 !important;
    margin-bottom: 5px;
}

.stat-number::before {
    content: '•';
    color: #c00032;
    margin-right: 5px;
}

.stat-number.plus::before {
    content: '+';
}

.stat-label {
    font-size: 40px;
    text-align: center;
}

.separator {
    width: 2px;
    height: 150px;
    background-color: #c00032;
}

@media (max-width: 600px) {
    .description {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .stats-container {
        align-items: center;
        flex-direction: column;
        gap: 30px;
    }
    .separator {
        display: none;
    }
    .stat-number {
        font-size: 36px;
    }
    .stat-label {
        font-size: 18px;
    }
}

/* ==================== Contador ==================== */

.container-contador {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

/* Fondo principal del contador */
.container-contador .contador-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://dev.idconline.mx/assets/images/foro-idc/contador-foro-idc.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
}


/* Contenido concreto del contador */
.container-contador .contador-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1450px;
    padding: 0 20px;
    text-align: center;
}

/* ==================== Cuenta regresiva ==================== */
.countdown {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 100px;
    gap: 20px;
    margin-bottom: 90px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-box-one {
    position: relative;
    width: 100px;
    height: 100px;
    background-image: url('https://dev.idconline.mx/assets/images/foro-idc/dias.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.countdown-box-two {
    position: relative;
    width: 100px;
    height: 100px;
    background-image: url('https://dev.idconline.mx/assets/images/foro-idc/horas.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.countdown-box-three {
    position: relative;
    width: 100px;
    height: 100px;
    background-image: url('https://dev.idconline.mx/assets/images/foro-idc/minutos.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.countdown-box-four {
    position: relative;
    width: 100px;
    height: 100px;
    background-image: url('https://dev.idconline.mx/assets/images/foro-idc/segundos.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.countdown-number {
    position: absolute;
    font-size: 60px;
    font-weight: normal;
    z-index: 3;
}

.countdown-label {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-top: 10px;
    font-weight: normal;
}

/* ==================== Features ==================== */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
}

.feature {
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(33.333% - 20px);
    max-width: 415px;
    min-width: 280px;
    position: relative;
}

.feature-overlay {
    background-color: rgba(0, 0, 0, 0.54);
    padding: 50px;
    position: relative;
    flex: 1;
    text-align: left;
}

.feature-separator {
    position: absolute;
    right: 20px;
    top: 60px;
    height: calc(80% - 10px);
    width: 2px;
    background-color: #c10230;
}

.feature-separator-circle {
    position: absolute;
    right: 16px;
    top: 80px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #c10230;
}

.feature-title {
    font-family: "Outfit", sans-serif;
    font-size: 30px;
    font-weight: normal;
    text-align: left;
}

.feature-description {
    font-family: "Outfit", sans-serif;
    font-size: 25px;
    line-height: 1.4;
    font-weight: normal;
    text-align: left;
    color: #fff;
}

/* ---------------- Ajustes responsivos ---------------- */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }
    .feature {
        flex: 1 1 100%;
        max-width: none;
    }
}

@media (max-width: 600px) {
    .countdown-box-one {
        width: 80px;
        height: 80px;
    }
    .countdown-box-two {
        width: 80px;
        height: 80px;
    }
    .countdown-box-three {
        width: 80px;
        height: 80px;
    }
    .countdown-box-four {
        width: 80px;
        height: 80px;
    }
    .countdown-number {
        font-size: 48px;
    }
    .countdown-item {
        margin: 10px;
    }
    .feature-title {
        font-size: 20px;
    }
    .feature-description {
        font-size: 16px;
    }
}


/* ==================== Agenda del evento ==================== */

.container-agenda {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

/* Capa de fondo */
.container-agenda .agenda-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://dev.idconline.mx/assets/images/foro-idc/fondo-agenda-foro-idc.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Contenido de la agenda */
.container-agenda .agenda-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0px auto 10px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Cabecera */
.agenda-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.agenda-logo {
    width: 250px;
    height: auto;
    margin-right: 20px;
    margin-top: 90px;
}

/* Cada fila de la agenda */
.agenda-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

/* Hora */
.agenda-time {
    width: 230px;
    color: #c10230;
    font-weight: 200 !important;
    font-size: 25px;
    line-height: 1.2;
}

/* Contenido: título y descripción lado a lado */
.agenda-item > .agenda-content {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    font-weight: 200 !important;
}

/* Título de la actividad */
.agenda-title {
    font-size: 30px;
    font-weight: 200 !important;
    color: #fff;
    margin-right: 30px;
    font-weight: 200 !important;
}

/* Contenedor de la descripción */
.agenda-description {
    flex: 1;
    font-size: 25px;
    font-weight: 200 !important;
}

.agenda-description .agenda-desc-inner {
    border-left: 3px solid #d01c40;
    padding-left: 15px;
    line-height: 1.4;
}

/* Estilo del texto y del input del expositor */
.agenda-description .agenda-desc-inner > div {
    color: #fff;
}

.speaker {
    background-color: #333;
    border: none;
    color: white;
    padding: 8px 10px;
    width: 100%;
    max-width: 300px;
    margin-top: 5px;
    font-size: 20px;
    font-weight: 200 !important;
}

/* Línea divisoria */
.divider {
    height:3px;
    background-color: #c10230;
    margin: 40px 0;
}

/* ---------------- Ajustes responsivos ---------------- */
@media (max-width: 768px) {
    .agenda-logo {
        width: 200px;
        margin-bottom: 20px;
    }
    .agenda-time {
        width: 140px;
        font-size: 20px;
    }
    .agenda-item > .agenda-content {
        flex-direction: column;
    }
    .agenda-title {
        font-size: 24px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .agenda-description {
        font-size: 18px;
    }
    .speaker {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .agenda-item {
        flex-direction: column;
    }
    .agenda-time {
        width: 100%;
        margin-bottom: 5px;
    }
    .agenda-item > .agenda-content {
        width: 100%;
    }
    .agenda-title {
        font-size: 22px;
    }
    .agenda-description {
        font-size: 16px;
    }
    .speaker {
        font-size: 16px;
    }
}
    /* ---------------- Platicas Simultaneas ---------------- */
.container-platicas {
    max-width: 1200px;
    margin: 0 auto;
}

.container-platicas h1 {
    text-align: center;
    color: #ff3366;
    font-size: 25px;
    font-weight: 200 !important;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.categories {
    display: flex;
    margin-left: 200px;
    margin-bottom: 30px;
}

.category {
    flex: 1;
    position: relative;
    text-align: center;
}

.category-title {
    font-size: 30px;
    font-weight: 200 !important;
    margin: 0;
    color: #fff;
    display: inline-block;
    padding-left: 8px;
    position: relative;
}

.category-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #ff3366;
}

.schedule {
    margin-bottom: 40px;
}

.time-slot {
    display: flex;
    margin-top: 40px;
    margin-bottom: 30px;
}

.time-slot:first-child {
    margin-top: 0px;
}

.time {
    width: 200px;
    color: #c10230;
    font-size: 25px;
    font-weight: 200 !important;
    line-height: 1.2;
    text-align: left;
    margin-top: 0;
}

.sessions {
    display: flex;
    flex: 1;
    justify-content: space-between;
}

.session {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30%;
}

.session-title {
    margin-bottom: 15px;
    font-weight: 200 !important;
    font-size: 20px;
    line-height: 1.4;
    text-align: left;
    color: #fff;
}

.speaker-p {
    background-color: #333333;
    padding: 10px;
    position: relative;
    width: calc(100% - 20px);
    color: #fff;
    font-size: 20px;
    text-align: left;
    font-weight: 200 !important;
}

.speaker-p::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 0;
    height: 70%;
    width: 4px;
    background-color: #ff3366;
    margin: 8px 0;
}

hr {
    border: none;
    height: 1px;
    background-color: #ffffff;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .category-title {
        font-size: 18px;
    }
    .time {
        width: 140px;
        font-size: 16px;
    }
    .sessions {
        flex-direction: column;
        gap: 20px;
    }
    .session {
        width: 100%;
    }
    .session-title {
        font-size: 14px;
    }
    .speaker-p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .time-slot {
        flex-direction: column;
    }
    .time {
        width: 100%;
        margin-bottom: 10px;
    }
    .sessions {
        width: 100%;
    }
    .session-title {
        font-size: 13px;
    }
    .speaker-p {
        font-size: 11px;
        width: 100%;
    }
    .categories {
        flex-direction: column;
        margin-left: 0;
        gap: 10px;
    }
    .category-title {
        font-size: 16px;
        padding-left: 0;
    }
    .category-title::before {
        display: none;
    }
}
.custom-button {
    background-color: #444;
    color: white;
    border: 3px solid transparent;
    width: 350px;
    height: 80px;
    border-radius: 50px;
    font-size: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: box-shadow 0.3s ease;
    padding: 0 24px;
    text-align: center;
    background-image: linear-gradient(#444, #444), linear-gradient(to bottom, #4a4a4a, #323233);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

.custom-button::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(to bottom, #444, #222);
    border-radius: 53px;
    z-index: -1;
}

.custom-button:hover {
    background-image: linear-gradient(#444, #444), linear-gradient(to bottom, #5a5a5a, #323233);
    color: #fff !important;
}

.custom-button .agenda {
    color: #dc3545;
}

.custom-button span,
.custom-button strong,
.custom-button em {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    display: block;
}




/* ==================== Expositores ==================== */
.container-exp {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.header-exp {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 20px;
}

.header-exp h1 {
  text-align: center;
    color: #ff3366;
    font-size: 25px;
    font-weight: 200 !important;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.grid-exp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* gap: 6px;
  padding: 3px; */
  position: relative;
}

.grid-item-exp {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.hidden-exp {
  visibility: hidden;
}

.grid-item-exp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.overlay-exp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(201, 0, 47, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.grid-item-exp:hover .overlay-exp {
  opacity: 1;
}

.plus-icon-exp {
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c9002f;
  font-size: 35px;
  font-weight: 200;
  position: absolute;
  right: 30px;
  bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: none;
  cursor: pointer;
}

.red-box-content-exp {
  background-color: #c10230;
  grid-column: 4;
  grid-row: 1 / span 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.red-box-content-exp h2 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 200 !important;
}

.red-box-content-exp p {
  color: #ffffff;
  font-size: 25px;
  margin: 4px 0;
}

.item1-exp {
  grid-column: 1;
  grid-row: 1;
  top: 130px;
}

.item2-exp {
  grid-column: 2;
  grid-row: 1;
}

.item3-exp {
  grid-column: 3;
  grid-row: 1;
}

.item4-exp {
  grid-column: 1;
  grid-row: 2;
}

.item5-exp {
  grid-column: 2;
  grid-row: 2;
}

.item6-exp {
  grid-column: 3;
  grid-row: 2;
}

.item7-exp {
  grid-column: 1;
  grid-row: 3;
  top: 130px;
}

.item8-exp {
  grid-column: 2;
  grid-row: 3;
}

.item9-exp {
  grid-column: 3;
  grid-row: 3;
}

.item10-exp {
  grid-column: 1;
  grid-row: 4;
}

.item11-exp {
  grid-column: 2;
  grid-row: 4;
}

.item12-exp {
  grid-column: 3;
  grid-row: 4;
}

.item13-exp {
  grid-column: 4;
  grid-row: 4;
}

.item14-exp {
  grid-column: 1;
  grid-row: 5;
}

.item15-exp {
  grid-column: 2;
  grid-row: 5;
}

.item16-exp {
  grid-column: 3;
  grid-row: 5;
}

.item17-exp {
  grid-column: 4;
  grid-row: 5;
}

.gray-box-exp {
  padding: 20px;
  background: linear-gradient(to right, #000000 58%, #313131 100%);
  grid-column: 1 / span 3;
  grid-row: 6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Outfit", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 200 !important;
}

.gray-box-exp ul {
  list-style: none;
  padding: 0;
  margin: 0;
  
}

.gray-box-exp li {
  position: relative;
  color: #ffffff;
  font-family: "Outfit", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 200 !important;
    font-size: 25px;
  margin-bottom: 8px;
  padding-left: 24px;
}

.gray-box-exp li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c9002f;
  font-size: 25px;
  font-weight: 800 !important;
  /* line-height: 0.8; */
}


.item18-exp {
  grid-column: 4;
  grid-row: 6;
}

.footer-exp {
  padding: 40px 0 0;
  margin-left: 20px;
}

.footer-list-exp {
  list-style: none;
  padding: 0;
}

.footer-list-exp li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.footer-list-exp li::before {
  content: "•";
  color: #c9002f;
  font-size: 20px;
  margin-right: 10px;
  line-height: 1;
}

.footer-text-exp {
  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .grid-exp {
    display: flex;
    flex-wrap: wrap;
    gap: none !important;
    padding: 0 !important;
  }

  .red-box-content-exp {
    width: 100%;
    order: 0;
    grid-column: unset;
    grid-row: unset;
  }

  .grid-item-exp {
    width: 50%;
    aspect-ratio: unset;
    order: 1;
  }

  .hidden-exp {
    display: none;
  }

  .item1-exp,
  .item2-exp,
  .item3-exp,
  .item4-exp,
  .item5-exp,
  .item6-exp,
  .item7-exp,
  .item8-exp,
  .item9-exp,
  .item10-exp,
  .item11-exp {
    order: 1;
    width: 50%;
  }

  /* Corrige el top en mobile para item1-exp y item7-exp */
  .item1-exp,
  .item7-exp {
    top: unset !important;
  }

  .item12-exp,
  .item13-exp,
  .item14-exp,
  .item15-exp,
  .item16-exp,
  .item17-exp,
  .item18-exp {
    order: 1;
    width: 50%;
  }


}
/* Modal expositor */
.profile-container-exp {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

/* .profile-image-exp {
  flex: 0 0 300px;
  margin-right: 20px;
} */

.profile-content-exp {
  flex: 1;
  padding-right: 20px;
}

h1 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #333;
}

p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.red-border-exp {
  position: relative;
  padding-right: 70px;
}

.red-border-exp::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 80px;
  background-color: #cc0000;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .red-border-exp {
    padding-right: 20px;
  }
  .red-border-exp::after {
    display: none;
  }
}


/* ==================== Multimedia ==================== */
#video-container {
    width: 80%;
    max-width: 800px;
    position: relative;
    margin: 0 auto;
  }

  .header-mult {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 20px;
}

.header-mult h1 {
  text-align: center;
    color: #ff3366;
    font-size: 25px;
    font-weight: 200 !important;
    letter-spacing: 2px;
    margin-bottom: 40px;
    margin-top: 120px;
    text-transform: uppercase;
}

  #video-player,
  #video-placeholder {
    width: 100%;
    height: auto;
    display: block;
  }

  #video-player {
    display: none;
    background: black;
  }

  #play-button {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5em;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    z-index: 2;
  }

  #video-controls {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  #video-container:hover #video-controls {
    opacity: 1;
  }

  #progress-bar {
    flex-grow: 1;
    margin: 0 10px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    position: relative;
  }

  #progress {
    height: 100%;
    width: 0;
    background-color: white;
  }

  #volume-controls {
    display: flex;
    align-items: center;
  }

  #volume-range {
    margin-left: 5px;
  }

  #volume-icon,
  #fullscreen-icon,
  #play-pause {
    margin: 0 5px;
    cursor: pointer;
    color: white;
  }

  i {
    font-size: 1.2em;
  }

