.promotion {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000 !important;
    overflow: hidden;
}

.promotion video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.promotion-wrapper {
    width: 1600rem;
    mix-blend-mode: difference;
    z-index: 10;
}

.p-text p {
    color: #fff;
    font-size: 60rem;
    font-family: 'Tenor Sans';
    text-align: center;
}


.scrollDown {
    position: absolute;
    bottom: 150rem;
    width: 40rem;
    animation: upDown 1.5s ease-in-out infinite;
    mix-blend-mode: difference;
    z-index: 2;
}

@keyframes upDown {
    0% {
        transform: translateY(-7px);
    }

    50% {
        transform: translateY(7px);
    }

    100% {
        transform: translateY(-7px);
    }
}


/*==================================================*/
@media (max-width: 1650px) {
    .promotion-wrapper {
        width: 90%;
    }
}


@media (max-width: 991px) {
    .scrollDown {
        bottom: 15%;
    }
}