/**
* Styling for the Large Quote Module
* Created By: RubicoTech (Philip Pradeep)
* @Package SBX Genesis Collection
*/
.module_card-quote {
    padding-top: 30px;
    padding-bottom: 50px;
}
[class^="module_"] .module_card-quote {
    padding-top: var(--module-spacing);
    padding-bottom: var(--module-spacing);
}
/* .module_card-quote .grid-wrap {
    max-width: 825px;
}
[class^="module_"] .module_card-quote .grid-wrap {
    max-width: 1240px;
} */
.module_card-quote .card_quote {
    width: 100%;
    padding: 50px 40px;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    grid-column: span 12;
}
.module_card-quote .card_quote:before {
    content: '';
    position: absolute;
    left: var(--text-spacing--xl);
    top: -20px;
    width: 45px;
    height: 45px;
    background: #fff url(../../images/quote_purple.svg) no-repeat center center;
    z-index: 2;
    background-size: contain;
    border-radius: 10px;
}
.module_card-quote .card_quote h4,
.module_card-quote .card_quote h6 {
    margin: 0 !important;
    font-size: 16px !important;
    line-height: 24.8px !important;
}
.module_card-quote .card_quote h4 {
    order: 2;
}
.module_card-quote .card_quote h6 {
    font-family: var(--ZirkelRegular-400) !important;
    -webkit-font-smoothing: initial;
    -moz-osx-font-smoothing: initial;
    order: 3;
}
.module_card-quote .card_quote p {
    font-family: var(--ZirkelSemiBold-600); 
    font-size: 18px;
    line-height: 27.9px;
    margin-bottom: 0;
    font-style: italic;
}
.module_card-quote .card_quote > div {
    order: 1;
    margin-bottom: var(--text-spacing--l);
}
/* -- Media Break-Points -- */
@media (min-width: 768px) {
    .module_card-quote .card_quote {
        padding: 65px 75px 60px;
    }
    .module_card-quote .card_quote:before {
        left: 75px;
    }
    .module_card-quote .card_quote p {
        font-size: 22px;
        line-height: 33px;
    }
    .module_card-quote .card_quote h4 {
        font-size: 40px !important;
        line-height: 46px !important;
    }
    .module_card-quote .card_quote h6 {
        font-size: 21px !important;
        line-height: 26.25px !important;
    }
    .module_card-quote .card_quote h4 {order: 1;}
    .module_card-quote .card_quote h6 {order: 2;}
    .module_card-quote .card_quote > div {
        order: 3;
        margin-top: var(--text-spacing--l);
        margin-bottom: 0;
    }
}