@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.medibyx-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.medibyx-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.mbx-fa-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mbx-noise-overlay {
    background-image: url('../img/noise.svg');
}

.mbx-fa-icon.w-3,
.mbx-fa-icon.h-3,
.mbx-fa-icon.w-3\.5,
.mbx-fa-icon.h-3\.5 {
    font-size: 0.875rem;
}

.mbx-fa-icon.w-4,
.mbx-fa-icon.h-4,
.mbx-fa-icon.w-\[16px\],
.mbx-fa-icon.h-\[16px\] {
    font-size: 1rem;
}

.mbx-fa-icon.w-5,
.mbx-fa-icon.h-5,
.mbx-fa-icon.w-5\.5,
.mbx-fa-icon.h-5\.5 {
    font-size: 1.25rem;
}

.mbx-fa-icon.w-6,
.mbx-fa-icon.h-6,
.mbx-fa-icon.w-7,
.mbx-fa-icon.h-7 {
    font-size: 1.5rem;
}

.mbx-fa-icon.w-8,
.mbx-fa-icon.h-8,
.mbx-fa-icon.w-10,
.mbx-fa-icon.h-10,
.mbx-fa-icon.w-12,
.mbx-fa-icon.h-12 {
    font-size: 2rem;
}

@media (prefers-reduced-motion: reduce) {
    .medibyx-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
