.d-col {
    display: grid;
    gap: 30px;
    padding: 2em 0;
}
.d-col.three {grid-template-columns: 1fr 1fr 1fr;}
.d-col.four {grid-template-columns: 1fr 1fr 1fr 1fr;}

.d-item {
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #d5d8dc;
}
.d-content {
    padding: 0 25px 25px;
}
.d-img {
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    height: 175px;
    text-align: center;
    margin-bottom: 25px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.d-img img {
    height: 100% !important;
}

h3.d-title {
    margin-bottom: 20px !important;
    font-size: 20px;
    font-weight: 500 !important;
}

.d-desc {
    margin-bottom: 10px;
}

.d-button {
    background: #0f172a;
    color: #fff !important;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 5px;
    display: inline-block;
}

@media only screen and (max-width:767px) {
  .d-col.three, .d-col.four{grid-template-columns: 1fr;}
}
