.slide .bgImage {
    height: 100%;
    border-radius: 10px;
    padding-top: 15px;
    padding-left: 15px;
}

.slide .bgImage .details {
    padding: 5px;
    border-radius: 100px;
    font-size: 9px;
    text-align: center;
    background: rgba(255,255,255,0.5);
}

.blogItem {
    margin-bottom: 30px;
    cursor: pointer;
}

.blogItem a {
    text-decoration: none;
}

.blogItem .bgImage {

    position: relative;
    height: 15vh;
    border-radius: 10px;
    /*padding: 10px 10px;*/
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: gray;
    display: table;
}

.blogItem:hover .bgImage {
    background-size: 120%;
}

.blogItem .bgImage::before {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    content: '';
    /*background: linear-gradient(90deg, rgba(0, 189, 200, 0.4) 40%, rgba(0, 213, 195, 0.7) 100%);*/
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 0;
}

.blogItem .bgImage .title {
    position: absolute;
    bottom: 5px;
    width: auto;
    left: 10px;
    margin-top: 5px;
    font-size: 11px;
    height: 35px;
    z-index: 2 !important;
}

.blogItem .desc {
    margin-top: 5px;
    font-size: 10px;
    text-align: left;
    color: rgba(0,0,0,0.7);
    z-index: 2 !important;
}

.blogItem .desc span, .blogItem .desc p {
    font-size: 11px !important;
    line-height: 17px !important;
}

.blogItem .details {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 100px;
    padding: 5px;
    font-size: 9px;
    text-align: center;
    color: rgba(0,0,0,0.9);
    font-family: "BPG Arial Caps";
    background: rgba(255,255,255,0.8);
    z-index: 2 !important;
}

.blogDetails .card {
    padding: 20px;
    text-align: justify-all;
    border-color: rgba(0,0,0,0);
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.05);
    background: rgba(255,255,255,0.4);
}

.blogDetails .card .card-header {
    background: rgba(0,0,0,0.02) !important;
}

.blogDetails .card p {
    margin: 10px 0px 10px 0px !important;
    color: rgba(0, 0, 0, 0.8);
}