@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,600;1,600&family=Oswald:wght@700&display=swap");
@import url("fonts/ModulaSansBlack.min.css");
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: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

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;
}

body {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
       text-size-adjust: none;
}

mark {
  background-color: transparent;
  color: inherit;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input, select, textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Basic */
@-ms-viewport {
  width: device-width;
}
html {
  height: 100%;
}

html {
  box-sizing: border-box;
}

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

body {
  background: #ffffff;
  height: 100%;
  min-width: 320px;
}
body.is-preload *, body.is-preload *:before, body.is-preload *:after {
  -webkit-animation: none !important;
  animation: none !important;
  transition: none !important;
}

/* Spinner */
@-webkit-keyframes spinner-rotate {
  0% {
    transform: scale(1) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}
@keyframes spinner-rotate {
  0% {
    transform: scale(1) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}
/* Loader */
@-webkit-keyframes spinner-show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes spinner-show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes spinner-hide {
  0% {
    transform: scale(1) rotate(0deg);
    color: #e5e6e7;
    z-index: 100001;
  }
  99% {
    transform: scale(0.5) rotate(360deg);
    color: #e5e6e7;
    z-index: 100001;
  }
  100% {
    transform: scale(0.5) rotate(360deg);
    color: #e5e6e7;
    z-index: -1;
  }
}
@keyframes spinner-hide {
  0% {
    transform: scale(1) rotate(0deg);
    color: #e5e6e7;
    z-index: 100001;
  }
  99% {
    transform: scale(0.5) rotate(360deg);
    color: #e5e6e7;
    z-index: 100001;
  }
  100% {
    transform: scale(0.5) rotate(360deg);
    color: #e5e6e7;
    z-index: -1;
  }
}
/* Display whit Fade In Out */
@-webkit-keyframes fade-in {
  0% {
    visibility: visible;
  }
  100% {
    visibility: hidden;
  }
}
@keyframes fade-in {
  0% {
    visibility: visible;
  }
  100% {
    visibility: hidden;
  }
}
@-webkit-keyframes fade-out {
  0% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
@keyframes fade-out {
  0% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
@-webkit-keyframes overlay-hide {
  0% {
    opacity: 1;
    z-index: 100000;
  }
  15% {
    opacity: 1;
    z-index: 100000;
  }
  99% {
    opacity: 0;
    z-index: 100000;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
@keyframes overlay-hide {
  0% {
    opacity: 1;
    z-index: 100000;
  }
  15% {
    opacity: 1;
    z-index: 100000;
  }
  99% {
    opacity: 0;
    z-index: 100000;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
body {
  text-decoration: none;
  /*&:before {
  	@include vendor('animation', ('spinner-show 1.5s 1 0.25s ease forwards', 'spinner-hide 0.25s ease-in-out forwards !important'));
  	@include vendor('transform-origin', '50% 50%');
  	-moz-osx-font-smoothing: grayscale;
  	-webkit-font-smoothing: antialiased;
  	font-family: FontAwesome;
  	font-style: normal;
  	font-weight: normal;
  	text-transform: none !important;
  	color: _palette(border);
  	content: '\f1ce';
  	cursor: default;
  	display: block;
  	font-size: 2em;
  	height: 2em;
  	left: 50%;
  	line-height: 2em;
  	margin: -1em 0 0 -1em;
  	opacity: 0;
  	position: fixed;
  	text-align: center;
  	top: 50%;
  	width: 2em;
  	z-index: -1;
  }

  &:after {
  	@include vendor('animation', 'overlay-hide 1.5s ease-in forwards !important');
  	background: #ffffff;
  	content: '';
  	display: block;
  	height: 100%;
  	left: 0;
  	opacity: 0;
  	position: fixed;
  	top: 0;
  	width: 100%;
  	z-index: -1;
  }*/
}
body.is-preload:before {
  -webkit-animation: spinner-show 1.5s 1 0.25s ease forwards, spinner-rotate 0.75s infinite linear !important;
  animation: spinner-show 1.5s 1 0.25s ease forwards, spinner-rotate 0.75s infinite linear !important;
  z-index: 100001;
}
body.is-preload:after {
  -webkit-animation: none !important;
  animation: none !important;
  opacity: 1;
  z-index: 100000;
}

@media (-webkit-min-device-pixel-ratio: 2) {
  body:before {
    line-height: 2.025em;
  }
}
/* Type */
body, input, textarea, select {
  font-family: "Nunito", "sans-serif";
  font-weight: 300;
  font-size: 18pt;
  line-height: 1.75em;
  color: #39454b;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 1920px) {
  body, input, textarea, select {
    font-size: 17pt;
  }
}
@media screen and (max-width: 1680px) {
  body, input, textarea, select {
    font-size: 15pt;
  }
}
@media screen and (max-width: 1280px) {
  body, input, textarea, select {
    font-size: 13pt;
  }
}
@media screen and (max-width: 1000px) {
  body, input, textarea, select {
    font-size: 13pt;
  }
}
@media screen and (max-width: 736px) {
  body, input, textarea, select {
    font-size: 12pt;
    line-height: 1.5em;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", "sans-serif";
  font-weight: 900;
  color: inherit;
  /*letter-spacing: -0.0325em;*/
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  text-decoration: none;
}

h2 {
  font-size: 3.25em;
  line-height: 1.25em;
  font-size: 2.5em;
  font-weight: 900;
  /*letter-spacing: -0.05em;*/
}

@media screen and (max-width: 736px) {
  h2 {
    font-size: 2.1em;
  }
}
strong, b {
  font-weight: 900;
  color: inherit;
}

em, i {
  font-style: italic;
}

a {
  transition: color 0.2s ease-in-out;
  color: #98c593;
}

sub {
  position: relative;
  top: 0.5em;
  font-size: 0.8em;
}

sup {
  position: relative;
  top: -0.5em;
  font-size: 0.8em;
}

hr {
  border: 0;
  border-top: solid 1px #e5e6e7;
}

blockquote {
  border-left: solid 0.5em #e5e6e7;
  padding: 1em 0 1em 2em;
  font-style: italic;
}

p, ul, ol, dl, table {
  margin-bottom: 1em;
}

.menu-item {
  font-size: 1.5em;
  line-height: 1.25em;
  font-weight: 300;
}

.title {
  font-family: "Nunito", "sans-serif";
  font-size: 2.25em;
  line-height: 1.25em;
  font-weight: 300;
}

/* Box */
.three-box {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  margin-top: 2em;
  padding: 0 2em;
}
.three-box .box-v {
  width: 33.3333333333%;
  flex: 1 1 0;
  padding: 0 1.5em;
  cursor: pointer;
  transition: all 1s ease-in;
  transform: translateY(0px);
}
.three-box .box-v:nth-child(1) {
  transition: all 1s ease-in-out 0.1s;
}
.three-box .box-v:nth-child(2) {
  transition: all 1s ease-in-out 0.2s;
}
.three-box .box-v:nth-child(3) {
  transition: all 1s ease-in-out 0.3s;
}
.three-box .box-v:nth-child(4) {
  transition: all 1s ease-in-out 0.4s;
}
.three-box .box-v .inner {
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  max-width: 430px;
  justify-content: center;
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.three-box .box-v .inner:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.three-box .box-v .inner picture {
  position: relative;
  padding-top: 130%;
  height: 0;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.three-box .box-v .inner picture header {
  font-weight: 900;
  position: absolute;
  bottom: 1em;
  margin: 0 5%;
  padding: 2% 5%;
  background-color: white;
  width: 90%;
  line-height: 1.15em;
}
.three-box .images-thumbs {
  display: none;
}
@media screen and (max-width: 736px) {
  .three-box {
    padding: 0;
    flex-direction: column;
  }
  .three-box .box-v {
    width: 100%;
    padding-bottom: 1.5em;
  }
  .three-box .box-v .inner picture {
    padding-top: 350px;
  }
}

.inactive .three-box .box-v {
  opacity: 0;
  transform: translateY(50px);
}

/* Box */
.box {
  background: #ffffff;
  color: #39454b;
  padding: 2em;
}
.box > :last-child {
  margin-bottom: 0;
}
.box.style2 {
  padding: 3.5em 2.5em 3.5em 2.5em;
}
@media screen and (max-width: 736px) {
  .box {
    padding: 1em;
  }
  .box.style2 {
    padding: 1.5em 1.25em 1.5em 1.25em;
    background-color: rgba(255, 255, 255, 0.9);
  }
}

/* Button */
input[type=button],
input[type=submit],
input[type=reset],
.button,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  transition: background-color 0.2s ease-in-out;
  background-color: #98c593;
  border: 0;
  border-radius: 3.5em;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  height: 3.5em;
  line-height: 3.5em;
  outline: 0;
  padding: 0 2em 0 2em;
  position: relative;
  text-align: center;
  text-decoration: none;
}
input[type=button].down,
input[type=submit].down,
input[type=reset].down,
.button.down,
button.down {
  width: 5em;
  height: 5em;
  line-height: 4.5em;
  padding: 0;
  background-image: url("images/dark-arrow.svg");
  background-position: center center;
  background-repeat: no-repeat;
  text-indent: -10em;
  overflow: hidden;
}
input[type=button].down.anchored,
input[type=submit].down.anchored,
input[type=reset].down.anchored,
.button.down.anchored,
button.down.anchored {
  bottom: 0;
  border-bottom: 0;
  border-radius: 3em 3em 0 0;
  height: 4.5em;
  margin-left: -2.5em;
}
input[type=button].anchored,
input[type=submit].anchored,
input[type=reset].anchored,
.button.anchored,
button.anchored {
  position: absolute;
  left: 50%;
}
input[type=button]:hover,
input[type=submit]:hover,
input[type=reset]:hover,
.button:hover,
button:hover {
  /*background-color: lighten(_palette(accent1, bg), 5);*/
  background-color: rgb(226, 101, 7);
}
input[type=button]:active,
input[type=submit]:active,
input[type=reset]:active,
.button:active,
button:active {
  background-color: rgb(226, 101, 7);
}
input[type=button].style2,
input[type=submit].style2,
input[type=reset].style2,
.button.style2,
button.style2 {
  background-color: transparent;
  border: solid 2px #e5e6e7;
  color: inherit;
}
input[type=button].style2:hover,
input[type=submit].style2:hover,
input[type=reset].style2:hover,
.button.style2:hover,
button.style2:hover {
  background-color: rgba(229, 230, 231, 0.25);
}
input[type=button].style2:active,
input[type=submit].style2:active,
input[type=reset].style2:active,
.button.style2:active,
button.style2:active {
  background-color: rgba(229, 230, 231, 0.375);
}
input[type=button].style2.down,
input[type=submit].style2.down,
input[type=reset].style2.down,
.button.style2.down,
button.style2.down {
  background-image: url("images/arrow.svg");
}

.btn-read-more {
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  margin: 0 auto;
  font-size: 80%;
  width: 100%;
}
.btn-read-more a {
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  padding: 2px 10px;
}
/* Form */
form {
  margin: 0 0 2em 0;
}
form > :last-child {
  margin-bottom: 0;
}
form > .fields {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 3em);
  margin: -1.5em 0 2em -1.5em;
}
form > .fields > .field {
  -moz-flex-grow: 0;
  -ms-flex-grow: 0;
  flex-grow: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  padding: 1.5em 0 0 1.5em;
  width: calc(100% - 1.5em);
}
form > .fields > .field.half {
  width: calc(50% - 0.75em);
}
form > .fields > .field.third {
  width: calc(100%/3 - 0.5em );
}
form > .fields > .field.quarter {
  width: calc(25% - 0.375em);
}
@media screen and (max-width: 480px) {
  form > .fields {
    width: calc(100% + 2em);
    margin: -1em 0 2em -1em;
  }
  form > .fields > .field {
    padding: 1em 0 0 1em;
    width: calc(100% - 1em);
  }
  form > .fields > .field.half {
    width: calc(100% - 1em);
  }
  form > .fields > .field.third {
    width: calc(100% - 1em);
  }
  form > .fields > .field.quarter {
    width: calc(100% - 1em);
  }
}

label {
  display: block;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=search],
input[type=url],
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out;
  color: #39454b;
  display: block;
  width: 100%;
  padding: 0.65em 0.75em;
  background: none;
  border: solid 2px #e5e6e7;
  color: inherit;
  border-radius: 0.5em;
  outline: none;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=search]:focus,
input[type=url]:focus,
select:focus,
textarea:focus {
  border-color: #9ac8e9;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=search],
input[type=url],
select {
  line-height: 1.35em;
}

textarea {
  min-height: 8em;
}

::-moz-focus-inner {
  border: 0;
}

::-webkit-input-placeholder {
  opacity: 0.375;
}

:-moz-placeholder {
  opacity: 0.375;
}

::-moz-placeholder {
  opacity: 0.375;
}

:-ms-input-placeholder {
  opacity: 0.375;
}

/* Icon */
.icon {
  text-decoration: none;
  position: relative;
  text-decoration: none;
}
.icon:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}
.icon:before {
  line-height: inherit;
}
.icon > .label {
  display: none;
}
.icon.solid:before {
  font-weight: 900;
}
.icon.brands:before {
  font-family: "Font Awesome 5 Brands";
}

/* Image */
.image {
  position: relative;
  display: inline-block;
}
.image:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("images/overlay.png");
}
.image img {
  display: block;
  width: 100%;
}
.image.featured {
  display: block;
  width: 100%;
  margin: 0 0 2em 0;
}
.image.fit {
  display: block;
  width: 100%;
}
.image.left {
  float: left;
  margin: 0 2em 2em 0;
}
.image.centered {
  display: block;
  margin: 0 0 2em 0;
}
.image.centered img {
  margin: 0 auto;
  width: auto;
}

/* List */
ul.default {
  list-style: disc;
  padding-left: 1em;
}
ul.default li {
  padding-left: 0.5em;
}
ul.menu {
  cursor: default;
}
ul.menu li {
  display: inline-block;
  line-height: 1em;
  border-left: solid 1px #e5e6e7;
  padding: 0 0 0 0.5em;
  margin: 0 0 0 0.5em;
}
ul.menu li:first-child {
  border-left: 0;
  padding-left: 0;
  margin-left: 0;
}

ol.default {
  list-style: decimal;
  padding-left: 1.25em;
}
ol.default li {
  padding-left: 0.25em;
}

/* Box */
.lb-obras {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -99999999;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
}
.lb-obras .close_lb {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 15px 20px 15px 15px;
  cursor: pointer;
}
.lb-obras .close_lb img {
  width: 30px;
  height: 30px;
}
.lb-obras .content-lb {
  margin: auto;
  width: 50%;
  max-width: 600px;
  margin: 0 auto 0 auto;
  background-color: white;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -moz-flex-direction: column;
  flex-direction: column;
  padding: 2em 5%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  font-size: 120%;
}
.lb-obras .content-lb .title {
  color: #39454b;
  text-align: center;
  margin-bottom: 0.5em;
  line-height: 1em;
  font-size: 1.5em;
}
.lb-obras .content-lb .texto {
  color: #39454b;
  font-size: 80%;
  line-height: 1.1em;
  margin-bottom: 2em;
}
.lb-obras .content-lb .thumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.lb-obras .content-lb .thumbs img {
  cursor: pointer;
  border: 1px solid #39454b;
  margin: 0 10px 10px 10px;
  width: 80px;
}
@media screen and (max-width: 736px) {
  .lb-obras .content-lb {
    font-size: 100%;
    width: 90%;
  }
}

body.lb_open {
  overflow: hidden;
}
body.lb_open .lb-obras {
  z-index: 5;
  opacity: 1;
}

/* Box */
.lb-gal {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -99999999;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
}
.lb-gal .close_gal {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 15px 20px 15px 15px;
  cursor: pointer;
}
.lb-gal .close_gal img {
  width: 30px;
  height: 30px;
}
.lb-gal .content-lb {
  margin: auto;
  width: 50%;
  max-width: 600px;
  margin: 0 auto 0 auto;
  background-color: white;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -moz-flex-direction: column;
  flex-direction: column;
  padding: 2em 5%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  font-size: 120%;
}
.lb-gal .content-lb .title {
  color: #39454b;
  text-align: center;
  margin-bottom: 0.5em;
  line-height: 0.7em;
}
.lb-gal .content-lb .texto {
  color: #39454b;
  font-size: 80%;
  line-height: 1.1em;
  margin-bottom: 2em;
}
.lb-gal .content-lb .thumbs {
  display: flex;
  justify-content: center;
}
.lb-gal .content-lb .thumbs img {
  cursor: pointer;
  border: 1px solid #39454b;
  margin: 0 10px;
  width: 80px;
}
@media screen and (max-width: 736px) {
  .lb-gal .content-lb {
    font-size: 100%;
    width: 90%;
  }
}

body.open_gal {
  overflow: hidden;
}
body.open_gal .lb-gal {
  z-index: 10000;
  opacity: 1;
}

/* Actions */
ul.actions {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  cursor: default;
  list-style: none;
  margin-left: -1em;
  padding-left: 0;
}
ul.actions li {
  padding: 0 0 0 1em;
  vertical-align: middle;
}
ul.actions.special {
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  width: 100%;
  margin-left: 0;
}
ul.actions.special li:first-child {
  padding-left: 0;
}
ul.actions.stacked {
  -moz-flex-direction: column;
  flex-direction: column;
  margin-left: 0;
}
ul.actions.stacked li {
  padding: 1.3em 0 0 0;
}
ul.actions.stacked li:first-child {
  padding-top: 0;
}
ul.actions.fit {
  width: calc(100% + 1em);
}
ul.actions.fit li {
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  -ms-flex-shrink: 1;
  flex-shrink: 1;
  width: 100%;
}
ul.actions.fit li > * {
  width: 100%;
}
ul.actions.fit.stacked {
  width: 100%;
}
@media screen and (max-width: 480px) {
  ul.actions:not(.fixed) {
    -moz-flex-direction: column;
    flex-direction: column;
    margin-left: 0;
    width: 100% !important;
  }
  ul.actions:not(.fixed) li {
    -moz-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
    -ms-flex-shrink: 1;
    flex-shrink: 1;
    padding: 1em 0 0 0;
    text-align: center;
    width: 100%;
  }
  ul.actions:not(.fixed) li > * {
    width: 100%;
  }
  ul.actions:not(.fixed) li:first-child {
    padding-top: 0;
  }
  ul.actions:not(.fixed) li input[type=submit],
ul.actions:not(.fixed) li input[type=reset],
ul.actions:not(.fixed) li input[type=button],
ul.actions:not(.fixed) li button,
ul.actions:not(.fixed) li .button {
    width: 100%;
  }
  ul.actions:not(.fixed) li input[type=submit].icon:before,
ul.actions:not(.fixed) li input[type=reset].icon:before,
ul.actions:not(.fixed) li input[type=button].icon:before,
ul.actions:not(.fixed) li button.icon:before,
ul.actions:not(.fixed) li .button.icon:before {
    margin-left: -0.5rem;
  }
}

/* Icons */
ul.icons {
  cursor: default;
}
ul.icons li {
  display: inline-block;
}
ul.icons a {
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border: 0;
}

/* Sections/Article */
header {
  /*margin-bottom: 1em;*/
}
header p {
  display: block;
  margin: 1em 0 0 0;
  padding: 0 0 0.5em 0;
}

footer {
  margin-top: 2em;
}

.superLog {
  display: block;
}
.superLog img:nth-child(2) {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

/* Table */
table {
  width: 100%;
}
table.default {
  width: 100%;
}
table.default tbody tr:nth-child(2n+2) {
  background: rgba(229, 230, 231, 0.5);
}
table.default td {
  padding: 0.5em 1em 0.5em 1em;
}
table.default th {
  text-align: left;
  font-weight: 900;
  padding: 0.5em 1em 0.5em 1em;
}
table.default thead {
  background: #39454b;
  color: #ffffff;
}
table.default tfoot {
  background: #e5e6e7;
}

/* Poptrox */
.poptrox-popup {
  -ms-box-sizing: content-box;
  box-sizing: content-box;
  background: #fff;
  padding-bottom: 3em;
  box-shadow: 0 0.1em 0.15em 0 rgba(0, 0, 0, 0.15);
}
.poptrox-popup .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1em 0 0 -1em;
  width: 2em;
  height: 2em;
  display: block;
  font-size: 2em;
}
.poptrox-popup .loader:before {
  -webkit-animation: spinner-rotate 0.75s infinite linear !important;
  animation: spinner-rotate 0.75s infinite linear !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-transform: none !important;
  color: #e5e6e7;
  content: "\f1ce";
  cursor: default;
  display: block;
  height: 2em;
  left: 0;
  line-height: 2em;
  position: absolute;
  text-align: center;
  top: 0;
  width: 2em;
}
.poptrox-popup .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #ffffff;
  width: 100%;
  height: 3em;
  line-height: 2.8em;
  text-align: center;
  cursor: default;
  z-index: 1;
  font-size: 0.9em;
}
.poptrox-popup .nav-next,
.poptrox-popup .nav-previous {
  transition: opacity 0.2s ease-in-out;
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.01);
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
.poptrox-popup .nav-next:before,
.poptrox-popup .nav-previous:before {
  content: "";
  position: absolute;
  width: 96px;
  height: 64px;
  background: url("images/poptrox-nav.svg");
  top: calc(50% - 1.5em);
  margin: -32px 0 0 0;
}
.poptrox-popup:hover .nav-next,
.poptrox-popup:hover .nav-previous {
  opacity: 0.5;
}
.poptrox-popup:hover .nav-next:hover,
.poptrox-popup:hover .nav-previous:hover {
  opacity: 1;
}
.poptrox-popup .nav-previous:before {
  transform: scaleX(-1);
  -ms-filter: "FlipH";
  filter: FlipH;
}
.poptrox-popup .nav-next {
  right: 0;
}
.poptrox-popup .nav-next:before {
  right: 0;
}
.poptrox-popup .nav-previous {
  left: 0;
}
.poptrox-popup .nav-previous:before {
  left: 0;
}
.poptrox-popup .closer {
  transition: opacity 0.2s ease-in-out;
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  text-indent: -9999px;
  z-index: 2;
  opacity: 0;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
.poptrox-popup .closer:before {
  content: "";
  display: block;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  box-shadow: inset 0 0 0 2px #fff;
  background: url("images/poptrox-closer.svg") center center;
  color: #ffffff !important;
}
.poptrox-popup:hover .closer {
  opacity: 0.5;
}
.poptrox-popup:hover .closer:hover {
  opacity: 1;
}
body.is-touch .poptrox-popup .nav-next,
body.is-touch .poptrox-popup .nav-previous,
body.is-touch .poptrox-popup .closer {
  opacity: 1 !important;
}
@media screen and (max-width: 736px) {
  .poptrox-popup .nav-next:before,
.poptrox-popup .nav-previous:before {
    width: 48px;
    height: 32px;
    background-size: contain;
    margin: -16px 0 0 0;
  }
  .poptrox-popup .closer:before {
    right: 12px;
    top: 12px;
    width: 20px;
    height: 20px;
    box-shadow: inset 0 0 0 1px #fff;
    background-size: contain;
    opacity: 0.65;
  }
}

/* Box */
.products {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  margin-top: 2em;
  padding: 0 2em;
}
.products .product {
  width: 33.3333333333%;
  text-decoration: none;
  position: relative;
}
.products .product .image_bg {
  width: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 0;
  padding-top: 70%;
  max-height: 280px;
  position: relative;
}
.products .product .image_bg::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
  top: 0;
  opacity: 0;
  transition: opacity 0.5s ease-out;
  background-color: rgba(255, 255, 255, 0.5);
}
.products .product header {
  color: black;
  font-weight: 900;
  font-size: 90%;
  line-height: 1.5em;
  margin-top: 10px;
  text-align: center;
}
.products .product::after {
  position: absolute;
  bottom: 15px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background: black;
  opacity: 0.5;
  filter: blur(10px);
  transform: scale(1, 0.2) translateX(-50px);
  left: initial;
}
@media screen and (max-width: 736px) {
  .products {
    padding: 0;
    flex-direction: column;
  }
  .products .product {
    width: 90%;
    margin: 0 5%;
    padding-bottom: 1.5em;
  }
}

/* Gallery */
.gallery {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  width: 45em;
  max-width: 100%;
  margin: 0 auto 2em auto;
}
.gallery article {
  transition: transform 1s ease, opacity 1s ease;
  transform: translateX(0);
  width: 50%;
  position: relative;
  opacity: 1;
}
.gallery article .image {
  margin: 0;
  display: block;
}
.gallery article:nth-last-child(1n) {
  transition-delay: 0.05s;
}
.gallery article:nth-last-child(2n) {
  transition-delay: 0.05s;
}
.gallery article:nth-last-child(2n) {
  transition-delay: 0.1s;
}
.gallery article:nth-last-child(3n) {
  transition-delay: 0.1s;
}
.gallery article:nth-last-child(3n) {
  transition-delay: 0.15s;
}
.gallery article:nth-last-child(4n) {
  transition-delay: 0.15s;
}
.gallery article:nth-last-child(4n) {
  transition-delay: 0.2s;
}
.gallery article:nth-last-child(5n) {
  transition-delay: 0.2s;
}
.gallery article:nth-last-child(5n) {
  transition-delay: 0.25s;
}
.gallery article:nth-last-child(6n) {
  transition-delay: 0.25s;
}
.gallery article:nth-last-child(6n) {
  transition-delay: 0.3s;
}
.gallery article:nth-last-child(7n) {
  transition-delay: 0.3s;
}
.gallery article:nth-last-child(7n) {
  transition-delay: 0.35s;
}
.gallery article:nth-last-child(8n) {
  transition-delay: 0.35s;
}
.gallery article:nth-last-child(8n) {
  transition-delay: 0.4s;
}
.gallery article:nth-last-child(9n) {
  transition-delay: 0.4s;
}
.gallery article:nth-last-child(9n) {
  transition-delay: 0.45s;
}
.gallery article:nth-last-child(10n) {
  transition-delay: 0.45s;
}
.gallery article:nth-last-child(10n) {
  transition-delay: 0.5s;
}
.gallery article:nth-last-child(11n) {
  transition-delay: 0.5s;
}
.gallery article:nth-last-child(11n) {
  transition-delay: 0.55s;
}
.gallery article:nth-last-child(12n) {
  transition-delay: 0.55s;
}
.gallery article:nth-last-child(12n) {
  transition-delay: 0.6s;
}
.gallery article:nth-last-child(13n) {
  transition-delay: 0.6s;
}
.gallery article:nth-last-child(13n) {
  transition-delay: 0.65s;
}
.gallery article:nth-last-child(14n) {
  transition-delay: 0.65s;
}
.gallery article:nth-last-child(14n) {
  transition-delay: 0.7s;
}
.gallery article:nth-last-child(15n) {
  transition-delay: 0.7s;
}
.gallery article:nth-last-child(15n) {
  transition-delay: 0.75s;
}
.gallery article:nth-last-child(16n) {
  transition-delay: 0.75s;
}
.gallery article:nth-last-child(16n) {
  transition-delay: 0.8s;
}
.gallery article:nth-last-child(17n) {
  transition-delay: 0.8s;
}
.gallery article:nth-last-child(17n) {
  transition-delay: 0.85s;
}
.gallery article:nth-last-child(18n) {
  transition-delay: 0.85s;
}
.gallery article:nth-last-child(18n) {
  transition-delay: 0.9s;
}
.gallery article:nth-last-child(19n) {
  transition-delay: 0.9s;
}
.gallery article:nth-last-child(19n) {
  transition-delay: 0.95s;
}
.gallery article:nth-last-child(20n) {
  transition-delay: 0.95s;
}
.gallery article:nth-last-child(20n) {
  transition-delay: 1s;
}
.gallery article:nth-last-child(21n) {
  transition-delay: 1s;
}
.gallery article:nth-last-child(21n) {
  transition-delay: 1.05s;
}
.gallery article:nth-last-child(22n) {
  transition-delay: 1.05s;
}
.gallery article:nth-last-child(22n) {
  transition-delay: 1.1s;
}
.gallery article:nth-last-child(23n) {
  transition-delay: 1.1s;
}
.gallery article:nth-last-child(23n) {
  transition-delay: 1.15s;
}
.gallery article:nth-last-child(24n) {
  transition-delay: 1.15s;
}
.gallery.inactive article {
  opacity: 0;
}
.gallery.inactive article.from-left {
  transform: translateX(-14em);
}
.gallery.inactive article.from-right {
  transform: translateX(14em);
}
.gallery.inactive article.from-top {
  transform: translateY(-7em);
}
.gallery.inactive article.from-bottom {
  transform: translateY(7em);
}
@media screen and (max-width: 480px) {
  .gallery {
    flex-wrap: nowrap;
    -moz-flex-direction: column;
    flex-direction: column;
  }
  .gallery article {
    width: 100%;
  }
}

.two-columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2em;
}
.two-columns .left {
  width: 49%;
  padding: 0 10%;
}
.two-columns .left p {
  line-height: 1em;
}
.two-columns .left p:last-child {
  margin-bottom: 0;
}
.two-columns .right {
  width: 45%;
  margin-right: auto;
}
.two-columns .right iframe {
  width: 100%;
  margin-right: 5%;
  display: block;
  height: 400px;
}
@media screen and (max-width: 736px) {
  .two-columns {
    flex-direction: column;
  }
  .two-columns .left {
    width: 100%;
    margin-bottom: 40px;
  }
  .two-columns .right {
    width: 100%;
  }
  .two-columns .right iframe {
    height: 400px;
  }
}

/* Box */
.two-columns-inv {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  margin-top: 2em;
  padding: 0;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.two-columns-inv .left {
  width: 48%;
}
.two-columns-inv .left img {
  max-width: 100%;
}
.two-columns-inv .right {
  width: 48%;
}
.two-columns-inv .right p {
  line-height: 1.5em;
}
.two-columns-inv .box-v {
  width: 33.3333333333%;
  flex: 1 1 0;
  padding: 0 1.5em;
  cursor: pointer;
}
.two-columns-inv .box-v .inner {
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  max-width: 430px;
  justify-content: center;
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.two-columns-inv .box-v .inner:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.two-columns-inv .box-v .inner picture {
  position: relative;
  padding-top: 130%;
  height: 0;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.two-columns-inv .box-v .inner picture header {
  font-weight: 900;
  position: absolute;
  bottom: 1em;
  margin: 0 5%;
  padding: 2% 5%;
  background-color: white;
  width: 90%;
}
@media screen and (max-width: 736px) {
  .two-columns-inv {
    padding: 0;
    flex-direction: column;
  }
  .two-columns-inv .box-v {
    width: 100%;
    padding-bottom: 1.5em;
  }
}

/* Header */
#header {
  position: fixed;
  z-index: 4;
  left: 0;
  top: 0;
  width: 100%;
  /*background: transparentize(_palette(bg), 0.05);
  height: 5em;*/
  line-height: 3em;
  box-shadow: 0 0 0.15em 0 rgba(0, 0, 0, 0.1);
}
#header h1 {
  position: absolute;
  left: 1em;
  top: 0;
  height: 3em;
  line-height: 3em;
  cursor: default;
}
#header h1 a {
  font-size: 1.25em;
}
#header logo {
  position: absolute;
  left: 1em;
  top: 0;
}
#header logo img {
  width: 5em;
  display: block;
  padding-top: 0.5em;
}
#header .menu_btn {
  position: fixed;
  z-index: 12;
  right: 0px;
  top: 0px;
  padding: 15px 20px 15px 15px;
  cursor: pointer;
}
#header .menu_btn .nav_icon {
  width: 30px;
  height: 22px;
  position: relative;
  margin: 0px auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}
#header .menu_btn .nav_icon span {
  /*box-shadow: 0 0 0.15em 0 rgba(0,0,0,1);*/
  display: block;
  position: absolute;
  height: 1.5px;
  width: 100%;
  background: black;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
#header .menu_btn .nav_icon span:nth-child(1) {
  top: 0px;
}
#header .menu_btn .nav_icon span:nth-child(2) {
  top: 10px;
}
#header .menu_btn .nav_icon span:nth-child(3) {
  top: 20px;
}
#header .menu_btn.active .nav_icon span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}
#header .menu_btn.active .nav_icon span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
#header .menu_btn.active .nav_icon span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}
#header .menu-dis {
  position: fixed;
  top: 0;
  right: -400px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
}
#header nav {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 90px;
}
#header nav ul {
  margin: 0;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
