*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }

body {
	background: #eee;
	color: #6c6e6f;
	font-weight: 300;
	overflow-y: scroll;
	overflow-x: hidden;
	font-size: 100%;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
}

.clearfix:before,
.clearfix:after {
	display: table;
	content: " ";
}

.clearfix:after {
	clear: both;
}
.container {
	width: 760px;
	min-height: 400px;
	margin: 40px auto 0 auto;
}
.left {
	width: 220px;
	min-height: 400px;
	float: left;
}
.right {
	width: 520px;
	min-height: 400px;
	float: left;
	padding: 20px 0 0 20px;
	border-left: 1px solid #c7c7c7;
}
h1, h2 {
	font-size: 24px;
	font-weight: 500;
	color: #062f43;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-family: "omnes-pro",sans-serif;
	margin: 0;
	line-height: 24px;
}
h2 {
	color: #1babe3;
}
h5 {
	text-transform: uppercase;
	letter-spacing: 0.3em;
	font-family: "omnes-pro",sans-serif;
	color: #a0a0a0;
	font-size: 11px;
}
p {
	font-family: "expo-serif-pro",serif;
	color: #062f43;
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
	text-align: justify;
}

section {
	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

section a {
	position: relative;
	display: inline-block;
	outline: none;
	color: #404d5b;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

section a::before,
section a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

/* Slide up */

.link-slideup a {
	overflow: hidden;
	font-weight: 900;
	padding: 0 2px;
}

.link-slideup a:active {
	-webkit-transform: translateY(3%);
	transform: translateY(3%);
}

.link-slideup a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #c7c7c7;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

.link-slideup a:hover::before,
.link-slideup a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

footer {
	border-top: 1px solid #c7c7c7;
}

svg {
	pointer-events: none;
}

.face {
	width: 220px;
	margin: 0 auto 0 auto;
}
figure {
	width: 220px;
	margin: 0 auto 0 auto;
	height: 320px;
}

.drawings {
	position: relative;
	/* max-height: 400px; */
	margin: 0 auto;
}

.line-drawing path {
	stroke: #00435B;
	stroke-width: 3;
	-webkit-animation: riempi 3s; /* Safari 4+ */
	-moz-animation:    riempi 3s; /* Fx 5+ */
	-o-animation:      riempi 3s; /* Opera 12+ */
	animation:         riempi 4s; /* IE 10+ */        
}

/* Animation */
@-webkit-keyframes riempi {
      0% {fill: #eee;}
	  90% {fill: #eee;}
     100% {fill: #00435B;}
}
@-moz-keyframes riempi {
      0% {fill: #eee;}
	  90% {fill: #eee;}
     100% {fill: #00435B;}
}
@-o-keyframes riempi {
      0% {fill: #eee;}
	  90% {fill: #eee;}
     100% {fill: #00435B;}
}
@-ms-keyframes riempi {
      0% {fill: #eee;}
	  90% {fill: #eee;}
     100% {fill: #00435B;}
}
@keyframes riempi {
      0% {fill: #eee;}
	  90% {fill: #eee;}
     100% {fill: #00435B;}
}


path.line-round {
	stroke-linecap: round;
}

path.stroke-medium {
	stroke-width: 2;
}

path.stroke-thin {
	stroke-width: 1;
}

.info {
	width: 200px;
	border-top: 1px solid #c7c7c7;
	padding: 20px 0 0 0;
	margin: 0 0 20px 0;
}

.info ul {
	margin: 0;
	padding: 0;
}

.info ul li{
	text-align: right;
	list-style: none;
}
.info ul li a {
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	font-family: "omnes-pro",sans-serif;
	color: #a0a0a0;
	font-weight: 600;
	font-size: 14px;
	transition: 160ms all ease;
	-webkit-transition: 160ms all ease;
	-moz-transition: 160ms all ease;
	-ms-transition: 160ms all ease;
}
.info ul li a:hover {
	color: #888;
	padding-right: 8px;
	transition: 160ms all ease;
	-webkit-transition: 160ms all ease;
	-moz-transition: 160ms all ease;
	-ms-transition: 160ms all ease;
}

/* Responsive */
@media screen and (min-width: 320px) and (max-width: 767px) {
.container {
	width: 320px;
	margin: 20px auto 0 auto;
}
.left, .right {
	width: 320px;
	padding: 0 10px;
	float: none;
	clear: both;
	display: block;
	min-height: 230px;
}
.right {
	width: 320px;
	padding: 10px 10px;
	border-left: none;
}
h1, h2 {
	font-size: 22px;
}
h2 {
	color: #1babe3;
}
h5 {
	text-transform: uppercase;
	letter-spacing: 0.3em;
	font-family: "omnes-pro",sans-serif;
	color: #a0a0a0;
	font-size: 11px;
}
p {
	font-size: 14px;
}

footer {
	border-top: 1px solid #c7c7c7;
}


.face {
	width: 160px;
	margin: 0 auto 10px auto;
}
figure {
	width: 160px;
	margin: 0 auto 0 auto;
	height: 220px;
}

.info {
	width: 300px;
	border-top: 1px solid #c7c7c7;
	padding: 15px 0 0 0;
}

.info ul li{
	text-align: left;
	display: inline-block;
	margin-right: 16px;
	float: left;
}
.info ul li:last-child{
	float: right;
	margin-right: 0;
}
.info ul li a {
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-family: "omnes-pro",sans-serif;
	color: #a0a0a0;
	font-weight: 600;
	font-size: 14px;
}
.info ul li a:hover {
	color: #666;
	padding-right: 0;
}
}










