.price-con{
    background: var(--bg-color);
}
.price-box {
    gap: 60px;
    display: grid;
    grid-template-columns: 28.83% 28.83% 28.83%;
    justify-content: center;
}
.price-box-item {
    z-index: 1;
    position: relative;
    border-radius: 10px;
    padding: 38px 40px 56px;
    background: var(--white-color);
    box-shadow: 5px 5px 30px rgb(204 204 204 / 20%);
}
.price-box-item h3{
    margin-bottom: 14px;
    color: var(--primary--color);
}
.price-box-value{
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 16px;
    color: var(--accent-color);
    font-family: 'Inter', sans-serif;
}
.price-box-item span{
    margin-bottom: 19px;
}
.price-box-item > small{
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 6px;
}
.price-box-value small {
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    position: relative;
    top: -20px;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    padding-right: 2px;
}
.price-box-item p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 25px;
}
.price-btn a {
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    padding: 20px 57px;
    color: #999;
    border: 1px solid #999;
}
.price-btn a:hover {
    transform: translateY(-4px);
    color: var(--white-color);
    border-color: var(--accent-color);
    background: var(--accent-color);
}
.price-btn a:hover i{
    color: var(--white-color);
}
.price-btn a i{
    color: #999;
    font-size: 14px;
    line-height: 14px;
}
.price-box-outer{
    position: relative;
}
.price-box-outer:after{
    top: 50%;
    left: 50%;
    content: "";
    width: 350px;
    height: 390px;
    position: absolute;
    border-radius: 10px;
    background: var(--white-color);
    transform: translate(-50%, -50%);
    box-shadow: 5px 5px 30px rgb(204 204 204 / 20%);
}
/* responsive */
@media only screen and (max-width: 1440px) {
    .price-box-value {
        font-size: 56px;
        line-height: 56px;
    }
    .price-btn a {
        padding: 16px 37px;
    }
    .price-box-item {
        padding: 32px 40px 46px;
    }
    .price-box-outer:after {
        width: 350px;
        height: 370px;
    }
}
@media only screen and (max-width: 1199px) {
    .price-box-outer:after {
        width: 300px;
        height: 330px;
    }
    .price-box-item h3 {
        margin-bottom: 12px;
    }
    .price-box-item span {
        margin-bottom: 16px;
    }  
    .price-box-value {
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 10px;

    }
    .price-box-value small {
        font-size: 20px;
        line-height: 20px;
    } 
    .price-box-item > small {
        font-size: 14px;
        line-height: 14px;
    }
    .price-box-item {
        padding: 32px 30px;
    }
    .price-box-item p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    .price-btn a {
        padding: 13px 17px;
    }
}
@media only screen and (max-width: 991px) {
    .price-box {
        gap: 20px;
        grid-template-columns: 28.83% 28.83% 28.83%;
    }
    .price-box-item span {
        margin-bottom: 6px;
        font-size: 14px;
    }
    .price-box-item {
        padding: 30px 15px;
        margin: 0 auto;
    }
    .price-box-outer:after {
        width: 212px;
        height: 370px;
    }
    .price-box-value {
        font-size: 38px;
        line-height: 42px;
        margin-bottom: 8px;
    }
    .price-btn a {
        padding: 13px 17px;
        font-size: 14px;
        line-height: 14px;
    }
}
@media only screen and (max-width: 767px) {
    .price-btn a i {
        font-size: 12px;
        line-height: 12px;
    }
    .price-box {
        gap:20px;
        grid-template-columns: 48% 48%;
    }
    .price-box-item p {
        margin-bottom: 14px;
    }
    .price-box-outer:after{
        display: none;
    }
}
@media only screen and (max-width: 575px) {
    .price-box {
        grid-template-columns: 100%;
    }
    .price-box-item p {
        margin-bottom: 16px;
    }
    .price-box-value {
        font-size: 40px;
        line-height: 42px;
    }
    .price-box-value small {
        font-size: 18px;
        top: -16px;
        line-height: 18px;
    }
    .price-box-item span {
        margin-bottom: 14px;
    }
    .price-box-outer:after {
        width: 320px;
        height: 280px;
    }
}