/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html, body, 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, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}

article, aside, figure, footer, header, nav, section, details, summary, img {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:

#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
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;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

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

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: separate;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

.ie7 input[type=checkbox] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select, input, textarea {
  font-family: "Open Sans", sans-serif;
  font: 99%;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

input[type=submit]:disabled,
input[type=button]:disabled {
  background: #CCC !important;
  opacity: 0.7 !important;
}

input[type=submit]:disabled:hover,
input[type=button]:disabled:hover {
  opacity: 0.7 !important;
}

*:focus {
  outline: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

a {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*
@media (min-width: $tablet) {}
@media (min-width: $tabletPro) {}
@media (min-width: $desktop-md) {}
@media (min-width: $desktop-lg) {}
@media (min-width: $desktop-big) {}
@media (min-width: $desktop-gg) {}
*/
/*
@include transition($vast);
@include transition($mfast);
@include transition($fast);
@include transition($default);
@include transition($slow);
@include transition($vslow);
*/
/*
@include border-radius();

font-family: "Noe Display Bold";
font-family: "Noe Display Medium";
font-family: "Noe Display Medium italic";
font-family: "Noe Display Regular";
font-family: "Noe Display Regular italic";
font-family: "PT Serif", serif;

*/
/* TRANSITIONS */
@font-face {
  font-family: "Noe Display Bold";
  src: url("../fonts/Noe Display Bold.woff") format("woff");
}
@font-face {
  font-family: "Noe Display Medium";
  src: url("../fonts/Noe Display Medium.woff") format("woff");
}
@font-face {
  font-family: "Noe Display Medium italic";
  src: url("../fonts/Noe Display Medium Italic.woff") format("woff");
}
@font-face {
  font-family: "Noe Display Regular";
  src: url("../fonts/Noe Display Regular.woff") format("woff");
}
@font-face {
  font-family: "Noe Display Regular italic";
  src: url("../fonts/Noe Display Regular Italic.woff") format("woff");
}
body {
  font-family: "PT Serif", serif;
  background: #e2e3dc;
  color: #263b28;
}

h1,
h2,
h3 {
  font-family: "Noe Display Regular";
}

section,
footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.wrapper {
  width: 84%;
}
@media (min-width: 1024px) {
  .wrapper {
    width: 81.25vw;
  }
}
.topo {
  margin: 0 0 20px 0;
}
.topo .pre {
  font-style: italic;
  font-size: 18px;
}
.topo h2 {
  font-size: 29px;
}
.topo .pos {
  font-size: 16px;
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .topo {
    text-align: center;
    margin-bottom: 3.4vw;
  }
  .topo .pre {
    font-size: 1.563vw;
  }
  .topo h2 {
    font-size: 3.646vw;
    line-height: 3.646vw;
  }
  .topo .pos {
    font-size: 1.042vw;
    padding: 0 20vw;
    margin-top: 25px;
  }
}
header {
  position: absolute;
  z-index: 4;
  top: 40px;
  left: 7%;
}
header ul {
  list-style: none;
}
header ul li {
  float: left;
  margin-right: 1.2vw;
  clear: left;
  margin: 0 0 20px 0;
}
header ul li:last-of-type {
  margin-right: 0px;
}
header ul li a {
  font-family: "Noe Display Regular";
  color: #e2e3dc;
}
header ul li a svg {
  width: 23px;
  fill: #e2e3dc;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  /*
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1.0, 1.0);
  */
}
header ul li:hover a svg {
  fill: #416644;
}
header ul li.active a {
  color: #263b28;
}
header ul li.active a svg {
  fill: #263b28;
}
@media (min-width: 1024px) {
  header {
    display: block;
    position: absolute;
    z-index: 4;
    top: 5.99vw;
    left: 0;
    padding-left: 9.5vw;
    padding-bottom: 0.5vw;
  }
  header ul li {
    clear: none;
    margin-right: 1.2vw;
  }
  header ul li a svg {
    width: 1vw;
  }
}

#topo {
  height: 100vh;
  position: relative;
  align-items: end;
}
#topo .wrapper {
  position: relative;
  z-index: 5;
  padding-bottom: 7vh;
}
#topo h1 {
  color: #e2e3dc;
  font-size: 70px;
  line-height: 68px;
  margin: 0 0 30px 0;
  padding: 0 10% 0 0;
}
#topo h1 span {
  display: block;
  font-style: italic;
  font-size: 20px;
  font-family: "PT Serif", serif;
  line-height: 50px;
}
#topo p {
  font-style: italic;
  color: #e2e3dc;
  font-size: 18px;
}
#topo .simpleParallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#topo picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1024px) {
  #topo {
    align-items: center;
  }
  #topo .wrapper {
    padding: 0 33vw 0 0;
  }
  #topo h1 {
    font-size: 3.958vw;
    line-height: 4.4vw;
    margin: 0 0 2vw 0;
    padding: 0 0 0 0;
  }
  #topo h1 span {
    font-size: 1.979vw;
    line-height: 2.1vw;
  }
  #topo p {
    font-size: 1.302vw;
    padding: 0 2vw 0 0;
  }
}

