html{
	font-size: 62.5%
}
/*@media only screen and (max-width: 1600px) {
html{
		font-size: 62.5%
}
}*/

@media only screen and (max-width: 1170px) {
html{
		font-size: 50%
}
}

@media only screen and (max-width: 480px) {
html{
		font-size: 37.5%
}
}

body {
	background: url('bg.jpg');
	-webkit-background-size: ;
	background-size: cover;
	background-position: center center;
	font-size: 1.6rem;
	margin: 0;
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	min-height: 100vh;
}

section {
	width: 100%;
	max-width: 1170px;
	margin: auto;
	text-align: center
/*	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;*/

	/*justify-content: center;*/
}

.logo img {
	width: 10rem;
	padding-top: 2rem; 
	margin: auto;
	text-align: center
}

.button-wrapper {
	margin-bottom: 3rem;
}

.button-wrapper a {
	width: 30rem;
	display: block;
	margin: auto;
	padding: 1rem 2rem;
	border: 1px solid #D6483A;
	background-color: rgba(0,0,0,0);
	color: white;
	text-transform: uppercase;
	position: relative;
	text-decoration: none;
	overflow: hidden;
	transition: all .3s ease-in-out;
}

.button-wrapper a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background-color: #D6483A;
	width: 50%;
	z-index: -1;
	transition: all .3s ease-in-out;
	height: 100%;
}

.button-wrapper a:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
	transition: all .3s ease-in-out;
	background-color: #D6483A;
	width: 50%;
	height: 100%;
}

.button-wrapper a:hover {
	transition: all .3s ease-in-out;
	color: #000;
}

.button-wrapper a:hover:before{
	left: -50%;
}

.button-wrapper a:hover:after{
	right: -50%;
}
#more-products {
    width: 100%;
    padding-top: 3rem;
}

.more-products__column {
    background-color: #d6483a;
    width: 22%;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 1rem;
    margin: 0 .5% 2rem;
}

@media only screen and (max-width: 960px) {
.more-products__column {
	 width: 45%;
}
}
@media only screen and (max-width: 480px) {
.more-products__column {
	 width: 90%;
	 margin: 0 0 2rem;
}
}

.more-products__column h3 {
    text-align: center;
    font-size: 1.4rem;
    color: #fefefe;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s linear;
}

.more-products__column h3:after {
    content: '';
    position: absolute;
    bottom: -1.2rem;
    transition: all 0.3s linear;
    width: 6rem;
    left: 0;
    right: 0;
    margin: auto;
    height: 2px;
    background-color: #3c3950;
}

 .more-products__column .more-products__pic {
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    width: 100%;
    border: 1px solid #3c3950;
    border-radius: 5px;
    margin-top: 3rem;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
}

 .more-products__column .more-products__pic:after {
    content: '';
    position: absolute;
    top: 0;
    transition: all 0.3s linear;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    border-top: 900px solid rgba(0, 0, 0, 0.5);
    border-right: 900px solid transparent;
}

@media only screen and (max-width: 770px) {
     .more-products__column .more-products__pic:after {
        border-top: none;
        border-right: none;
        background-color: rgba(0, 0, 0, 0.5);
    }
}

 .more-products__column:hover .more-products__pic:after {
    left: -1800px;
}

@media only screen and (max-width: 770px) {
    .more-products__column:hover .more-products__pic:after {
        left: 0;
    }
}

.more-products__column:hover h3 {
    color: #3c3950;
}

.more-products__column:hover h3:after {
    width: 90%;
    background-color: #fefefe;
}
