/* MAJOR INDUSTRIES GRID */
.ind-grid {
    background-color: #f0eeef;
    color: #313034!important;
    overflow: hidden;
    padding: 60px 0 60px;
}
.ind-grid h2 {
    text-align: center;
    color: #313034!important;
    max-width: 1200px;
    margin: auto;
}
.ind-grid h3 {
    color: #313034!important;
    text-align: center;
}
.ind-grid__row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.ind-grid__item {
    text-align: center;
    min-height: 300px;
    min-width: 19vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
@media (max-width:1099.96px){
    .ind-grid__item {
        min-width: 30vw;
    }
}
@media (max-width:767.96px){
    .ind-grid__item {
        min-width: 48vw;
        min-height: 250px;
    }
}
@media (max-width:399.96px){
    .ind-grid__item {
        min-width: 48vw;
        min-height: 200px;
    }
}