/*********************************
*                                *
*         PICT ICONS             *
*                                *
**********************************/

.pict-icons {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: flex-start;
	justify-content: center;
	gap: 50px;
	width: 100%;
	padding: 50px 0;
	background-color: #fff;
	border-radius: 10px;
}

.pict-icons-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.pict-bg {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
	width: 100px;
	background-size: cover;
	background-position: center;
	background-image: url('../images/pict-icons/0.svg');
}

.pict-icons-item img {
	height: auto;
	width: 35px;
	margin: auto 0;
}

.pict-icons-item span {
    text-align: center;
	padding-top: 30px;
	font-family: 'Manrope';
	font-weight: 200;
	font-size: 19px;
	color: #384332;
}

@media (max-width: 640px) {
	.pict-icons {
		border-radius: 0;
	}
}