/* 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: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
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;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: fill-available;
  height: -webkit-fill-available;
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  min-height: 100vh;
  min-height: fill-available;
  min-height: -webkit-fill-available;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 1.2vw;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

.js-cont {
  position: relative;
  width: 100%;
  height: 100%;
}

.js-scroll {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  will-change: transform;
}

.full-screen {
  height: 100%;
}

/* ------------------------ */
.invisible {
  visibility: hidden;
}

.novisible {
  display: none;
}

.no-desktop {
  display: none;
  height: 100vh;
}

.no-responsive {
  display: initial;
}

.no-mobile {
  display: initial;
}

.only-mobile {
  display: none;
}

.no-touch {
  display: initial;
}

.no-scroll {
  position: fixed !important;
  overflow: hidden !important;
  height: 100% !important;
  width: 100% !important;
  top: 0 !important;
  left: 0 !important;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.fleft {
  float: left;
  text-align: left;
}

.fright {
  float: right;
  text-align: right;
}

.acenter {
  text-align: center;
}

.wfull {
  width: 100%;
}

.w100 {
  max-width: 1600px;
  margin: auto;
  padding: 0 90px;
}

.w80 {
  width: 80%;
  max-width: 1400px;
  margin: auto;
}

.ofcover {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.ofcontain {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.vcenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} /* siempre dentro de un relative */
.slider .flickity-page-dots {
  bottom: -30px;
}

.slider .flickity-page-dots .dot {
  background: none;
  border: solid 1px #000000;
}

.slider.dots-dentro .flickity-page-dots {
  bottom: 20px;
}

.slider.dots-dentro .flickity-page-dots .dot {
  background: none;
  border: solid 1px #FFFFFF;
}

.col {
  padding: 0px 3%;
  float: left;
}

.mt-1 {
  margin-top: 20vh;
}

.transitionall {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.dot {
  height: 6px;
  width: 6px;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: block;
}

.overflowhidden {
  overflow: hidden;
}

.bounce-v {
  animation-name: bounce-v;
  animation-timing-function: ease;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@keyframes bounce-v {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15%);
  }
  100% {
    transform: translateY(0);
  }
}
.bounce-h {
  animation-name: bounce-h;
  animation-timing-function: ease;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@keyframes bounce-h {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-15%);
  }
  100% {
    transform: translateX(0);
  }
}
.bounce-float-v-6 {
  animation-name: bounce-float-v;
  animation-timing-function: ease-in-out;
  animation-duration: 6s;
  animation-iteration-count: infinite;
}

.bounce-float-v-9 {
  animation-name: bounce-float-v;
  animation-timing-function: ease-in-out;
  animation-duration: 9s;
  animation-iteration-count: infinite;
}

.bounce-float-v-12 {
  animation-name: bounce-float-v;
  animation-timing-function: ease-in-out;
  animation-duration: 12s;
  animation-iteration-count: infinite;
}

@keyframes bounce-float-v {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.5%);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .no-desktop {
    display: initial;
  }
  .no-responsive {
    display: none;
  }
}
@media (max-width: 767px) {
  .no-mobile {
    display: none;
  }
  .only-mobile {
    display: initial;
  }
}
@media (hover: none) {
  .no-touch {
    display: none;
  }
}
.grecaptcha-badge {
  visibility: collapse !important;
}

