﻿.advisorTestimonialsContainer {
    background-image: url('../../img/templates/tiledBackground.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

    .advisorTestimonialsContainer .flex-container {
        width: 1100px;
        padding-top: 150px;
        padding-bottom: 150px;
        position: relative;
        margin: auto;
    }

        .advisorTestimonialsContainer .flex-container .cycle-slideshow .testBody {
            font-size: 34px;
            color: #454545;
            font-weight: 500;
            margin-bottom: 40px;
            line-height: 45px;
        }

        .advisorTestimonialsContainer .flex-container .cycle-slideshow .testName p {
            font-size: 24px;
            color: #454545;
            display: inline-block;
            line-height: 35px;
            padding-right: 10px;
        }

/*
    <div class="advisorTestimonialsContainer">
        <div class="flex-container">
            <ul class="slideShow">
                @foreach (var testimonial in Model.Testimonials)
                {

                    <li>
                        <div class="testBody">@Html.Raw(testimonial.Body)</div>
                        <div class="testName">@Html.Raw(testimonial.Name)</div>
                    </li>

                }
            </ul>
        </div>
    </div>
*/
