﻿h2 {
    color: #555;
}

h3 {
    color: #a63a4a;
}

p {
    text-align: justify;
    font-size: large;
}

/* carousel */
#quote-carousel {
    padding: 0 10px 30px 10px;
    margin-top: 30px;
}

    /* Control buttons  */
    #quote-carousel .carousel-control {
        background: none;
        color: #a63a4a;
        font-size: 2.3em;
        text-shadow: none;
        margin-top: 100px;
    }
        /* Previous button  */
        #quote-carousel .carousel-control.left {
            left: -12px;
        }
        /* Next button  */
        #quote-carousel .carousel-control.right {
            right: -12px !important;
        }
    /* Changes the position of the indicators */
    #quote-carousel .carousel-indicators {
        right: 50%;
        top: auto;
        bottom: 0px;
        margin-right: -19px;
    }
        /* Changes the color of the indicators */
        #quote-carousel .carousel-indicators li {
            background: #a63a4a;
        }

        #quote-carousel .carousel-indicators .active {
            background: #333333;
        }

    #quote-carousel .item img {
        width: 300px;
        height: 200px
    }
/* End carousel */

.item blockquote {
    border-left: none;
    margin: 0;
}

    .item blockquote img {
        margin-bottom: 10px;
    }

    .item blockquote p:before {
        content: "\f10d";
        font-family: 'Fontawesome';
        float: left;
        margin-right: 10px;
    }



/**
  MEDIA QUERIES
*/

/* Small devices (tablets, 768px and up) */
@media (min-width: 767px) and (max-width: 1000px) {

    h1 {
        font-size: smaller !important;
    }

    #quote-carousel {
        margin-bottom: 0;
        padding: 0 40px 30px 40px;
    }

        #quote-carousel .item img {
            width: 90%;
            height: auto;
            margin-top: 40px;
            text-align: left;
        }

        #quote-carousel .item p {
            font-size: small;
        }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
    #quote-carousel {
        margin-bottom: 0;
        padding: 0 40px 30px 40px;
    }
}

/* Small devices (tablets, up to 768px) */
@media (max-width: 767px) {

    /* Make the indicators larger for easier clicking with fingers/thumb on mobile */

    #quote-carousel .carousel-indicators {
        bottom: -20px !important;
        margin-bottom: 20px;
    }

        #quote-carousel .carousel-indicators li {
            display: inline-block;
            margin: 0px 5px;
            width: 15px;
            height: 15px;
        }

            #quote-carousel .carousel-indicators li.active {
                margin: 0px 5px;
                width: 20px;
                height: 20px;
            }

    #quote-carousel .item img {
        width: 220px;
        height: auto;
        margin-top: 35px;
    }

    #quote-carousel .item p {
        display: none;
    }
}

