.awaken-1111-coupon-section-wrapper {
    position: relative;
    padding: 48px;
    background-color: #C6D7FF;
}

.awaken-1111-coupon-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.awaken-1111-coupon-title img:nth-child(1) {
    width: 285px;
    height: auto;
}

.awaken-1111-coupon-title img:nth-child(2) {
    width: 268px;
    height: auto;
}

.awaken-1111-coupon-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
}

.awaken-1111-coupon-group {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.awaken-1111-coupon-group img {
    width: 195px;
    height: auto;
    transition: 0.5s all;
}

.awaken-1111-coupon-group img:hover {
    scale: 1.1;
    transition: 0.5s all;
}

@media screen and (max-width: 768px) {
    .awaken-1111-coupon-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-top: 28px;
    }

    .awaken-1111-coupon-group {
        display: flex;
        flex-direction: row;
        gap: 12px;
    }

    .awaken-1111-coupon-group img {
        width: 252px;
        height: auto;
        transition: 0.5s all;
    }

    .awaken-1111-coupon-group img:hover {
        scale: 1.05;
        transition: 0.5s all;
    }
}