.goTo {
  position: absolute;
  width: 50px;
  height: 30px;
  bottom: 9vh;
  left: 8%;
  animation-name: todown;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  z-index: 10;
  display: none;
}
@keyframes todown {
  0% {
    bottom: 9vh;
  }
  50% {
    bottom: 10vh;
  }
  100% {
    bottom: 9vh;
  }
}
.goTo:before, .goTo:after {
  content: "";
  position: absolute;
  top: 12px;
  width: 29px;
  height: 2px;
  background: #e2e3dc;
}
.goTo:before {
  transform: rotate(45deg);
  left: 0;
}
.goTo:after {
  transform: rotate(-45deg);
  right: 0px;
}
@media (min-width: 1024px) {
  .goTo {
    bottom: 10%;
    left: 9vw;
    display: block;
  }
  .goTo:before, .goTo:after {
    height: 3px;
    width: 30px;
  }
}

#about {
  padding: 50px 0;
}
#about .txt {
  margin-bottom: 30px;
}
#about .txt p {
  margin: 0 0 15px 0;
}
#about .txt p:last-of-type {
  margin: 0;
}
#about .cta {
  margin: 5vw 0 0 0;
}
#about .cta a {
  color: #263b28;
  font-style: italic;
}
#about .cta a:after {
  content: url(../images/arrow.svg);
  display: inline-block;
  width: 28px;
  margin: 0 0 0 10px;
}
#about .cta a:hover {
  text-decoration: underline;
}
@media (min-width: 1024px) {
  #about {
    padding: 6.51vw 0;
  }
  #about .txt {
    padding: 0 8.073vw;
    column-count: 2;
    column-gap: 4vw;
  }
  #about .txt p {
    font-size: 1.042vw;
    margin: 0 0 1.3vw 0;
  }
  #about .txt p:last-of-type {
    margin: 0;
  }
  #about .cta {
    text-align: center;
  }
  #about .cta a {
    font-size: 1.042vw;
  }
  #about .cta a:after {
    width: 2.2vw;
    margin: 0 0 0 0.7vw;
  }
}
#about .boxCV {
  height: 85svh;
  top: 6svh;
  padding: 30px 0 30px 5%;
}
#about .boxCV .text {
  overflow: scroll;
  height: 100%;
}
#about .boxCV .text p,
#about .boxCV .text ul,
#about .boxCV .text ol {
  font-size: 14px;
}
@media (min-width: 1024px) {
  #about .boxCV {
    padding: 0%;
    width: 80vw;
    left: 10vw;
    top: 50%;
  }
  #about .boxCV .text {
    width: 100%;
    overflow: hidden;
    padding: 5% 5% 2% 5%;
    column-count: 2;
    column-gap: 2vw;
  }
  #about .boxCV .text p {
    font-size: 0.93vw;
    margin-bottom: 1.4vw;
  }
  #about .boxCV .text ul li {
    font-size: 0.85vw;
    margin-bottom: 0.7vw;
  }
}
#numbers .wrapper {
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  padding: 40px 0;
}
#numbers .number {
  margin: 0 0 40px 0;
}
#numbers .number:last-of-type {
  margin-bottom: 0px;
}
#numbers .number p {
  text-align: center;
  font-family: "Noe Display Bold";
  font-size: 50px;
  line-height: 50px;
  font-weight: 600;
}
#numbers .number p .count {
  font-weight: 600;
}
#numbers .number p .sub {
  display: block;
  width: 100%;
  font-style: italic;
  font-size: 18px;
  line-height: 20px;
  padding: 0 10%;
  font-family: "PT Serif", serif;
}
@media (min-width: 1024px) {
  #numbers .wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 4.167vw 0;
    justify-content: space-between;
  }
  #numbers .number {
    width: 20%;
    margin-bottom: 0px;
  }
  #numbers .number p {
    font-size: 7vw;
    line-height: 7vw;
  }
  #numbers .number p .sub {
    font-size: 1.15vw;
    padding: 0 1.8vw;
    line-height: 1.45vw;
  }
}

