.no-scroll {
    overflow: hidden;
}

div#blb-intro-motion-container {
    width: calc(100% + (2*var(--fluid-10)));
    margin-left: calc(-1 * var(--fluid-10));
    position: relative;
    background: #050c1a;
}

div#blb-intro-motion-container.animation-started {
    cursor:pointer;
}

.blb-intro-motion {
    position: relative;
    width: 100%;
    height: 100dvh;
}


.blb-intro-motion-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blb-intro-motion-video-container {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100dvh;
    z-index: 1;
}

.blb-intro-motion-video-container video {
    width: 100%;
    object-fit: cover;
    height: 100%;
    object-position: center;
}

.scrollbar-track.scrollbar-track-x, .scrollbar-thumb.scrollbar-thumb-x, .scrollbar-track.scrollbar-track-y {
    display: none!important;
}

/* Hide scrollbar for IE, Edge and Firefox */
#blb-intro-smooth-scrollzone,
.scroll-content {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    z-index: 3;
}

.blb-intro-motion-items-container {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    z-index: 3;
    color: #FFFFFF;
    font-size: var(--fluid-25);
}

.blb-intro-motion-item {
    transform: translateX(0) translateY(0) translateZ(0) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    position: absolute;
    left: 0;
    top: 0;
}

.blb-intro-motion-item img {
    width:auto;
    max-width:none;
}

div#tsparticles {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 110vh;
    z-index: 2;
}



/* TEXT */

.blb-intro-motion-item.centered-text {
    left: 0;
    top: auto;
    bottom: 10%;
    width: 100%;
    text-align: center;
}

.blb-intro-motion-item span.letter {
    display: inline-block;
    opacity: 0;
}

.blb-intro-motion-item div.word {
    display: inline-block;
}

.blb-intro-motion-item strong {
    display: inline;
}


.safari .blb-intro-motion-item br {
    display: none;
}



.blb-intro-motion-cta-start {
    cursor: pointer;
    position: absolute;
    left: calc(50% - 5rem);
    bottom: calc(16% - 2rem);
    font-size: var(--fs-10);
    height: 4rem;
    width: 10rem;
    text-align: center;
    z-index: 999999;
    padding: var(--fluid-10) var(--fluid-20) var(--fluid-10) var(--fluid-20);
    border-radius: 5px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-direction: column;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity:1;
}

div#blb-intro-motion-container.not-loaded .blb-intro-motion-cta-start {
    opacity:0;
    pointer-events:none;
}

.blb-intro-motion-cta-pass {
    cursor: pointer;
    position: absolute;
    right: 0;
    bottom: calc(5% - 40px);
    width: 7rem;
    height: 40px;
    z-index: 999999;
    border-radius: 5px;
    font-size: var(--fs-10);
    text-transform: uppercase;
    color: #587187;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity:1;
}

.blb-intro-motion-cta-pass:hover {
    text-decoration: underline;
}
div#blb-intro-motion-container.animation-started .blb-intro-motion-cta-start {
    opacity:0;
    pointer-events:none;
}

div#blb-intro-motion-container.animation-started .blb-intro-motion-cta-mobile-start {
    opacity:0;
    pointer-events:none;
}

div#blb-intro-motion-container .blb-intro-motion-cta-play-again {
    position: absolute;
    left: calc(50% - 8rem);
    bottom: 1rem;
    font-size: var(--fs-10);
    height: 40px;
    width: 16rem;
    text-align: center;
    z-index: 999999;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-direction: column;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity:0;
    pointer-events:none;
}

div#blb-intro-motion-container.animation-paused:not(.animation-finished) .blb-intro-motion-cta-play-again {
    opacity:1;
    pointer-events:all;
}

div#blb-intro-motion-container.animation-started .blb-intro-motion-cta-pass {
    bottom: 1rem;
}

.blb-intro-motion-cta-restart {
    cursor: pointer;
    position: absolute;
    right: calc(50% - 6rem);
    bottom: calc(10% - 40px);
    width: 12rem;
    height: 40px;
    z-index: 999999;
    border-radius: 5px;
    font-size: var(--fs-12);
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity:0;
    pointer-events:none;
}

div#blb-intro-motion-container.animation-finished .blb-intro-motion-cta-restart {
    opacity:1;
    pointer-events:all;
}

/* ------------------- MOUSE SCROLL ANIMATION ------------------- */

.mouse_scroll {
    display: block;
    margin: 0 auto;
    width: 24px;
    height: 100px;
}


