.content-wrapper {
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 7px 3px rgba(0,202,253,0.1);
    -moz-box-shadow: 0px 0px 7px 3px rgba(0,202,253,0.1);
    box-shadow: 0px 0px 7px 3px rgba(0,202,253,0.1);
    padding: 40px 30px;
}
.content-wrapper .image-wrap {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 60px;
    width: 100%;
    margin-bottom: 30px;
}
.content-wrapper .jdd-heading.title {
    color: var(--heading-blue);
    margin-bottom: 20px;
    line-height: 1.1;
    text-align: center;
}
.content-wrapper .description {
    font-size: 20px;
    color: var(--secondary-blue);
    text-align: center;
    line-height: 28px;
}
@media screen and (max-width: 991px) {
    .content-wrapper .description {
        line-height: var(--txt-line-height);
    }
}
@media screen and (max-width: 767px) {
    .content-wrapper .description {
        font-size: var(--txt-mobile-regular);
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .content-wrapper .description {
        font-size: var(--txt-tablet-regular);
    }
}
