/*=================================
PATIENT REVIEWS
=================================*/

.reviews{
    background:#fff;
    padding:80px 0;
    overflow:hidden;
}

/* Remove Bootstrap carousel background */
#reviewCarousel,
#reviewCarousel .carousel-inner,
#reviewCarousel .carousel-item{
    background:transparent !important;
}

.section-title{
    font-size:38px;
    font-weight:700;
    color:#0E4D64;
    margin-bottom:10px;
}

.section-subtitle{
    color:#666;
    max-width:700px;
    margin:0 auto 50px;
    font-size:16px;
    line-height:1.8;
}

.review-card{
    background:#fff;
    border-radius:15px;
    padding:35px;
    height:100%;
    border:1px solid #e9ecef;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.35s;
}

.review-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.stars{
    color:#ffc107;
    font-size:22px;
    margin-bottom:18px;
}

.review-card p{
    color:#555;
    line-height:1.8;
    font-size:16px;
    margin-bottom:25px;
}

.review-card h5{
    color:#0E4D64;
    font-weight:700;
    margin-bottom:5px;
}

.review-card small{
    color:#777;
}

/*=========================
Indicators
==========================*/

#reviewCarousel .carousel-indicators{
    bottom:-55px;
}

#reviewCarousel .carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#0E4D64;
    opacity:.4;
}

#reviewCarousel .carousel-indicators .active{
    opacity:1;
}

/*=========================
Navigation Arrows
==========================*/

#reviewCarousel .carousel-control-prev,
#reviewCarousel .carousel-control-next{
    width:50px;
    height:50px;
    top:50%;
    transform:translateY(-50%);
    background:#0E4D64;
    border-radius:50%;
    opacity:1;
}

#reviewCarousel .carousel-control-prev{
    left:-25px;
}

#reviewCarousel .carousel-control-next{
    right:-25px;
}

#reviewCarousel .carousel-control-prev-icon,
#reviewCarousel .carousel-control-next-icon{
    width:22px;
    height:22px;
    background-size:100%;
}

/*=========================
Responsive
==========================*/

@media(max-width:991px){

.section-title{
    font-size:32px;
}

.review-card{
    padding:28px;
    margin-bottom:20px;
}

#reviewCarousel .carousel-control-prev{
    left:0;
}

#reviewCarousel .carousel-control-next{
    right:0;
}

}

@media(max-width:768px){

.section-title{
    font-size:28px;
}

.review-card{
    padding:22px;
}

.review-card p{
    font-size:15px;
}

#reviewCarousel .carousel-control-prev,
#reviewCarousel .carousel-control-next{
    display:none;
}

}