body {
    font-family: sans-serif;
    background: url(../images/background.jpg) no-repeat center center fixed;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #ffffffcf;
    margin: 20px auto;
    padding: 0;

    margin-top:130px;
}

.language-selector {
    background-color: #000000de;
    margin: 0 auto;
    /* margin-left: 40%; */
    border: 1px solid #ff1b1b;
    border-radius: 4px;
    padding: 5px;
    font-size: 16px;
    /* margin-left: 39%; */
    color: #ffffff;
    cursor: pointer;
    width: 100%;
}

.language-selector:focus {
    outline: none;
    border-color: #007BFF;
}
        
.logo {
    height: 50px; /* Ajusta esta altura según tus necesidades */
    width: auto; /* Mantén el ancho proporcional */
    max-width: 200px; /* Establece un ancho máximo si es necesario */
    margin-right: 20px;
}

.transparent-header {
    background-color: rgb(0 0 0 / 50%);
    color: #ffffff;
    padding: 20px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #ff1b1b;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-container h1 {
    margin: 0;
    font-size: 24px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #ececec;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffffff;
}

.container {
    /* padding-top: 60px;   Ajusta según la altura del header */
    text-align: center;
    margin: 5%;
}

.timeline {
    position: relative;
    margin: 0 auto;
    padding: 40px 0;
    list-style: none;
    text-align: left;
    /* Awidth: 50%;*/
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ff1b1b;
    left: 50%;
    height: 730px;

}

.timeline-item {
    position: relative;
    margin: 0;
    padding: 20px 0;
}

.timeline-item:nth-child(even) .timeline-content {
    float: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    float: left;
}

.timeline-item:nth-child(even) .triangle {
    border-left: 0;
    border-right: 50px solid transparent;
}

.timeline-item:nth-child(odd) .triangle {
    border-right: 0;
    border-left: 50px solid transparent;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 20px;
    background: rgb(0 0 0 / 41%);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgb(255 0 0 / 58%);
    margin-bottom: 10%;
    transition: transform 0.3s;
}

.timeline-content:hover {
    transform: scale(1.1);
}

.timeline-content .triangle {
    width: 0;
    height: 0;
    border-top: 50px solid #ff1b1b;
    margin-bottom: 10px;
}

.transparent-footer {
padding: 5px 0px 0px 0px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.5);
    /* position: fixed; */
    bottom: 0;
    /* height: 90px; */
    width: 100%;
    margin: 0 auto;
}

.footer-container{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.video-demo {
    width: 100%;
    border-radius: 10px;
    /* height: 346px; */
    margin: 0 auto;
    justify-content: center;
    display: inline-table;
}

video {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}
 /* 
.cta{
    width: 100%;
    height: 120px;
    margin: 0px 0px 0px 0px;
    padding: 6px 0;
}*/