#depoimentos {
  background: linear-gradient(180deg, rgb(226, 227, 220) 50%, rgb(64, 101, 67) 50%);
  padding: 60px 0 40px 0;
}
#depoimentos .card {
  float: left;
  background: #FFF;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 300px;
  padding: 0 25px 25px 25px;
  margin-top: 30px;
}
#depoimentos .card .avatar {
  background: #CCC;
  width: 100px;
  height: 100px;
  margin: -30px 0 15px 0;
  -moz-border-radius: 300px;
  -webkit-border-radius: 300px;
  -ms-border-radius: 300px;
  border-radius: 300px;
  overflow: hidden;
}
#depoimentos .card .avatar img {
  width: 100%;
}
#depoimentos .card .tit, #depoimentos .card .txt {
  text-align: center;
  width: 100%;
}
#depoimentos .card .tit {
  margin: 0 0 20px 0;
}
#depoimentos .card .tit h3 {
  font-family: "Noe Display Bold";
  font-weight: 600;
  font-size: 20px;
}
#depoimentos .card .tit p {
  font-size: 15px;
}
#depoimentos .card .txt p {
  font-style: italic;
  text-align: left;
}
#depoimentos .slick-prev.slick-arrow,
#depoimentos .slick-next.slick-arrow {
  display: none !important;
}
#depoimentos .slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}
#depoimentos .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
#depoimentos .slick-dots li.slick-active button {
  background: #263b28;
}
#depoimentos .slick-dots li button {
  border: none;
  background: #E2E3DC;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  padding: 0;
  height: 15px;
  width: 15px;
  text-indent: -5000px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  /*
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1.0, 1.0);
  */
}
@media (min-width: 1024px) {
  #depoimentos {
    padding: 5.208vw 0 5.208vw 0;
  }
  #depoimentos .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #depoimentos .card {
    width: 21.354vw;
    padding: 0 2.2vw 2.2vw 2.2vw;
    box-shadow: 5px 2px 29px 3px rgba(65, 65, 63, 0.2);
    -webkit-box-shadow: 5px 2px 29px 3px rgba(65, 65, 63, 0.2);
    -moz-box-shadow: 5px 2px 29px 3px rgba(65, 65, 63, 0.2);
  }
  #depoimentos .card .avatar {
    width: 7.292vw;
    height: 7.292vw;
    margin-bottom: 1.5vw;
  }
  #depoimentos .card .tit h3 {
    font-size: 1.302vw;
  }
  #depoimentos .card .tit p {
    font-size: 15px;
    margin-bottom: 2vw;
  }
  #depoimentos .card .txt p {
    font-size: 0.938vw;
  }
}

#reconhecimento {
  background: #3f6442;
}
#reconhecimento .tit {
  width: 100%;
  text-align: center;
}
#reconhecimento .tit h2 {
  color: #263b28;
  font-style: italic;
  line-height: 9.8vw;
  font-size: 14.2vw;
  text-align: center;
  padding-right: 2vw;
}
#reconhecimento .thumbs figure {
  float: left;
  width: 100%;
}
@media (min-width: 1024px) {
  #reconhecimento .tit h2 {
    font-size: 9.115vw;
    line-height: 6.115vw;
  }
  #reconhecimento .thumbs figure {
    float: left;
    width: 25%;
  }
}

