.title-with-content {
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.title-with-content .left-content {
    width: 47%;
}

.title-with-content .right-content {
    width: 31%;
    padding-left: 15px;
    border-left: 7px solid  var(--text-color);
}
.title-with-content h2 {
    margin-bottom: 0;
}
.pricing-card-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
}

.pricing-card-grid .pricing-card-col {
    width: 33.33%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.pricing-card-grid .pricing-card-col .pricing-card {
    background-color: var(--light-gray);
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pricing-card h3 {
    font-size: 24px;
    line-height: 28px;
    color: var(--black);
}

.pricing-card .price {
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--yellow);
}

.pricing-card .top-content {
    margin-bottom: 30px;
}

.pricing-card .pricing-list li {
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}
.pricing-card .pricing-list li:before {
    content: "";
    display: block;
    height: 14px;
    width: 14px;
    background-image: url(../images/yellow-check.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 7px;
    left: 0;
}
.pricing-card .pricing-list li:not(:last-child) {
    margin-bottom: 5px;
}
.pricing-card a.btn {
    margin-top: 30px;
}
.pricing-card-grid > div:nth-child(2) .pricing-card {
    background-color: var(--black);
}
.pricing-card-grid > div:nth-child(2) .pricing-card h3 {
    color: var(--white);
}
.pricing-card-grid > div:nth-child(2) h4 {
    color: var(--white);
}
@media only screen and (max-width:1199px){
    .title-with-content .right-content {
        width: 40%;
    }
   .pricing-card-grid .pricing-card-col .pricing-card {
        padding: 30px 20px;
    }
    .pricing-card-grid {
        margin: 0 -10px -20px;
    } 
    .pricing-card-grid .pricing-card-col {
        padding: 0 10px;
        margin-bottom: 20px;
    }
    .pricing-card .price {
        font-size: 30px;
        line-height: 38px;
    }
    .pricing-card .top-content {
        margin-bottom: 20px;
    }

}
@media only screen and (max-width:991px){
    .title-with-content .right-content {
        width: 47%;
    }
    .pricing-card-grid .pricing-card-col {
        width: 50%;
    }

}
@media only screen and (max-width:767px){
    .title-with-content .left-content {
        width: 100%;
    }
    .title-with-content .right-content {
        width: 100%;
        padding-left: 0;
        border: 0;
        margin-top: 15px;
    }
     .pricing-card-grid .pricing-card-col {
        width: 100%;
    }
}