
/* ------------------------------- */

:root {
    --primary-color: #202020;
    --primary-hover-color: #338bdb;
    --secondary-color: #ffffff;
    --secondary-light-color: #7a7a7a;
    --background-color: #ebf0f3;
    --border-color: #d9d9d9;
    --breadcrumb-image: url(images/breadcrumb_img-1920x400.png);
    --loader-image: url(images/ajax_loader.gif)
}


    .contact-info {
text-align: right;
}


.video-block {
    width: 100%;
    max-width: 350px; /* Ancho máximo ajustable según tus necesidades */
    margin: 20px auto;
    overflow: hidden;
    position: relative;
}
.video-frame {
    width: 100%;
    height: auto; /* Altura automática para ajustarse al video */
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Asegura que el video ocupe toda la altura de la ventana */
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    background-color: #f0f0f0;
    padding: 10px 20px;
    text-decoration: none;
    color: #000;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e0e0e0;
}


