/*
Theme Name: GLH  2025 (Hello Child)
Description: GLH 2025 WordPress theme
Author: La Refactoría
Author URI: https://larefactoria.com
Template: hello-elementor
Version: 1.0.0
Text Domain: glh-theme
*/

.logo-carousel {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

@keyframes scroll-left {
    0% {
    transform: translateX(0%);
    }
    100% {
    transform: translateX(-50%);
    }
}

.logo-carousel__content {
    display: flex;
    width: max-content;
    animation: scroll-left var(--scroll-speed, 30s) linear infinite;
}

.logo-carousel__content:hover {
    animation-play-state: paused;
}

.logo-carousel__item {
    flex-shrink: 0;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 150px;
}

@media (max-width: 768px) {
    .logo-carousel__item {
    height: 60px;
    width: 110px;
    margin: 0 1.5rem;
    }
}

.logo-carousel__item-image {
    max-height: 100%;
    width: 100%;
    object-fit: contain;
    transition: all 0.1s linear;
}

.logo-carousel__item-image:hover {
    opacity: 0.75;
}

.logo-carousel__item-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

.logo-carousel__message{
    color: #ffffff;
    text-align: center;
    padding: 0 1rem;
}