/* Hiccupops Testimonials
------------------------------------------- 

Table of contents
    - Testimonial Loop
    - Media Queries

------------------------------------------- */

/* Testimonial Loop
-------------------------------------------- */

.hiccupops-testimonials-loop {
    margin-top: 80px;
}

.hiccupops-testimonials-container {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

.hiccupops-testimonials-image {
    margin-right: 5%;
    width: 5%;
}

.hiccupops-testimonials-content {
    width: 90%;
}

.hiccupops-testimonials-name {
	font-style: italic;
	text-align: right;
}

.owl-dots button:before {
    content: none;
}

.owl-theme .owl-dots .owl-dot span {   
    background: transparent;
    border: 3px solid #B3B4B4;
    height: 24px;
    margin: 5px 12px;
    transition: all 0.2s ease-in-out;
    width: 24px;
}

.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
    background: #AE1937;
    border: 3px solid transparent;
    transform: scale( .5 );
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 64px;
}

/* Media Queries
------------------------------------------- */

@media only screen and (max-width: 768px) {



}