.apr *,
.apr *:before {
    line-height: 1.3;
}
.apr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: #f7f7f7;
    padding: 20px 0;  
}
.apr .apr-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    flex: 0 1 330px;
    cursor: default;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
    border-radius: 20px; 
    margin: 20px;
}
@media screen and (min-width: 1080px) {
    .apr .apr-item {
        margin: 20px 0;
    }
    .apr .apr-item-left {
        border-radius: 20px 0 0 20px;
    }  
    .apr .apr-item-center {
        margin: 0;
        z-index: 10;
        box-shadow: 0 8px 20px rgba(0,0,0,0.4), 0 20px 32px rgba(0,0,0,0.2);
    }
    .apr .apr-item-right {
        border-radius: 0 20px 20px 0;
    }   
}
.apr .apr-deco {
    background: #337AB7;
    padding: 50px 0 160px;
    position: relative;
}
.apr .apr-item-center .apr-deco {
    background: #1269b5;
} 
.apr .apr-price {
    font-size: 54px;
    font-weight: bold;
    padding: 0;
    color: #FFF;
}
.apr .apr-price > span {
    font-size: 48px;
}
.apr span.apr-currency {
    font-size: 42px;
    font-weight: normal;
    padding-left: 6px;
    vertical-align: top;
    color: #BFE2FF;
}
.apr .apr-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #BFE2FF;
}
.apr .apr-deco-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    overflow: hidden;
}
.apr .deco-layer {
    transition: transform 0.5s;
    fill: #FFF;
}
.apr .apr-item:hover .deco-layer--1 {
    transform: translate3d(15px, 0, 0);
}
.apr .apr-item:hover .deco-layer--2 {
    transform: translate3d(-15px, 0, 0);
}
.apr .apr-feature-list {
    margin: -55px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 0 35px;
    list-style: none;
    position: relative;
    z-index: 2;
}
.apr .apr-feature-list li {
    padding: 8px;
    padding-left: 34px;
    font-size: 15px;
    margin: 0 10px;
    border-bottom: 1px solid #BFE2FF;
    text-align: left;
    position: relative;
}
.apr .apr-feature-list li:before {
    position: absolute;
    left: 10px;
    content: "\2714";
    color: green;
    font-weight: bold;
}
.apr .apr-action {
    border: none;
    margin: auto 40px 20px 40px;
    padding: 10px;
    color: #fff;
    border-radius: 30px;
    background: #874985;
    transition: background 0.5s;
    outline: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2), 0 4px 6px rgba(0,0,0,0.2); 
    font-family: 'Roboto', sans-serif;  
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}
.apr .apr-action:hover, 
.apr .apr-action:focus {
    background: #596e9f;
}