<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.testimonialsContainer {
    background-image: url('../../images/opening-quote-icon.svg'), url('../../images/closing-quote-icon.svg'), url('../../images/paper-fibers.png');
    background-position: top -50px left -50px, bottom -50px right -50px, center;
    background-size: 500px auto, 500px auto, auto;
    background-repeat: no-repeat, no-repeat, repeat;
    background-blend-mode: color-dodge, color-dodge, normal;
    margin-top: -20px;
    background-color: #f5f9ff;
}

    .testimonialsContainer .titleNormal {
        padding-top: 20px;
    }
.testimonials-section .btn-primary {
    background-color: #01619b;
}

.testimonials-section .article {
    background: white;
    border-radius: 25px;
    border: none;
    color: #fff;
    --b: 3em; /* tail dimension */
    --p: 90%; /* main position (0%:left 100%:right) */
    --r: 1.2em; /* the radius */
    --s: -1;
    padding: 1em;
    border-radius: var(--r) var(--r) min(var(--r),100% - var(--p) - var(--b)/4) min(var(--r),var(--p) - var(--b)/4)/var(--r);
    background: #cc333f; /* the main color */
    position: relative;
    break-inside: avoid;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 25px 50px -10px, rgba(0, 0, 0, 0.3) 0px 15px 30px -15px;
}

    .testimonials-section .article:before {
        margin-top: -10px;
        content: "";
        position: absolute;
        top: 100%;
        left: clamp(var(--b)/-2,var(--p) - 3*var(--b)/4,100% - var(--b));
        width: var(--b);
        aspect-ratio: 1;
        background: inherit;
        --g: #000 calc(100% - 1px),#0000;
        -webkit-mask: radial-gradient(circle closest-side at 19% 88%,var(--g)), radial-gradient(18% 18% at 52% 65%,var(--g)), radial-gradient(25% 25% at 75% 25%,var(--g));
        break-inside: avoid;
        transform: scaleX(var(--s));
    }

.masonry-layout {
    --gap: clamp(3rem, 5vmin, 2rem);
    columns: 300px;
    gap: var(--gap);
    width: 96%;
    margin: 3rem auto 0rem auto;
}

    .masonry-layout &gt; * {
        break-inside: avoid;
    }

.article-bubble {
    position: relative;
    font-size: 24px;
    opacity: 0;
    width: 100%;
    transition: opacity 500ms ease;
    padding-bottom: 65px;
    /*margin-bottom: -20px;*/
}

    .article-bubble p {
        margin-bottom: 0;
        margin-top: -5px
    }

@keyframes bubbleEffect {
    0% {
        transform: scale(0.9); /* Start from half the size */
        opacity: 0;
    }

    70% {
        transform: scale(1.05); /* Go to 130% of the size */
        opacity: 0.5;
    }

    100% {
        transform: scale(1); /* Settle at 100% of the normal size */
        opacity: 1;
    }
}

.bubble-animate {
    animation: bubbleEffect 200ms ease-in-out forwards; /* Run animation for 500 milliseconds */
}

.floatr {
    float: right;
}

.divTitleNormal{
    background-color:transparent;
}</pre></body></html>