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

.promotion-wrapper {
    width: 1200px;
    height: 765px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.p-box-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: .5rem;
}

.number-box {
    width: 100%;
    padding: 20px;
    margin-bottom: .5rem;
    text-align: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, .1);
    background-color: rgba(255, 255, 255, .7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.number-box p {
    color: #3d3d3d;
    font-size: 30px;
    font-family: 'notokr-bold';
    letter-spacing: -0.04em;
}

.number-box p span {
    color: red;
    font-family: 'notokr-bold';
}

.p-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 40px 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, .1);
    background-color: rgba(255, 255, 255, .7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.p-box h1 {
    color: #222;
    font-size: 30px;
    font-family: 'notokr-black';
    letter-spacing: -0.0625em;
    margin: 1rem 0;
}

.p-box p {
    color: #555;
    font-size: 20px;
    font-family: 'notokr-medium';
    line-height: 32px;
    letter-spacing: -0.0625em;
    text-align: center;
    margin-bottom: 2rem;
}

.pBtn {
    outline: none;
    border: none;
    width: 270px;
    height: 53px;
    color: #3d3d3d;
    font-size: 16px;
    letter-spacing: -0.0625em;
    font-family: 'notokr-bold';
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .4);
    box-shadow: 0 5px 8px rgba(0, 0, 0, .1);
    transition: all .3s;
    cursor: pointer;
}

.pBtn:hover {
    background-color: rgba(255, 255, 255, .8);
    box-shadow: 0 0 3px rgba(0, 0, 0, .1);
}


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


@media (max-width: 850px) {
    .number-box {
        padding: 12px;
    }
    
    .number-box p {
        font-size: 22px;
    }

    .p-box h1 {
        font-size: 25px;
    }

    .p-box p {
        font-size: 16px;
        font-family: 'notokr-regular';
        line-height: 26px;
    }

    .pBtn {
        height: 50px;
        font-size: 15px;
    }
}


@media (max-width: 687px) {
    .promotion {
        height: auto;
        padding-top: 250px;
    }

    .promotion-wrapper {
        height: auto;
    }

    .p-box-wrapper {
        flex-direction: column;
        justify-content: center;
    }

    .number-box p {
        font-size: 18px;
        padding-top: 4px;
    }
}


@media (max-width: 500px) {
    .promotion {
        padding-top: 100px;
    }
}