* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'DM Sans', sans-serif;
}

h1{
    color: #3a80e9;
}

.contenedor-video {
    position: relative;
    height: 100vh;
    display: flex;
}

@media only screen and (max-width:767px){
    .contenedor-video {
        height: 140vh;
    }

    .contenido{
        width: 100%!important;
    }

    .contenido:before{
        display: none;
    }
}


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

.contenido {
    position: relative;
    padding-top: 30%;
    padding-left: 10%;
    padding-right: 10%;
    color: white;
    z-index: 1;
    width: 70%;
    background-color: #00356fd0;
    padding-top: 20%;
    z-index: 2;

}

.contenido::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit; /* O el color que prefieras */
    z-index: -1;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}

.contenido a{
    color: inherit!important;
}

.contenido h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.contenido p {
    font-size: 20px;
    margin-bottom: 20px;
}

.boton-contacto, .boton-privacidad {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.boton-contacto:hover, .boton-privacidad:hover {
    background-color: #333;
}

.footer {
    background-color: #3980e9;
    color: white;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9;
}

.footer-links a{
    padding-right: 50px;
    color: white;
    text-decoration: none;
}

@media only screen and (max-width: 767px){
    .footer-links a{
        display: flex;

    }

    .footer-links a{
        padding-bottom: 10px;
    }
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-button {
    background-color: #007bff; 
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-button:hover {
    background-color: #005
}


.legal{
    padding-bottom: 10rem!Important;
}