* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/******************************************
 ALL VARIABLES ARE DEPOSITED HERE
******************************************/
/**************************************************************
AQUI SÃO DEPOSITADOS FUNÇÕES DO LESS QUE NÃO VIRAM CLASSES CSS.
**************************************************************/
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html {
  background: #046240;
}
body {
  font-family: 'Fauna One', serif;
  background: #fff url('../images/bg.png');
  font-size: 16px;
  line-height: 22px;
  color: #444;
}
strong {
  font-weight: bold;
}
p {
  margin-bottom: 10px;
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 30px;
  line-height: 34px;
  padding: 10px 0 20px 0;
  font-family: 'Playfair Display', serif;
  text-align: center;
}
h2 {
  font-size: 28px;
  line-height: 30px;
}
h3 {
  font-size: 26px;
  line-height: 28px;
}
h4 {
  font-size: 24px;
  line-height: 26px;
}
h5 {
  font-size: 22px;
  line-height: 24px;
}
h6 {
  font-size: 20px;
  line-height: 22px;
}
.container {
  display: block;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 768px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.navigation {
  order: 2;
  display: block;
  background: #046240;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .navigation {
    order: 1;
  }
}
.navigation ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media only screen and (min-width: 768px) {
  .navigation ul {
    flex-direction: row;
  }
}
.navigation ul li {
  display: block;
}
.navigation ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 11px;
  line-height: 11px;
  font-weight: lighter;
  padding: 10px;
  text-align: center;
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.navigation ul li a:hover {
  background: #069360;
}
.logo {
  order: 2;
  display: block;
  width: 300px;
  height: 120px;
  margin: 40px 0;
  background: transparent url('../images/logo.svg') center center no-repeat;
}
.logo span {
  display: none;
}
.content {
  padding: 20px;
  width: 100%;
  display: block;
}
.content_01 {
  order: 3;
}
.content_02 {
  order: 4;
}
.content_03 {
  order: 5;
}
.illustration {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  border: 2px solid #046240;
}
.lead {
  font-size: 18px;
  line-height: 26px;
  font-weight: lighter;
  text-align: center;
  font-family: 'Playfair Display', serif;
}
@media only screen and (min-width: 1100px) and (-webkit-max-device-pixel-ratio: 2), only screen and (min-width: 1100px) and (max--moz-device-pixel-ratio: 2), only screen and (min-width: 1100px) and (max-device-pixel-ratio: 2) {
  .work-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.work-item {
  font-size: 16px;
  line-height: 26px;
  font-weight: bold;
  background: #046240;
  color: #fff;
  min-height: 100px;
  padding: 20px;
  text-align: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  display: block;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.work-item span {
  display: block;
  text-align: center;
}
@media only screen and (min-width: 1100px) and (-webkit-max-device-pixel-ratio: 2), only screen and (min-width: 1100px) and (max--moz-device-pixel-ratio: 2), only screen and (min-width: 1100px) and (max-device-pixel-ratio: 2) {
  .work-item {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 10px;
    width: 25%;
  }
}
.footer {
  border-top: 2px solid #046240;
  order: 20;
  display: block;
  width: 100%;
  background-color: #f0fdec;
  padding: 40px 20px;
}
@media only screen and (min-width: 1100px) and (-webkit-max-device-pixel-ratio: 2), only screen and (min-width: 1100px) and (max--moz-device-pixel-ratio: 2), only screen and (min-width: 1100px) and (max-device-pixel-ratio: 2) {
  .footer {
    display: flex;
    justify-content: center;
  }
}
.footer a {
  color: #444;
  text-decoration: none;
}
.footer-block {
  padding: 20px 0;
}
@media only screen and (min-width: 1100px) and (-webkit-max-device-pixel-ratio: 2), only screen and (min-width: 1100px) and (max--moz-device-pixel-ratio: 2), only screen and (min-width: 1100px) and (max-device-pixel-ratio: 2) {
  .footer-block {
    width: 50%;
  }
}
.footer .info .title {
  font-weight: bold;
}
.footer .info .tel-1 {
  font-size: 80%;
  padding-left: 50px;
}
.footer .info .tel-2 {
  font-size: 70%;
  padding-left: 50px;
}
@media only screen and (min-width: 1100px) and (-webkit-max-device-pixel-ratio: 2), only screen and (min-width: 1100px) and (max--moz-device-pixel-ratio: 2), only screen and (min-width: 1100px) and (max-device-pixel-ratio: 2) {
  .footer {
    display: flex;
  }
}
