.iconesBox {
	display: flex;
	width: 100%;
	justify-content: center;
	padding: 1rem 0;
}

.iconesBox a {
	background-color: white;
	width: 7.5vw;
	height: 7.5vw;
	text-transform: uppercase;
	text-align: center;
	color: black;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	overflow: hidden;
	margin: 0 2rem;
}
.iconesBox h3 {
	font-size: 0.7rem;
	margin: 0;
	margin-top: 0.2rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	word-break: break-word;
}
.iconesBox img {
	height: 3.5vw;
	object-fit: contain;
	transition: all 0.3s ease;
}
.iconesBox a:hover,
.iconesBox .activeIcoBox {
	background-color: var(--blue-theme);
	color: white;
}
.iconesBox a:hover img,
.activeIcoBox img {
	filter: invert(1);
	transition: all 0.3s ease;
}

.prodList {
	margin: 2rem 15% 4rem;
}
.prodList article {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 1rem;
	border: 2px gray solid;
	height: 180px;
	margin: 1rem 0;
}
.prodList article > img {
	width: 20%;
	object-fit: contain;
	margin-right: 1%;
}
.prodList h4 {
	margin: 4px 0;
}
.prodList span,
.prodList p {
	margin: 0;
	font-size: 1rem !important;
}
.prodList h4 {
	text-transform: uppercase;
	font-size: 1.1rem;
}
.prodList .subtitle {
	font-weight: bold;
}
.prodList .subtitle span {
	margin: 0 8px;
}
.prodList .textBox {
	width: 62%;
	margin-right: 1%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	opacity: 1;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}
.prodList .btnBox {
	width: 16%;
}
.prodList .btnBox a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: white;
	padding: 4px 1rem;
	text-transform: uppercase;
	transition: all 0.5s ease;
}
.prodList .btnBox a span {
	flex: 1;
	text-align: center;
}
.prodList .btnBox img {
	max-height: 100%;
	width: 27px;
	object-fit: contain;
}

.devisBtn {
	background-color: var(--blue-theme);
	border: 2px var(--blue-theme) solid;
}
.prodList .btnBox .devisBtn:hover {
	background-color: white;
	color: var(--blue-theme);
	transition: all 0.5s ease;
}
.techBtn {
	border: 2px #d93600 solid;
	background-color: #d93600;
}
.prodList .btnBox .techBtn:hover {
	background-color: white;
	color: #d93600;
	transition: all 0.5s ease;
}

@media all and (max-width: 1500px) {
	.prodList .btnBox a {
		padding: 4px 0 4px 1rem;
	}
	.prodList {
		margin: 2rem 10% 4rem;
	}
}
@media all and (max-width: 1200px) {
	.iconesBox {
		flex-wrap: wrap;
		align-content: flex-start;
	}
	.iconesBox a {
		width: 13vw;
		height: 13vw;
		margin: 0 1vw;
	}
	.iconesBox img {
		height: 7vw;
	}
	.prodList {
		margin: 2rem 5% 4rem;
	}
	.prodList article {
		width: 96%;
		padding: 2%;
	}
	.prodList .btnBox a span {
		font-size: 0.8rem;
	}
}

@media all and (max-width: 1000px) {
	.iconesBox a {
		width: 14vw;
		height: 14vw;
	}
	.prodList article {
		height: 200px;
		flex-wrap: wrap;
	}
	.prodList .btnBox {
		width: 100%;
		flex-direction: row;
		align-items: center;
		justify-content: flex-end;
	}
	.prodList .textBox {
		width: 75%;
		margin-right: 0;
	}
	.prodList .btnBox a {
		margin-right: 8px;
	}
	.prodList .btnBox a span {
		margin-right: 8px;
	}
}

@media all and (max-width: 768px) {
	.prodList article {
		height: auto;
	}
	.prodList {
		margin: 2rem 1% 4rem;
	}
	.prodList .textBox {
		width: 50%;
	}
	.prodList article > img {
		width: 44%;
	}
}

@media all and (max-width: 500px) {
	.iconesBox a {
		width: 30vw;
		height: 20vw;
		margin-bottom: 1vw;
	}
}
@media all and (max-width: 400px) {
	.prodList .textBox {
		width: 100%;
	}
	.prodList article > img {
		width: 100%;
		max-height: 200px;
	}
	.prodList article {
		width: 95%;
	}
	.prodList .btnBox a span {
		font-size: 0.7rem;
	}
	.prodList .btnBox a {
		padding: 4px 0 4px 8px;
	}
	.prodList .btnBox img {
		width: 20px;
	}
}