#palestras {
  padding: 50px 0;
}
#palestras .cards .card {
  background: #FFF;
  padding: 40px 25px 50px 25px;
  position: relative;
  margin: 0 0 40px 0;
}
#palestras .cards .card:after {
  content: "";
  height: 2px;
  width: calc(100% - 50px);
  background: #263b28;
  position: absolute;
  left: 25px;
  bottom: 25px;
}
#palestras .cards .card h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 15px;
}
#palestras .cards .card p {
  font-style: italic;
  margin-bottom: 15px;
}
#palestras .cards .card > a {
  color: #263b28;
}
#palestras .cards .card:hover h3, #palestras .cards .card:hover p, #palestras .cards .card:hover span {
  text-decoration: underline;
}
#palestras .cards .card a > span {
  color: #263b28;
  font-style: italic;
}
#palestras .cards .card a > span:after {
  content: url(../images/arrow.svg);
  display: inline-block;
  width: 28px;
  margin: 5px 0 0 12px;
}
#palestras .cards .card a > span:hover {
  text-decoration: underline;
}
#palestras .cards .card .modal h3, #palestras .cards .card .modal span, #palestras .cards .card .modal p {
  text-decoration: none !important;
}
@media (min-width: 1024px) {
  #palestras {
    padding: 6.51vw 0;
  }
  #palestras .cards {
    display: flex;
    flex-wrap: wrap;
  }
  #palestras .cards .card {
    width: calc(33.3% - 1.734vw);
    padding: 3.646vw 1.823vw 7vw 1.823vw;
  }
  #palestras .cards .card:nth-child(3n+2) {
    margin: 0 2.604vw 2.604vw 2.604vw;
  }
  #palestras .cards .card h3 {
    font-size: 1.4vw;
    line-height: 1.7vw;
    margin: 0 0 1vw 0;
  }
  #palestras .cards .card p {
    font-size: 1vw;
    margin-bottom: 0px;
  }
  #palestras .cards .card a > span {
    font-size: 1.042vw;
    position: absolute;
    bottom: 3vw;
    left: 1.823vw;
  }
  #palestras .cards .card a > span:after {
    width: 2.2vw;
    margin: 0 0 0 0.7vw;
  }
}

.overlayPal {
  display: none;
  background: rgba(45, 65, 47, 0.968627451);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 25;
}

.modal {
  background: #d9dbd3;
  position: fixed;
  top: 5svh;
  left: 5%;
  height: 90svh;
  width: 90%;
  padding: 30px 0 30px 5%;
  z-index: 50;
  display: none;
}
.modal > a {
  color: #e2e3dc;
  position: absolute;
  bottom: -34px;
  right: 0%;
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  height: 30px;
  text-align: center;
  font-style: italic;
}
.modal .flex {
  overflow-y: auto;
  height: 100%;
  padding-right: 5%;
}
.modal .text {
  float: left;
  width: 100%;
  padding-right: 5%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.modal .text p,
.modal .text ul,
.modal .text ol {
  color: #263b28;
  font-size: 17px;
  float: left;
  width: 100%;
  margin: 0 0 15px 0;
}
.modal .text p:last-child,
.modal .text ul:last-child,
.modal .text ol:last-child {
  margin-bottom: 0px;
}
.modal .text ul, .modal .text ol {
  list-style-position: inside;
}
.modal .text ul li, .modal .text ol li {
  float: left;
  width: 100%;
  margin-bottom: 8px;
  font-size: 13px;
}
.modal .tit {
  float: left;
  margin: 0 0 20px 0;
  position: relative;
}
.modal .tit h3 {
  color: #e2e3dc;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  left: 5%;
  width: 90%;
  bottom: 5%;
}
@media (min-width: 1024px) {
  .modal {
    width: 70vw;
    left: 15vw;
    padding: 0px 0 0px 0%;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
  }
  .modal .flex {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }
  .modal .tit {
    width: 40%;
    margin: 0;
  }
  .modal .tit img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .modal .text {
    width: 60%;
    padding: 5%;
  }
}

.overlayCV {
  background: rgba(45, 65, 47, 0.968627451);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  z-index: 5;
  display: none;
}

#foto {
  background: #CCC;
  height: 100vh;
  position: relative;
  align-items: end;
}
#foto .tit {
  position: relative;
  z-index: 10;
  padding-bottom: 60px;
}
#foto .tit h2 {
  color: #FFF;
  font-family: "PT Serif", serif;
  font-style: italic;
  font-size: 22px;
  margin: 0 0 20px 0;
}
#foto .tit p {
  color: #FFF;
  font-family: "Noe Display Medium";
}
#foto .simpleParallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#foto .simpleParallax img {
  width: 100%;
}
@media (min-width: 1024px) {
  #foto {
    height: 60vh;
    align-items: center;
  }
  #foto .tit {
    padding-right: 48.438vw;
    position: absolute;
    top: 50%;
    padding-bottom: 0px;
    transform: translateY(-50%);
  }
  #foto .tit h2 {
    font-size: 1.8vw;
    line-height: 2.604vw;
    margin: 0 0 2vw 0;
  }
  #foto .tit p {
    font-size: 1.302vw;
  }
}

