.promotion {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../images/hero.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

.promotion-wrapper {
    width: 1300px;
    z-index: 10;
}

.p-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 3rem;
}

.p-text p {
    color: #fff;
    font-size: 80px;
    font-weight: 600;
    font-family: 'Poppins';
}

.p-text h5 {
    color: #fff;
    font-size: 80px;
    font-weight: 600;
    line-height: 1.3;
}

.p-store-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.p-storeBtn img {
    height: 70px;
    border-radius: 5px;
    box-shadow: 0 15px 15px 0 rgba(0, 0, 0, .1);
    transition: all .2s;
}



/*==================================================*/
@media (max-width: 1350px) {
    .promotion-wrapper {
        width: 100%;
        padding: 0 20px;
    }
}


@media (max-width: 850px) {
    .p-text {
        margin-top: 0;
    }
    
    .p-text p,
    .p-text h5 {
        font-size: 55px;
    }
}


@media (max-width: 550px) {
    .p-text p,
    .p-text h5 {
        font-size: 36px;
    }

    .p-store-wrapper {
        gap: 1.2rem;
        margin-top: 2rem;
    }
    
    .p-storeBtn img {
        height: 55px;
    }
}