body {
  font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700; /* Para títulos más audaces */
}

.content.is-medium ul li {
    font-size: inherit; /* Esto hace que los <li> hereden el tamaño de fuente del contenedor .is-medium */
}


.main-content-container .full-width-image {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

.main-content-container .full-width-carousel {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}


/* Estilos para pantalla grande */
.title-overlay-large {
    color: white;
    font-size: 5rem;
    font-weight: bold;
    position: absolute;
    top: 50%;
    transform: translate(0%, -95%);
    z-index: 10;
}

.title-overlay-small {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translate(0%, -89%);
    z-index: 10;
}

/* Estilos para pantallas pequeñas (dispositivos móviles) */
@media (max-width: 768px) {
    .title-overlay-large {
        font-size: 3rem; /* Tamaño de fuente más pequeño */
        transform: translate(-0%, -98%); /* Ajustar la posición */
    }

    .title-overlay-small {
        font-size: 1.5rem; /* Tamaño de fuente más pequeño */
        transform: translate(-0%, -92%); /* Ajustar la posición */
    }
}











.slider-navigation-previous,
.slider-navigation-next {
    display: none !important;
}

.custom-title {
    font-size: 5rem; /* Ajusta el tamaño según tus necesidades */
    font-weight: bold; /* Para un texto más grueso */
}

.custom-title-small {
    font-size: 2.2rem; /* Ajusta el tamaño según tus necesidades */
    font-weight: bold; /* Para un texto más grueso */
}

@media (max-width: 768px) {
  .custom-title {
    font-size: 2.3rem; /* Tamaño más pequeño para dispositivos móviles */
  }
  .custom-title-small {
    font-size: 1.5rem; /* Tamaño más pequeño para dispositivos móviles */
  }
  h1 {
    font-size: 2rem; /* Tamaño más pequeño para dispositivos móviles */
  }
}

:target {
    scroll-margin-top: 30px;  /* Ajusta este valor según lo necesites */
}

/* Estilo personalizado para los logos */
        .custom-logo {
            max-height: 128px;  /* Establece el alto máximo */
            width: 512px;
            object-fit: contain;  /* Mantiene las proporciones de la imagen */
            display: block;  /* Elimina espacio extra alrededor de la imagen */
        }
        /* Estilo para centrar y alinear horizontalmente los logos */
        .logos-container {
            display: flex;
            flex-direction: row;  /* Alinea los elementos horizontalmente */
            justify-content: center;
            flex-wrap: wrap;
        }
        .logo-column {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;  /* Agrega un pequeño espacio entre los logos */
        }


    .gallery a {
        position: relative;
        display: inline-block;
        margin: 5px;
    }

    .tag-label {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.6);
        color: white;
        text-align: center;
        padding: 5px;
    }




   .fade-out {
        position: relative;
    }

    .fade-out-effect {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4.0em; /* Ajusta este valor si es necesario */
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    }