.pricing-card{
    margin-top:0px;
}
@media(max-width:799px){
    #pricing-plans{
        padding-top:60px;
        padding-left:2.5%;
        padding-right:2.5%;
    }
}


/* Questions code */

.questions-card{
    box-shadow: 0px 0px 30px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    width: 100%;
    max-width: 800px;
    margin: 40px auto 0;
    background-color: #ffffff;
    border-radius: 10px;
}
.questions-card .card-header{    
    background-color: #68b029;
    color: #ffffff;
    font-size: 15px;
    padding: 20px 10px 10px;
    border-radius: 10px 10px 0 0;
    text-align: center;
}
.card-header h1{
    font-size: 40px;
    font-weight: 600;
    line-height: 45px;
    margin: 0;
}
.card-header h5{
    font-size: 20px;
    font-weight: 300;
    margin: 20px 0px 10px 0px;
}
.questions-card .card-body{
    border-radius: 0 0 10px 10px;
    text-align: left;
}

.question:last-child{
    margin-bottom:30px;
}

.question-title a{
    color: #68b029;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    display: block;
    transition: all 0.5s ease-in-out;
    padding: 25px 20px;
}
.question-title a:before{
    content: "+";
    font-size: 22px;
    float: right;
    transition: transform 0.3s ease-in-out;
}
.question-title a:hover,.question.active .question-title{
    background-color: #68b02933;
}
.question.active .question-title a:before {
    transform: rotate(-225deg);
}
.question:last-child:not(.active) .question-title a:hover{
    border-radius: 0 0 10px 10px;
}
.question:not(:last-child) .question-content{
    border-bottom: 1px ridge #68b029
}
.question .question-content {
    display: none;
    color: #2c3e50;
    font-size: 16px;
    line-height: 18px;
    padding:20px;
    font-weight: 400;
}
.question .question-content ul{
    padding: 20px !important;
}
.question .question-content ul li{
    list-style: disc;
    margin-left: 20px;
}