/* KONTEJNER */
.flying-texts-bcg {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.flying-texts-bcg > .fusion-column-wrapper {
    position: relative;
    min-height: 420px;
}

/* V�ECHNY TEXTY */
.flying-texts-bcg > .fusion-column-wrapper > .fusion-text {
    position: absolute;
    margin: 0 !important;
    pointer-events: none;
    opacity: 0;
    white-space: nowrap;
    z-index: 1;
    will-change: transform, opacity;
}

.flying-texts-bcg > .fusion-column-wrapper > .fusion-text p {
    margin: 0;
}

/* ------------------------------------------
   ANIMACE
   bez deformace textu, jen scale()
   p�ev�n� horizont�ln� pohyb
------------------------------------------ */

/* zleva doprava */
@keyframes fly-lr-clean {
    0% {
        opacity: 0;
        transform: translate3d(-260px, 6px, 0) scale(0.82);
    }
    8% {
        opacity: 0.08;
        transform: translate3d(-140px, 3px, 0) scale(0.9);
    }
    16% {
        opacity: 0.2;
        transform: translate3d(0, 0, 0) scale(0.98);
    }
    24% {
        opacity: 0.08;
        transform: translate3d(140px, -2px, 0) scale(1.06);
    }
    30% {
        opacity: 0;
        transform: translate3d(260px, -3px, 0) scale(1.12);
    }
    100% {
        opacity: 0;
        transform: translate3d(260px, -3px, 0) scale(1.12);
    }
}

/* zprava doleva */
@keyframes fly-rl-clean {
    0% {
        opacity: 0;
        transform: translate3d(260px, 6px, 0) scale(0.82);
    }
    8% {
        opacity: 0.08;
        transform: translate3d(140px, 3px, 0) scale(0.9);
    }
    16% {
        opacity: 0.2;
        transform: translate3d(0, 0, 0) scale(0.98);
    }
    24% {
        opacity: 0.08;
        transform: translate3d(-140px, -2px, 0) scale(1.06);
    }
    30% {
        opacity: 0;
        transform: translate3d(-260px, -3px, 0) scale(1.12);
    }
    100% {
        opacity: 0;
        transform: translate3d(-260px, -3px, 0) scale(1.12);
    }
}

/* jemn�j�� zleva doprava */
@keyframes fly-lr-soft-clean {
    0% {
        opacity: 0;
        transform: translate3d(-180px, 4px, 0) scale(0.88);
    }
    8% {
        opacity: 0.07;
        transform: translate3d(-90px, 2px, 0) scale(0.94);
    }
    16% {
        opacity: 0.16;
        transform: translate3d(0, 0, 0) scale(1);
    }
    24% {
        opacity: 0.07;
        transform: translate3d(90px, -1px, 0) scale(1.06);
    }
    30% {
        opacity: 0;
        transform: translate3d(180px, -2px, 0) scale(1.1);
    }
    100% {
        opacity: 0;
        transform: translate3d(180px, -2px, 0) scale(1.1);
    }
}

/* jemn�j�� zprava doleva */
@keyframes fly-rl-soft-clean {
    0% {
        opacity: 0;
        transform: translate3d(180px, 4px, 0) scale(0.88);
    }
    8% {
        opacity: 0.07;
        transform: translate3d(90px, 2px, 0) scale(0.94);
    }
    16% {
        opacity: 0.16;
        transform: translate3d(0, 0, 0) scale(1);
    }
    24% {
        opacity: 0.07;
        transform: translate3d(-90px, -1px, 0) scale(1.06);
    }
    30% {
        opacity: 0;
        transform: translate3d(-180px, -2px, 0) scale(1.1);
    }
    100% {
        opacity: 0;
        transform: translate3d(-180px, -2px, 0) scale(1.1);
    }
}

/* ------------------------------------------
   POZICE + �ASOV�N�
   6 text� = cyklus 24 s
   ka�d� text m� slot 4 s
   viditeln� je jen kr�tce
------------------------------------------ */

.flying-texts-bcg > .fusion-column-wrapper > .fusion-text:nth-of-type(1) {
    top: 24px;
    left: 3%;
    animation: fly-lr-clean 24s linear infinite;
    animation-delay: 0s;
}

.flying-texts-bcg > .fusion-column-wrapper > .fusion-text:nth-of-type(2) {
    top: 44px;
    right: 4%;
    animation: fly-rl-clean 24s linear infinite;
    animation-delay: 4s;
}

.flying-texts-bcg > .fusion-column-wrapper > .fusion-text:nth-of-type(3) {
    top: 190px;
    left: 8%;
    animation: fly-lr-soft-clean 24s linear infinite;
    animation-delay: 8s;
}

.flying-texts-bcg > .fusion-column-wrapper > .fusion-text:nth-of-type(4) {
    bottom: 88px;
    right: 9%;
    animation: fly-rl-soft-clean 24s linear infinite;
    animation-delay: 12s;
}

.flying-texts-bcg > .fusion-column-wrapper > .fusion-text:nth-of-type(5) {
    bottom: 16px;
    left: 6%;
    animation: fly-lr-clean 24s linear infinite;
    animation-delay: 16s;
}

.flying-texts-bcg > .fusion-column-wrapper > .fusion-text:nth-of-type(6) {
    top: 150px;
    left: 31%;
    animation: fly-rl-clean 24s linear infinite;
    animation-delay: 20s;
}

/* TABLET */
@media (max-width: 1024px) {
    .flying-texts-bcg,
    .flying-texts-bcg > .fusion-column-wrapper {
        min-height: 300px;
    }

    .flying-texts-bcg > .fusion-column-wrapper > .fusion-text:nth-of-type(1) { top: 16px; left: 3%; }
    .flying-texts-bcg > .fusion-column-wrapper > .fusion-text:nth-of-type(2) { top: 36px; right: 4%; }
    .flying-texts-bcg > .fusion-column-wrapper > .fusion-text:nth-of-type(3) { top: 128px; left: 7%; }
    .flying-texts-bcg > .fusion-column-wrapper > .fusion-text:nth-of-type(4) { bottom: 62px; right: 7%; }
    .flying-texts-bcg > .fusion-column-wrapper > .fusion-text:nth-of-type(5) { bottom: 10px; left: 5%; }
    .flying-texts-bcg > .fusion-column-wrapper > .fusion-text:nth-of-type(6) { top: 108px; left: 24%; }
}

/* MOBIL */
@media (max-width: 767px) {
    .flying-texts-bcg,
    .flying-texts-bcg > .fusion-column-wrapper {
        min-height: 220px;
    }

    .flying-texts-bcg > .fusion-column-wrapper > .fusion-text:nth-of-type(1) { top: 8px; left: 4%; }
    .flying-texts-bcg > .fusion-column-wrapper > .fusion-text:nth-of-type(2) { top: 32px; right: 4%; }
    .flying-texts-bcg > .fusion-column-wrapper > .fusion-text:nth-of-type(3) { top: 92px; left: 6%; }
    .flying-texts-bcg > .fusion-column-wrapper > .fusion-text:nth-of-type(4) { bottom: 44px; right: 6%; }
    .flying-texts-bcg > .fusion-column-wrapper > .fusion-text:nth-of-type(5) { bottom: 8px; left: 4%; }
    .flying-texts-bcg > .fusion-column-wrapper > .fusion-text:nth-of-type(6) { top: 108px; left: 18%; }
}