/*hamburger*/
blockquote {
    display: block;
    background: #fff;
    background: var(--bs-primary-ultralight);
    padding: 15px 20px 15px 45px;
    margin: 0 0 20px;
    position: relative;
    font-family: Georgia, serif;
    font-size: 1em;
    line-height: 1.5;
    color: #666;
    text-align: justify;
    border-left: 5px solid #528c1f;
    border-right: 2px solid #528c1f;
    -moz-box-shadow: 2px 2px 15px #ccc;
    -webkit-box-shadow: 2px 2px 15px #ccc;
    box-shadow: 2px 2px 15px #ccc;
}

blockquote::before {
    content: '“';
    font-family: Georgia, serif;
    font-size: 50px;
    font-weight: bold;
    color: #999;
    position: absolute;
    left: 10px;
    top: 5px;
}

blockquote::after {
    content: '';
}

blockquote a {
    text-decoration: none;
    background: #eee;
    cursor: pointer;
    padding: 0 3px;
    color: #c76c0c;
}

blockquote a:hover {
    color: #666;
}

blockquote em {
    font-style: italic;
}

@media (max-width: 992px) {
    blockquote {
        font-size: 1em;
        line-height: 1.2;
        margin: 0 0 10px;
        padding: 5px 15px 10px 30px;
    }
    blockquote::before {
        font-size: 30px;
        left: 10px;
        top: 5px;
    }
}
.blockquote-white {
    background-color: #fff;
}
