.promotion {
    width: 100%;
    padding: 120rem 0;
    background: url(../images/hero.png);
    background-position: bottom center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.promotion-wrapper {
    width: 1400rem;
}

.p-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-image {
    width: 550rem;
    animation: floating 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

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

.p-text h5 {
    color: #222;
    font-size: 65rem;
    font-weight: 700;
    line-height: 1.2;
}
.p-text h5 span {
    color: var(--blue-color);
    letter-spacing: -2rem;
}
.p-text h5 em {
    color: var(--main-color);
    font-style: normal;
    letter-spacing: -2rem;
}

.p-text p {
    color: #333;
    font-size: 22rem;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 25rem;
}

.ctaBtn.pBtn {
    width: 240rem;
    height: 55rem;
    font-size: 19rem;
    margin-top: 50rem;
}

.p-box-wrapper {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20rem;
    z-index: 2;
    margin-top: -100rem;
}

.p-box {
    padding: 44rem 30rem;
    border-radius: 12rem;
    background-color: #fff;
    box-shadow: 0 15rem 50rem 0 rgba(80, 86, 131, .2);
}

.p-box-text h6 {
    color: #222;
    font-size: 24rem;
}

.p-box-text p {
    color: #333;
    font-size: 18rem;
    line-height: 1.3;
    font-weight: 500;
    margin-top: 10px;
    letter-spacing: -0.5rem;
}



/*==================================================*/
@media (max-width: 1024px) {
    .promotion-wrapper {
        width: 90%;
    }

    .p-box-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .p-top {
        flex-direction: column;
    }

    .p-text {
        width: 100%;
        margin-top: 80rem;
    }

    .ctaBtn.pBtn {
        display: flex;
    }
    
    .p-image {
        width: 100%;
        margin-top: -200rem;
        margin-bottom: -150rem;
    }

    .p-image img {
        width: 60%;
        float: right;
    }
}


@media (max-width: 768px) {
    .ctaBtn.pBtn {
        width: 300rem;
        height: 64rem;
        font-size: 22rem;
    }
    
    .p-image {
        margin-bottom: -80rem;
    }
}


@media (max-width: 450px) {
    .p-text {
        margin-top: 120rem;
        z-index: 5;
    }
    
    .p-text h5 {
        font-size: 75rem;
    }

    .p-text p {
        font-size: 32rem;
    }

    .ctaBtn.pBtn {
        width: 350rem;
        height: 90rem;
        font-size: 32rem;
    }
    
    .p-box-wrapper {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "box1 empty"
            "box2 box3"
            "box4 box5";
    }

    .p-box:nth-child(1) { grid-area: box1; }
    .p-box:nth-child(2) { grid-area: box2; }
    .p-box:nth-child(3) { grid-area: box3; }
    .p-box:nth-child(4) { grid-area: box4; }
    .p-box:nth-child(5) { grid-area: box5; }
    
    .p-box {
        padding: 50rem;
    }
    
    .p-box-text h6 {
        font-size: 40rem;
    }

    .p-box-text p {
        font-size: 26rem;
    }
}