﻿/*Card Widget*/
.card-widget-container {
    width: 100%;
    height: 100%;
    text-align: center;
}

.card-widget-img{
    max-height: 200px;
    object-fit: cover;
}

.card-widget-header-text {
    color: #5C3D2B;
    font-family: 'Montserrat Black', sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: normal;
    height: 85px;
    line-height: 30px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 16px;
}

.card-widget-detail-text {
    color: #5C3D2B;
    font-family: 'Raleway Medium', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    overflow-wrap: break-word;
}

@media(max-width:991px) {
    .card-widget-header-text {
        line-height: 24px;
        height: 85px;
        font-size: 24px;
    }
}
@media(max-width:767px) {
    .card-widget-header-text {
        line-height: 30px;
        height: 110px;
        font-size: 30px;
    }
}

@media(max-width:575px) {
    .card-widget-container {
        height: 100%;
    }

    .card-widget-header-text {
        line-height: 24px;
        height: 50px;
        font-size: 24px;
    }
}