#header nav ul li {
  display: inline-block;
  font-size: 0.9em;
}
#header nav ul li a {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 3em;
  line-height: 1.2em;
  padding: 0 0.5em 1em 0.5em;
  outline: 0;
  text-align: center;
}
#header nav ul li a:last-child {
  padding-bottom: 0;
}
@media screen and (max-width: 736px) {
  #header {
    /*nav {
    	display: none;
    }*/
  }
  #header h1 {
    text-align: center;
    position: relative;
    left: 0;
    top: 0;
    height: 2.5em;
    line-height: 2.5em;
  }
  #header h1 a {
    font-size: 1em;
  }
}

body.men_active #header .menu-dis {
  right: 0;
  transition: right 0.5s linear;
}

/*body {
	padding-top: 5em;

	@include breakpoint('<=small') {
		padding-top: 5em;
	}
}*/
/* Main */
.main {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  position: relative;
  margin: 0;
  overflow-x: hidden;
}
.main > .content {
  width: 45em;
  max-width: calc(100% - 4em);
  margin: 0 auto;
}
.main > .content > :last-child {
  margin-bottom: 0;
}
.main.fullscreen {
  min-height: 100%;
}
.main.style1 {
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  text-align: center;
  padding: 3em 0 3em 0;
}
.main.style1 h2 {
  font-size: 4.25em;
  line-height: 1em;
}
.main.style1 > .content {
  transition: opacity 1s ease;
  transform: translateZ(0);
  opacity: 1;
  margin: 0;
}
.main.style1.inactive > .content {
  opacity: 0;
}
.main.style2 {
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  padding: 3em 0 3em 0;
  overflow: hidden;
}
.main.style2 > .content {
  transition: transform 1s ease;
  transform: translateZ(0);
  position: relative;
  width: 35%;
  margin: 0;
}
.main.style2.left {
  -moz-justify-content: -moz-flex-start;
  -ms-justify-content: -ms-flex-start;
  justify-content: flex-start;
}
.main.style2.right {
  -moz-justify-content: -moz-flex-end;
  -ms-justify-content: -ms-flex-end;
  justify-content: flex-end;
}
.main.style2.inactive.left > .content {
  transform: translateX(-100%);
}
.main.style2.inactive.right > .content {
  transform: translateX(100%);
}
.main.style3 {
  text-align: center;
  padding: 6em 0 6em 0;
}
.main.style3 .content > header {
  margin-bottom: 2em;
}
.main.style3.primary {
  background: #ffffff;
}
.main.style3.secondary {
  background: #f5f6f7;
}
.main.style4 {
  background: #ffffff;
  text-align: center;
  padding: 6em 0 6em 0;
}
.main.style4 .content {
  width: 100%;
  max-width: initial;
}
.main.style5 {
  background: #ffffff;
  text-align: center;
  padding: 6em 0 6em 0;
}
.main.style5 .content {
  width: 100%;
  max-width: initial;
}
.main.style6 {
  background: #ffffff;
  text-align: center;
  padding: 2em 0 6em 0;
}
.main.style6 .content {
  width: 100%;
  max-width: initial;
}
.main.style7 {
  background: #ffffff;
  text-align: center;
  padding: 2em 0;
}
.main.style7 .content {
  width: 100%;
  max-width: initial;
}
.main.dark {
  color: #ffffff;
}
.main.dark a {
  color: inherit;
}
.main.dark .button.style2 {
  border-color: #ffffff;
}
.main.dark .button.style2:hover {
  background-color: rgba(255, 255, 255, 0.125);
}
.main.dark .button.style2:active {
  background-color: rgba(255, 255, 255, 0.25);
}
.main.dark .button.style2.down {
  background-image: url("images/dark-arrow.svg");
}
body.is-touch .main {
  background-attachment: scroll !important;
}
@media screen and (max-width: 1920px) {
  .main.style2 .content {
    width: 40%;
  }
}
@media screen and (max-width: 1280px) {
  .main.style2 .content {
    width: 50%;
  }
}
@media screen and (max-width: 1000px) {
  .main.style2 .content {
    width: 60%;
  }
}
@media screen and (max-width: 736px) {
  .main > .content br {
    display: none;
  }
  .main.fullscreen {
    height: auto !important;
  }
  .main.style1 {
    padding: 4em 15px 4em 15px;
  }
  .main.style1 h2 {
    font-size: 3em;
  }
  .main.style2 {
    padding: 6em 15px 6em 15px;
  }
  .main.style2:before, .main.style2:after {
    display: none !important;
  }
  .main.style2 .button.anchored {
    display: none;
  }
  .main.style2 .content {
    width: 100%;
    max-width: 100%;
    text-align: center;
    transform: none;
  }
  .main.style3 {
    text-align: center;
    padding: 3em 10px 3em 10px;
  }
}
@media screen and (max-width: 480px) {
  .main > .content {
    max-width: calc(100% - 1.5em);
  }
}

