
body {
	padding-top: 115px;
}

.page_content header {
	background: #033936;
}

.page_content .section_text {
}

.page_content .section_text .wrapper {
	padding: 40px 20px;
}

.page_content .section_text h2 {
	color: #004E49;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 20px;
}

.page_content .section_text p {
	margin: 0 0 20px 0;
}

.page_content .section_text h3 {
	color: #004E49;
	font-family: 'Montserrat Medium', 'Montserrat', sans-serif;
	font-size: 18px;
	margin-bottom: 20px;
}

.page_content .section_text .filter {
	display: flex;
	justify-content: flex-start;
	gap: 20px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.page_content .section_text .filter .item,
.page_content .section_text .filter .item a {
	color: #004E49;
	font-family: 'Montserrat Medium', 'Montserrat', sans-serif;
	font-size: 14px;
	text-decoration: none;
}

.page_content .section_text .filter .item {
	background: #F1F4F4;
	width: 130px;
	height: 26px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	user-select: none;
	cursor: pointer;
	flex-shrink: 0;
}

.page_content .section_text .filter .item.selected,
.page_content .section_text .filter .item.selected a
{
	background: #004E49;
	color: #fff;
	font-weight: bold;
}


.page_content .section_text .products
{
	display: flex;
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.page_content .section_text .products .product
{
	width: calc(32.5% - 10px);
	display: flex;
	flex-direction: column;
}

.page_content .section_text .products .image
{
	border-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

.page_content .section_text .products .image img
{
	display: block;
	max-width: 100%;
	max-height: 100%;
}

.page_content .section_text .name,
.page_content .section_text .name a
{
	color: #004E49;
	font-family: 'Montserrat ExtraBold', 'Montserrat', sans-serif;
	font-size: 24px;
	text-decoration: none;
}

.page_content .section_text .name {
	margin-bottom: 10px;
}


.page_content .section_text .description
{
	color: #004E49;
	font-family: 'Montserrat Medium', 'Montserrat', sans-serif;
	font-size: 10px;
	margin-bottom: 30px;
}

.page_content .section_text .buttons
{
	display: flex;
	gap: 10px;
	justify-content: flex-start;
	margin: auto 0 0 0;
}

.page_content .section_text .buttons > *
{
	width: 48%;
}

.page_content .section_text .price
{
	color: #004E49;
	font-family: 'Montserrat Medium', 'Montserrat', sans-serif;
	font-size: 20px;
	margin-bottom: 10px;
}



.page_content .section_text .button.buy {
	font-size: 14px;
	width: 130px;
	height: 36px;
	min-height: auto;
	font-family: 'Montserrat Medium', 'Montserrat', sans-serif;
	font-weight: bold;
}

.page_content .section_text .button_details {
	font-size: 14px;
	width: 140px;
	height: 36px;
	min-height: auto;
	font-family: 'Montserrat Medium', 'Montserrat', sans-serif;
	text-transform: none;
}



@media all and (max-width: 800px) {

	body {
		padding-top: 60px;
	}

	.page_content .section_text .products {
		flex-wrap: wrap;
	}

	.page_content .section_text .products .product {
		width: 48%;
		max-width: 320px;
	}

	.page_content .section_text .filter {
		justify-content: flex-start;
	}


}


@media all and (max-width: 640px) {
	.page_content .section_text .products {
		flex-direction: column;
		align-items: center;
	}

	.page_content .section_text .products .product {
		width: 100%;
		max-width: 320px;
	}



}



@media all and (max-width: 480px) {
	.page_content .section_text .filter {
		justify-content: center;
	}
}