﻿/* Design Gallery */
.dg-card-wrap {
    padding: 0 15px;
    margin-bottom: 38px;
    display: block;
    text-decoration: none;
}

    .dg-card-wrap:hover {
        text-decoration: none;
    }

.dg-card-title {
    font: 1.125em 'Gotham-Medium', sans-serif;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 15px
}

.dg-card-desc {
    font: 0.875em 'Gotham-Light', sans-serif;
    color: #b0aeb0;
    margin-bottom: 0;
    text-transform: uppercase;
}
.dg-card-img{
    width:100%;
}
.desktop-view {
    display: block;
}
.mobile-view {
    display: none;
}

@media (max-width: 767.99px) {
    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    .dg-card-wrap {
        padding: 0;
        margin-bottom: 58px;
    }
}
