/* define font */
@font-face {
    font-family: "AlbertSansVariable";
    src: url("./fonts/AlbertSans-VariableFont_wght.ttf") format("truetype");
}

body {
    font-family: "AlbertSansVariable", "Roboto", sans-serif !important;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    z-index: 1;
}

.text-container h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.text-container p {
    font-size: 1.5rem;
}

.h-50 {
    height: 50%;
}

.h-33 {
    height: 33%;
}

.h-25 {
    height: 25%;
}

.h-35 {
    height: 35%;
}


.w-33 {
    width: 33%;
}

.w-30 {
    width: 30%;
}

.w-40 {
    width: 40%;
}

#text_derecha {
    margin-right: 110px;
    font-weight: 500;
    font-size: 20px;
}

#text_izquierda {
    margin-left: 110px;
}

.fw-300 {
    font-weight: 300;
}

.fw-500 {
    font-weight: 500;
}

#bloque_desktop {
    display: none;
}

#bloque_mobile {
    display: block;
    background-image: url('../assets/img/fondo_celu.jpg'); /* Cambia esta ruta a la de tu imagen */
    background-size: cover; /* Asegura que la imagen cubra todo el fondo */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */   
}

@media only screen and (min-width: 500px) {
    #bloque_desktop {
        display: block;
    }

    #bloque_mobile {
        display: none;
    }
}

.btn-getstarted2,
.btn-getstarted2:focus {
  color: #ffffff;
  background: #8c7f4a;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 12px 25px;
  margin: 0 0 0 0px;
  border-radius: 50px;
  transition: 0.3s;
  text-decoration: none;
}

.btn-getstarted2:hover,
.btn-getstarted2:focus:hover {
  color: d48c3a;
  background: transparent;
  border: 1px solid #8c7f4a;

}


.video-container-mobile {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

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