*, body {
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
	margin: 0;
	padding: 0;
}

body.page-id-2,
body.category-1 {

	background-color: #f29940;
}

body p {

	padding-bottom: 10px;
	line-height: 21px;
	color: #fff;
}

.contador {

	position: absolute;
	left: -7px;
	top: -8px;
	background: #d13260;
	width: 20px;
	height: 20px;
	text-align: center;
	color: #fff;
	font-size: 12px;
	border-radius: 100%;
}

ul, ol {

	margin: 0;
	padding: 0;
}

img {

	max-width: 100%;
	height: auto;
}

img, iframe {

	vertical-align: top;
}

.center {

	width: 1020px;
	margin: 0 auto;
}

a {

	color: #333;
	text-decoration: none;
}

.button {

	background-color: #cb3b0a;
    color: #fff;
    border-radius: 5px;
    text-transform: uppercase;
    width: 100%;
    font-size: 12px;
    padding: 7px 15px;
    display: inline-block;
    text-align: center;
}

.button:hover {

	background-color: #f44336;
}

.items {

	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 30px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.item {

	background-color: #fff;
    box-shadow: 0px -1px 7px 1px rgb(51 51 51 / 42%);
    border-radius: 5px;
    padding: 15px;
    position: relative;
}

.item img {

    width: 170px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #33333333;
    box-shadow: 0px 2px 6px #33333326;
}

.title {

	font-size: 1em;
}

.header-1 {

	text-align: center;
	padding-top: 30px;
}

.header-1 span {

	text-decoration: underline;
}

.header-2 {

	background-color: #1d2327;
	padding: 20px;
}

.header-2 p {

	color: #fff;
	text-align: center;
}

.header-2 span {

	display: inline-block;
	width: 100%;
}

.header-2 i {

	font-style: normal;
	text-decoration: underline;
}

.count {

	font-size: 25px;
	text-align: center;
	display: inline-block;
	width: 100%;
	font-weight: bold;
	margin-bottom: 15px;
}

.copy {

	text-align: center;
	font-size: 10px;
}

@media (max-width: 1020px) {

	.center {

		width: 100%;
	}

}

@media (max-width: 800px) {

	.items,
	.header-1 {

		padding: 15px;
	}

	.items {

		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 520px) {

	p {

		font-size: 12px;
	}

	.button {

		font-size: 13px;
		padding: 5px 10px;
	}


	.items {

		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		margin-top: 0px;
	}

}