.vc-quote .quote-item {
    text-align: center;
}
.vc-quote .quote-item .quote-icon {
    position: relative;
    display: block;
    width: 100%;
    max-width: 470px;
    height: 250px;
    margin: auto;
}
.vc-quote .quote-item .quote-icon:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    background-color: grey;

}
.vc-quote .quote-item .quote-icon:after {
    position: absolute;
    content: '';
    background: url("../../img/quote-icon-learning-resources.svg") no-repeat center center;
    background-size: contain;
    width: 250px;
    height: 250px;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}
.vc-quote .inner-content {
    padding: 0 30px 20px;
    font-size: 30px;
    color: var(--secondary-blue);
}
.vc-quote .inner-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--heading-blue);
    margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
    .vc-quote .inner-content {
        padding: 0 0px 20px;
        font-size: var(--txt-mobile-regular);
    }
}