.visuallyhidden {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

@font-face {
  font-family: "Grotesque MT Std";
  src: url("../fonts/Grotesque MT Std.eot");
  src: url("../fonts/Grotesque MT Std.eot?#iefix") format("embedded-opentype"), url("../fonts/Grotesque MT Std.woff") format("woff"), url("../fonts/Grotesque MT Std.woff2") format("woff2"), url("../fonts/Grotesque MT Std.ttf") format("truetype"), url("../fonts/Grotesque MT Std.svg#Grotesque MT Std") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Grotesque MT Std Bold";
  src: url("../fonts/Grotesque MT Std Bold.eot");
  src: url("../fonts/Grotesque MT Std Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Grotesque MT Std Bold.woff") format("woff"), url("../fonts/Grotesque MT Std Bold.woff2") format("woff2"), url("../fonts/Grotesque MT Std Bold.ttf") format("truetype"), url("../fonts/Grotesque MT Std Bold.svg#Grotesque MT Std Bold") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} /*color corporativo*/
/* fondo body*/
/* fondo body*/
body {
  background-color: #EDF4EC;
  font-family: "Grotesque MT Std";
}

a {
  color: #152016;
  font-family: "Grotesque MT Std";
}

p {
  color: #152016;
  font-family: "Grotesque MT Std";
  line-height: 110%;
  font-size: clamp(16px, 1.2vw, 22px);
}

h1 {
  color: #152016;
  font-family: "Grotesque MT Std";
  font-size: clamp(45px, 4vw, 60px);
}

h2 {
  color: #152016;
  font-family: "Grotesque MT Std Bold";
  font-size: clamp(20px, 1.5vw, 26px);
}

strong {
  font-weight: 800;
}

.max-widht {
  max-width: 1600px;
  margin: auto;
}

.general-padding {
  padding: 3vw;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

article {
  height: auto;
  display: flex;
  flex-direction: column;
}

.box-100 {
  width: 100%;
  margin: 0 auto;
}

.box-50 {
  width: 50%;
  margin: 0 auto;
}

.box-25 {
  width: 25%;
  margin: 0 auto;
}

.box-33 {
  width: 33.33%;
  margin: 0 auto;
}

.box-20 {
  width: 20%;
  margin: 0 auto;
}

.mt-altomenu {
  margin-top: 5vh;
}

.btn {
  font-family: "Grotesque MT Std Bold";
  font-size: clamp(14px, 1vw, 16px);
  width: fit-content;
  padding: 10px 30px 8px;
  background-color: #DEEBDC;
  border-radius: 25px;
  transition: all 0.6s;
  text-align: center;
}

.btn:hover {
  background-color: #152016;
  color: #EDF4EC;
}

.btn-white {
  background-color: #EDF4EC;
}

.btn-white:hover {
  background-color: #DEEBDC;
  color: #152016;
}

.btn-border {
  background-color: #EDF4EC;
  border: 1px solid #152016;
}

.btn-border:hover {
  background-color: #DEEBDC;
  color: #152016;
}

.btn-border.active {
  background-color: #152016;
  color: #EDF4EC;
  border: 1px solid #152016;
}

.btn-video {
  background-color: transparent;
  border: 1px solid #EDF4EC;
  color: #EDF4EC;
  cursor: pointer;
}

.btn-video:hover {
  background-color: #EDF4EC;
  color: #152016;
}

.btn-green {
  background-color: #152016;
  color: #EDF4EC;
}

.btn-green:hover {
  background-color: #DEEBDC;
  color: #152016;
}

.btn-download {
  background-color: #152016;
  color: #EDF4EC;
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-download:hover {
  opacity: 0.6;
}

.bb {
  border-bottom: 1px solid #0D0D0D;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 1vw !important;
}

.pt-3 {
  padding-top: 3vw !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-3 {
  padding-bottom: 3vw !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

article.inicio_fin {
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 50vw;
}

@media screen and (max-width: 1024px) {
  .box-100 {
    width: 100%;
  }
  .box-25 {
    width: 100%;
  }
  .box-33 {
    width: 100%;
  }
  .general-padding {
    padding: 30px;
  }
  .pt-1 {
    padding-top: 30px !important;
  }
  .pt-3 {
    padding-top: 30px !important;
  }
  .pb-3 {
    padding-bottom: 30px !important;
  }
  .mt-altomenu {
    margin-top: 0vh;
  }
}
@media screen and (max-width: 767px) {
  .general-padding {
    padding: 15px;
  }
  .pt-1 {
    padding-top: 15px !important;
  }
  .pt-3 {
    padding-top: 15px !important;
  }
  .pb-3 {
    padding-bottom: 15px !important;
  }
  article.inicio_fin {
    background-repeat: no-repeat;
    background-position: right 220px;
    background-size: 200vw;
  }
}
header {
  position: fixed;
  height: min(max(40px, 7vw), 100px);
  width: 100%;
  top: 0;
  z-index: 99;
  transition: top 0.6s ease;
}
header div.header__container {
  display: flex;
  justify-content: center;
  height: min(max(40px, 7vw), 100px);
  background-color: #EDF4EC;
}
header div.header__container div.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #EDF4EC;
}
header div.header__container div.header__content div.header__logo {
  margin-left: 3vw;
}
header div.header__container div.header__content div.header__logo a {
  display: flex;
  font-weight: 500;
  transition: 0.2s;
}
header div.header__container div.header__content div.header__logo a img {
  height: 100%;
  max-height: 40px;
  transition: filter 0.3s ease-in-out;
}
header div.header__container div.header__content div.header__logo a .white {
  display: none;
}
header div.header__container div.header__content div.header__logo a .bk {
  display: block;
}
header div.header__container div.header__content div.header__logo a:hover img {
  filter: brightness(1.5) drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}
header div.header__container div.header__content nav.header__nav {
  height: min(max(40px, 7vw), 100px);
  top: 0;
  left: 0;
  z-index: 99;
  display: flex;
  justify-content: center;
  padding: 0 3vw;
}
header div.header__container div.header__content nav.header__nav ul.nav__list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding-top: 0;
  gap: 50px;
}
header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__item {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__item a {
  font-size: clamp(16px, 1.2vw, 22px);
  font-family: "Grotesque MT Std";
  font-weight: 500;
  position: relative;
  text-decoration: none;
  transition: opacity 0.2s, color 0.3s;
}
header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #152016;
  transition: width 0.2s ease-in-out;
}
header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__item a {
  transition: 0.2s;
  line-height: min(max(40px, 7vw), 100px);
}
header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__item a img {
  width: 3vw;
}
header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__item:hover::after {
  width: 100%;
}
header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__item.active a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #152016;
}
header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages ul.nav__languages-inline {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}
header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages ul.nav__languages-inline .nav__language-item {
  font-size: clamp(16px, 1.2vw, 22px);
  font-family: "Grotesque MT Std";
  font-weight: 500;
}
header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages ul.nav__languages-inline .nav__language-item span.active {
  font-weight: 700;
  color: #152016;
}
header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages ul.nav__languages-inline .nav__language-item a {
  color: #152016;
  text-decoration: none;
  transition: opacity 0.2s;
}
header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages ul.nav__languages-inline .nav__language-item a:hover {
  opacity: 0.6;
}
header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages ul.nav__languages-inline .nav__language-item:not(:last-child)::after {
  content: "|";
  margin-left: 5px;
  color: #152016;
  opacity: 0.5;
}
header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages p.idiomas-label {
  display: none;
}
header div.header__container div.header__content nav.header__nav ul.nav__list ul.foot {
  display: none;
}
header div.header__container div.header__content nav.header__nav ul.nav__list .menu-label {
  display: none;
}
header div.header__container div.header__content nav.header__nav ul.foot__responsive {
  display: none;
}
header div.header__container div.header__content .menu.active {
  display: flex;
}
header div.header__container .action-nav-mov {
  width: 42px;
  height: 39px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
}
header div.header__container .action-nav-mov span {
  display: block;
  position: absolute;
  height: 2px;
  width: 80%;
  background: #152016;
  border-radius: 5px;
  opacity: 1;
  left: 20%;
  transition: 0.25s ease-in-out;
}
header div.header__container .action-nav-mov span:nth-child(1) {
  top: 7px;
}
header div.header__container .action-nav-mov span:nth-child(2), header div.header__container .action-nav-mov span:nth-child(3) {
  top: 18px;
}
header div.header__container .action-nav-mov span:nth-child(4) {
  top: 29px;
}
header div.header__container .action-nav-mov.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
header div.header__container .action-nav-mov.open span:nth-child(2) {
  transform: rotate(45deg);
}
header div.header__container .action-nav-mov.open span:nth-child(3) {
  transform: rotate(-45deg);
}
header div.header__container .action-nav-mov.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
header.nav-up {
  top: -100%;
}
header.nav-down {
  top: 0;
}
header.transparente div.header__container {
  background-color: transparent;
  box-shadow: none;
}
header.transparente div.header__container div.header__content {
  background-color: transparent;
}
header.transparente div.header__container div.header__content div.header__logo .white {
  display: block;
}
header.transparente div.header__container div.header__content div.header__logo .bk {
  display: none;
}
header.transparente div.header__container div.header__content nav.header__nav ul.nav__list li.nav__item a {
  color: #EDF4EC;
}
header.transparente div.header__container div.header__content nav.header__nav ul.nav__list li.nav__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #EDF4EC;
  transition: width 0.2s ease-in-out;
}
header.transparente div.header__container div.header__content nav.header__nav ul.nav__list li.nav__item a {
  transition: 0.2s;
  line-height: min(max(40px, 7vw), 100px);
}
header.transparente div.header__container div.header__content nav.header__nav ul.nav__list li.nav__item a img {
  width: 3vw;
}
header.transparente div.header__container div.header__content nav.header__nav ul.nav__list li.nav__item:hover::after {
  width: 100%;
}
header.transparente div.header__container div.header__content nav.header__nav ul.nav__list li.nav__item.active a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #EDF4EC;
}
header.transparente div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages ul.nav__languages-inline {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}
header.transparente div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages ul.nav__languages-inline .nav__language-item {
  font-size: clamp(16px, 1.2vw, 22px);
  font-family: "Grotesque MT Std";
  font-weight: 500;
}
header.transparente div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages ul.nav__languages-inline .nav__language-item span.active {
  font-weight: 700;
  color: #FFFFFF;
}
header.transparente div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages ul.nav__languages-inline .nav__language-item a {
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.2s;
}
header.transparente div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages ul.nav__languages-inline .nav__language-item a:hover {
  opacity: 0.6;
}
header.transparente div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages ul.nav__languages-inline .nav__language-item:not(:last-child)::after {
  content: "|";
  margin-left: 5px;
  color: #FFFFFF;
  opacity: 0.5;
}
header.transparente div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages p.idiomas-label {
  display: none;
}
header.transparente div.header__container div.header__content nav.header__nav ul.nav__list ul.foot {
  display: none;
}
header.transparente div.header__container div.header__content .action-nav-mov span {
  background: #FFFFFF;
}
header.transparente.with-background {
  background-color: #152016;
}

