.promotion {
    width: 100%;
    height: 100vh;
    background: transparent !important;
}

.promotion-wrapper {
    width: 1200rem;
}

.p-text {
    width: 100%;
    text-align: center;
    margin-top: 30rem;
}

.p-text h6 {
    color: #fff;
    font-size: 30rem;
    font-weight: 600;
    text-align: left;
}

.p-text p {
    color: #ffffff97;
    font-size: 30rem;
    line-height: 1.5;
    font-weight: 500;
    text-align: right;
}

.p-logo {
    margin: 50rem 0;
}

.scrollDown {
    position: absolute;
    bottom: 40rem;
    width: 20px;
    animation: upDown 1.5s ease-in-out infinite;
}

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

.p-mobile {
    display: none;
}



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


@media (max-width: 768px) {
    .scrollDown {
        bottom: 140rem;
    }
    
    .p-logo {
        display: none;
    }

    .p-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .p-mobile {
        display: flex;
        color: #fff;
        font-size: 90rem;
        font-family: 'Montserrat';
        line-height: 1.1;
        text-align: center;
        margin: 30rem 0;
    }
    
    .p-text h6 {
        font-size: 24rem;
    }

    .p-text p {
        font-size: 20rem;
    }
}


@media (max-width: 550px) {
    .p-text h6 {
        font-size: 30rem;
    }

    .p-text p {
        font-size: 24rem;
    }
}