#page {
    height: 100vh;
    height: 100dvh;
    background: url(../images/info-bg.svg) no-repeat center / cover;
}

#fullpage {
    height: 100vh;
    height: 100dvh;
}

.nav-item  {
    color: #000;
}

.product-section .fp-tableCell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.product-section .product-section__content {
    --p-l: max(20px, calc((100% - var(--max-content-width)) / 2));
    padding-left: var(--p-l);
    padding-right: 20px;
}

.product-section:nth-of-type(even) .product-section__content {
    --p-l: max(20px, 50vw);
}

.product-section .product-section__content .title {
    --font-size-78: clamp(calc(50 * var(--rpx)), 4.0625vw, calc(78 * var(--rpx)));
    font-size: var(--font-size-78);
    font-weight: 600;
    line-height: 1.3;
    opacity: -1;
}

.product-section .product-section__content .title.animate {
    animation: fadeInUp 2s cubic-bezier(0.68, -0.55, 0.265, 1) both;
}

.product-section .product-section__content .desc {
    max-width: calc(640 * var(--rpx));
    width: 100%;
    font-size: var(--font-size-20);
    margin-top: calc(160 * var(--rpx));
    opacity: -1;
}

.product-section .product-section__content .desc.animate {
    animation: fadeInUp 2s cubic-bezier(0.68, -0.55, 0.265, 1) .4s both;
}

.product-section .product-section__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.product-section .product-section__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-section,
.footer-section .fp-tableCell {
    height: auto !important;
}

@keyframes fadeInUp {
    0% {
        opacity: -1;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 750px) {
    .product-section .fp-tableCell {
        justify-content: flex-start;
    }

    .product-section .product-section__content {
        padding: calc(180 * var(--rpx)) 20px 20px;
    }

    /* .product-section:nth-of-type(even) .product-section__content {
        --p-l: 20px;
    } */

    .product-section .product-section__content .desc {
        max-width: calc(640 * var(--rpx));
        width: 100%;
        font-size: var(--font-size-20);
        margin-top: calc(40 * var(--rpx));
        opacity: -1;
    }
}