.promotion {
    width: 100%;
    height: 100vh !important;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s;
}

.promotion-wrapper {
    width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.p-text h1 {
    color: var(--main-color);
    font-size: 70px;
    line-height: 1.3;
    font-weight: 800;
}

.p-text p {
    color: #222;
    font-size: 24px;
    line-height: 1.7;
    font-weight: 400;
    margin-top: 1.5rem;
}

.p-text p b {
    font-weight: 700;
    background: linear-gradient(to top, var(--sub-color) 30% 30%, transparent 30%);
}

.p-text .askBtn {
    color: #fff;
    width: 200px;
    height: 52px;
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, .2);
    margin-top: 3rem;
}

.p-text .askBtn h2 {
    font-size: 17px;
    font-weight: 500;
}

.p-image {
    position: relative;
    width: 600px;
}

.p-box {
    position: absolute;
    bottom: -320px; right: 350px;
    width: 350px;
    transition: opacity .2s;
    z-index: 3;
}

.p-truck {
    position: absolute;
    bottom: -300px; right: -300px;
    width: 1200px;
    z-index: 2;
}

.p-square {
    position: absolute;
    top: 50%; right: 0;
    transform: translate(0, -50%);
    width: 45%;
    height: 500px;
    background-color: var(--main-color);
    z-index: 1;
}


/*==================================================*/
@media (max-width: 1250px) {
    .article.promotion {
        height: auto !important;
        padding-bottom: 0;
    }
    
    .promotion-wrapper {
        position: relative;
        width: 100%;
        padding: 0 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .p-text {
        margin-top: 8rem;
    }

    .p-text h1 {
        font-size: 55px;
    }

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

    .p-text .askBtn {
        width: 170px;
        height: 48px;
        margin-top: 2rem;
    }

    .p-text .askBtn h2 {
        font-size: 16px;
    }

    .p-image {
        position: unset;
        width: 100%;
        margin-top: 20rem;
    }

    .p-box {
        display: none;
    }
    
    .p-truck {
        bottom: 0;
        right: unset;
        left: -200px;
        width: 600px;
        min-width: 600px;
    }

    .p-square {
        top: unset;
        bottom: 0;
        transform: unset;
        width: 100%;
        height: 250px;
    }
}


@media (max-width: 550px) {
    .p-text {
        margin-top: 8rem;
    }
    
    .p-text h1 {
        font-size: 35px;
    }

    .p-text p {
        font-size: 17px;
    }

    .p-text .askBtn {
        width: 150px;
        height: 40px;
        margin-top: 1.5rem;
    }

    .p-text .askBtn h2 {
        font-size: 14px;
    }

    .p-image {
        margin-top: 17rem;
    }

    .p-truck {
        width: 450px;
        min-width: 450px;
    }

    .p-square {
        height: 38%;
    }
}