@charset "UTF-8";

#footer {
    position: static;
    bottom: 0;
	width: 100%;
}

/* VACE card */
*{
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family: "montserrat";
}

body{
  background: #FFF;
}

.middle{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.card{
  cursor: pointer;
  width: 500px;
  height: 480px;
}

.front,.back{
  width: 100%;
  height: 100%;
  overflow: hidden;
  backface-visibility: hidden;
  position: absolute;
  transition: transform .6s linear;
}

.front img{
  height: 100%;
}

.front{
  transform: perspective(600px) rotateY(0deg);
}

.back{
  background: #f1f1f1;
  transform: perspective(600px) rotateY(180deg);
}

.back-content{
  color: #2c3e50;
  text-align: center;
  width: 100%;
}

.sm{
  margin: 20px 0;
}

.sm a{
  display: inline-flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  color: #2c3e50;
  font-size: 18px;
  transition: 0.4s;
  border-radius: 50%
}

.sm a:hover{
  background: #2c3e50;
  color: white;
}

.card:hover > .front{
  transform: perspective(600px) rotateY(-180deg);
}

.card:hover > .back{
  transform: perspective(600px) rotateY(0deg);
}

/* Menu */
body
{
  background-image: url("images/vace_folleto.png");
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: 'Raleway', serif;
}

header
{
	position: fixed;
	max-width: 100%;
	margin: 0 auto;
	padding: 10px;
	background: #fff;
	box-sizing: border-box;
	border-radius: 4px;
	box-shadow: 0 2px 5px rgba(0,0,0,.2);
	font-size:15px;
	z-index: 9999;
}

.logo
{
	height: 0;
	line-height: 0;
	padding: 0 20px;
	text-align: center;
	box-sizing: border-box;
	float: left;
}

.clearfix
{
	clear: both;
}

nav
{
	float: right;
}

nav ul
{
	margin: 0;
	padding: 0;
	display: flex;
}

nav ul li
{
	list-style: none;
}

nav ul li a
{
	display: block;
	margin: 10px 0;
	padding: 10px 20px;
	text-decoration: none;
	color: #262626;
}

nav ul li a.active,
nav ul li a:hover
{
	background: #FE9A2E;
	color: #fff;
	transition: 0.5s;
}

@media (max-width: 1200px)
{
	header
	{
		margin: 0;	
	}
}

@media (max-width: 768px)
{
	.menu-togle
	{
		display: block;
		width: 40px;
		height: 40px;
		margin: 10px;
		background: #fff;
		float: right;
		cursor: pointer;
		text-align: center;
		font-size: 30px;
		color:#FE9A2E;
	}
	.menu-togle:before
	{
		content: '\f0c9';
		font-family: fontAwesome;
		line-height: 40px;
	}
	.menu-togle.active:before
	{
		content: '\f00d';
	}
	
	nav
	{
		display: none;
	}
	
	nav.active
	{
		display: block;
		width: 100%;
	}
	
	nav.active ul
	{
		display: block;
	}
	
		nav.active ul li a
	{
		margin: 0;
	}
}

