.button{font-weight: 400 !important; text-transform:uppercase !important}
/* Rotating Quotes Shortcode */
.rotating-quote {
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
    padding: 2.5rem 3rem 1.5rem;
    position: relative;
    background-color: #F7F7F7; border-radius: 25px;
}

.rotating-quote p {
    font-size: 1.5em; /* Larger text for the quote */
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1em;
}

.rotating-quote cite {
    display: block; /* Ensures the cite is on a new line */
    font-size: 1em;
    font-style: normal; /* Override default italics for cite */
}

.rotating-quote cite:before {
    content: "\2014\00a0";
}

.rotating-quote::before {
    content: "\201C";
    font-family: Georgia;
    font-size: 8em;
    color: #3D586D;
    position: absolute;
    top: 0;
    left: 1rem;
    line-height: 1;
}

.rotating-quote::after {
    content: "\201D";
    font-family: Georgia;
    font-size: 8em;
    color: #3D586D;
    position: absolute;
    bottom: -2.5rem;
    right: 1rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .rotating-quote::before, .rotating-quote::after {
        font-size: 5em;
    }
}