.technical_areas {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.technical_area {
    width: 50%;
    padding: 1em;
    text-align: center;
	position: relative;
}

.technical_area:hover {
	background: #00357d;
}

@media (min-width: 768px) {
	.technical_area {
        width: 25%;
	}
}

@media (min-width: 992px) {
	.technical_area {
		width: 14.2857%;
	}
}

.technical_area svg {
	height: 100px;
	width: 100%;
}

.technical_area:hover svg > * {
    fill: #FFFFFF;
}

.technical_area__title {
    font-size: .85em !important;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
}

.technical_area:hover .technical_area__title {
	color: #FFFFFF !important;
}

.technical_area__link {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
    text-indent: -9999px;
}