.main_content_grid {
/*    background-color: red;*/
    width: 100%;
/*    height: calc(100vh - 105px);*/
/*    height: 100vh;*/
    /* margin-top: 315px; */
    position: relative;
    top: 40px;
    top: 10px;
    padding-top: 20px;
    
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-template-rows: repeat(auto-fill, minmax(260px, 1fr));
/*    grid-template-columns: auto auto auto auto;*/
/*    grid-auto-rows: 1fr;*/
    
    
}

@media only screen and (max-width: 390px) {
    .main_content_grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        grid-template-rows: repeat(auto-fill, minmax(190px, 1fr));
    }
}

.grid_card {
    
    padding: 5px;
    
    /* height: 255px; */
    
    margin: 10px;
    
/*
    grid-row: 1 / 1;
    grid-column: 1 / 1;
*/
    
    background-color: white;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0px 10px 1px rgba(64, 64, 64, 0.37);
    -webkit-box-shadow: 0 0px 10px 1px rgba(64, 64, 64, 0.37);
    -moz-box-shadow: 0 0px 10px 1px rgba(64, 64, 64, 0.37);
    
    cursor: pointer;
}
.grid_card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    margin: 0;
    border-radius: 8px;
}

.grid_card h3 {
    margin-top: 2px;
    margin-bottom: 5px;
    /* background-color: red; */
}

.grid_card p {
    margin: 0;
    padding: 0;
    float: left;
    height: 30px;
    line-height: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    margin-left: 5px;
}

.grid_card button {
    margin: 0;
    padding: 0;
    float: right;
    height: 30px;
    line-height: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background-color: #3077E1;
    width: 70px;
    border: none;
    outline: none;
    border-radius: 15px;
    color: white;
    font-weight: 600;
}