.promotion {
    position: relative;
    width: 100%;
    height: 100vh !important;
    background-color: #000 !important;
    overflow: hidden;
}

.promotion-wrapper {
    width: 75%;
    z-index: 10;
}

.p-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 4rem;
    margin-left: 30px;
}

.p-1 {
    margin-left: 5%;
    margin-bottom: -3%;
}

.p-t-bottom {
    width: 100%;
    display: flex;
    align-items: flex-end;
}

.p-2 {
    width: 50%;
}

.p-3 {
    width: 45%;
}

.scrollDown {
    position: absolute;
    bottom: 40px;
    width: 20px;
    -webkit-animation: upDown 1.5s ease-in-out infinite;
    animation: upDown 1.5s ease-in-out infinite;
    z-index: 10;
}

@keyframes upDown {
	0% {
		transform:  translateY(-7px);
	}
	50% {
		transform: translateY(7px);
	}
	100% {
		transform:  translateY(-7px);
	}
}

.video {
    position: relative;
    position: absolute;
    width: 100%;
    z-index: 9;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 105%;
    height: 105%;
    background-color: rgba(0, 0, 0, .3);
    z-index: 10;
}

.video-overlay2 {
    position: absolute;
    bottom: 0; left: -1px;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, #000 0%, transparent 80%, transparent 100%);
    z-index: 10;
}


/*==================================================*/
@media (min-width: 2250px) {
    .promotion-wrapper {
        width: fit-content;
    }

    .p-text {
        margin-left: 60px;
    }
    
    .p-1 {
        margin-bottom: -6%;
    }
    
    .p-2 {
        width: 45%;
    }
}


@media (min-width: 2350px) {
    .video video {
        width: 100%;
        height: 100%;
    }
}


@media (max-width: 1919px) {
    .promotion-wrapper {
        width: 90%;
    }
    
    .p-1 {
        width: 50%;
        margin-bottom: -4%;
    }
    
    .p-t-bottom {
        margin-left: 0;
    }
    
    .p-2 {
        width: 45%;
        margin-left: 50px;
    }
}


@media (max-width: 1450px) {
    .promotion {
        height: auto !important;
        padding-bottom: 30% !important;
    }

    .promotion-wrapper {
        width: 100%;
    }

    .video video {
        width: 100%;
    }
    
    .p-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        margin-left: 0;
    }

    .p-1 {
        margin: 0;
    }
    
    .p-t-bottom {
        flex-direction: column;
        align-items: center;
    }

    .p-2 {
        width: 70%;
        margin-left: 0;
        margin-right: 7%;
    }

    .p-3 {
        width: 70%;
        margin-top: -8%;
    }
    
    .video-overlay2 {
        height: 150px;
    }
}


@media (max-width: 550px) {
    .p-1 {
        width: 75%;
    }
    
    .p-2,
    .p-3 {
        width: 85%;
    }
}