.plans{
    max-width: 1000px;
    margin: 0 auto;
    padding: 120px 20px;
    box-sizing: border-box;
}
.plans .plan{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #000;
}
.plans .plan:first-of-type{
    margin-bottom: 40px;
}
.plans .plan .left{
    width: 30%;
    height: 300px;
}
.plans .plan .left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.plans .plan .right{
    width: 70%;
    height: 300px;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.plans .plan .right h3{
    font-family: 'Cormorant Garamond', serif;
    width: 100%;
    font-size: 20px;
}
.plans .plan .right ul{
    width: 100%;
}
.plans .plan .right ul li{
    font-size: 12px;
}
.plans .plan .right ul li{
    margin-bottom: 10px;
}
.plans .plan .right ul li:last-of-type{
    margin-bottom: initial;
}
.plans .plan .right .plans_list{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.plans .plan .right .plans_list a{
    width: 30%;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    background-color: #F2F2F2;
}
.plans .plan .right .plans_list a:first-of-type{
    color: #fff;
    background-color: #000;
}

@media screen and (max-width:768px){
    .plans {
        padding: 80px 20px;
    }
    .plans .plan .left {
        width: 100%;
    }
    .plans .plan .right {
        width: 100%;
        height: initial;
        padding: 30px 20px;
    }
    .plans .plan .right h3 {
        margin-bottom: 15px;
    }
    .plans .plan .right ul {
        margin-bottom: 25px;
    }
    .plans .plan .right .plans_list a{
        width: 100%;
        margin-bottom: 10px;
    }
}