.blocks-faqs .faq-col {
    width: 100%;
    /*height: 160px;*/
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.075) !important;
    color: #3d464d;
    padding: 20px;
}

.blocks-faqs img {
    max-height: 60%;
    max-width: 60%;
}

.blocks-faqs {
    /*margin: auto -10px;*/
}

.blocks-faqs .faqs-col {
    margin-bottom: 15px;
    margin-top: 15px;
}

.blocks-faq-h4 {
    font-weight: 500;
    font-size: 1rem;
}

.blocks-faq-h5 {
    font-weight: 500;
    font-size: 0.85rem;
    margin-top: 7px;
}

.blocks-faq-text {
    margin-top: 10px;
}

.blocks-faq-image {
    width: 120px;
    height: 120px;
    background: #f9f9f9 50% no-repeat;
    margin-bottom: 10px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
}

.faq-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.075) !important;
    margin-bottom: 15px;
    margin-top: 15px;
    padding: 30px;
    max-width: 100%;
    overflow: hidden;
}

.faq-card-header {
    font-size: 16px;
    font-size: 1rem;
    position: relative;
    line-height: 2;
}

.faq-card-header a {
    display: block;
}

.faq-card-body {
    font-size: 16px;
    font-size: 1rem;
    padding-top: 30px;
    line-height: 2;
}
.faq-card-body p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 2;
}
.faq-card-body ul {
    -webkit-padding-start: 2rem;
}

.faq-card-header a:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 20px;
    border-color: #ccc;
    border-top: 1px solid;
    border-right: 1px solid;
    width: 10px;
    height: 10px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: top .3s, -webkit-transform .3s;
    transition: top .3s, -webkit-transform .3s;
    transition: transform .3s, top .3s;
    transition: transform .3s, top .3s, -webkit-transform .3s;
    -webkit-transform: rotate(-45deg) translate3d(0, -50%, 0);
    transform: rotate(-45deg) translate3d(0, -50%, 0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
}

.faq-card-header a.collapsed:before {
    top: calc(50% - 8px);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    border-color: #c4c7cc;
    border-top: 2px solid;
    border-right: 2px solid;
    color: #c4c7cc;
}


@media only screen and (max-width: 768px) {
    .faq-card {
        padding: 20px;
    }
}