/* Footer */
#footer {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  margin: 0;
  line-height: 1em;
  padding: 1.5em;
  background-color: rgb(226, 101, 7);
  color: rgba(185, 186, 187, 0.5);
  overflow: hidden;
}
#footer > * {
  margin-bottom: 0;
}
#footer a {
  color: inherit;
}
#footer a:hover {
  color: rgb(185, 186, 187);
}
#footer ul.menu {
  margin: 0;
}
#footer ul.menu li {
  border-left-color: rgba(185, 186, 187, 0.2);
  font-size: 0.9em;
}
#footer .two-foo {
  width: 90%;
  margin: 0 auto;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#footer .two-foo .left ul {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
}
#footer .two-foo .left ul li {
  margin-left: 20px;
}
#footer .two-foo .left ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9em;
  position: relative;
}
#footer .two-foo .left ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: 1px;
  left: 0;
  background-color: #ffffff;
}
#footer .two-foo .left ul li:first-child {
  margin-left: 0;
}
#footer .two-foo .right {
  text-align: center;
  color: #ffffff;
}
#footer .up_foo {
  margin-bottom: 1em;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#footer .up_foo .wrap-icon {
  flex: 1 1 0;
  min-width: 175px;
  text-align: center;
}
#footer .up_foo .wrap-icon .icon_foo.lvi img {
  height: 50px;
}
#footer .up_foo .wrap-icon .icon_foo.efiartes img {
  height: 65px;
}
@media screen and (max-width: 1000px) {
  #footer {
    -moz-flex-direction: column;
    flex-direction: column;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    line-height: 1.5em;
    text-align: center;
    padding: 2em 1em 2em 1em;
  }
  #footer > * {
    margin: 0 0 1em 0;
  }
  #footer .two-foo .left ul {
    flex-direction: column;
  }
  #footer .two-foo .left ul li {
    margin-left: 0;
    margin-bottom: 1em;
  }
  #footer .two-foo .left ul li a {
    font-size: 0.9em;
  }
  #footer .up_foo {
    flex-direction: column;
  }
  #footer .up_foo .icon_foo {
    margin: 1em 0;
  }
  #footer .up_foo .icon_foo.lvi img {
    height: 45px;
  }
  #footer .up_foo .icon_foo.efiartes img {
    height: 100px;
  }
}
@media screen and (max-width: 736px) {
  #footer ul.menu li {
    border-left: none;
    display: block;
    line-height: inherit;
    margin: 0.25em 0 0 0;
    padding: 0.25em 0 0 0;
  }
  #footer ul.menu li:first-child {
    margin-top: 0;
    padding-top: 0;
  }
}

