.pricetable {
    margin: 50px 0;
    padding: 10px 0 50px 0;
    position: relative;
}

.pricetable:before {
    background: #f3f3f3;
    content: '';
    height: 100%;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    top: 0;
    z-index: 1;
    width: 100vw;
}

.pricetable-heading {
    text-align: center;
    position: relative;
    z-index: 2;
}

.pricetable-list {
    align-items: stretch;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.pricetable-item {
    background: #fff;
    margin: 20px;
    max-width: 460px;
    padding-bottom: 100px;
    position: relative;
    width: calc((100% / 3) - 40px);
}

.pricetable-item .top {
    background: #292c67;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    min-height: 175px;
    padding: 15px;
}

.pricetable-item-header {
    font-size: 26px;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 10px 0;
    padding: 0 40px;
}

.pricetable-item-under-header {
    margin: 0;
    border-top: 2px solid #ff7800;
    padding-top: 10px;
}

.pricetable-item .bottom {
    padding: 20px 40px 0 40px;
}

.pricetable-item-price {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
}

.pricetable-small-text {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
}

.pricetable-item .bottom .btn {
    bottom: 40px;
    left: 50%;
    max-width: 300px;
    position: absolute;
    text-align: center;
    transform: translateX(-50%);
    width: calc(100% - 20px);
}

@media screen and (max-width: 1200px) {
    .pricetable-item-header {
        font-size: 24px;
    }
    
    .pricetable-item-under-header {
        font-size: 16px;
    }
    
    .pricetable-list {
        margin-left: -10px;
        width: calc(100% + 20px);
    }
    
    .pricetable-item {
        margin: 10px;
        width: calc((100% / 3) - 20px);
    }
    
    .pricetable-item .bottom {
        padding: 20px 20px 0 20px;
    }
}

@media screen and (max-width: 1024px) {
    .pricetable-item-header {
        padding: 0;
    }
}

@media screen and (max-width: 840px) {
    .pricetable-item-header {
        font-size: 20px;
    }
    
    .pricetable-item-under-header {
        font-size: 14px;
    }
    
    .pricetable-item-price {
        font-size: 50px;
    }

    .pricetable-small-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 720px) {
    .pricetable-list {
        flex-wrap: wrap;
        margin-left: 0px;
        width: 100%
    }
    
    .pricetable-item {
        margin: 15px 0;
        width: 100%;
    }
    
    .pricetable-item .top {
        min-height: inherit;
    }
}