/* Parallax Block Frontend Styles */


.parallax-block {
    padding-top: 20px;
    padding-bottom: 40%;
    position: relative;
    background-color: var(--color-black);
}

.parallax-block-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.parallax-block-gradient {
    background-image: linear-gradient(#0d0d0d, #0d0d0d00);
    height: 35%;
    position: absolute;
    inset: 0% 0% auto;
    z-index: 10;
}

.parallax-block-overline {
    margin-bottom: 80px;
    color: #F2EEE6;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    text-align: center;
    text-transform: uppercase;
}

.parallax-text {
    font-family: var(--font-primary);
    text-transform: uppercase;
    line-height: 90%;
    font-size: 60px;
    font-weight: 400;
    color: #F2EEE6;
    margin-bottom: 60px;
    text-align: center;
}

.parallax-block-bg {
    z-index: 1;
    width: 100%;
    height: 60%;
    position: absolute;
    inset: auto 0% 0%;
    overflow: hidden;
}

.parallax-block-bg .bg {
    width: 120%;
    max-width: none;
    height: 110%;
    object-fit: cover;
    object-position: 25% 85%;
    transform: translateX(-10%);
    will-change: transform, opacity;
}

.parallax-block-bg .logo {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    max-width: 300px;
    height: auto;
}

.parallax-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

@media (max-width: 1024px) {
    .parallax-block {
        min-height: 1700px;
    }

    .parallax-block-bg {
        height: 30%;
    }

    .parallax-block-bg .bg {
        height: 100%;
        object-position: center;
    }
}