.cont-feeds {
	gap: 1.5em;
	display: flex;
	padding: 2% 0;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
}

.item-feed {
	width: 285px;
	height: 286px;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.item-feed a {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
}

.cont-feeds__titles {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	font-family: "Titillium Web", Sans-serif;
}

.cont-feeds__titles .title {
	font-size: 0.938rem;
	font-weight: 400;
	line-height: 0.938rem;
	letter-spacing: 2.7px;
	text-transform: uppercase;
	color: var(--e-global-color-primary );
}

.cont-feeds__titles .sub-title {
	font-size: 2.125rem;
	font-weight: 600;
	line-height: 2.875rem;
	color: var(--e-global-color-primary );
}

.cont-feeds__link {
	padding-top: 2em;
	text-align: center;
}

.cont-feeds__link a {
	font-size: 1.188rem;
	font-weight: 500;
	border-radius: 3px;
	border-style: solid;
	padding: 0.7em 3em 0.7em 3em;
	background-color: #EA5B1100;
	text-decoration: none!important;
	font-family: "Roboto", Sans-serif;
	color: var(--e-global-color-primary );
}

/*RESPONSIVE*/

/*phone*/
@media (max-width: 767px) {

	.cont-feeds {
		gap: 1em;
	}

	.item-feed {
		width: 155px;
		height: 156px;
	}

	.item-feed:last-child {
		display: none;
	}

}

/*tablet*/
@media (min-width: 768px) and (max-width: 1024px) {

	.cont-feeds {
		gap: 1em;
	}

	.item-feed {
		width: 125px;
		height: 126px;
	}

}

/*mobile and tablet*/
@media (max-width: 1024px) {

}

/*desktop*/
@media (min-width: 1025px) {

}

/*pc portable*/
@media (min-width: 1025px) and (max-width: 1700px) {

	.cont-feeds {
		gap: 1em;
	}

	.item-feed {
		width: 215px;
		height: 216px;
	}

}


/*RESPONSIVE*/