/* Intro */
#intro3 {
  display: flex;
  align-items: center;
}
#intro3 .content {
  position: relative;
  color: #ffffff;
}

#intro2 {
  background: url("images/overlay.png"), url("../../images/test/retrato.jpg");
  background-size: 256px 256px, cover;
  background-attachment: fixed, fixed;
  background-position: top left, center center;
  display: flex;
  align-items: center;
}
#intro2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 0;
}
#intro2 .button.style2.down {
  background-image: url("../css/images/orange-arrow.svg");
  border-color: rgb(226, 101, 7);
}
#intro2 .logo_small {
  position: fixed;
  left: 15px;
  top: 15px;
  height: 70px;
  width: 70px;
  z-index: 1;
}
#intro2 .logo_small a {
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  /*top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);*/
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.8s ease-out;
}
#intro2 .logo_small a:first-child {
  opacity: 1;
  z-index: 2;
}
#intro2 .logo_small a:last-child {
  opacity: 0;
  z-index: -9999999;
}
#intro2 .logo_small a img {
  width: auto;
  max-height: 70px;
}
#intro2.inactive .logo_small a:first-child {
  opacity: 0;
  z-index: -9999999;
}
#intro2.inactive .logo_small a:last-child {
  opacity: 1;
  z-index: 2;
}
@media screen and (max-width: 736px) {
  #intro2 .logo_small {
    opacity: 1;
    z-index: 2;
  }
  #intro2 .logo_small a:first-child img {
    max-height: 35px;
  }
}