#novidades {
  background: #416644;
  padding: 50px 0;
}
#novidades .topo p, #novidades .topo h2 {
  color: #e2e3dc;
}
#novidades .ctas a {
  float: left;
  margin: 0 0 25px 0;
}
#novidades .ctas a:last-of-type {
  margin-bottom: 0px;
}
#novidades .ctas a:hover p {
  text-decoration: underline;
}
#novidades .ctas span {
  color: #1c2b1e;
  font-style: italic;
  font-size: 18px;
}
#novidades .ctas h3 {
  color: #e2e3dc;
  font-size: 21px;
  font-family: "Noe Display Medium";
}
#novidades .ctas p {
  color: #e2e3dc;
}
@media (min-width: 1024px) {
  #novidades {
    padding: 5.208vw 0;
  }
  #novidades .topo {
    float: left;
    width: 50%;
    text-align: Left;
  }
  #novidades .topo p {
    padding: 0 30% 0 0;
  }
  #novidades .ctas {
    float: left;
    width: 50%;
    display: flex;
    flex-wrap: wrap;
  }
  #novidades .ctas a {
    width: 40%;
    margin-bottom: 2.8vw;
    margin-right: 10%;
  }
  #novidades .ctas a:nth-child(3), #novidades .ctas a:nth-child(4) {
    margin-bottom: 0px;
  }
  #novidades .ctas span {
    font-size: 1.1vw;
  }
  #novidades .ctas h3 {
    font-size: 1.563vw;
  }
  #novidades .ctas p {
    font-size: 1vw;
  }
}

footer {
  background: #263b28;
  padding: 35px 0 65px 0;
  text-align: center;
}
footer h2 {
  color: #e2e3dc;
  font-size: 28px;
}
footer p {
  color: #e2e3dc;
  font-style: italic;
  margin: 0 0 55px 0;
}
footer a {
  color: #263b28;
  display: inline-block;
  background: #4fce5d;
  border: 2px solid #e2e3dc;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  height: 60px;
  line-height: 55px;
  font-style: italic;
  padding: 0 30px 0 5px;
  font-size: 20px;
}
footer a span {
  float: left;
  margin: 6px 12px 0 15px;
}
footer a span svg {
  width: 25px;
  fill: #263b28;
}
@media (min-width: 1024px) {
  footer {
    padding: 3.646vw 0;
  }
  footer .wrapper {
    padding: 0 8.073vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  footer h2 {
    font-size: 2.604vw;
  }
  footer p {
    font-size: 1vw;
    width: 27vw;
    margin: 0;
  }
  footer a {
    font-size: 17px;
    height: 55px;
    line-height: 50px;
    padding: 0 20px 0 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    /*
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
    */
  }
  footer a:hover {
    transform: scale(1.05);
  }
}