/*
Theme Name: Proud Media Twenty-Six
Author: Rekurencja.com
Author URI: https://rekurencja.com
Description: Najnowsza wersja strony internetowej proudmedia.eu
Requires at least: 6.7
Tested up to: 6.9
Requires PHP: 8.2
Version: 0.0.1
License: All rights reserved
Text Domain: proudmediatwentysix
*/

@keyframes marquee-infinite-horizontal {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.animate-marquee-infinite {
    animation: marquee-infinite-horizontal 40s linear infinite;
    width: max-content;
}

.animate-marquee-infinite:hover {
    animation-play-state: paused;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.mask-gradient {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.gsap-partner-grid {
    opacity: 0;
    transform: translateY(30px);
}

.gsap-partner-grid.animate-in {
    animation: partner-grid-in 0.8s ease-out forwards;
}

@keyframes partner-grid-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wpcf7-response-output {
    display: none !important;
}

.wpcf7-not-valid-tip {
    display: none !important;
}

.wpcf7-form .wpcf7-not-valid {
    border-color: #ef4444 !important;
}