<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.blockquote {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    padding-right: 90px;
    padding-left: 90px;
    margin-right: auto;
    margin-left: auto;
    margin: 60px auto;
    position: relative;
}

@media (max-width: 991.98px) {
    .blockquote {
        padding-right: 30px;
        padding-left: 30px;
    }
}

@media (min-width: 576px) {
    .blockquote {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .blockquote {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .blockquote {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .blockquote {
        max-width: 1400px;
    }
}

.content-well .blockquote {
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 991.98px) {
    .blockquote {
        padding-left: 45px;
    }
}

blockquote &gt; div:first-of-type,
.blockquote-image {
    background-color: #d8efff;
    border-radius: 100px;
    height: 90px;
    width: 90px;
    overflow: hidden;
    position: relative;

    img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

.blockquote-heading {
    color: #002D97;
    margin: 0 !important;
    text-align: center;

    p {
        margin: 0;
    }
}

.blockquote-heading {
    font-size: 20px;
}

@media (min-width: 575px) {
    .blockquote-heading {
        font-size: calc(20px + 7 * (100vw - 575px) / 1025);
    }
}

@media (min-width: 1600px) {
    .blockquote-heading {
        font-size: 27px;
    }
}

.blockquote-content {
    color: #053195;
    padding: 0 60px 20px;
    text-align: center;
    position: relative;

    &amp;:before {
        content:"";
        width: 40px;
        height: 4px;
        background-color: #e5ad28;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}

.blockquote-cite {
    display: block;
    font-style: normal;
    font-weight: bold;
    color: #053195;

    a {
        color: #005ff2;
    }
}

.blockquote--statement:before {
    content: "";
    display: block;
    max-width: 286px;
    width: 100%;
    height: 3px;
    background-color: #000;
}
</pre></body></html>