@media only screen and (max-width: 1024px) {
  header {
    background-color: #FFFFFF;
    height: 80px;
    position: fixed;
  }
  header div.header__container {
    display: flex;
    justify-content: center;
    height: 80px;
    background-color: #FFFFFF;
  }
  header div.header__container div.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
  }
  header div.header__container div.header__content div.header__logo {
    margin-left: 30px;
  }
  header div.header__container div.header__content nav.header__nav {
    position: absolute;
    height: 90vh;
    width: 100%;
    top: 80px;
    left: 0;
    z-index: 9;
    padding: 0;
    display: none;
    justify-content: center;
    padding-right: 0;
    background-color: #DEEBDC;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-height: 93vh;
    align-items: center;
    background-color: #EDF4EC;
    margin-left: 0;
    gap: 0;
    padding-bottom: 60px;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__item {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 30px;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__item a {
    font-size: 2rem;
    font-family: "Grotesque MT Std Bold";
    line-height: 140%;
    display: flex;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__item:last-child {
    border-bottom: 1px solid black;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages {
    border-top: 1px solid #152016;
    border-bottom: 1px solid #152016;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 15px;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages ul.nav__languages-inline {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages ul.nav__languages-inline .nav__language-item {
    font-family: "Grotesque MT Std";
    font-weight: 500;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages ul.nav__languages-inline .nav__language-item span.active {
    font-weight: 700;
    color: #152016;
    font-size: 2rem;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages ul.nav__languages-inline .nav__language-item a {
    color: #152016;
    text-decoration: none;
    transition: opacity 0.2s;
    font-size: 2rem;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages ul.nav__languages-inline .nav__language-item a:hover {
    opacity: 0.6;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages ul.nav__languages-inline .nav__language-item:not(:last-child)::after {
    content: "|";
    margin-left: 5px;
    color: #152016;
    opacity: 0.5;
    font-size: 2rem;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list ul.foot {
    display: block;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 15px;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list ul.foot .nav__social {
    width: 50%;
    padding: 15px 30px;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list ul.foot .nav__social p.social-label {
    font-size: clamp(14px, 1vw, 16px);
    margin-bottom: 15px;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list ul.foot .nav__social ul.desplegable-social li.social-element {
    margin-bottom: 10px;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list .menu-label {
    display: block;
    width: 100%;
    background-color: #EDF4EC;
    font-size: clamp(14px, 1vw, 16px);
    font-family: "Grotesque MT Std";
    padding: 30px;
    color: #152016;
    text-decoration: none;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list .desplegable.active {
    display: flex;
  }
  header div.header__container div.header__content .header__nav.active {
    display: flex;
  }
  header div.header__container .action-nav-mov {
    margin-right: 5%;
    display: block;
  }
  header.transparente {
    background-color: transparent;
  }
  header.transparente div.header__container {
    display: flex;
    justify-content: center;
    height: 80px;
    background-color: #152016;
  }
  header.transparente div.header__container div.header__content nav.header__nav {
    background-color: #DEEBDC;
  }
  header.transparente div.header__container div.header__content nav.header__nav ul.nav__list {
    background-color: #152016;
  }
  header.transparente div.header__container div.header__content nav.header__nav ul.nav__list li.nav__languages {
    border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 15px;
  }
  header.transparente div.header__container div.header__content nav.header__nav ul.nav__list ul.foot {
    display: block;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  header.transparente div.header__container div.header__content nav.header__nav ul.nav__list ul.foot .nav__social {
    width: 50%;
    padding: 15px 30px;
  }
  header.transparente div.header__container div.header__content nav.header__nav ul.nav__list ul.foot .nav__social p.social-label {
    font-size: clamp(14px, 1vw, 16px);
    margin-bottom: 15px;
    color: #FFFFFF;
  }
  header.transparente div.header__container div.header__content nav.header__nav ul.nav__list ul.foot .nav__social ul.desplegable-social li.social-element {
    margin-bottom: 10px;
  }
  header.transparente div.header__container div.header__content nav.header__nav ul.nav__list ul.foot .nav__social ul.desplegable-social li.social-element a p {
    color: #FFFFFF;
  }
  header.transparente div.header__container div.header__content nav.header__nav ul.nav__list .menu-label {
    background-color: #152016;
    font-size: clamp(14px, 1vw, 16px);
    font-family: "Grotesque MT Std";
    padding: 30px;
    color: #152016;
    text-decoration: none;
  }
  header.transparente div.header__container div.header__content nav.header__nav ul.nav__list .desplegable.active {
    display: flex;
  }
  header.transparente div.header__container div.header__content .header__nav.active {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  header {
    height: 70px;
    position: fixed;
  }
  header div.header__container {
    height: 70px;
  }
  header div.header__container div.header__content nav.header__nav {
    top: 70px;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list .menu-label {
    padding: 20px 30px 10px;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list li.nav__item a {
    font-size: 2rem;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list .nav__languages p.idiomas-label {
    margin-bottom: 0px !important;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list .nav__languages a.lang p {
    font-size: 2rem;
  }
  header div.header__container div.header__content nav.header__nav ul.nav__list .nav__languages ul.desplegable-idiomas li a P {
    font-size: 2rem;
  }
}
footer {
  color: #EDF4EC;
  background-color: #152016;
  padding: 3vw;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .wrap .top {
  width: 100%;
}
footer .wrap .top .logo {
  margin-bottom: 30px;
}
footer .wrap .top .logo a {
  display: inline-block;
}
footer .wrap .top .logo a img {
  height: 40px;
}
footer .wrap .left {
  width: 40%;
}
footer .wrap .left .text p {
  margin: 5px 0;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
  color: #EDF4EC;
}
footer .wrap .left .text p a {
  color: #EDF4EC;
}
footer .wrap .left .text h3 {
  font-size: clamp(14px, 1vw, 16px);
  font-family: "Grotesque MT Std Bold";
  line-height: 1.5;
}
footer .wrap .right {
  width: 55%;
  display: flex;
  justify-content: space-between;
}
footer .wrap .right .box {
  width: 48%;
}
footer .wrap .right .box h3 {
  font-size: clamp(14px, 1vw, 16px);
  font-family: "Grotesque MT Std Bold";
  line-height: 1.5;
}
footer .wrap .right .box p {
  color: #EDF4EC;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
}
footer .wrap .right .box p a {
  color: #EDF4EC;
  text-decoration: none;
}
footer .wrap .right .box p a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 1024px) {
  footer .wrap {
    flex-direction: column;
  }
  footer .wrap .left, footer .wrap .right {
    width: 100%;
  }
  footer .wrap .right {
    margin-top: 2vw;
    flex-direction: column;
  }
  footer .wrap .right .box {
    width: 100%;
    margin-bottom: 2vw;
  }
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 5vw;
  }
  footer .wrap .left .text p {
    font-size: clamp(14px, 1vw, 16px);
  }
  footer .wrap .right .box h3 {
    font-size: clamp(14px, 1vw, 16px);
  }
  footer .wrap .right .box p {
    font-size: clamp(14px, 1vw, 16px);
  }
}
section.hero_home div.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
section.hero_home div.wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  padding: 30px;
}
section.hero_home div.wrap div.title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
  height: 100%;
  margin-top: min(max(40px, 7vw), 100px);
  text-align: center;
}
section.hero_home div.wrap div.title h1 {
  color: #EDF4EC;
  font-family: "Grotesque MT Std Bold";
  line-height: 1.2;
  margin: 0;
}
section.hero_home div.wrap div.bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
section.hero_home div.wrap div.bottom div.left,
section.hero_home div.wrap div.bottom div.center,
section.hero_home div.wrap div.bottom div.right {
  flex: 1;
  text-align: center;
}
section.hero_home div.wrap div.bottom div.left a,
section.hero_home div.wrap div.bottom div.center a,
section.hero_home div.wrap div.bottom div.right a {
  text-decoration: none;
  color: #EDF4EC;
  font-family: "Grotesque MT Std Bold";
}
section.hero_home div.wrap div.bottom div.right {
  text-align: right;
}
section.hero_home div.wrap div.bottom div.left {
  text-align: left;
}
section.hero_home div.wrap div.bottom div.center h2 {
  color: #EDF4EC;
  font-family: "Grotesque MT Std";
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
  margin: 0;
}

@media only screen and (max-width: 1024px) {
  section.hero_home div.wrap {
    margin-top: -80px;
  }
  section.hero_home div.wrap div.bottom {
    flex-direction: column;
  }
  section.hero_home div.wrap div.bottom div.right,
section.hero_home div.wrap div.bottom div.left {
    display: none;
  }
  section.hero_home div.wrap div.bottom div.right a,
section.hero_home div.wrap div.bottom div.left a {
    display: none;
  }
  section.hero_home div.wrap div.bottom div.center {
    width: 100%;
  }
  section.hero_home div.wrap div.bottom div.center h2 {
    font-size: clamp(14px, 1vw, 16px);
  }
}
@media only screen and (max-width: 767px) {
  section.hero_home div.wrap {
    margin-top: -70px;
  }
  section.hero_home div.wrap div.bottom {
    flex-direction: column;
  }
  section.hero_home div.wrap div.bottom div.right,
section.hero_home div.wrap div.bottom div.left {
    display: none;
  }
  section.hero_home div.wrap div.bottom div.right a,
section.hero_home div.wrap div.bottom div.left a {
    display: none;
  }
  section.hero_home div.wrap div.bottom div.center {
    width: 100%;
  }
  section.hero_home div.wrap div.bottom div.center h2 {
    font-size: clamp(14px, 1vw, 16px);
  }
}
section.hero_pic {
  margin: 3vw;
  width: calc(100% - 6vw);
  height: 32vw;
  border-radius: 5px;
}
section.hero_pic div.background {
  width: calc(100% - 6vw);
  height: 32vw;
  position: absolute;
  z-index: -1;
}
section.hero_pic div.background img {
  border-radius: 5px;
}
section.hero_pic div.background video {
  border-radius: 5px;
}
section.hero_pic .overlay {
  border-radius: 5px;
}
section.hero_pic div.wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  z-index: 1;
  width: 100%;
  height: 100%;
}
section.hero_pic div.wrap div.title {
  text-align: center;
}
section.hero_pic div.wrap div.title h2 {
  font-size: clamp(16px, 1.2vw, 22px);
  color: #EDF4EC;
  font-family: "Grotesque MT Std Bold";
  margin: 0;
}
section.hero_pic div.wrap div.title h1 {
  font-size: clamp(55px, 5.2vw, 70px);
  font-family: "Grotesque MT Std Bold";
  color: #FFFFFF;
}
section.hero_pic div.wrap div.box-100 {
  text-align: center;
  padding: 0 20%;
  margin-top: 3vw;
}
section.hero_pic div.wrap div.box-100 h3 {
  color: #EDF4EC;
  font-size: clamp(25px, 3.2vw, 40px);
  margin: 0;
}
section.hero_pic div.wrap div.box-100 h3 strong {
  font-weight: bold;
}
section.hero_pic.hero_pic_alt {
  margin-top: min(max(40px, 7vw), 100px);
}
section.hero_pic.hero_pic_alt .wrap {
  justify-content: space-around;
}
section.hero_pic.hero_pic_alt .wrap .box-100 h1 {
  color: #EDF4EC;
  font-family: "Grotesque MT Std Bold";
  font-size: clamp(16px, 1.2vw, 22px);
}
section.hero_pic.hero_pic_alt .wrap .box-100 h2 {
  color: #EDF4EC;
  font-family: "Grotesque MT Std Bold";
  font-size: clamp(55px, 5.2vw, 70px);
}
section.hero_pic.hero_pic_alt .wrap .box-100 h3 {
  color: #EDF4EC;
  font-size: clamp(14px, 1vw, 16px);
}
section.hero_pic.hero_pic_mini {
  height: 28vw;
  margin-top: min(max(40px, 7vw), 100px);
}
section.hero_pic.hero_pic_mini div.background {
  height: 28vw;
}
section.hero_pic.hero_pic_mini .wrap {
  justify-content: space-evenly;
}
section.hero_pic.hero_pic_mini .wrap .box-100 {
  margin-top: 0;
}
section.hero_pic.hero_pic_mini .wrap .box-100 h1 {
  color: #EDF4EC;
  font-family: "Grotesque MT Std Bold";
  font-size: clamp(16px, 1.2vw, 22px);
}
section.hero_pic.hero_pic_mini .wrap .box-100 h2 {
  color: #EDF4EC;
  font-family: "Grotesque MT Std Bold";
  font-size: clamp(55px, 5.2vw, 70px);
}
section.hero_pic.hero_pic_mini .wrap .box-100 h3 {
  color: #EDF4EC;
  font-size: clamp(14px, 1vw, 16px);
}
section.hero_pic.hero_no_pic {
  margin-bottom: 0px;
}
section.hero_pic.hero_no_pic .background {
  display: none;
}
section.hero_pic.hero_no_pic .wrap .title h1 {
  color: #0D0D0D;
  font-size: clamp(16px, 1.2vw, 22px);
  font-family: "Grotesque MT Std Bold";
}
section.hero_pic.hero_no_pic .wrap .box-100 h3 {
  color: #0D0D0D;
}
section.hero_pic.hero_no_pic .wrap .box-100 p {
  color: #0D0D0D;
  font-size: clamp(16px, 1.2vw, 22px);
  font-family: "Grotesque MT Std Bold";
  line-height: 140%;
}

@media only screen and (max-width: 1024px) {
  section.hero_pic {
    margin: 30px;
    width: calc(100% - 60px);
    height: 60vw;
    padding-top: 80px;
  }
  section.hero_pic div.background {
    width: calc(100% - 60px);
    height: 50vw;
  }
  section.hero_pic div.wrap div.box-100 {
    margin-top: 30px;
  }
  section.hero_pic.hero_pic_alt {
    margin-top: 0;
  }
  section.hero_pic.hero_pic_mini {
    margin-top: 0;
    height: 40vh;
  }
  section.hero_pic.hero_pic_mini .background {
    height: 33vh !important;
  }
  section.hero_pic.hero_no_pic {
    margin-top: 0;
    height: 35vh;
  }
  section.hero_pic.hero_no_pic .wrap {
    padding-bottom: 0px;
  }
}
@media only screen and (max-width: 767px) {
  section.hero_pic {
    margin: 15px;
    width: calc(100% - 30px);
    height: auto;
    aspect-ratio: 9/12;
    margin-top: 80px;
    height: 80vh;
    padding-top: 0px;
  }
  section.hero_pic div.background {
    width: calc(100% - 30px);
    height: 80vh;
    aspect-ratio: 9/12;
  }
  section.hero_pic.hero_pic_mini {
    margin-top: 0;
    height: 80vh !important;
  }
  section.hero_pic.hero_pic_mini .background {
    height: 65vh !important;
  }
  section.hero_pic.hero_no_pic {
    margin-top: 40px;
    height: 50vh;
  }
  section.hero_pic div.wrap div.box-100 {
    padding: 0;
  }
  section.hero_pic.hero_pic_mini {
    height: 60vh;
  }
  section.hero_pic.hero_pic_mini div.background {
    height: 60vh;
  }
}
section.text_3col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0 3vw;
}
section.text_3col .wrap {
  display: flex;
}
section.text_3col .wrap .box-33 {
  padding: 30px;
}
section.text_3col .wrap .box-33 p {
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: 110%;
  width: 100%;
}
section.text_3col .wrap .box-33 p strong {
  font-family: "Grotesque MT Std Bold";
}

@media only screen and (max-width: 1024px) {
  section.text_3col {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  section.text_3col {
    padding: 0 15px;
  }
  section.text_3col .wrap {
    flex-direction: column;
  }
  section.text_3col .wrap .box-33 {
    width: 100%;
    padding: 15px;
  }
}
section.default_pic div.wrap {
  padding: 3vw;
  padding-top: 0px;
}
section.default_pic div.wrap img {
  border-radius: 15px;
}

@media only screen and (max-width: 1024px) {
  section.default_pic div.wrap {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  section.default_pic div.wrap {
    padding: 15px;
    padding-top: 0px;
  }
  section.default_pic div.wrap img {
    border-radius: 15px;
    height: 40vh;
  }
}
section.link {
  width: 100%;
  align-items: flex-start;
  margin: 0 auto;
  padding: 0 3vw;
}
section.link .wrap {
  display: flex;
  padding: 6vw 0 3vw;
}
section.link .wrap .box-100 {
  display: flex;
  margin: 0 auto;
  padding: 0;
  justify-content: flex-start;
}
section.link .wrap .box-100.right {
  justify-content: flex-end;
}

@media only screen and (max-width: 1024px) {
  section.link {
    padding: 0 30px;
  }
  section.link .wrap {
    padding: 60px 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  section.link {
    padding: 0 15px;
  }
  section.link .wrap {
    width: 100%;
    padding: 30px 0 15px;
  }
  section.link .wrap .box-100 {
    padding: 15px;
    width: 100%;
  }
  section.link .wrap .box-100 a.btn {
    text-align: center;
    width: 100%;
  }
}
section.text_link {
  width: 100%;
  align-items: flex-start;
  margin: 0 auto;
  padding: 0 3vw;
}
section.text_link .wrap {
  display: flex;
  padding: 6vw 0 3vw;
  width: 100%;
}
section.text_link .wrap .box-50 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.text_link .wrap .box-50 h2 {
  margin-bottom: 30px;
  padding-right: 40%;
}
section.text_link .wrap .box-50 p {
  font-size: clamp(14px, 1vw, 16px);
  margin-top: 15px;
  padding-right: 40%;
}
section.text_link .wrap .box-50.right {
  align-items: flex-end;
}
section.text_link.post .wrap {
  padding: 0 0 3vw;
}
section.text_link.center .wrap {
  text-align: center;
}
section.text_link.center .wrap h2 {
  padding-right: 0px;
}
section.text_link.center .wrap .right {
  display: none;
}

@media only screen and (max-width: 1024px) {
  section.text_link {
    padding: 0 30px;
  }
  section.text_link .wrap {
    padding: 60px 0 30px;
  }
  section.text_link .wrap .box-50 {
    width: 100%;
  }
  section.text_link .wrap .box-50 p {
    padding-right: 0px;
  }
  section.text_link.post .wrap {
    padding: 0 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  section.text_link {
    padding: 0 15px;
  }
  section.text_link .wrap {
    padding: 30px 0 15px;
    flex-direction: column;
  }
  section.text_link .wrap .box-50 {
    width: 100%;
    padding: 0px;
  }
  section.text_link .wrap .box-50 h2 {
    margin-bottom: 0px;
    padding-right: 10%;
  }
  section.text_link .wrap .box-50 p {
    margin-top: 15px;
    padding-right: 10%;
  }
  section.text_link .wrap .box-50 a.btn {
    text-align: center;
    width: 100%;
  }
  section.text_link.post .wrap {
    padding: 0 0 15px;
  }
  section.text_link.center .wrap h2 {
    padding-right: 0px;
  }
}
section.slider_promo {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  padding: 0 3vw 3vw;
}
section.slider_promo .wrap.slider {
  width: 100%;
  height: 45vw;
}
section.slider_promo .wrap.slider .box-33.slide {
  width: calc(33.33% - 20px);
  margin-right: 30px;
  height: 100%;
}
section.slider_promo .wrap.slider .box-33.slide a .pic {
  aspect-ratio: 4/3;
}
section.slider_promo .wrap.slider .box-33.slide a .pic img {
  margin-bottom: -10px;
  border-radius: 5px 5px 0 0;
}
section.slider_promo .wrap.slider .box-33.slide .text {
  padding: 15px;
  height: 22vw;
  background-color: #152016;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.slider_promo .wrap.slider .box-33.slide .text .top {
  color: #EDF4EC;
  min-height: 80px;
}
section.slider_promo .wrap.slider .box-33.slide .text .top h3 {
  color: #EDF4EC;
  font-size: clamp(25px, 2.2vw, 30px);
  font-family: "Grotesque MT Std Bold";
}
section.slider_promo .wrap.slider .box-33.slide .text .top p {
  color: #EDF4EC;
  font-size: clamp(14px, 1vw, 16px);
  margin-top: 15px;
}
section.slider_promo .wrap.slider .box-33.slide .text .bottom {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
section.slider_promo .wrap.slider .box-33.slide .text .bottom a.btn {
  font-size: clamp(14px, 1vw, 16px);
}

@media only screen and (min-width: 1400px) {
  section.slider_promo .wrap.slider {
    height: 38vw;
  }
  section.slider_promo .wrap.slider .box-33.slide {
    height: 100%;
  }
  section.slider_promo .wrap.slider .box-33.slide .text {
    height: 15vw;
  }
}
@media only screen and (min-width: 1800px) {
  section.slider_promo .wrap.slider {
    height: 35vw;
  }
  section.slider_promo .wrap.slider .box-33.slide {
    height: 100%;
  }
  section.slider_promo .wrap.slider .box-33.slide .text {
    height: 10vw;
  }
}
@media only screen and (max-width: 1024px) {
  section.slider_promo .wrap.slider {
    height: 65vw;
  }
  section.slider_promo .wrap.slider .box-33.slide {
    height: 100%;
  }
  section.slider_promo .wrap.slider .box-33.slide .text {
    height: 35vw;
  }
}
@media only screen and (max-width: 767px) {
  section.slider_promo .wrap.slider {
    height: 125vw;
  }
  section.slider_promo .wrap.slider .box-33.slide {
    height: 100%;
    width: 80vw;
  }
  section.slider_promo .wrap.slider .box-33.slide .text {
    height: 60vw;
  }
}
section.white_cards {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0vw 3vw;
}
section.white_cards .wrap {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
section.white_cards .wrap .box-33 {
  width: calc(33.33% - 20px);
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 5px;
}
section.white_cards .wrap .box-33 .top h3 {
  font-size: clamp(16px, 1.2vw, 22px);
  font-family: "Grotesque MT Std Bold";
}
section.white_cards .wrap .box-33 .bottom p {
  font-size: clamp(14px, 1vw, 16px);
  font-family: "Grotesque MT Std";
  line-height: 110%;
}
section.white_cards .wrap .box-25 {
  width: calc(25% - 30px);
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 5px;
}
section.white_cards .wrap .box-25 .top h3 {
  font-size: clamp(16px, 1.2vw, 22px);
  font-family: "Grotesque MT Std Bold";
}
section.white_cards .wrap .box-25 .bottom p {
  font-size: clamp(14px, 1vw, 16px);
  font-family: "Grotesque MT Std";
  line-height: 110%;
}
section.white_cards .wrap .box-25.pic_lite_card {
  background-color: #0D0D0D;
  border: none;
  text-align: center;
  padding: 0px;
  position: relative;
}
section.white_cards .wrap .box-25.pic_lite_card img {
  opacity: 0.7;
}
section.white_cards .wrap .box-25.pic_lite_card .content {
  position: absolute;
  bottom: 3%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 50%;
  width: 90%;
  height: 30%;
  transform: translate(-50%, 0%);
  background-color: #FFFFFF;
}
section.white_cards .wrap .box-25.pic_lite_card .content h3 {
  color: #0D0D0D;
  font-family: "Grotesque MT Std Bold";
}
section.white_cards .wrap .box-25.pic_lite_card .content p {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 115%;
  padding: 10px;
}
section.white_cards .wrap .box-20 {
  width: calc(20% - 30px);
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 5px;
}
section.white_cards .wrap .box-20 .top h3 {
  font-size: clamp(16px, 1.2vw, 22px);
  font-family: "Grotesque MT Std Bold";
}
section.white_cards .wrap .box-20 .bottom p {
  font-size: clamp(14px, 1vw, 16px);
  font-family: "Grotesque MT Std";
  line-height: 110%;
}
section.white_cards .wrap .box-20.transparent {
  background-color: transparent;
  border: 1px solid black;
  text-align: center;
}
section.white_cards .wrap .box-20.transparent .number {
  font-family: "Grotesque MT Std Bold";
  padding-bottom: 10px;
}
section.white_cards .wrap .box-20.transparent .bottom p {
  margin-bottom: 25px;
}
section.white_cards .wrap .box-20.transparent .bottom .btn {
  background-color: #0D0D0D;
  color: #FFFFFF;
  transition: 0.3s;
}
section.white_cards .wrap .box-20.transparent .bottom .btn:hover {
  opacity: 0.7;
}
section.white_cards .wrap .box-20.pic {
  background-color: #0D0D0D;
  border: none;
  text-align: center;
  padding: 0px;
  position: relative;
}
section.white_cards .wrap .box-20.pic img {
  opacity: 0.7;
}
section.white_cards .wrap .box-20.pic .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section.white_cards .wrap .box-20.pic .content h3 {
  color: #FFFFFF;
  font-family: "Grotesque MT Std Bold";
  font-size: clamp(20px, 1.5vw, 26px);
}
section.white_cards.cards_alt .box-25 {
  width: calc(25% - 30px);
  padding: 0;
  background-color: transparent;
}
section.white_cards.cards_alt .box-25 h2 {
  font-size: clamp(14px, 1vw, 16px);
  font-family: "Grotesque MT Std";
  margin-bottom: 15px;
}
section.white_cards.cards_alt .box-25 .card {
  background-color: #FFFFFF;
  border-radius: 5px;
  padding: 30px;
}
section.white_cards.cards_alt .box-25 .card .top h3 {
  font-size: clamp(16px, 1.2vw, 22px);
  font-family: "Grotesque MT Std Bold";
}
section.white_cards.cards_alt .box-25 .card .bottom p {
  font-size: clamp(14px, 1vw, 16px);
  font-family: "Grotesque MT Std";
  line-height: 110%;
}
section.white_cards.border-end .wrap {
  border-bottom: 1px solid black;
  padding-bottom: 3vw;
}

@media only screen and (max-width: 1024px) {
  section.white_cards {
    padding: 0 30px;
  }
  section.white_cards .wrap {
    display: flex;
    justify-content: flex-start;
  }
  section.white_cards .wrap .box-20 {
    width: calc(33% - 30px);
    padding: 30px;
    margin: 0;
  }
  section.white_cards.transparent {
    padding: 0 30px;
  }
  section.white_cards.transparent .wrap {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  section.white_cards.transparent .wrap .box-20.transparent {
    min-width: 250px;
    flex-shrink: 0;
  }
  section.white_cards.lite_card {
    padding: 0 30px;
  }
  section.white_cards.lite_card .wrap {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  section.white_cards.lite_card .wrap .box-25.pic_lite_card {
    width: 40vw;
    flex-shrink: 0;
  }
  section.white_cards.lite_card .wrap .box-25.pic_lite_card .content h3 {
    font-size: clamp(20px, 1.5vw, 26px);
  }
}
@media only screen and (max-width: 767px) {
  section.white_cards:not(.transparent):not(.lite_card) {
    padding: 0 15px;
  }
  section.white_cards:not(.transparent):not(.lite_card) .wrap {
    flex-direction: column;
    gap: 15px;
  }
  section.white_cards:not(.transparent):not(.lite_card) .wrap .box-33, section.white_cards:not(.transparent):not(.lite_card) .wrap .box-25, section.white_cards:not(.transparent):not(.lite_card) .wrap .box-20 {
    width: 100%;
  }
  section.white_cards:not(.transparent):not(.lite_card) .wrap .box-33.transparent .number, section.white_cards:not(.transparent):not(.lite_card) .wrap .box-25.transparent .number, section.white_cards:not(.transparent):not(.lite_card) .wrap .box-20.transparent .number {
    font-family: "Grotesque MT Std Bold";
    padding-bottom: 10px;
  }
  section.white_cards:not(.transparent):not(.lite_card) .wrap .box-33.transparent .bottom p, section.white_cards:not(.transparent):not(.lite_card) .wrap .box-25.transparent .bottom p, section.white_cards:not(.transparent):not(.lite_card) .wrap .box-20.transparent .bottom p {
    margin-bottom: 25px;
  }
  section.white_cards:not(.transparent):not(.lite_card) .wrap .box-33.transparent .bottom .btn, section.white_cards:not(.transparent):not(.lite_card) .wrap .box-25.transparent .bottom .btn, section.white_cards:not(.transparent):not(.lite_card) .wrap .box-20.transparent .bottom .btn {
    background-color: #0D0D0D;
    color: #FFFFFF;
    transition: 0.3s;
  }
  section.white_cards:not(.transparent):not(.lite_card) .wrap .box-33.transparent .bottom .btn:hover, section.white_cards:not(.transparent):not(.lite_card) .wrap .box-25.transparent .bottom .btn:hover, section.white_cards:not(.transparent):not(.lite_card) .wrap .box-20.transparent .bottom .btn:hover {
    opacity: 0.7;
  }
  section.white_cards:not(.transparent):not(.lite_card) .wrap .box-33.pic, section.white_cards:not(.transparent):not(.lite_card) .wrap .box-25.pic, section.white_cards:not(.transparent):not(.lite_card) .wrap .box-20.pic {
    height: 5rem;
    width: 90vw;
  }
  section.white_cards:not(.transparent):not(.lite_card) .wrap .box-33.pic .content h3, section.white_cards:not(.transparent):not(.lite_card) .wrap .box-25.pic .content h3, section.white_cards:not(.transparent):not(.lite_card) .wrap .box-20.pic .content h3 {
    font-size: clamp(20px, 1.5vw, 26px);
  }
  section.white_cards:not(.transparent):not(.lite_card).border-end .wrap {
    border-bottom: none;
  }
  section.white_cards.lite_card {
    padding: 0 15px;
  }
  section.white_cards.lite_card .wrap {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  section.white_cards.lite_card .wrap .box-25.pic_lite_card {
    width: 80vw;
    flex-shrink: 0;
  }
  section.white_cards.lite_card .wrap .box-25.pic_lite_card .content h3 {
    font-size: clamp(20px, 1.5vw, 26px);
  }
  section.white_cards.lite_card .wrap .box-25.pic_lite_card .content p {
    font-size: clamp(14px, 1vw, 16px);
    line-height: 115%;
    padding: 10px;
  }
  section.white_cards.lite_card.border-end .wrap {
    border-bottom: none;
  }
}
section.contact_form .wrap {
  padding: 3vw;
  display: flex;
  justify-content: center;
}
section.contact_form .wrap .contact-form {
  background: white;
  padding: 30px;
  display: flex;
  gap: 2rem;
  border-radius: 8px;
  width: 100%;
}
section.contact_form .wrap .contact-form .left, section.contact_form .wrap .contact-form .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px;
}
section.contact_form .wrap .contact-form .right {
  justify-content: center;
}
section.contact_form .wrap .contact-form p {
  font-size: 1rem;
  margin-bottom: 2rem;
}
section.contact_form .wrap .contact-form input, section.contact_form .wrap .contact-form select, section.contact_form .wrap .contact-form textarea {
  border: none;
  border-bottom: 1px solid #444;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  background: transparent;
  border-radius: 0px;
  color: #000;
}
section.contact_form .wrap .contact-form input:focus, section.contact_form .wrap .contact-form select:focus, section.contact_form .wrap .contact-form textarea:focus {
  outline: none;
  border-bottom: 2px solid #000;
}
section.contact_form .wrap .contact-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg fill="black" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 1rem center;
  background-size: 1rem;
  padding-right: 2rem;
}
section.contact_form .wrap .contact-form textarea {
  min-height: 150px;
  resize: vertical;
  font-family: "Grotesque MT Std";
  resize: none;
}
section.contact_form .wrap .contact-form .privacy {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  margin: 1rem 0;
}
section.contact_form .wrap .contact-form .privacy input[type=checkbox] {
  margin-right: 0.5rem;
  accent-color: black;
}
section.contact_form .wrap .contact-form .enviar {
  align-self: flex-end;
  background-color: #121c14;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-size: 1rem;
  transition: 0.3s;
  cursor: pointer;
}
section.contact_form .wrap .contact-form .enviar:hover {
  background-color: #0e1710;
}
section.contact_form .wrap .contact-form .enviar:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 1024px) {
  section.contact_form .wrap {
    padding: 30px;
  }
  section.contact_form .wrap .contact-form {
    padding: 0px;
  }
}
@media only screen and (max-width: 767px) {
  section.contact_form .wrap {
    padding: 15px;
  }
  section.contact_form .wrap .contact-form {
    flex-direction: column;
  }
  section.contact_form .wrap .contact-form .left, section.contact_form .wrap .contact-form .right {
    padding: 15px;
  }
  section.contact_form .wrap .contact-form .right {
    justify-content: flex-start;
    padding-top: 0px;
  }
  section.contact_form .wrap .contact-form .left {
    padding-bottom: 0px;
  }
}
section.anchor {
  width: 100%;
  padding-top: 0;
}
section.anchor .wrap {
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
}
section.anchor .wrap .box-100 {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
section.anchor .wrap .box-100 a img {
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  section.anchor {
    display: none;
  }
  section.anchor .wrap .box-100 a img {
    margin-top: 15px;
  }
}
section.text_center {
  width: 100%;
  padding: 3vw;
  max-height: 500px;
}
section.text_center .wrap .box-100 {
  display: flex;
  margin: 0 auto;
  padding: 0 30%;
  flex-direction: column;
  text-align: center;
}
section.text_center .wrap .box-100 h2 {
  margin-bottom: 30px;
}
section.text_center .wrap .box-100 p {
  margin-top: 15px;
}
section.text_center.text_center_bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
section.text_center.left .wrap .box-100 h2 {
  text-align: left;
}
section.text_center.left .wrap .box-100 p {
  text-align: left;
}

@media only screen and (max-width: 1024px) {
  section.text_center {
    width: 100%;
    padding: 60px 30px;
  }
  section.text_center .wrap .box-100 {
    padding: 0 20%;
  }
}
@media only screen and (max-width: 767px) {
  section.text_center {
    width: 100%;
    padding: 60px 15px;
  }
  section.text_center .wrap .box-100 {
    padding: 0 10%;
  }
  section.text_center.left {
    padding: 15px 15px;
  }
  section.text_center.left .wrap .box-100 {
    padding-left: 15px;
  }
  section.text_center.left .wrap .box-100 h2 {
    text-align: left;
  }
  section.text_center.left .wrap .box-100 p {
    text-align: left;
  }
}
section.text_pic_2col {
  width: 100%;
  padding: 3vw;
}
section.text_pic_2col .wrap {
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
}
section.text_pic_2col .wrap .box-50 {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  aspect-ratio: 1/1;
  margin-bottom: 3vw;
}
section.text_pic_2col .wrap .box-50 .title {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  padding: 0 3vw 0 0;
}
section.text_pic_2col .wrap .box-50 .text {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 3vw 0 0;
}
section.text_pic_2col .wrap .box-50 .pic {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.text_pic_2col .wrap .box-50 .pic img {
  border-radius: 5px;
}
section.text_pic_2col .wrap:nth-child(odd) {
  flex-direction: row-reverse;
}
section.text_pic_2col .wrap:nth-child(odd) .box-50 .title {
  padding: 0 0 0 3vw;
}
section.text_pic_2col .wrap:nth-child(odd) .box-50 .text {
  padding: 0 0 0 3vw;
}

@media only screen and (max-width: 1024px) {
  section.text_pic_2col {
    padding: 30px;
  }
  section.text_pic_2col .wrap .box-50 {
    margin-bottom: 30px;
  }
  section.text_pic_2col .wrap .box-50 .title {
    padding: 0 0 0 30px;
  }
  section.text_pic_2col .wrap .box-50 .text {
    padding: 0 0 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  section.text_pic_2col {
    padding: 15px;
  }
  section.text_pic_2col .wrap {
    flex-wrap: wrap;
  }
  section.text_pic_2col .wrap .box-50 {
    width: 100%;
    margin-bottom: 30px;
    aspect-ratio: inherit;
  }
  section.text_pic_2col .wrap .box-50 .title {
    padding: 0 0 0 15px;
  }
  section.text_pic_2col .wrap .box-50 .text {
    padding: 0 0 0 15px;
  }
}
section.filter {
  width: 100%;
  padding: 0 3vw 3vw;
}
section.filter .wrap {
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
}
section.filter .wrap .box-100 {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

@media only screen and (max-width: 1024px) {
  section.filter {
    padding: 0 30px 30px;
  }
}
@media only screen and (max-width: 767px) {
  section.filter {
    padding: 15px 30px 15px;
  }
}
section.filter {
  width: 100%;
  padding: 0 3vw 3vw;
}
section.filter .wrap {
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
}
section.filter .wrap .box-100 {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

@media only screen and (max-width: 1024px) {
  section.filter {
    padding: 0 30px 30px;
  }
}
@media only screen and (max-width: 767px) {
  section.filter {
    padding: 15px 30px 15px;
  }
}
section.list_promo {
  width: 100%;
  padding: 0 3vw 3vw;
}
section.list_promo .wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
}
section.list_promo .wrap .box-33 {
  flex: 0 0 calc(33.33% - 20px);
  max-width: calc(33.33% - 20px);
  aspect-ratio: 3/1;
  margin: 0;
  background-color: #DEEBDC;
}
section.list_promo .wrap .box-33 a {
  position: relative;
}
section.list_promo .wrap .box-33 a .pic {
  aspect-ratio: 4/3;
}
section.list_promo .wrap .box-33 a .pic img {
  margin-bottom: -10px;
  border-radius: 5px 5px 0 0;
  transition: all 0.6s;
}
section.list_promo .wrap .box-33 a .pic:hover img {
  filter: brightness(1.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: filter 0.3s;
}
section.list_promo .wrap .box-33 a .tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  width: calc(100% - 30px);
  text-align: center;
  z-index: 2;
  text-transform: uppercase;
}
section.list_promo .wrap .box-33 a .tag.btn:hover {
  background-color: #EDF4EC;
  color: #152016;
}
section.list_promo .wrap .box-33 .text {
  padding: 15px;
  background-color: #152016;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.list_promo .wrap .box-33 .text .top {
  color: #EDF4EC;
  min-height: 80px;
}
section.list_promo .wrap .box-33 .text .top h3 {
  color: #EDF4EC;
  font-size: clamp(25px, 2.2vw, 30px);
  font-family: "Grotesque MT Std Bold";
}
section.list_promo .wrap .box-33 .text .top p {
  color: #EDF4EC;
  font-size: clamp(14px, 1vw, 16px);
  margin-top: 15px;
}
section.list_promo .wrap .box-33 .text .bottom {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
section.list_promo .wrap .box-33 .text .bottom a.btn {
  font-size: clamp(14px, 1vw, 16px);
}
section.list_promo .wrap .box-33.entregadas {
  display: none;
}

@media only screen and (max-width: 1024px) {
  section.list_promo {
    padding: 0 30px 30px;
  }
  section.list_promo .wrap {
    gap: 20px;
  }
  section.list_promo .wrap .box-33 {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  section.list_promo {
    padding: 15px 15px 15px;
  }
  section.list_promo .wrap {
    gap: 15px;
  }
  section.list_promo .wrap .box-33 {
    flex: 0 0 100%;
    max-width: 100%;
    aspect-ratio: auto;
  }
  section.list_promo .wrap .box-33 a .tag {
    width: fit-content;
  }
}
section.slider_pics {
  margin: 0 auto;
  margin: 3vw;
}
section.slider_pics .filter-pics {
  padding: 3vw;
}
section.slider_pics .filter-pics .box-100 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
section.slider_pics .filter-pics .box-100 a.btn {
  cursor: pointer;
}
section.slider_pics .wrap.slider {
  aspect-ratio: 21/9;
  width: 100%;
  height: 100%;
}
section.slider_pics .wrap.slider .box-100.slide {
  width: 100%;
  height: 100%;
}
section.slider_pics .wrap.slider .box-100.slide .text {
  height: 60%;
  position: absolute;
  bottom: 30px;
  right: 30px;
  aspect-ratio: 5/4;
  background-color: rgba(237, 244, 236, 0.7);
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 5px;
}
section.slider_pics .wrap.slider .box-100.slide .text h3 {
  font-size: clamp(16px, 1.2vw, 22px);
  color: #152016;
  font-family: "Grotesque MT Std Bold";
}
section.slider_pics .wrap.slider .box-100.slide .text p {
  font-size: clamp(14px, 1vw, 16px);
  color: #152016;
}
section.slider_pics .wrap.slider .box-100.slide img {
  border-radius: 5px;
}
section.slider_pics .slider .flickity-page-dots {
  bottom: 30px;
}
section.slider_pics .flickity-page-dot {
  background: #EDF4EC !important;
  opacity: 0.6;
}
section.slider_pics .flickity-page-dot.is-selected {
  background: #152016 !important;
}

@media only screen and (max-width: 1024px) {
  section.slider_pics {
    margin: 30px;
  }
  section.slider_pics .filter-pics {
    padding: 30px;
  }
  section.slider_pics .wrap.slider {
    aspect-ratio: 16/9;
  }
  section.slider_pics .wrap.slider .box-100.slide .text {
    bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  section.slider_pics {
    margin: 30px 15px;
  }
  section.slider_pics .filter-pics {
    width: calc(100% - 30px);
    padding: 30px 15px;
    position: absolute;
    z-index: 2;
    margin-bottom: -60px;
  }
  section.slider_pics .wrap.slider {
    aspect-ratio: 9/12;
  }
  section.slider_pics .wrap.slider .box-100.slide .text {
    bottom: 60px;
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
    aspect-ratio: 3/1;
    height: 30%;
  }
}
section.map .wrap .box-100 iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 21/9;
}

@media only screen and (max-width: 1024px) {
  section.map .wrap .box-100 iframe {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
@media only screen and (max-width: 767px) {
  section.map .wrap .box-100 iframe {
    width: 100%;
    aspect-ratio: 9/12;
  }
}
section.list_planos {
  width: 100%;
  padding: 3vw;
}
section.list_planos .wrap {
  width: 100%;
}
section.list_planos .wrap .box-100 {
  display: flex;
  flex-direction: column;
}
section.list_planos .wrap .box-100 h2 {
  padding: 1vw 0;
  border-bottom: 1px #0D0D0D solid;
  font-size: clamp(16px, 1.2vw, 22px);
}
section.list_planos .wrap .box-100 ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px #0D0D0D solid;
  padding: 1vw 0;
  align-items: center;
}
section.list_planos .wrap .box-100 ul li h3 {
  font-family: "Grotesque MT Std Bold";
  font-size: clamp(20px, 1.5vw, 26px);
}

@media only screen and (max-width: 1024px) {
  section.list_planos {
    padding: 30px;
  }
  section.list_planos .wrap .box-100 h2 {
    padding: 30px 0;
  }
  section.list_planos .wrap .box-100 ul li {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 767px) {
  section.list_planos {
    padding: 15px;
  }
  section.list_planos .wrap .box-100 h2 {
    padding: 15px 0;
  }
  section.list_planos .wrap .box-100 ul li {
    padding: 15px 0;
  }
}
section.download .wrap {
  background-color: #FFFFFF;
  border-radius: 5px;
}
section.download .wrap .box-100 .top h2 {
  padding-right: 60%;
}
section.download .wrap .box-100 .bottom {
  margin-top: 6vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px;
}

@media only screen and (max-width: 1024px) {
  section.download .wrap .box-100 .top h2 {
    padding-right: 40%;
  }
  section.download .wrap .box-100 .bottom {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 15px;
  }
}
@media only screen and (max-width: 767px) {
  section.download .wrap .box-100 .top h2 {
    padding-right: 20%;
  }
  section.download .wrap .box-100 .bottom {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 15px;
  }
  section.download .wrap .box-100 .bottom .btn {
    width: 100%;
    justify-content: space-between;
  }
}
section.tags {
  padding: 3vw;
}
section.tags .wrap {
  display: flex;
  flex-wrap: wrap;
}
section.tags .wrap .tag {
  background-color: #FFFFFF;
  padding: 1vw;
  width: 12.1vw;
  margin: 0.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  section.tags {
    padding: 30px;
  }
  section.tags .wrap .tag {
    width: 17.1vw;
  }
}
@media only screen and (max-width: 767px) {
  section.tags {
    padding: 15px;
  }
  section.tags .wrap .tag {
    width: 100%;
    margin: 2.5vw;
    padding: 2vw;
  }
  section.tags .wrap .tag p {
    font-size: clamp(14px, 1vw, 16px);
  }
}
section.blocks .pic-responsive {
  display: none;
}
section.blocks div.wrap div.row {
  display: flex;
  height: 30vw;
  padding: 3vw;
  border-bottom: 1px solid black;
}
section.blocks div.wrap div.row div.pic {
  width: 50%;
  border-radius: 10px;
}
section.blocks div.wrap div.row div.pic img {
  border-radius: 10px;
}
section.blocks div.wrap div.row div.text {
  width: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.blocks div.wrap div.row div.text p.number {
  font-size: 3.2rem;
  font-family: "Grotesque MT Std Bold";
}
section.blocks div.wrap div.row div.text p {
  padding-right: 10vw;
}
section.blocks div.wrap div.row:first-child {
  margin-top: -3vw;
}
section.blocks div.wrap div.row:nth-child(even) {
  flex-direction: row-reverse;
}
section.blocks div.wrap div.row:nth-child(even) .text {
  padding-left: 0px;
}

@media only screen and (max-width: 1024px) {
  section.blocks div.wrap div.row div.text p {
    padding-right: 0px;
  }
}
@media only screen and (max-width: 767px) {
  section.blocks .pic-responsive {
    display: block;
    padding: 10px;
  }
  section.blocks .pic-responsive img {
    border-radius: 10px;
  }
  section.blocks div.wrap div.row {
    height: fit-content;
    border-bottom: 0px;
    padding: 15px;
  }
  section.blocks div.wrap div.row div.pic {
    width: 100%;
    display: none;
  }
  section.blocks div.wrap div.row div.text {
    width: 100%;
    padding: 15px;
    padding-left: 0px;
  }
  section.blocks div.wrap div.row:nth-child(even) {
    flex-direction: column;
  }
  section.blocks div.wrap div.row:nth-child(even) .text {
    padding-left: 0px;
  }
}
section.pic_foot {
  margin: 0vw 3vw;
  border-bottom: 1px solid black;
}
section.pic_foot div.wrap {
  display: flex;
  width: 100%;
}
section.pic_foot div.wrap a:hover {
  opacity: 0.5;
}
section.pic_foot div.wrap .left {
  width: 50%;
}
section.pic_foot div.wrap .left div {
  margin-bottom: 10px;
}
section.pic_foot div.wrap .left div p {
  line-height: 120%;
}
section.pic_foot div.wrap .right {
  width: 50%;
  padding-left: 3vw;
}
section.pic_foot div.wrap .right a {
  font-size: clamp(16px, 1.2vw, 22px);
}
section.pic_foot div.wrap .right div.telefonos {
  margin-bottom: 10px;
}

@media only screen and (max-width: 1024px) {
  section.pic_foot div.wrap {
    width: 100%;
  }
  section.pic_foot div.wrap .right {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  section.pic_foot {
    margin-bottom: 20vw;
    border-bottom: 0px;
  }
  section.pic_foot div.wrap {
    flex-direction: column;
    text-align: center;
  }
  section.pic_foot div.wrap .left {
    width: 100%;
  }
  section.pic_foot div.wrap .left div {
    margin-bottom: 1rem;
  }
  section.pic_foot div.wrap .left div p {
    line-height: 120%;
  }
  section.pic_foot div.wrap .right {
    width: 100%;
    margin-top: 1rem;
    padding: 0px;
  }
  section.pic_foot div.wrap .right a {
    font-size: clamp(16px, 1.2vw, 22px);
  }
  section.pic_foot div.wrap .right div.telefonos {
    margin-bottom: 10px;
  }
}
section.hero_pic_contacto {
  margin: 3vw;
  width: calc(100% - 6vw);
  height: 32vw;
  margin-top: min(max(40px, 7vw), 100px);
}
section.hero_pic_contacto div.background {
  width: calc(100% - 6vw);
  height: 32vw;
  position: absolute;
  z-index: -1;
}
section.hero_pic_contacto div.background img {
  border-radius: 5px;
}
section.hero_pic_contacto .overlay {
  border-radius: 5px;
}
section.hero_pic_contacto div.wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  z-index: 1;
  width: 100%;
  height: 100%;
}
section.hero_pic_contacto div.wrap div.title {
  text-align: center;
}
section.hero_pic_contacto div.wrap div.title h1 {
  font-size: clamp(55px, 5.2vw, 70px);
  font-family: "Grotesque MT Std Bold";
  color: #FFFFFF;
}

@media only screen and (max-width: 1024px) {
  section.hero_pic_contacto {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  section.hero_pic_contacto {
    margin: 10px;
    height: 40vh;
  }
  section.hero_pic_contacto div.background {
    display: none;
  }
  section.hero_pic_contacto div.background img {
    border-radius: 5px;
    display: none;
  }
  section.hero_pic_contacto div.wrap {
    height: 50vh;
  }
  section.hero_pic_contacto div.wrap div.title h1 {
    color: #0D0D0D;
    font-size: clamp(25px, 2.2vw, 30px);
  }
}
section.faqs {
  display: flex;
  justify-content: center;
  padding: 3vw;
}
section.faqs .wrap {
  display: flex;
  width: 100%;
}
section.faqs .wrap aside.faq__categories {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.faqs .wrap aside.faq__categories button.category {
  padding: 10px;
  max-width: 20rem;
  color: #000;
  text-align: left;
  padding-left: 15px;
  border: 1px solid black;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
}
section.faqs .wrap aside.faq__categories button.category.active {
  background: black;
  color: white;
}
section.faqs .wrap div.content {
  display: flex;
  width: 80%;
  justify-content: space-between;
}
section.faqs .wrap div.content .faq__questions {
  width: 50%;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.faqs .wrap div.content .faq__questions .question {
  padding: 10px;
  border: 1px solid black;
  max-width: 35rem;
  width: 35vw;
  margin-left: 1vw;
  border-radius: 999px;
  cursor: pointer;
  font-size: clamp(14px, 1vw, 16px);
}
section.faqs .wrap div.content .faq__questions .question.active-desktop {
  background: black;
  color: white;
}
section.faqs .wrap div.content .faq__answer {
  width: 50%;
  padding-left: 2vw;
}
section.faqs .wrap div.content .faq__answer p {
  display: none;
}
section.faqs .wrap div.content .faq__answer p:first-child {
  display: block;
}

@media only screen and (max-width: 1024px) {
  section.faqs .wrap {
    flex-direction: column;
  }
  section.faqs .wrap .faq__categories {
    width: 100% !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    padding-bottom: 30px;
  }
  section.faqs .wrap .faq__categories .category {
    padding-left: 10px;
  }
  section.faqs .wrap div.content {
    width: 100%;
  }
  section.faqs .wrap div.content .faq__questions {
    width: 50%;
    line-height: 150%;
  }
  section.faqs .wrap div.content .faq__questions .question {
    padding: 10px;
    max-width: 48vw;
    width: 45vw;
    margin-left: 0vw;
  }
  section.faqs .wrap div.content .faq__answer {
    width: 50%;
    padding-left: 2vw;
  }
}
.faqs-mobile {
  display: none;
  padding: 1rem;
}

@media (max-width: 768px) {
  section.faqs-mobile {
    display: block;
  }
  section.faqs-mobile button.faq-mobile__toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    text-align: left;
    padding: 1rem;
    font-weight: bold;
    background: transparent;
    color: black;
    border: none;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    font-size: clamp(14px, 1vw, 16px);
  }
  section.faqs-mobile ul.faq-mobile__questions {
    display: none;
    list-style: none;
    margin: 0;
  }
  section.faqs-mobile ul.faq-mobile__questions li.question {
    padding: 0rem 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-size: clamp(14px, 1vw, 16px);
  }
  section.faqs-mobile ul.faq-mobile__questions li.question p {
    border: 1px solid black;
    font-size: clamp(14px, 1vw, 16px);
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 10px;
  }
  section.faqs-mobile ul.faq-mobile__questions li.question p.active {
    background-color: #000;
    color: white;
  }
  section.faqs-mobile ul.faq-mobile__questions li.question div.answer {
    padding: 0rem 1rem;
    display: none;
    margin-bottom: 10px;
  }
  section.faqs-mobile ul.faq-mobile__questions li.question .faq__answer-mobile {
    margin-top: 1rem;
  }
  section.faqs-mobile ul.faq-mobile__questions li.question .faq__answer-mobile p {
    display: none;
    padding: 1rem;
    background: #f9f9f9;
    border-left: 3px solid #000;
    margin-bottom: 1rem;
  }
  section.faqs-mobile ul.faq-mobile__questions li.question .faq__answer-mobile p.active {
    display: block;
  }
  .faqs {
    display: none !important;
  }
}

/*# sourceMappingURL=app.min.css.map */
