html {
	font-family: 'Cabin', 'Century Gothic', sans-serif;
	font-size:16px;
	background-image: url(../img/bg-reduit-manesco.png);
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

a, .menu li, input[type="submit"] {
	text-decoration: none;
	-webkit-transition: all .3s ease-in;
	transition: all .3s ease-in;
}

input[type="submit"] {
	background-color: #73B295;
	color: #0075A0;
	font-weight: bold;
	border: thin solid #0075A0;
}

input[type="submit"]:hover {
	opacity: .75;
	background-color: #0075A0;
	color: #73B295;
}

.b-blue { background-color: #0075A0; }

.f-blue { color: #0075A0; }

.b-green { background-color: #73B295; }

.f-green { color: #73B295; }

.bold { font-weight: bold; }

.menu-btn {
	position: fixed;
	top: 1rem;
	right: 1rem;
	z-index: 999;
	display: block;
	width: 3rem;
	height: .65rem;
	padding: 1rem;
	font-size: 1rem;
}

.menu-btn::before {
	content: ' ';
	position: fixed;
	top: 1rem;
	right: 1rem;
	width: 1em;
	height: .15em;
	display: block;
	font-size: 3em;
	background-color: #0075A0;
	border-radius: .15em;
	box-shadow: 
		0 .25em 0 #0075A0,
		0 .5em 0 #0075A0;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 998;		
	height: 4rem;
}

.logo { 
	position: relative;
	z-index: 998;
	left: 1rem;
	top: 1rem;
	width: 110px;
	height: 62px;
	display: block;
	text-indent: -9999px;
	background-image: url('../img/logo-reduit-manesco.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.menu {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 998;
	max-width: 100%;
	max-height: 0;
	padding: 0;
	margin: 0;
	overflow: hidden;
	background-color: #FFF;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
	-webkit-transform: translateY(100vh);
	transform: translateY(100vh);
}

.menu.active { 
	max-height: 100vh;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.menu ul { 
	background-color: #73B295;
	border-top: thin solid #0075A0;
}

.menu li { border-bottom: thin solid #0075A0; }

.menu a {
	display: block;
	padding: 1.5rem;
	width: inherit;
	font-size: 1.5rem;
	font-weight: 700;
	color: #0075A0;
}

.menu a:hover, .menu li:hover {
	background-color: #0075A0;
	color: #FFF;
}

.main {
	margin: auto;
	max-width: 1200px;
	background-color: rgba(255, 255, 255, .5);
}

.section {
	width: 100%;
	min-height: 100vh;
	padding: 0 1rem;
	padding-top: 6rem
}

.section > div, .wrapper {
	width: inherit;
	min-height: 80vh;
}

.owl-carousel .item img{
	display: block;
	width: 100%;
	height: auto;
}

#que-es img {
	display: block;
	margin: auto;
	max-width: 600px;
	height: auto;
}

.productos {
	min-height: 100vh;
	width: inherit;
	overflow: visible;
}

#contacto a {
	color: #0075A0;
}

#contacto a:hover {
	color: #FFF;
}

@media screen and (min-width: 30em) {
}

@media screen and (min-width: 48em) {
	#inicio p:first-child { top: 20vh; }

	#inicio p:nth-child(2) { top: 30vh;	}

	#inicio p:last-child { top: 40vh; }
}

@media screen and (min-width: 64em) {
	.menu-btn { display: none; }

	.logo { 
		position: static;
		background-position: left;
		margin-left: 1rem;
	}

	.menu {
		position: static;
		top: 0;
		max-height: none;
		overflow: visible;
		background-color: transparent;
		-webkit-transition: none;
		transition: none;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	
	.menu ul, .menu li, .menu a:hover { 
		background-color: transparent;
		border: 0;
	}

	.menu a { 
		display: inline;
		font-size: 1.75rem;
	}

	.menu a:hover { color: #73B295;	}

	.header { margin-top: 1rem; }

	.section { padding-top: 5.5rem; }

	.lg-order1 { order: 1; }
}