blockquote {
    position: relative;
    margin-top: 3rem !important;
}
blockquote p {
    margin: 0 !important;
}
/** Design 1 **/
blockquote.bq-design-1 {
    padding: 3rem 2rem 1.5rem;
    background: var(--color1);
    color: var(--white);
    border-radius: 1rem;
}
blockquote.bq-design-1:before {
    content: "\e920";
    font-family: 'icomoon';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    font-size: 2rem;
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color1);
    z-index: 1;
}
blockquote.bq-design-1:after {
    content: "\e92c";
    font-family: 'icomoon';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    width: 7rem;
    height: 2rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media only screen and (max-width: 768px) {
    blockquote.bq-design-1 {
        padding-inline: 1.5rem;
    }
}
/** Design 2 **/
blockquote.bq-design-2 {
    padding: 40px 66px 36px;
    background: var(--gray);
    color: var(--black);
    border-radius: 1.5rem;
}
blockquote.bq-design-2:before {
    content: "\e920";
    font-family: 'icomoon';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-size: 3rem;
    position: absolute;
    top: -1.3rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color1);
    z-index: 1;
}
blockquote.bq-design-2 p {
    text-align: center;
}
@media only screen and (max-width: 768px) {
    blockquote.bq-design-2 {
        padding-inline: 24px;
    }
}