.sub-promotion {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 120px;
}

.sub-promotion-wrapper {
    width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

.sub-p-text {
    text-align: center;
}

.sub-p-text h5 {
    color: #222;
    font-size: 55px;
    line-height: 1.3;
}

.sub-p-text p {
    color: #aaa;
    font-size: 21px;
    line-height: 1.5;
    margin-top: 1.5rem;
}

.sub-p-image {
    border-radius: 20px;
    margin-top: 3rem;
    z-index: 10;
}


/*==================================================*/
@media (max-width: 1250px) {
    .sub-promotion-wrapper {
        width: 100%;
        padding: 0 20px;
    }
}


@media (max-width: 1150px) {
    .sub-promotion-wrapper {
        margin-top: 3rem;
    }
}


@media (max-width: 768px) {
    .sub-p-text h5 {
        font-size: 45px;
    }

    .sub-p-text p {
        font-size: 19px;
    }
    
    .sub-p-image {
        border-radius: 15px;
    }
}


@media (max-width: 550px) {
    .sub-promotion {
        padding-top: 60px;
    }
    
    .sub-promotion-wrapper {
        margin-top: 4rem;
    }
    
    .sub-p-text h5 {
        font-size: 40px;
    }

    .sub-p-text p {
        font-size: 16px;
        margin-top: 1rem;
    }

    .sub-p-image {
        margin-top: 2rem;
    }
}