﻿```css
/* =========================================================
   TESTIMONIALS
   ========================================================= */

#page_testimonials {
    margin: 45px 0 60px;
}

#page_testimonials .grid_9 {
    width: 720px;
}

#page_testimonials .testimonial {
    position: relative;
    background: rgba(255,255,255,0.75);
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 30px 35px;
    margin-bottom: 25px;
    box-sizing: border-box;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

#page_testimonials .testimonial p {
    font-size: 1em;
    font-style: italic;
    color: #333;
    line-height: 1.6em;
    margin: 20px 0;
}

#page_testimonials .testimonial p::before,
#page_testimonials .testimonial p::after {
    font-size: 1.7em;
    color: #010853;
    font-family: "Times New Roman", Times, Baskerville, Georgia, serif;
    font-weight: bold;
    line-height: 0;
}

#page_testimonials .testimonial p::before {
    content: "\201c";
    margin-right: 3px;
}

#page_testimonials .testimonial p::after {
    content: "\201d";
    margin-left: 3px;
}

#page_testimonials .testimonial .client {
    font-size: 1em;
    font-style: normal;
    margin: 0;
    color: #010853;
    font-weight: bold;
}

#page_testimonials .testimonial .client::before,
#page_testimonials .testimonial .client::after {
    content: "";
}

#page_testimonials .testimonial .example {
    text-decoration: none;
    margin-top: 20px;
}

#page_testimonials .testimonial::after {
    content: "";
    display: block;
    clear: both;
}


/* =========================================================
   CLIENT TESTIMONIALS SLIDER
   ========================================================= */

#client_testimonials {
    padding: 75px 0 80px;
}

#client_testimonials .grid_9 {
    width: 720px;
    margin-bottom: 40px;
}

#client_testimonials h2 {
    font-size: 3em;
    font-family: $font_stack_light;
    font-weight: lighter;
    color: #000;
    margin: 0 0 15px;
}

#client_testimonials .testimonial {
    position: relative;
    display: none;
    background: rgba(255,255,255,0.75);
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 30px 35px;
    box-sizing: border-box;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

/* Decorative quote accent */
#client_testimonials .testimonial::before {
    content: "★ ★ ★ ★ ★";
    display: block;
    position: relative;
    top: auto;
    left: auto;
    font-family: Arial, sans-serif;
    font-size: 1.15em;
    line-height: 1;
    letter-spacing: 3px;
    color: #D4AF37;
    opacity: 1;
    margin-bottom: 12px;
}

#client_testimonials .testimonial p {
    position: relative;
    z-index: 1;
    font-size: 1em;
    font-family: $font_stack_italic;
    font-style: italic;
    color: #444;
    line-height: 1.6em;
    margin: 20px 0;
}

#client_testimonials .testimonial p::before,
#client_testimonials .testimonial p::after {
    font-size: 1.7em;
    color: #010853;
    font-family: "Times New Roman", Times, Baskerville, Georgia, serif;
    font-weight: bold;
    line-height: 0;
}

#client_testimonials .testimonial p::before {
    content: "\201c";
    margin-right: 3px;
}

#client_testimonials .testimonial p::after {
    content: "\201d";
    margin-left: 3px;
}

#client_testimonials .testimonial .client {
    position: relative;
    z-index: 1;
    font-size: 1.15em;
    font-family: $font_stack_regular;
    font-style: normal;
    margin: 10px 0 0;
    color: #010853;
    font-weight: bold;
    float: right;
}

#client_testimonials .testimonial .client::before,
#client_testimonials .testimonial .client::after {
    content: "";
}

#client_testimonials .testimonial .example {
    position: relative;
    z-index: 1;
    margin-top: -35px;
    text-decoration: none;
}


/* =========================================================
   TESTIMONIAL NAVIGATION
   ========================================================= */

#client_testimonials nav {
    margin: auto;
}

#client_testimonials nav li {
    float: left;
    padding-right: 10px;
}

#client_testimonials nav li:last-child {
    padding-right: 0;
}

#client_testimonials nav li a {
    display: block;
    width: 8px;
    height: 8px;
    background: transparent;
    border: 2px solid #010853;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}

#client_testimonials nav li a:hover {
    transform: scale(1.15);
}

#client_testimonials nav li a.active {
    background: linear-gradient(to bottom, #010853, #152348);
}


/* =========================================================
   TABLET
   ========================================================= */

@media all and (max-width: 1020px) {

    #client_testimonials {
        width: 100%;
        padding: 32px 0 40px;
    }

    #client_testimonials h2 {
        padding: 0 40px;
        margin: 0;
    }

    #client_testimonials .grid_9 {
        width: 60%;
        margin: 0;
    }

    #client_testimonials .testimonial {
        margin: 0 40px;
        padding: 25px 30px;
    }

    #client_testimonials .testimonial .quote {
        margin: 30px 0;
    }

    #client_testimonials .testimonial .example {
        width: 220px;
        margin: -15px 0 0;
        float: right;
        text-align: center;
    }

    #client_testimonials .example span.desktop {
        display: none;
    }

    #client_testimonials .example span.mobile {
        opacity: 1;
        position: relative;
        background: none;
        border: none;
        clear: both;
        display: block;
        height: auto;
        width: auto;
        padding: 0;
        top: auto;
        left: auto;
        margin: 20px 0 0;
        font-size: 1em;
        line-height: 1.375em;
        color: #010853;
    }

    #client_testimonials nav {
        clear: both;
        padding-top: 40px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media all and (max-width: 650px) {

    #client_testimonials {
        padding: 20px 0 25px;
    }

    #client_testimonials h2 {
        padding: 0 24px 5px;
    }

    #client_testimonials .grid_9 {
        width: 100%;
    }

    #client_testimonials .testimonial {
        margin: 0 24px;
        padding: 25px 24px;
    }

    #client_testimonials .testimonial::before {
        top: 10px;
        left: 15px;
        font-size: 3.8em;
    }

    #client_testimonials .testimonial .quote {
        margin: 20px 0;
    }

    #client_testimonials .testimonial .example {
        width: 100%;
        margin: 0;
        float: none;
        display: block;
        clear: both;
        padding: 24px 0 0;
    }

    #client_testimonials nav {
        padding-top: 30px;
    }
}

/* =========================================================
   FIVE GOLD STARS
   ========================================================= */

#page_testimonials .testimonial::before,
#client_testimonials .testimonial::after {
    content: "★ ★ ★ ★ ★";
    display: block;
    color: #D4AF37;
    font-size: 1.25em;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 12px;
}
