#main-prices{
    width: 100%;
    background-color: white;
    margin-top: 122px;
}

#main-prices > div{
    width: 80%;
    margin: 0 auto;
    padding: 80px 0px;
}

#main-prices .title-section p{
    font-size: 16px;
    line-height: 30px;
    color: #12141D;
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
}


#plans{
    width: 95%;
    margin: 0 auto;
    margin-top: 120px;
    margin-bottom: 120px;
}

.plan{
    display: inline-block;
    width: 31%;
    margin: 0px 1%;
    height: 700px;
    background-color: #F9FAFC;
    border-radius: 10px;
    transition: .3s all;
    vertical-align: top;
}

.plan > div{
    padding: 25px;
}

.plan-detail{
    width: 100%;
    height: 350px;
}

.plan-detail > div{
    width: 100%;
    height: 95%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
}

.plan-title{
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0;
}

.plan-price{
    font-size: 58px;
    font-weight: bold;
    margin: 0;
}

.plan-price > span{
    font-size: 30px;
    font-weight: 100;
}

.plan-description{
    font-size: 15px;
    line-height: 23px;
    margin: 0;
}

.plan-detail .button{
    background: white;
    border-radius: 5px;
    color: #12141D;
    font-size: 16px;
}

.faqs-title{
    font-size: 15px;
    font-weight: bold;
    line-height: 35px;
    color:#18181B
}

.plan-faqs ul > li{
    font-size: 15px;
    line-height: 35px;
}

.plan hr{
    border: 1px solid #e5e5e5;
}

.plan:hover{
    transform: scale(1.2);
    background-color: #18181B;
    color: white;
}

.plan:hover .faqs-title{
    color: white;
}

.plan:hover hr{
    border: 1px solid #18181B;
}

.plan:hover .plan-detail .button{
    background: #2563EB;
    color: white;
}

#plan-note{
    text-align: center;
}

#plan-note p{
    font-size: 16px;
    line-height: 30px;
    color: #12141D;
    width: 60%;
    margin: 0 auto;
    margin-top: 20px;
}

@media only screen and (max-width: 599px) {
    #main-prices > div{
        width: 90%;
        padding: 40px 0;
    }

    #main-prices .title-section p, #plan-note p {
        font-size: 14px;
        line-height: 20px;
        width: 100%;
    }

    .plan{
        width: 100%;
        margin: 5px 0;
        height: auto;
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px){
    #main-prices > div{
        width: 90%;
        padding: 40px 0;
    }

    #plans{
        text-align: center;
    }

    .plan{
        width: 90%;
        margin: 0 auto;
        margin-top: 10px;
        height: auto;
    }

    .plan-faqs ul > li{
        text-align: left;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px){
    #plans{
        text-align: center;
    }

    .plan{
        width: 90%;
        margin: 0 auto;
        margin-top: 10px;
        height: auto;
    }

    .plan-faqs ul > li{
        text-align: left;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    #main-prices > div{
        width: 95%;
    }

    .plan{
        width: 30%;
    }

    .plan-detail .button{
        font-size: 15px;
    }

    .plan-faqs ul > li {
        font-size: 14px;
        line-height: 21px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1727px) {
    #main-prices > div{
        width: 90%;
    }

    .plan{
        width: 30%;
    }

    .plan-faqs ul > li{
        line-height: 22px;
    }
}
