.content {
    color: rgb(255, 255, 255);
    list-style: none;
    padding:3%;
    clear: both;
}   
.list-item {
    width: 100%;
    position: relative;
    margin: 2vh;
    padding: 2vh;
    cursor: pointer;
    border: 1px solid #141414;
    border-radius: 10px;
}
.list-item:hover{
    background-color: #ff9412;
    color: #000000;
    opacity: 0.9;
    border-radius: 10px;
}
.hidden-content {
    display: none;
    position: absolute;
    left: 100%; /* Posicionar al lado derecho del elemento de la lista */
    top: 0;
    width: 160%;
    padding: 2vh;
    border-radius: 10px;
    margin-left: 2vh;
    background-color: #141414;
    color: #fff;
    border: 1px solid #282828;
    z-index: 10; /* Asegurarse de que esté por encima de otros contenidos */
}

/*
.cuentas{
    display: flex;
    justify-content:flex-start;
    align-items:flex-start;
    margin-top: 4vh;
}
.cuentas2{
    display: flex;
    justify-content:center;
    align-items:center;
    margin-top: 4vh;
    margin-left: 4vh;
}
.cuentas img{
    width: 80%;
    margin-top: -3vh;
}
.img_pagos{
    width: 100%;
}
*/
.cuentas{
  display: flex;
  justify-content: center; /* Centrar horizontalmente */
  align-items: center; /* Centrar verticalmente */
  flex-wrap: wrap; /* Permitir que las imágenes se envuelvan a la siguiente línea si es necesario */
  
}
.cuentas img{
    width: 50%;
}
.imagenes_capacitacion{
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dos columnas de igual tamaño */
    gap: 0.5vh; /* Espacio entre las imágenes */
    font-family: "Roboto", sans-serif;
        font-weight: 300;
        font-style: normal;
}
/*.imagenes_capacitacion img{
    width: 48%;  Cada imagen ocupará el 50% del contenedor 
    box-sizing: border-box;
    margin: 0.3vh;
}*/
.show-content {
    display: block;
}
.button_list{
    display: flex;
    align-items: center;
    justify-content: center;

}
.button_list a{
    display: inline-block;
    width: 100%;
    margin: 2vh;
}
.button_list button{
    background-color: #141414;
    color: #fff;
    border: 1px solid #282828;
    border-radius: 6px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 2vh;
    width: 100%;
}
.button_list button:hover{
    background-color:#ff9412;
    color: #000000;
}
.hidden-content {
    display: none; /* Ocultar el contenido por defecto */
}

.image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.image-container img {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease; /* Transición suave para el cambio de opacidad */
}
.image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:#141414f5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    text-align: center;
    padding: 2.5vh;
}
.image-container:hover .imagen {
    opacity: 0.1;
}
.image-container:hover .overlay {
    opacity: 1;
}

.image {
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}
