.q-industry,
.q-industry:visited {
	background: #eee;
	text-align: center;
	padding: 12px 20px;
	transition: box-shadow .3s;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.q-industry__label {
    text-align: center;
    width: 100%;
    line-height: 1.5;
    color: #2F6DB2;
    font-weight: 600;
    font-size: 15px;
}

.q-industry__desc {
    color: #000000;
    font-size: 12px;
    line-height: 1.5;
    margin-top: 5px;
}

@media (min-width: 1024px) {
	.q-industry,
	.q-industry:visited {
		height: 100px;
		box-shadow: 0 3px 0px 0px #bec6c5;
	}
    
    .q-industry:hover {
    	box-shadow: 0 3px 0px 0px #006fb7;
    }

    .q-industry__label {
        font-size: 17px;
    }

    .q-industry__desc {
        font-size: 13px;
    }
}

@media (min-width: 1500px) {
    .q-industry__label {
        font-size: 20px;
    }

    .q-industry__desc {
        font-size: 15px;
    }
}