#article-header {
	overflow: hidden;
}

#article-header img,
#article-header h1,
#home-jokes {
	opacity: 0;
	transform: translate3d(0, 25px, 0);
	transition: opacity .8s ease, transform .8s ease;
	-webkit-backface-visibility: hidden;
}

#home-jokes {
	display: block;
	position: relative;
	width: 100%;
	height: 20px;
}

#home-jokes p {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	line-height: 1;
	transform: scale(0.95) translateZ(0);
	transition: opacity 1s ease, transform 1s ease;
	-webkit-backface-visibility: hidden;
}

#home-jokes p.active {
	opacity: 1;
	visibility: visible;
	transform: scale(1) translateZ(0);
}

#home-jokes p.hide {
	opacity: 0;
	visibility: visible;
	transform: scale(1.05) translateZ(0);
}

#home-products {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	box-sizing: border-box;
	width: 100%;
	padding: 4px 0 0;
	margin: 50px auto 0;
	border-left: 8px solid #242526;
	border-right: 8px solid #242526;
	background-color: #242526;
}

#products-header {
	display: block;
	box-sizing: border-box;
	padding: 50px 20px 46px;
	width: 100%;
	text-align: center;
	font-weight: 900;
	font-size: 38px;
	color: #adb0b5;
	line-height: 1;
}

.home-product-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 100%;
	margin: 4px 0;
	padding: 50px 20px 40px;
	background-color: #18191a;
	border-radius: 8px;
}

.home-product-card.half {
	width: calc(50% - 4px);
}

.home-product-card-top {
	display: block;
	margin: 0 auto;
	width: 100%;
}

.home-product-card-top img {
	display: block;
	width: 100px;
	height: 100px;
	margin: 0 auto 20px;
}

.home-product-card-top p {
	display: block;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 900;
	margin: 0;
}

.home-product-card-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 auto;
}

.home-product-card-desc {
	display: block;
	width: 100%;
	max-width: 500px;
	text-align: center;
	font-weight: 500;
	font-size: 14px;
	color: #adb0b5;
	margin: 10px auto;
}

.home-product-card-links a {
	display: block;
	margin: 10px;
	font-size: 15px;
	font-weight: 500;
}

#home-products + footer {
	margin: 0;
}

@media screen and (max-width: 768px) { 

	.home-product-card.half {
		width: 100%;
	}

	.home-product-card-top img {
		width: 100px;
		height: 100px;
	}

	.home-product-card-top p {
		font-size: 18px;
	}

}

@media screen and (max-width: 600px) { 

	#products-header {
		font-size: 24px;
		padding: 30px 20px 26px;
	}

	.home-product-card-top img {
		width: 80px;
		height: 80px;
	}

	.home-product-card-top p {
		font-size: 16px;
	}

}