#intro {
  /*background: url('images/overlay.png'), rgba(226, 101, 7, 0.3);*/
  background-size: 256px 256px, cover;
  background-attachment: fixed, fixed;
  background-position: top left, bottom center;
  background-repeat: repeat, no-repeat;
}
#intro .button.style2.down {
  background-image: url("../css/images/orange-arrow.svg");
  border-color: rgb(226, 101, 7);
}

#video_reel video {
  background-color: white;
  width: auto;
  max-width: 100%;
  height: 100vh;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 736px) {
  #video_reel .content {
    display: flex;
    align-items: center;
  }
  #video_reel .content video {
    width: 100%;
    height: auto;
  }
}

/* One */
#one {
  background: url("images/overlay.png"), url("../../images/test/FFMHOWAB4ZDUZGI6FNSBV6UVII-1.jpg");
  background-size: 256px 256px, cover;
  background-attachment: fixed, fixed;
  background-position: top left, center center;
}

/*El diario*/
#diario {
  background: url("images/overlay.png"), url("../../images/test/orange.jpg");
  background-size: 256px 256px, cover;
  background-attachment: fixed, fixed;
  background-position: top left, center center;
}
#diario .content {
  background-color: rgba(255, 255, 255, 0.96);
}
#diario .content h2 {
  margin-bottom: 0.5em;
  line-height: 1em;
  font-size: 2em;
}

