@import url(root.css);
.xzoom {
    width: 260px;
    height: auto;
}
.section__title {
    font-size: 2.188rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--black-color);
}

.section__subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--dark-grey-color);
}

.products__wrapper {
    display: flex;
    margin-top: 100px;
    justify-content: center;
    flex-wrap: wrap;
}

.products__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    margin: 20px;
    cursor: pointer;
    border: 1px solid #fff;
    transition: .3s;
}

.products__content p {
    color: var(--genex-green-color);
}
.products__content:hover {
    border: 1px solid var(--genex-green-color);
}

.products__content .products__img {
    width: auto;
	max-width:100%;
	max-height: 200px;
	height:auto;
}

.products__content .product__title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.products__content .products__subtitle {
    text-align: center;
    font-size: .9rem;
    font-weight: 700;
}
.products__content a,
.products__content a:hover,
.products__content a:active,
.products__content a:visited,
.products__content a:focus{
	color: var(--black-color);
	height:300px;
	display:flex;
	flex-direction: column;
	align-content: center;
    align-items: center;
}

.steps__subtitle a,
.steps__subtitle a:hover,
.steps__subtitle a:active,
.steps__subtitle a:visited,
.steps__subtitle a:focus{
	color: var(--black-color);
}

.products__content a>figure{
	height: 200px;
	vertical-align: middle;
    display: flex;
}
#products .products__wrapper .products__content a>figure>img{
	margin-top:auto;
	margin-bottom:auto;
}