﻿


.testimonial {
    align-items: stretch;
    justify-content: space-between;
}

    .testimonial > div:first-child {
        height: auto;
    }

    .testimonial > div:last-child {
        height: 205px;
    }


/* ********************************************************  */
/* Custom Cards (Services) */
/* ********************************************************  */

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    background-color: #fff;
    border: none;
    border-radius: 10px;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    -webkit-box-shadow: 0 2px 12px rgba(188, 191, 200, 0.2), 0 2px 12px rgba(188, 191, 200, 0.3) !important;
    box-shadow: 0 2px 12px rgba(188, 191, 200, 0.2), 0 2px 12px rgba(188, 191, 200, 0.3) !important;
}

    .card:hover {
        transform: translateY(-3px);
        -webkit-box-shadow: 0 3px 20px rgba(188, 191, 200, 0.2), 0 3px 20px rgba(188, 191, 200, 0.4) !important;
        box-shadow: 0 3px 20px rgba(188, 191, 200, 0.2), 0 3px 20px rgba(188, 191, 200, 0.4) !important;
    }

    .card-body > img {
        width: 100%;
        max-width: 100%;
        height: auto;
        -webkit-backface-visibility: hidden;
    }

.card-w-raised-img-top .card-body {
    padding-top: 0;
}

.card-body {
    flex: 1 1 auto;
    padding: 40px 30px;
}

.card-w-raised-img-top {
    margin-top: 70px;
}

.card-raised-img-top {
    margin-top: -70px;
}

.rounded {
    border-radius: 10px !important;
}

.raised {
    -webkit-box-shadow: 0 2px 10px rgb(188 191 200 / 10%), 0 2px 10px rgb(188 191 200 / 20%) !important;
    box-shadow: 0 2px 10px rgb(188 191 200 / 10%), 0 2px 10px rgb(188 191 200 / 20%) !important;
}

/* ********************************************************  */
/* Media Tag Additions Colors */
/* ********************************************************  */
/* X SMALL */
@media (max-width: 576px) {
}


/* SMALL */
@media only screen and (min-width: 576px) {
}

/* MEDIUM */
@media only screen and (min-width: 768px) {
    .testimonial > div:first-child {
        height: 225px;
    }

    .service-range-img {
        max-width: 450px;
        margin: 0 auto;
    }
}

/* LARGE */
@media only screen and (min-width: 992px) {
    .testimonial > div:first-child {
        height: 245px;
    }

    .service-range-img {
        max-width: 100%;
    }
}


/* X-LARGE */
@media only screen and (min-width: 1200px) {
    .testimonial > div:first-child {
        height: 235px;
    }
}






