/** ------------------------------------------------------------
MEDIC-specific "quote" sections

Sample/preview: https://bootsnipp.com/snippets/Bq909

*/
.text-center {
    text-align: center;
}
/* ------------------------------------------------------------
A2Z > Instructor page quote
*/
.quote-card {
    background: #fff;
    color: #222222;
    padding: 20px;
    padding-left: 50px;
    box-sizing: border-box;
    box-shadow: 0 0px 0px rgba(34, 34, 34, 0.12);
}
.quote-card cite {
    font-size: 16px;
    margin-top: 10px;
    display: block;
    font-weight: 200;
    opacity: 0.8;
}
.quote-card:before {
    font-family: Georgia, serif;
    content: "“";
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 5em;
    color: rgba(238, 238, 238, 0.8);
    font-weight: normal;
}
.quote-card:after {
    font-family: Georgia, serif;
    content: "”";
    position: absolute;
    bottom: -100px;
    line-height: 100px;
    right: -12px;
    font-size: 15em;
    color: rgba(238, 238, 238, 0.8);
    font-weight: normal;
}
.quote-card.blue-card {
    background: #0078FF;
    color: #ffffff;
    box-shadow: 0 1px 2px rgba(34, 34, 34, 0.12), 0 2px 4px rgba(34, 34, 34, 0.24);
}
.quote-card.blue-card:before, .quote-card.blue-card:after {
    color: #5FAAFF;
}
.quote-card.green-card {
    background: #00970B;
    color: #ffffff;
    box-shadow: 0 1px 2px rgba(34, 34, 34, 0.12), 0 2px 4px rgba(34, 34, 34, 0.24);
}
.quote-card.green-card:before, .quote-card.green-card:after {
    color: #59E063;
}
.quote-card.red-card {
    background: #F61E32;
    color: #ffffff;
    box-shadow: 0 1px 2px rgba(34, 34, 34, 0.12), 0 2px 4px rgba(34, 34, 34, 0.24);
}
.quote-card.red-card:before, .quote-card.red-card:after {
    color: #F65665;
}
.quote-card.yellow-card {
    background: #F9A825;
    color: #222222;
    box-shadow: 0 1px 2px rgba(34, 34, 34, 0.12), 0 2px 4px rgba(34, 34, 34, 0.24);
}
.quote-card.yellow-card:before, .quote-card.yellow-card:after {
    color: #FBC02D;
}
/*
    box-shadow: 0 1px 2px rgba(34, 34, 34, 0.12), 0 2px 4px rgba(34, 34, 34, 0.24);
*/
.quote-card.grey-card {
    background: rgb(250, 250, 250);
    color: #999;
}
/* ------------------------------------------------------------
A2Z > TOP > Reviews page quote
*/
.blockquote2 {
    /*margin: 100px 10px 10px 10px;*/
    /*    padding: 60px 10px 40px;*/
    padding: 60px 10px 20px 0px;
    position: relative;
    /*background-color: #f00;*/
}
.blockquote2 p {
    /*    font-family: "Utopia-italic";*/
    font-size: 18px;
    font-weight: 700px;
    text-align: center;
}
/*blockquote2 p::before {
    content: "\f095"; 
    font-family: FontAwesome;
   display: inline-block;
   padding-right: 6px;
   vertical-align: middle;
  font-size: 180px;
 }*/
.blockquote2:before {
    position: absolute;
    font-family: 'FontAwesome';
    top: 0;
    left: 0;
    content: "\f10d";
    font-size: 80px;
    color: rgba(50, 50, 50, 0.1);
}
.blockquote2::after {
    content: "";
    top: 20px;
    left: 50%;
    margin-left: -100px;
    position: absolute;
    /*    border-bottom: 3px solid #0ABFD1;*/
    border-bottom: 3px solid #ded;
    height: 3px;
    width: 200px;
}
.blockquote2-footer {
    /*    font-family: "Utopia-italic";*/
    /*    font-size: 18px;*/
    padding: 0px 0px 0px 5px;
    margin: 0px 0px 0px 0px;
    font-size: 1.2em;
    font-weight: 700px;
}
/* ------------------------------------------------------------
A2Z > END > Reviews page quote
*/
/* ------------------------------------------------------------
A2Z > RESPONSIVE
*/
/* ********************************************************
Smartphones (portrait and landscape)

and (max-device-width : 480px)

*/
@media only screen and (min-device-width : 320px) {
    .quote-card p {
        font-size: 22px;
        line-height: 1.5;
        margin: 0;
        max-width: 95%;
    }
} /* end @media */
/* ********************************************************
Desktops and laptops
*/
@media only screen and (min-width : 1224px) {
    .quote-card p {
        font-size: 22px;
        line-height: 1.5;
        margin: 0;
        max-width: 95%;
    }
} /* end @media */