.m_scroll_arrows
{
    display: block;
    width: 5px;
    height: 5px;
    -ms-transform: rotate(45deg); /* IE 9 */
    -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
    transform: rotate(45deg);

    border-right: 2px solid white;
    border-bottom: 2px solid white;
    margin: 0 0 3px 4px;

    width: 16px;
    height: 16px;
}


.unu
{
    margin-top: 1px;
}

.unu, .doi, .trei
{
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
    animation: mouse-scroll 1s infinite;

}

.unu
{
    -webkit-animation-delay: .1s;
    -moz-animation-delay: .1s;
    -webkit-animation-direction: alternate;

    animation-direction: alternate;
    animation-delay: alternate;
}

.doi
{
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    -webkit-animation-direction: alternate;

    animation-delay: .2s;
    animation-direction: alternate;

    margin-top: -6px;
}

.trei
{
    -webkit-animation-delay: .3s;
    -moz-animation-delay: .3s;
    -webkit-animation-direction: alternate;

    animation-delay: .3s;
    animation-direction: alternate;


    margin-top: -6px;
}

.mouse {
    height: 42px;
    width: 24px;
    border-radius: 14px;
    transform: none;
    border: 2px solid white;
    top: 170px;
}

.wheel {
    height: 5px;
    width: 2px;
    display: block;
    margin: 5px auto;
    background: white;
    position: relative;

    height: 4px;
    width: 4px;
    border: 2px solid #fff;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.wheel {
    -webkit-animation: mouse-wheel 0.6s linear infinite;
    -moz-animation: mouse-wheel 0.6s linear infinite;
    animation: mouse-wheel 0.6s linear infinite;
}

@-webkit-keyframes mouse-wheel{
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(6px);
        -ms-transform: translateY(6px);
        transform: translateY(6px);
    }
}
@-moz-keyframes mouse-wheel {
    0% { top: 1px; }
    25% { top: 2px; }
    50% { top: 3px;}
    75% { top: 2px;}
    100% { top: 1px;}
}
@-o-keyframes mouse-wheel {

    0% { top: 1px; }
    25% { top: 2px; }
    50% { top: 3px;}
    75% { top: 2px;}
    100% { top: 1px;}
}
@keyframes mouse-wheel {

    0% { top: 1px; }
    25% { top: 2px; }
    50% { top: 3px;}
    75% { top: 2px;}
    100% { top: 1px;}
}

@-webkit-keyframes mouse-scroll {

    0%   { opacity: 0;}
    50%  { opacity: .5;}
    100% { opacity: 1;}
}
@-moz-keyframes mouse-scroll {

    0%   { opacity: 0; }
    50%  { opacity: .5; }
    100% { opacity: 1; }
}
@-o-keyframes mouse-scroll {

    0%   { opacity: 0; }
    50%  { opacity: .5; }
    100% { opacity: 1; }
}
@keyframes mouse-scroll {

    0%   { opacity: 0; }
    50%  { opacity: .5; }
    100% { opacity: 1; }
}

.blb-intro-motion-cta-mobile-start {
    display: none;
    cursor: pointer;
    position: absolute;
    left: calc(50% - 5rem);
    bottom: 5rem;
    font-size: var(--fs-14);
    height: 2rem;
    width: 10rem;
    text-align: center;
    z-index: 999999;
    padding: var(--fluid-10) var(--fluid-20) var(--fluid-10) var(--fluid-20);
    border-radius: 5px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 500;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-direction: column;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity:1;
}

@media (max-width: 768px) {
    .blb-intro-motion-cta-mobile-start {
        display: flex;
    }

    .blb-intro-motion-cta-start {
        display: none;
    }

    .blb-intro-motion-cta-pass {
        bottom: 1.5rem;
        font-size: var(--fs-14);
    }

    div#blb-intro-motion-container.animation-started .blb-intro-motion-cta-pass {
        bottom: 1rem;
    }

    .blb-intro-motion-item br {
        display: none!important;
    }

    .blb-intro-motion-item {
        padding-left:5%;
        padding-right:5%;
    }
}

@media (max-width:500px)
{
    .blb-intro-motion-items-container {
        font-size: var(--fluid-20);
    }
    div#blb-intro-motion-container .blb-intro-motion-cta-play-again {
        left: 0;
    }
}

@media (max-width:350px)
{
    .blb-intro-motion-items-container {
        font-size: var(--fluid-18);
    }
}