body, #intro-screen {
    background-image: url('../images/bg2.jpg');
    background-blend-mode: luminosity;
    background-size: 420px auto;
    background-color: #fdfffb !important;
}
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.container {
    max
}
.slide-up-fade { 
    transform: translateY(-100vh); 
    opacity: 0; 
    transition: all 1.2s cubic-bezier(0.65, 0, 0.35, 1); 
}
.border-dotted {
    border-radius: 1rem;
}
.count-change {
    animation: pulseNumber .3s ease;
}
.container-fluid {
    margin: 0 auto;
    width: 100%;
    max-width: 1540px;
    position: relative;
    height: 100%;
}
.container-fluid- {
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
    position: relative;
    height: 100%;
}
.bg-hero-right-top {
    position: absolute;
    top: -70px;
    right: -50px;
    width: 380px;
    z-index: 0;
    mix-blend-mode: darken;
}
.bg-hero-left-top {
    position: absolute;
    top: 30px;
    left: -3%;
    width: 25%;
    z-index: 0;
    mix-blend-mode: darken;
    transform: rotate(184deg);
}
.bg-hero-right-bottom {
    position: absolute;
    bottom: -70px;
    right: -40px;
    width: 25%;
    z-index: 0;
    mix-blend-mode: darken;
    transform: rotate(-10deg);
}
.bg-hero-left-bottom {
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 390px;
    z-index: 0;
    mix-blend-mode: darken;
    transform: rotate(184deg);
}
.bg-cta-left {
    position: absolute;
    bottom: 0;
    left: 130px;
    width: 280px;
    z-index: 0;
    mix-blend-mode: darken;
    transform: rotate(139deg);
    top: 0;
}
.bg-cta-right {
    position: absolute;
    bottom: 0;
    right: 130px;
    width: 290px;
    z-index: 0;
    mix-blend-mode: darken;
    transform: rotate(382deg);
}
@media(max-width: 768px) {
    .bg-hero-right-top {
        opacity: .4;
        top: 50%;
        right: 50%;
        width: 300px;
        margin-right: -150px;
        margin-top: -250px;
    }
    .bg-hero-right-bottom {
        width: 45%;
        bottom: 0;
        right: -20%;
    }
    .bg-hero-left-top {
        width: 40%;
        bottom: -60px;
        top: auto;
    }
    .bg-hero-left-bottom {
        opacity: .3;
        transform: none;
    }
    #welcome {
        min-height: auto;
        padding-top: 6.5rem;
    }
}

@keyframes pulseNumber {
    0% {
        opacity: .5;
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.gallery-track {
    display: flex;
    width: max-content;
    animation: gallery-scroll 120s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes gallery-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}