﻿
/* Add some shadows to create a card effect */
.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

/* Some left and right padding inside the container */
.container {
    padding: 0 16px;
}

    /* Clear floats */
    .container::after, .row::after {
        content: "";
        clear: both;
        display: table;
    }

.title {
    color: grey;
}

.button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

.button:hover {
    background-color: #555;
}

.read-more {
    margin-top: 8px;
    padding-right: 0px;
    color: rgba(208, 208, 208,1);
    transition: color 0.3s ease;
}
.read-more:hover{
    color: rgba(208, 208, 208,0.5);
    text-decoration:none;
}

.read-more-icon {
    font-size: 12px;
    margin-right: 4px;
    margin-left: 10px;
    top: 3px;
    vertical-align: top;
}

.card-color {
    /*background-color: rgba(0,0,0,.6);*/
    /*background-color: rgba(25, 112, 170,0.6);*/
    /*background-color: rgba(31, 130, 196,0.5);*/
    background-color: #2c6387;
    /*color: #d0d0d0;*/
    height: 130px;
}

.img-card {
    height: 130px;
}

@media (max-width: 991px) {
    .card-color {
        width: 150px;
    }
    .card-content{
        width:100%;
        padding-left:20px
    }
}