.presigum-page {

}
.page-image {
	margin-bottom: 1rem;
}
.page-image img {
	display: block;
	max-width: 100%;
}

.product-line {
	display: flex;

	padding: 1rem;
	margin-bottom: 2rem;
}

.bg-1 {
	background: rgb(133 148 171);
	background: linear-gradient(214deg, rgb(133 148 171) 35%, rgba(53,155,255,1) 100%);
}

.product-line .image {
	width: 33%;
	padding: 1rem;
	margin-bottom: 1rem;


}
.description {
	width: calc(100% - 33%);
	color: #fff;
	font-size: 0.8em;
	padding: 1rem;
}

.description h2 {
	color: #fff;
}
.buy-button {
	display: block;
	color: #fff;
	padding: 1rem;
	font-size: 1.5rem;
	text-decoration: none;
	background: #dc2623;
	text-align: center;
	margin: 1rem 0;
	opacity: 1;
	transition: .6s;
}
.buy-button:hover {
	opacity: .9;
}

.product-list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
	align-items: center;
}

.product-list a {
	text-shadow: none;
}

.product-list .item {
	width: calc(100% / 4 - 30px);
	margin: 1rem 15px;
	background: #fff;
	border-color: #dc2623;
	text-align: center;
    box-shadow: 1px 2px 10px 0 rgba(0,0,0,.2);
    padding: 1rem;
}
.product-list .item a span {
	display: block;
	color: #000;
}
.product-list .item .btn {
	display: block;
	color: #fff;
	padding: 1rem;
	font-size: 1.1rem;
	text-decoration: none;
	background: #dc2623;
	text-align: center;
	margin: 1rem 0;
	opacity: 1;
	transition: .6s;
}

@media (max-width: 1100px) {
	.product-line {
		flex-wrap: wrap;
	}
	.product-line .image {
		width: 100%;
		order: 2;
	}
	.description {
		width: 100%;		
		order: 1;
	}
}

@media (max-width: 800px) {
	.product-list .item {
		width: calc(100% / 2 - 30px);
	}
	.product-list .item .btn {
		display: block;
		color: #fff;
		padding: .75rem;
		font-size: .9rem;
		text-decoration: none;
		background: #dc2623;
		text-align: center;
		margin: 1rem 0;
		opacity: 1;
		transition: .6s;
	}

}