.promotion {
    position: relative;
    width: 100%;
    height: 100vh !important;
    background-color: var(--main-color) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.p-26 {
    position: absolute;
    top: 22%; right: -2%;
    height: 50%;
    opacity: .08;
    z-index: 1;
}

.promotion-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.p-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.p-text h5 {
    color: #fff;
    font-size: 60rem;
}

.p-text h5 span {
    font-size: 40rem;
    font-weight: 300;
}

.p-text p {
    color: #ffffffbb;
    font-size: 26rem;
    font-weight: 500;
    line-height: 1.5;
}

.p-logo {
    width: 700rem;
    margin: 40rem 0;
}

.p-store-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15rem;
    margin-top: 30rem;
}

.p-storeBtn img {
    width: 190rem;
    margin-bottom: -4px;
}

.p-box-wrapper {
    width: 100%;
    display: flex;
    gap: 30rem;
    margin-top: 60rem;
    animation: slide 50s linear infinite;
}

@keyframes slide {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-200%, 0, 0);
    }
}

.p-box {
    padding: 45rem;
    border-radius: 30rem;
    background-color: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, .1);
}

.p-box-text {
    width: 300rem;
}

.p-box-text h5 {
    color: #333;
    font-size: 30rem;
    font-family: 'yg-jalnan';
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.p-box-text p {
    color: #888;
    font-size: 18rem;
    line-height: 1.6;
    margin-top: 10rem;
}

.p-box-image {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.p-box-image img {
    width: 85rem;
}

.p-store-m {
    display: none;
}


/*==================================================*/
@media (min-width: 2250px) {
    .p-box-wrapper {
        margin-top: 100rem;
    }
}


@media (max-width: 1650px) {
    .promotion {
        height: auto !important;
    }
}


@media (max-width: 1050px) {
    .p-box-wrapper {
        animation: slide 25s linear infinite;
    }
}


@media (max-width: 768px) {
    .p-text {
        width: 90%;
        margin-top: 40rem;
    }
    
    .p-text h5 {
        font-size: 50rem;
    }

    .p-text h5 span {
        font-size: 35rem;
    }

    .p-text p {
        width: 60%;
    }

    .p-logo {
        width: 80%;
    }
}


@media (max-width: 550px) {   
    @keyframes slide {
        0% {
            transform: translate3d(0, 0, 0);
        }
    
        100% {
            transform: translate3d(-500%, 0, 0);
        }
    }

    .p-store-wrapper {
        margin-top: 50rem;
        margin-bottom: 20rem;
    }
    
    .p-storeBtn img {
        width: 240rem;
    }

    .p-box-image {
        margin-top: -20rem;
    }
}