.promotion {
    padding: 75PX 0 50px 0;
    background: #22283f;
}

.promotion_list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.promotion_list li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc( 100%/4 - 75px/4 );
}

.promotion_list li .card {
    position: relative;
    width: 100%;
    padding: 35px;
    margin-bottom: 15px;
    text-align: center;
    border-radius: 10px;
    background: #fff;
}

.promotion_list li .card .price {
    width: 100%;
    font-size: 23px;
    font-weight: 900;
    border-bottom: #aaa 1px solid;
}

.promotion_list li .card .text {
    font-size: 23px;
    font-weight: 900;
}

.promotion_list li .card .tag {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0 10px;
    line-height: 20px;
    font-size: 12px;
    font-style: italic;
    color: #fff;
    border-radius: 50px;
    background: #aaa;
}



/*color*/

.promotion_list li:first-child .price {
    color: #02a6a6;
}

.promotion_list li:first-child .tag {
    background: #02a6a6;
}


.promotion_list li:nth-child(2) .price {
    color: #f56d5b;
}

.promotion_list li:nth-child(2) .tag {
    background: #f56d5b;
}


.promotion_list li:nth-child(3) .price {
    color: #e9be0c;
}

.promotion_list li:nth-child(3) .tag {
    background: #e9be0c;
}


.promotion_list li:last-child .price {
    color: #5292c2;
}

.promotion_list li:last-child .tag {
    background: #5292c2;
}

/*color*/




.promotion_list li .button {
    position: relative;
    top: 0;
    width: 100%;
    line-height: 50px;
    text-align: center;
    color: #f2e179;
    font-size: 18px;
    border-radius: 50px;
    border: #f2e179 2px solid;
    cursor: pointer;
    transition: .2s;
}

.promotion_list li .button:hover {
    top: -5px;
}

@media screen and (max-width: 979px) {

    .promotion {
        padding: 50px 0 0;
    }

    .promotion_list li {
        width: calc( 100%/2 - 25px/2 );
        margin-bottom: 25px;
    }

    .promotion_list li .card {
        padding: 35px 15px;
        margin-bottom: 10px;
    }
    
    .promotion_list li .card .price {
        font-size: 18px;
    }
    
    .promotion_list li .card .text {
        font-size: 18px;
    }

    
}

@media screen and (max-width: 767px) {
}

@media screen and (max-width: 320px) {
}

@media screen and (max-device-width: 480px) {
}







