*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #c0d8c3;
    padding: 20px;
}
.container{
    max-width: 1090px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.container .card{
    width: calc(33.333% - 20px);
    background-color: #fff;
    text-align: center;
    padding: 15px 30px 30px 30px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    border-radius: 30px;
}
.container .card .top{
    height: 130px;
    color: #fff;
    padding: 12px 0 0 0;
    clip-path: polygon(0 0, 100% 0, 100% 53%, 49% 100%, 0 53%);
}
.container .card .top .title{
    font-size: 27px;
    font-weight: 600;
}
.container .card .top .price-sec{
    margin-top: -10px;
}
.container .card .top .price-sec .price{
    font-size: 45px;
}
.container .card .info{
    font-size: 16px;
    margin-top: 20px;
}
.container .card .details .plan{
    margin-top: 25px;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.container .card .details .plan::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    left: 0;
    top: -12px;
}
.container .card .plan i{
    font-style: bold;
    font-size: 30px;
    color: #2db94d;
}
.container .card .plan i.bx-x{
    color: #cd3241;
}
.container .card button{
    outline: none;
    border: none;
    height: 42px;
    display: block;
    margin-top: 30px;
    width: 100%;
    border-radius: 3px;
    letter-spacing: 1px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}
.container .one .top,
.container .one button{
    background-color: #074622;
}
.container .tow .top,
.container .tow button{
    background-color: #823911;
}
.container .three .top,
.container .three button{
    background-color: #0f5154;
}
.container .card button:hover{
    transform: translateY(-10px);
    filter: brightness(90%);
    opacity: 0.8;
}
@media (max-width: 1000px) {
    .container .card{
        width: calc(50% - 20px);
        margin-bottom: 20px;
    }
}
@media (max-width: 715px) {
    .container .card{
        width: 100%;
    }
}