.article.promotion {
    position: relative;
    background: url(../images/hero.jpg);
    background-position: left !important;
}

.promotion-wrapper {
    width: 1000px;
}

.profile {
    position: absolute;
    bottom: -30%; right: -100%;
    transition: all .5s ease;
    transition-delay: .7s;
    user-select: none;
    opacity: .95;
}

.fp-viewing-main .profile {
    right: 5%;
}

.p-text {
    color: rgba(255, 255, 255, .6);
    font-size: 80px;
    font-weight: 500;
    line-height: 1.1;
    font-family: 'Montserrat';
}

.p-text span {
    color: #fff;
    font-size: 80px;
    font-weight: 700;
    font-family: 'Montserrat';
}

.p-text p {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.65;
    font-family: 'Montserrat';
    margin-top: 2.2rem;
}

.scrollDown {
    position: absolute;
    bottom: 40px; left: 50%;
    width: 20px;
    transform: translate(-50%, 0);
    -webkit-animation: upDown 1.5s ease-in-out infinite;
    animation: upDown 1.5s ease-in-out infinite;
}

@keyframes upDown {
	0% {
		transform:  translateY(-7px);
	}
	50% {
		transform: translateY(7px);
	}
	100% {
		transform:  translateY(-7px);
	}
}

.profile-m {
    display: none;
}


/*==================================================*/
@media (max-height: 1079px) {
    .profile {
        bottom: -35%;
    }
}


@media (min-width: 1919px) and (max-height: 950px) {
    .profile {
        height: 120%;
    }
}


@media (min-width: 2250px) {
    .profile {
        bottom: -15%;
    }

    .fp-viewing-main .profile {
        right: 8%;
    }

    .p-text,
    .p-text span {
        font-size: 110px;
    }

    .p-text p {
        font-size: 32px;
        line-height: 1.55;
        margin-top: 3rem;
    }
}


@media (max-width: 1650px) {
    .profile {
        width: 45%;
    }
}


@media (max-width: 1150px) {
    .promotion {
        justify-content: unset !important;
        align-items: unset !important;
    }
    
    .promotion-wrapper {
        width: 100% !important;
        padding: 0 20px;
    }
    
    .profile {
        bottom: -20%;
        width: 50%;
    }

    .p-text {
        margin-top: 15rem;
    }
}


@media (max-width: 850px) {
    .article.promotion {
        min-height: 100vh !important;
        padding: 0 ;
    }
    
    .profile {
        width: 65%;
        right: -40px;
        transition-delay: 0 !important;
    }

    .fp-viewing-main .profile {
        right: -40px;
    }

    .p-text {
        margin-top: 10rem;
    }
    
    .p-text,
    .p-text span {
        font-size: 65px;
    }

    .p-text p {
        font-size: 22px;
        margin-top: 2rem;
    }
}


@media (max-width: 650px) {
    .profile {
        width: 410px;
        min-width: 410px;
    }
}


@media (max-width: 550px) {
    .promotion-wrapper {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: baseline;
        gap: 3rem;
        overflow: hidden;
    }
    
    .profile {
        display: none;
    }

    .profile-m {
        display: flex;
    }
    
    .p-text,
    .p-text span {
        font-size: 45px;
    }

    .p-text p {
        font-size: 16px;
        margin-top: 1.5rem;
    }
}