/* =============================
INDEX / HOME
============================= */
/* Fondo + estructura general del body */
/* body.home-bg {
    background: url("https://casamarcartagena.co/img/index-bg-image.svg") no-repeat center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
} */


/* Wrapper del video */
#row_wrapper_video {
    position: relative;
    height: 100%;
    margin-bottom: 5rem;
}

/* Contenedor del video */
#home-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    z-index: -2;
    overflow: hidden;
}

/* Ambos videos */
#home-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Contenido de la página */
.page-content {
    position: relative;
    z-index: 2;
}


#index {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 3rem;
}

/* CONTENIDO */
#contenido {
    display: flex;
    margin-bottom: 40px;
    width: 709px;
    max-height: 240px;
    font-size: 28px;
}

#contenido-index {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 26px;
}

/* BOTONES */
#wrapper-botones {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

#wrapper-botones button {
    width: 250px !important;
    height: 50px !important;
}

.wrapper-botones-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.wrapper-botones-item-texto {
    font-size: 12px;
    line-height: 16px;
    text-align: center;
}

@media (max-width:992px) {
      
    .texto-contenido {
        width: 680px !important;
    }

    #wrapper-botones {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width:600px) {
    #contenido-index {
        transform: translateY(-5rem);
    }

    .texto-contenido {
        width: 380px;
        font-size: 20px;
        text-align: center;
        line-height: 28px;
    }
}