/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* animation */
/* animation output  */
/*
@include keyframes(name_animation) {
	0% { opacity: 1; }
	90% { opacity: 0; }
}
.element {
	width: 100px;
	height: 100px;
	background: black;
	@include animation('name_animation 5s 3');
}
*/
/* default theme */
/*	componentes: 	;*/
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  color: #333;
  background-color: #f8f6f3;
  font-family: Helvetica, Arial;
}

li {
  list-style: none;
}

a {
  cursor: pointer;
  outline: none;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
a:hover {
  color: #f8f6f3;
}

a img {
  transition: all 0.3s ease-out;
}

h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
}

header {
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 43vh;
  position: relative;
}
@media only screen and (max-width: 520px) {
  header {
    height: auto;
    padding: 80px 0;
  }
}
header img {
  width: 260px;
}
@media only screen and (max-width: 520px) {
  header img {
    width: 200px;
  }
}
header:after {
  position: absolute;
  left: 0;
  bottom: -10px;
  content: "";
  display: block;
  width: 100%;
  height: 16px;
  background: url("/img/pico-down.svg") repeat-X center bottom;
}

section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
  height: 680px;
  width: 680px;
  margin: 0 auto;
  padding: 80px 0;
}
@media only screen and (max-width: 520px) {
  section {
    height: auto;
    width: auto;
    grid-template-columns: 1fr;
    height: auto;
  }
}
section img {
  width: 200px;
  max-height: 150px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 520px) {
  section img {
    width: 160px;
    margin-bottom: 15px;
  }
}
section p {
  padding: 10px;
  border: 1px solid #333;
  text-align: center;
  line-height: 140%;
  font-size: 13px;
  display: inline-block;
}
section a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
section a:hover {
  color: #333;
}
section a:hover p {
  text-decoration: underline;
}

footer {
  background-color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 14vh;
  position: relative;
}
@media only screen and (max-width: 520px) {
  footer {
    height: auto;
    padding: 40px 0;
  }
}
footer ul {
  display: flex;
  justify-content: center;
}
footer ul li + li {
  margin-left: 10px;
}
footer ul li a {
  display: block;
}
@media only screen and (min-width: 900px) {
  footer ul li a:hover {
    transform: scale(0.8);
  }
}
footer .link {
  margin-top: 10px;
}
footer .link a {
  color: #f8f6f3;
  font-size: 12px;
}
footer img {
  width: 30px;
}
footer:after {
  position: absolute;
  left: 0;
  top: -10px;
  content: "";
  display: block;
  width: 100%;
  height: 16px;
  background: url("/img/pico-up.svg") repeat-X center bottom;
}
