.page-title {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/background.jpg");
    width: 100%;
    height: 20%;
}

.page-title-heading h2 {
    padding-left: 20px;
    margin-bottom: 12px;
    color: #fff;
}

.page-title-heading h2:before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: dodgerblue;
}

.card-img-top {
    width: 100%;
    height: 100%;
}

.section-title h1 {
    height: calc(3.5rem + 5px);
}

.section-title h1:before {
    position: absolute;
    top: 3.5rem;
    content: "";
    width: 125px;
    height: 3px;
    background-color: dodgerblue;
}

.section-title h1:after {
    position: absolute;
    top: calc(3.5rem - 1px);
    left: 0;
    content: "";
    width: 15px;
    height: 5px;
    background-color: #ffffff;
    animation: moveLeftBounces 10s linear infinite;
}

@keyframes moveLeftBounces {
    0% {
        transform: translateX(0px) scaleX(5%);
    }
    50% {

        transform: translateX(125px);
    }
    100% {
        transform: translateX(0px) scaleX(100%);
    }
}

.card {
    transition-duration: 0.2s;
}

.card:hover {
    box-shadow: 0 4px 8px rgba(38, 38, 38, 0.2);
    transition: all 1s ease-out;
    background-color: white;
}

.card img {
    width: 100%;
    height: 100%;
}

.chart{
    width: 100%;
    min-height: 100%;
}

.bg-color{
    background-color: #F3F3F3;
}

/*---Media Queries --*/
@media (max-width: 1200px) {

}

@media (max-width: 992px) {

}

@media (max-width: 768px) {

}

@media (max-width: 576px) {
    .chart{
        width: 100%;
        min-height: 100%;
    }
}