#manchas {
  background: url("images/overlay.png"), url("../../images/test/las-manchas.png");
  background-size: 256px 256px, cover;
  background-attachment: fixed, fixed;
  background-position: top left, center center;
}
#manchas .content {
  background-color: rgba(255, 255, 255, 0.9);
}
#manchas .content h2 {
  margin-bottom: 0.5em;
  line-height: 1em;
  font-size: 2em;
}
#manchas .button.style2.down {
  background-image: url("../css/images/light_arrow.svg");
}
#manchas .format_v {
  font-size: 90%;
  font-style: italic;
}

/*El diario*/
#lvi {
  display: flex;
  align-items: center;
  background: url("images/overlay.png"), url("../../images/test/lvi.jpg");
  background-size: 256px 256px, cover;
  background-attachment: fixed, fixed;
  background-position: top left, center center;
  /*.button.style2.down{
  	background-image: url('../css/images/light_arrow.svg');
  }*/
}
#lvi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}
#lvi .content {
  position: relative;
}
#lvi .content header h2 {
  margin-bottom: 1em;
}
#lvi .btn-read-more a {
  border-color: #ffffff;
  color: #39454b;
}

/*Las obras*/
/*#obras {
	background: url('images/overlay.png'), url('../../images/test/bw.jpg');
	background-size: 256px 256px, cover;
	background-attachment: fixed, fixed;
	background-position: top left, center center;
}*/
/* Two */
#two {
  background: url("images/overlay.png"), url("../../images/two.jpg");
  background-size: 256px 256px, cover;
  background-attachment: fixed, fixed;
  background-position: top left, center center;
}

/* Contact */
#contacto {
  padding-top: 0;
  overflow: hidden;
}

#obras {
  display: flex;
  align-items: center;
}

#expo {
  display: flex;
  align-items: center;
}
#expo .slash {
  text-align: center;
}
#expo .slash img {
  max-height: 25px;
}
@media screen and (max-width: 736px) {
  #expo .slash {
    margin-bottom: 3em;
  }
}

section p {
  line-height: 1.2em;
}

.underlayer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #013A6B;
  background-image: -webkit-linear-gradient(30deg, rgb(226, 101, 7) 40%, #ffffff 50%);
}

.underlayer2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("images/overlay.png"), url("../../images/test/retrato.jpg");
  background-size: 256px 256px, cover;
  background-attachment: fixed, fixed;
  background-position: top left, center center;
}
.underlayer2::after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background-image: -webkit-linear-gradient(30deg, rgba(226, 101, 7, 0.5) 40%, rgba(255, 255, 255, 0.1) 50%);
}/*# sourceMappingURL=main.css.map */