@charset "UTF-8";
header {
  background-color: #FFFFFF;
  position: fixed;
  height: min(max(40px, 7vw), 100px);
  width: 100%;
  top: 0;
  z-index: 99;
}
header div.wrap {
  display: flex;
  justify-content: center;
  height: min(max(40px, 7vw), 100px);
  /* Icon 3 */
}
header div.wrap section.w-95 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header div.wrap section.w-95 div.logo {
  margin-left: 3%;
  width: 10%;
}
header div.wrap section.w-95 div.logo a {
  display: flex;
}
header div.wrap section.w-95 div.logo a img {
  width: 15vw;
}
header div.wrap section.w-95 div.logo a #logolottie {
  width: 13vw;
  margin-top: 9px;
}
header div.wrap section.w-95 nav.menu {
  height: min(max(40px, 7vw), 100px);
  width: 70%;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  margin-right: 3%;
}
header div.wrap section.w-95 nav.menu ul.links {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  align-items: center;
}
header div.wrap section.w-95 nav.menu ul.links li.link-menu {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
header div.wrap section.w-95 nav.menu ul.links li.link-menu a {
  font-size: min(max(14px, 1.2vw), 19px);
  font-family: "DM Sans";
  color: #000000;
}
header div.wrap section.w-95 nav.menu ul.links li.link-menu a.link-hover {
  transition: 0.3s;
  line-height: min(max(40px, 7vw), 100px);
}
header div.wrap section.w-95 nav.menu ul.links li.link-menu a.link-hover img {
  width: 3vw;
}
header div.wrap section.w-95 nav.menu ul.links li.link-menu a:hover {
  color: #47E6AC;
}
header div.wrap section.w-95 nav.menu ul.links li.link-menu a.link-icon {
  transition: 0.7s;
}
header div.wrap section.w-95 nav.menu ul.links li.link-menu a.link-icon img {
  width: 3vw;
}
header div.wrap section.w-95 nav.menu ul.links .idiomas .idioma-select {
  display: flex;
  align-items: center;
}
header div.wrap section.w-95 nav.menu ul.links .idiomas .idioma-select p {
  color: #47E6AC;
  cursor: pointer;
}
header div.wrap section.w-95 nav.menu ul.links .idiomas .idioma-select img {
  width: 15px;
  margin-left: 10px;
  transition: 0.5s;
}
header div.wrap section.w-95 nav.menu ul.links .idiomas .desplegable-idiomas {
  display: none;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #FFFFFF;
  padding-right: 1vw;
  border-bottom: 1px solid #47E6AC;
}
header div.wrap section.w-95 nav.menu ul.links .idiomas .desplegable-idiomas li a {
  font-size: 140%;
  line-height: 140%;
}
header div.wrap section.w-95 nav.menu ul.links .idiomas .desplegable-idiomas.active {
  display: flex;
}
header div.wrap section.w-95 nav.menu ul.foot-responsive {
  display: none;
}
header div.wrap section.w-95 .menu.active {
  display: flex;
}
header div.wrap .action-nav-mov {
  width: 42px;
  height: 39px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
}
header div.wrap .action-nav-mov span {
  display: block;
  position: absolute;
  height: 1px;
  width: 80%;
  background: #000000;
  border-radius: 5px;
  opacity: 1;
  left: 20%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
header div.wrap .action-nav-mov span:nth-child(1) {
  top: 7px;
}
header div.wrap .action-nav-mov span:nth-child(2), header div.wrap .action-nav-mov span:nth-child(3) {
  top: 18px;
}
header div.wrap .action-nav-mov span:nth-child(4) {
  top: 29px;
}
header div.wrap .action-nav-mov.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
header div.wrap .action-nav-mov.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
header div.wrap .action-nav-mov.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header div.wrap .action-nav-mov.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

@media only screen and (max-width: 860px) {
  header {
    background-color: #FFFFFF;
    height: 16vw;
  }
  header div.wrap {
    display: flex;
    justify-content: center;
    height: 16vw;
    background-color: #FFFFFF;
  }
  header div.wrap section.w-95 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  header div.wrap section.w-95 div.logo {
    margin-left: 5%;
  }
  header div.wrap section.w-95 div.logo a img {
    width: 35vw;
  }
  header div.wrap section.w-95 div.logo a #logolottie {
    width: 30vw;
    margin-top: 0px;
  }
  header div.wrap section.w-95 nav.menu {
    position: absolute;
    height: 90vh;
    width: 100%;
    margin-top: 16vw;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #FFFFFF;
    display: none;
    justify-content: center;
    overflow: scroll;
  }
  header div.wrap section.w-95 nav.menu ul.links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-height: 73vh;
    align-items: center;
    overflow: scroll;
    background-color: #FFFFFF;
  }
  header div.wrap section.w-95 nav.menu ul.links li.link-menu {
    width: 100%;
    flex-direction: column;
    border-top: 1px solid #47E6AC;
  }
  header div.wrap section.w-95 nav.menu ul.links li.link-menu a {
    font-size: min(max(24px, 1.2vw), 30px);
    line-height: 140%;
    display: flex;
  }
  header div.wrap section.w-95 nav.menu ul.links li.link-menu a.link-hover {
    line-height: 130%;
    padding-left: 5vw;
    padding-top: 3.4vh;
    padding-bottom: 3vh;
    font-weight: 200;
  }
  header div.wrap section.w-95 nav.menu ul.links li.link-menu a.link-hover img {
    width: 9vw;
  }
  header div.wrap section.w-95 nav.menu ul.links li.link-menu a.link-icon {
    transition: 0.7s;
    padding-left: 5vw;
    padding-top: 2.6vh;
    padding-bottom: 2.4vh;
  }
  header div.wrap section.w-95 nav.menu ul.links li.link-menu a.link-icon img {
    width: 8vw;
  }
  header div.wrap section.w-95 nav.menu ul.links .link-menu:last-child {
    border-bottom: 1px solid #47E6AC;
    max-width: 100%;
  }
  header div.wrap section.w-95 nav.menu ul.foot-responsive {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    height: 17vh;
  }
  header div.wrap section.w-95 nav.menu ul.foot-responsive li p {
    font-family: "DM Sans";
    font-size: 320%;
    display: none;
  }
  header div.wrap section.w-95 .menu.active {
    display: flex;
  }
  header div.wrap .action-nav-mov {
    margin-right: 5%;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  header {
    height: 20vw;
  }
  header div.wrap {
    height: 20vw;
  }
  header div.wrap section.w-95 div.logo a img {
    width: 40vw;
  }
  header div.wrap section.w-95 div.logo a #logolottie {
    width: 45vw;
  }
  header div.wrap section.w-95 nav.menu {
    margin-top: 20vw;
  }
  header div.wrap section.w-95 nav.menu ul.links li.link-menu a {
    font-size: 100%;
  }
  header div.wrap section.w-95 nav.menu ul.links li.link-menu a.link-icon img {
    width: 8vw;
  }
  header div.wrap section.w-95 nav.menu ul.links .idiomas .desplegable-idiomas li a {
    font-size: 500%;
  }
}
footer {
  background-color: #404040;
  position: relative;
  overflow: hidden;
  z-index: 3;
}
footer div.wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer div.wrap div.top {
  padding-bottom: 13vw;
}
footer div.wrap div.top div.img {
  width: 250px;
}
footer div.wrap div.bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
footer div.wrap div.bottom .left {
  width: 33%;
}
footer div.wrap div.bottom .left p {
  font-size: min(max(14px, 1.2vw), 23px);
  font-weight: 200;
  color: #FFFFFF;
}
footer div.wrap div.bottom .center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 33%;
}
footer div.wrap div.bottom .center a {
  font-size: tipoFoot;
  padding-top: 3px;
  text-align: center;
  font-weight: 200;
  color: #47E6AC;
}
footer div.wrap div.bottom .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 33%;
  margin-bottom: 12px;
}
footer div.wrap div.bottom .right img {
  width: 250px;
  height: 80px;
}
footer div.wrap .bottom.legals .legal {
  font-size: min(max(14px, 1.2vw), 23px);
  padding-top: 15px;
  font-weight: 200;
  color: #47E6AC;
}
footer div.absolute {
  position: absolute;
  top: -8%;
  left: 55%;
  z-index: -1;
}
footer div.absolute img {
  width: 50vw;
  opacity: 0.4;
}

@media only screen and (max-width: 860px) {
  footer div.wrap div.bottom .left p {
    font-size: min(max(14px, 1.2vw), 20px);
  }
  footer div.wrap div.bottom .center a {
    font-size: min(max(14px, 1.2vw), 20px);
  }
  footer div.wrap div.bottom .right img {
    width: 80%;
  }
  footer div.wrap .bottom.legals .legal {
    font-size: min(max(14px, 1.2vw), 20px);
  }
}
@media only screen and (max-width: 767px) {
  footer div.wrap {
    padding: 10vw 5vw;
  }
  footer div.wrap div.top {
    padding-bottom: 6vw;
  }
  footer div.wrap div.top div.img {
    width: 55vw;
  }
  footer div.wrap div.bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  footer div.wrap div.bottom .left {
    width: 100%;
  }
  footer div.wrap div.bottom .left p {
    font-size: min(max(16px, 1.2vw), 20px);
    padding-top: 13px;
  }
  footer div.wrap div.bottom .center {
    width: 100%;
    align-items: flex-start;
  }
  footer div.wrap div.bottom .center a {
    font-size: min(max(16px, 1.2vw), 20px);
    text-align: left;
    padding-top: 13px;
  }
  footer div.wrap div.bottom .right {
    align-items: flex-start;
    width: 100%;
    padding-top: 45px;
  }
  footer div.wrap div.bottom .right img {
    width: 50vw;
  }
  footer div.wrap .bottom.legals {
    padding-top: 50px;
  }
  footer div.wrap .bottom.legals .legal {
    font-size: min(max(16px, 1.2vw), 20px);
    padding-top: 15px;
  }
  footer div.wrap .bottom.legals .right {
    padding-top: 0px;
  }
  footer div.absolute {
    position: absolute;
    top: -4%;
    left: -10%;
  }
  footer div.absolute img {
    width: 155vw;
    opacity: 0.4;
  }
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-BoldItalic.woff2") format("woff2"), url("../fonts/DMSans-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-MediumItalic.woff2") format("woff2"), url("../fonts/DMSans-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Regular.woff2") format("woff2"), url("../fonts/DMSans-Regular.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Bold.woff2") format("woff2"), url("../fonts/DMSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Italic.woff2") format("woff2"), url("../fonts/DMSans-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Bold.woff2") format("woff2"), url("../fonts/DMSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Medium.woff2") format("woff2"), url("../fonts/DMSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Light.woff2") format("woff2"), url("../fonts/CormorantGaramond-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-MediumItalic.woff2") format("woff2"), url("../fonts/CormorantGaramond-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Medium.woff2") format("woff2"), url("../fonts/CormorantGaramond-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Italic.woff2") format("woff2"), url("../fonts/CormorantGaramond-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Regular.woff2") format("woff2"), url("../fonts/CormorantGaramond-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-LightItalic.woff2") format("woff2"), url("../fonts/CormorantGaramond-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-SemiBoldItalic.woff2") format("woff2"), url("../fonts/CormorantGaramond-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Bold.woff2") format("woff2"), url("../fonts/CormorantGaramond-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-SemiBold.woff2") format("woff2"), url("../fonts/CormorantGaramond-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-BoldItalic.woff2") format("woff2"), url("../fonts/CormorantGaramond-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
/* 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;
}

.invisible {
  visibility: hidden;
}

.novisible {
  display: none;
}

.no-desktop {
  display: none;
}

.no-responsive {
  display: initial;
}

.no-mobile {
  display: initial;
}

.only-mobile {
  display: none;
}

.no-touch {
  display: initial;
}

.no-scroll {
  overflow: hidden;
}

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

/*-----clases Dani-----------*/
/*-----fin clases dani--

.arrow { border: solid white; border-width: 0 1px 1px 0; display: inline-block; padding: 8px; 
	&.right { transform: rotate(-45deg); -webkit-transform: rotate(-45deg); }
	&.left { transform: rotate(135deg); -webkit-transform: rotate(135deg); }
	&.up { transform: rotate(-135deg); -webkit-transform: rotate(-135deg); }
	&.down { transform: rotate(45deg); -webkit-transform: rotate(45deg);}
}

.right { transform: rotate(-45deg); -webkit-transform: rotate(-45deg); }
.left { transform: rotate(135deg); -webkit-transform: rotate(135deg); }
---*/
/* .up { transform: rotate(-135deg); -webkit-transform: rotate(-135deg); }
.down { transform: rotate(45deg); -webkit-transform: rotate(180deg);} */
.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;
  }
}
html {
  scroll-behavior: smooth;
  height: fill-available;
  height: -webkit-fill-available;
}

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;
  background-color: #FFFFFF;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

a {
  font-family: "DM Sans";
  color: #000000;
  font-size: 100%;
  letter-spacing: 0.2px;
}

.default-btn {
  background-color: white;
  padding: 0.8vw 2vw;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  transition: 0.3s;
}
.default-btn p {
  color: black;
  font-size: min(max(14px, 1vw), 20px);
  font-weight: 400;
  transition: 0.3s;
}
.default-btn img {
  margin-left: 1vw;
  width: 7px;
}
.default-btn.color {
  background: linear-gradient(to right, #47E6AC, #FFF7A0);
  background-size: 200% auto;
  transition: background-position 0.5s;
  transition: 0.3s;
}

.default-btn.color:hover {
  background-position: right center;
}
a.btn:hover {
  background-color: #47E6AC;
  color: #FFF7A0;
}

strong {
  font-weight: 600;
}

A {
  text-decoration: none;
  font-family: "DM Sans";
  font-weight: 100;
}

H1 {
  font-family: "DM Sans";
  color: #000000;
  font-size: min(max(65px, 9vw), 240px);
  font-weight: 200;
}

H2 {
  font-family: "Cormorant Garamond";
  font-size: min(max(28px, 2.2vw), 30px);
  font-style: italic;
  margin-bottom: 1vw;
}

p.subtitle {
  font-family: "Cormorant Garamond";
  font-size: min(max(28px, 2.2vw), 30px);
  font-style: italic;
  margin-bottom: 1vw;
}

H3 {
  font-family: "DM Sans";
  font-size: min(max(33px, 5vw), 120px);
  font-weight: 200;
  color: #000000;
}

H4 {
  font-family: "DM Sans";
  font-size: min(max(24px, 2.4vw), 120px);
  font-weight: 200;
  color: #000000;
}

P {
  font-family: "DM Sans";
  font-style: normal;
  font-size: min(max(17px, 1.2vw), 24px);
  line-height: 120%;
  font-weight: 100;
  color: #000000;
  letter-spacing: 0.2px;
}

P.peque {
  font-family: "DM Sans";
  font-style: normal;
  font-size: min(max(14px, 1vw), 20px);
  line-height: 120%;
  font-weight: 100;
  color: #000000;
  letter-spacing: 0.2px;
}

ul li {
  font-family: "DM Sans";
  font-style: normal;
  font-size: min(max(13px, 1.2vw), 24px);
  line-height: 120%;
  font-weight: 100;
  color: #000000;
  letter-spacing: 0.2px;
}

.mts {
  margin-top: 5vw;
}

.mt-head {
  height: 10vh;
}

.mbs {
  margin-bottom: 12vh;
}

.lista::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
}

.lista::-webkit-scrollbar-corner {
  background-color: transparent;
}

.lista::-webkit-scrollbar {
  width: 12px;
  background-color: none;
}

.lista::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0.3);
  background-color: #47E6AC;
}

.image-cube {
  height: 12vw;
  width: 100%;
  border-radius: 0px 300px 300px 0px;
}

.image-cube.reverse {
  border-radius: 300px 0px 0px 300px;
}

.image-cube.complet {
  border-radius: 300px 300px 300px 300px;
}

.bg-grey {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 10%, rgb(227, 227, 227) 100%);
}

/* .gsapgrid{mix-blend-mode: multiply;}  */
/* ------tipos de div ------- */
.full-center {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.w-90 {
  padding: 3vw;
}

/* ------------------hover linea baja animada--------------------- */
.page-active {
  border-bottom: 1px solid #47E6AC;
}

.scroll {
  overflow: scroll;
}

/* .form-descargar-catalogo .active{display:block;} */
/* ------------------------------------------------------------------------------------- */
td {
  padding: 10px;
  background-color: #dedede;
  border: 1px solid #FFF;
}

.p-100 p {
  width: 100%;
  margin-bottom: 30px;
}

@media only screen and (max-width: 860px) {
  .page-active {
    border-bottom: none;
  }
}
@media only screen and (max-width: 767px) {
  .image-cube {
    height: 25vw;
  }
  .default-btn {
    padding: 1.8vw 3.6vw;
  }
  .default-btn p {
    color: black;
    font-size: min(max(14px, 1vw), 20px);
  }
  .default-btn.color {
    padding: 2.5vw 3.6vw;
  }
  .default-btn.color p {
    padding-right: 10px;
  }
}
/* Fancy pop up Cierre ----------------------------------------------------------------------------- */
.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 5px;
  right: 0.5vw;
  top: 0.5vw;
}

/* Ocultar Google Recapcha ----------------------------------------------------------------------------- */
.grecaptcha-badge {
  visibility: collapse !important;
}

article.default-hero {
  padding-top: min(max(40px, 11.5vw), 180px);
}
article.default-hero section {
  display: flex;
  position: relative;
}
article.default-hero section div.left {
  width: 30%;
}
article.default-hero section div.left .image-cube {
  margin-top: 30vw;
}
article.default-hero section div.center {
  width: 40%;
}
article.default-hero section div.center .logo-senvia-gradient {
  width: 100%;
  background-color: white;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: lighten;
  z-index: -1;
}
article.default-hero section div.center .logo-senvia-gradient img.logo-mask {
  width: 49vw;
}
article.default-hero section div.center #canvas-gradient {
  position: absolute;
  height: 100%;
  display: block;
  top: 0;
  right: 0;
  z-index: -2;
  overflow: hidden;
}
article.default-hero section div.right {
  width: 30%;
}
article.default-hero section div.right .image-cube {
  margin-top: 1vw;
}
article.default-hero section div.absolute {
  position: absolute;
  padding: 10vw;
  width: 100%;
  height: 100%;
}
article.default-hero section div.absolute #firstLottie {
  height: 100%;
  width: 88%;
  margin-top: -7vw;
  display: block;
}
article.default-hero section div.absolute h1 {
  width: 95%;
}
article.default-hero section div.absolute h1 span {
  margin-left: 50%;
}
article.default-hero section div.absolute div.content {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
article.default-hero section div.absolute div.content p {
  width: 60%;
  max-width: 35rem;
}
article.default-hero section div.absolute div.content h2 {
  width: 60%;
  max-width: 35rem;
  padding-top: 2vw;
}
article.default-hero section div.absolute div.content h1 {
  font-family: "Cormorant Garamond";
  font-size: min(max(28px, 2.2vw), 30px);
  font-style: italic;
  margin-bottom: 1vw;
  width: 60%;
  max-width: 35rem;
  padding-top: 2vw;
}
article.default-hero.standard {
  height: 50vw;
  padding-top: 8vw;
}
article.default-hero.standard section div.left {
  width: 40%;
}
article.default-hero.standard section div.left h2 {
  margin-left: 9vw;
  margin-top: 5vw;
  font-size: 200%;
}
article.default-hero.standard section div.left .image-cube {
  margin-top: 24vw;
  margin-left: -5vw;
}
article.default-hero.standard section div.center {
  width: 40%;
}
article.default-hero.standard section div.center .logo-senvia-gradient {
  width: 120vw;
  background-color: white;
  position: absolute;
  display: flex;
  align-items: center;
  mix-blend-mode: lighten;
  z-index: -1;
  justify-content: normal;
  margin-left: 25vw;
}
article.default-hero.standard section div.center .logo-senvia-gradient img.logo-mask {
  width: 49vw;
  margin: 5vw;
}
article.default-hero.standard section div.center #canvas-gradient {
  position: absolute;
  height: 100%;
  display: block;
  top: 0;
  right: 0;
  z-index: -2;
}
article.default-hero.standard section div.absolute {
  margin-top: -2vw;
  padding: 12vw 8vw;
}
article.default-hero.standard section div.absolute h1 {
  display: flex;
  flex-direction: column;
}
article.default-hero.standard section div.absolute h1 span {
  margin-left: 28vw;
}
article.default-hero.standard section div.absolute .content {
  margin-top: 2vw;
  align-items: flex-start;
}
article.default-hero.standard section div.right {
  margin-top: 25vw;
}
article.default-hero.servicios {
  height: 90vh;
  position: relative;
  overflow: hidden;
  padding-top: 7vw;
  max-height: 1000px;
}
article.default-hero.servicios img {
  position: relative;
  z-index: -2;
}
article.default-hero.servicios section {
  position: absolute;
  top: min(max(40px, 11.5vw), 180px);
  left: 0;
  width: 100%;
  height: 100%;
}
article.default-hero.servicios section div.center {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
article.default-hero.servicios section div.center img {
  width: 44vw;
  margin-right: 1vw;
  margin-top: -20vw;
}
article.default-hero.servicios section div.absolute {
  margin-top: -5vw;
  padding: 8vw;
  display: flex;
  flex-direction: column;
  width: 85%;
  justify-content: center;
}
article.default-hero.servicios section div.absolute h1 {
  display: flex;
  flex-direction: column;
  line-height: 110%;
  font-size: 7vw;
  width: 70%;
}
article.default-hero.servicios section div.absolute h1 span {
  margin-left: 32vw;
}
article.default-hero.servicios section div.absolute .especial {
  font-size: 6.3vw;
}
article.default-hero.servicios section div.absolute .content {
  margin-top: 0vw;
  align-items: flex-start;
}
article.default-hero.bg {
  height: 90vh;
  position: relative;
  overflow: hidden;
  padding-top: 5vw;
  background-color: black;
  max-height: 1000px;
}
article.default-hero.bg img {
  opacity: 0.7;
}
article.default-hero.bg section {
  position: absolute;
  top: min(max(40px, 11.5vw), 180px);
  left: 0;
  width: 100%;
  height: 100%;
}
article.default-hero.bg section div.center {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
article.default-hero.bg section div.center img {
  width: 43vw;
  margin-right: 3vw;
  margin-top: -18vw;
}
article.default-hero.bg section div.absolute {
  margin-top: -3rem;
  padding: 8vw;
  display: flex;
  flex-direction: column;
  width: 75%;
  justify-content: flex-start;
}
article.default-hero.bg section div.absolute h2 {
  color: white;
  margin-bottom: 3rem;
  font-size: 200%;
}
article.default-hero.bg section div.absolute h1 {
  display: flex;
  flex-direction: column;
  line-height: 110%;
  font-size: 7vw;
  color: white;
}
article.default-hero.bg section div.absolute h1 span {
  margin-left: 32vw;
}
article.default-hero.bg section div.absolute .content {
  margin-top: 0px;
  align-items: flex-start;
  height: 100%;
}
article.default-hero.bg section div.absolute .content p {
  color: white;
}

@media only screen and (max-width: 860px) {
  article.default-hero {
    height: 90vw;
    padding-top: min(max(40px, 18vw), 180px);
  }
  article.default-hero section div.left .image-cube {
    margin-top: 54vw;
  }
  article.default-hero section div.center .logo-senvia-gradient img.logo-mask {
    width: 77vw;
  }
  article.default-hero section div.right .image-cube {
    margin-top: 20vw;
  }
  article.default-hero section div.absolute #firstLottie {
    height: 100%;
    padding-top: 13vw;
    margin-top: 0vw;
    display: block;
  }
  article.default-hero section div.absolute h1 {
    width: 80%;
    padding-top: 15vw;
  }
  article.default-hero section div.absolute h1 span {
    margin-left: 50%;
  }
  article.default-hero section div.absolute div.content p {
    margin-top: 2vw;
  }
  article.default-hero.standard {
    height: 65vh;
  }
  article.default-hero.standard section div.left {
    width: 50%;
  }
  article.default-hero.standard section div.left h2 {
    margin-top: 19vw;
  }
  article.default-hero.standard section div.left .image-cube {
    margin-top: 40vh;
    margin-left: -5vw;
    height: 17vw;
  }
  article.default-hero.standard section div.center {
    width: 60%;
    margin-top: 10vw;
  }
  article.default-hero.standard section div.center .logo-senvia-gradient {
    width: 150vw;
    height: 70vh;
  }
  article.default-hero.standard section div.center .logo-senvia-gradient img.logo-mask {
    width: 70vw;
    margin-left: -14vw;
  }
  article.default-hero.standard section div.center #canvas-gradient {
    position: absolute;
    height: 100%;
    display: block;
    top: 0;
    right: 0;
    z-index: -2;
  }
  article.default-hero.standard section div.absolute {
    margin-top: -3vw;
  }
  article.default-hero.standard section div.absolute h1 span {
    margin-left: 22vw;
  }
  article.default-hero.standard section div.absolute div.content h2 {
    width: 60%;
  }
  article.default-hero.standard section div.absolute div.content p {
    width: 60%;
  }
  article.default-hero.servicios {
    height: 70vh;
  }
  article.default-hero.servicios section div.center img {
    width: 45vw;
    margin-right: 5vw;
    margin-top: 15vw;
  }
  article.default-hero.servicios section div.absolute {
    margin-top: 5vw;
    padding: 8vw;
    padding-top: 0;
    justify-content: flex-start;
  }
  article.default-hero.servicios section div.absolute h1 {
    font-size: 10vw;
    width: 100%;
    padding-top: 6vw;
  }
  article.default-hero.servicios section div.absolute h1 span {
    margin-left: 22vw;
  }
  article.default-hero.servicios section div.absolute .especial {
    font-size: 9.5vw;
  }
  article.default-hero.bg {
    height: 80vh;
  }
  article.default-hero.bg section div.center img {
    width: 45vw;
    margin-right: 3vw;
  }
  article.default-hero.bg section div.absolute {
    justify-content: center;
  }
  article.default-hero.bg section div.absolute h2 {
    color: white;
  }
  article.default-hero.bg section div.absolute h1 {
    padding-top: 30vw;
  }
  article.default-hero.bg section div.absolute .content {
    margin-top: 5vw;
  }
  article.default-hero.bg section div.absolute .content p {
    color: white;
  }
}
@media only screen and (max-width: 767px) {
  article.default-hero {
    height: auto;
    padding-top: 8vw;
  }
  article.default-hero section div.left {
    width: 50%;
  }
  article.default-hero section div.left .image-cube {
    margin-top: 90vh;
    height: 0px;
  }
  article.default-hero section div.center {
    width: 0%;
  }
  article.default-hero section div.center .logo-senvia-gradient {
    height: 92vh;
  }
  article.default-hero section div.center .logo-senvia-gradient img.logo-mask {
    width: 97vw;
  }
  article.default-hero section div.right {
    width: 50%;
  }
  article.default-hero section div.right .image-cube {
    margin-top: 77vh;
  }
  article.default-hero section div.absolute #firstLottie {
    height: 20vh;
    width: 83vw;
    padding-top: 9vw;
    display: block;
  }
  article.default-hero section div.absolute h1 {
    width: 80%;
    padding-top: 10vw;
    font-size: 1200%;
  }
  article.default-hero section div.absolute h1 span {
    margin-left: 50%;
  }
  article.default-hero section div.absolute div.content p {
    margin-top: 5vw;
    width: 100%;
  }
  article.default-hero section div.absolute div.content h2 {
    width: 100%;
  }
  article.default-hero.standard {
    height: 145vw;
    margin-top: 8vw;
  }
  article.default-hero.standard section div.left {
    width: 85%;
  }
  article.default-hero.standard section div.left h2 {
    margin-top: 14vw;
    width: 100%;
    font-size: 570%;
  }
  article.default-hero.standard section div.left .image-cube {
    margin-top: 100vw;
    height: 26vw;
    margin-left: 0vw;
    width: 70vw;
  }
  article.default-hero.standard section div.center {
    width: 0%;
  }
  article.default-hero.standard section div.center .logo-senvia-gradient {
    height: 92vh;
    width: 180vw;
  }
  article.default-hero.standard section div.center .logo-senvia-gradient img.logo-mask {
    width: 97vw;
    margin-left: -64vw;
  }
  article.default-hero.standard section div.absolute {
    margin-top: -3vw;
  }
  article.default-hero.standard section div.absolute h1 {
    padding-top: 20vw;
  }
  article.default-hero.standard section div.absolute h1 span {
    margin-left: 0vw;
  }
  article.default-hero.standard section div.absolute div.content {
    padding-top: 5vw;
  }
  article.default-hero.standard section div.absolute div.content h2 {
    width: 60%;
  }
  article.default-hero.standard section div.absolute div.content p {
    width: 100%;
  }
  article.default-hero.servicios {
    height: 100vh;
  }
  article.default-hero.servicios section div.center img {
    width: 100vw;
    margin-right: -10vw;
    margin-top: 60vw;
    opacity: 0.8;
  }
  article.default-hero.servicios section div.absolute {
    margin-top: 5vw;
    padding: 8vw;
    justify-content: flex-start;
  }
  article.default-hero.servicios section div.absolute h1 {
    font-size: 1000%;
    width: 95%;
    padding-top: 0vw;
  }
  article.default-hero.servicios section div.absolute .especial {
    font-size: 1000%;
  }
  article.default-hero.bg {
    height: 100vh;
  }
  article.default-hero.bg section div.center img {
    width: 25vw;
    margin-right: 3vw;
  }
  article.default-hero.bg section div.absolute {
    width: 95%;
  }
  article.default-hero.bg section div.absolute h2 {
    font-weight: 600;
  }
  article.default-hero.bg section div.absolute h1 {
    font-size: 1000%;
    padding-top: 13vw;
  }
}
article.default-saber-mas section {
  padding-top: 0;
  padding-bottom: 0;
}
article.default-saber-mas section div {
  padding-top: 0;
  padding-bottom: 0;
}
article.default-saber-mas section div span {
  font-size: min(max(28px, 2.2vw), 30px);
  font-family: "Cormorant Garamond";
  font-style: italic;
}
article.default-saber-mas section div span img {
  rotate: 90deg;
  margin-left: 5px;
}

article.default-two-blocks section.w-90 {
  display: flex;
  height: auto;
}
article.default-two-blocks section.w-90 div.left {
  width: 35%;
  background-color: #e9e8e8;
  border-radius: 15px;
  margin: 1vw;
}
article.default-two-blocks section.w-90 div.left h3 {
  font-size: 250%;
  margin-bottom: 2vw;
}
article.default-two-blocks section.w-90 div.right {
  width: 65%;
  border-radius: 15px;
  margin: 1vw;
}
article.default-two-blocks section.w-90 div.right img {
  border-radius: 15px;
}

@media only screen and (max-width: 860px) {
  article.default-two-blocks {
    margin-top: 0vw;
  }
  article.default-two-blocks section.w-90 div.left h3 {
    font-size: 250%;
  }
  article.default-two-blocks section.w-90 div.left p {
    font-size: 180%;
  }
}
@media only screen and (max-width: 767px) {
  article.default-two-blocks {
    margin-top: 0vw;
  }
  article.default-two-blocks section.w-90 {
    flex-direction: column;
  }
  article.default-two-blocks section.w-90 div.left {
    width: 100%;
    padding-bottom: 1rem;
    padding: 5vw;
  }
  article.default-two-blocks section.w-90 div.left h3 {
    font-size: 490%;
    line-height: 130%;
    margin-bottom: 4vw;
  }
  article.default-two-blocks section.w-90 div.left p {
    font-size: 320%;
  }
  article.default-two-blocks section.w-90 div.right {
    width: 100%;
  }
}
article.home-banner section {
  display: flex;
  flex-direction: column;
}
article.home-banner section div.top {
  display: flex;
  align-items: center;
  padding-bottom: 3vw;
}
article.home-banner section div.top img {
  width: 4vw;
  margin-right: 1vw;
}
article.home-banner section div.top p.title {
  font-size: 200%;
}
article.home-banner section div.bottom {
  display: flex;
  justify-content: flex-start;
}
article.home-banner section div.bottom img {
  width: 25vw;
  height: 8vw;
  margin-right: 5vw;
}

@media only screen and (max-width: 860px) {
  article.home-banner {
    padding-top: 0vw;
    margin-top: 5vw;
    padding-bottom: 0vw;
  }
  article.home-banner section div.top {
    padding-bottom: 0vw;
  }
  article.home-banner section div.top img {
    width: 8vw;
    margin-right: 4vw;
  }
  article.home-banner section div.bottom {
    justify-content: flex-start;
    margin-top: 0vw;
    padding-bottom: 3vw;
  }
  article.home-banner section div.bottom img {
    width: 45vw;
    height: 12vw;
  }
}
@media only screen and (max-width: 767px) {
  article.home-banner {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }
  article.home-banner section div.top {
    padding-bottom: 5vw;
    margin-top: -5vw;
  }
  article.home-banner section div.top img {
    width: 8vw;
    margin-right: 4vw;
  }
  article.home-banner section div.bottom img {
    width: 45vw;
    height: 15vw;
  }
}
article.home-grid section div.title h3 {
  width: 40vw;
  margin-top: 1vw;
}
article.home-grid section div.grid {
  display: flex;
  justify-content: center;
  margin-top: 2vw;
}
article.home-grid section div.grid div.left,
article.home-grid section div.grid div.right {
  display: flex;
  flex-wrap: wrap;
  width: 66%;
}
article.home-grid section div.grid div.left div.block,
article.home-grid section div.grid div.right div.block {
  position: relative;
  z-index: 1;
  border-radius: 30px;
  margin: 0.5vw;
  width: 29vw;
  height: 29vw;
  background-color: black;
  overflow: hidden;
}
article.home-grid section div.grid div.left div.block img,
article.home-grid section div.grid div.right div.block img {
  border-radius: 30px;
  padding: 0vw;
  opacity: 0.8;
  transition: 0.3s ease;
}
article.home-grid section div.grid div.left div.block img.zoomed,
article.home-grid section div.grid div.right div.block img.zoomed {
  transform: scale(1.2);
}
article.home-grid section div.grid div.left div.block div.absolute,
article.home-grid section div.grid div.right div.block div.absolute {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 100%;
  width: 100%;
}
article.home-grid section div.grid div.left div.block div.absolute div.top,
article.home-grid section div.grid div.right div.block div.absolute div.top {
  width: 25vw;
  height: 40%;
}
article.home-grid section div.grid div.left div.block div.absolute div.top h4,
article.home-grid section div.grid div.right div.block div.absolute div.top h4 {
  color: white;
  font-family: "DM Sans";
  font-weight: 200;
  margin-bottom: 1vw;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}
article.home-grid section div.grid div.left div.block div.absolute div.top p,
article.home-grid section div.grid div.right div.block div.absolute div.top p {
  color: white;
  font-family: "Cormorant Garamond";
  font-weight: 600;
}
article.home-grid section div.grid div.left div.block div.absolute div.bottom,
article.home-grid section div.grid div.right div.block div.absolute div.bottom {
  margin-top: 5vw;
}
article.home-grid section div.grid div.left div.block.big,
article.home-grid section div.grid div.right div.block.big {
  width: 59vw;
}
article.home-grid section div.grid div.left div.block.big .imagen,
article.home-grid section div.grid div.right div.block.big .imagen {
  height: inherit;
}
article.home-grid section div.grid div.left div.block.long,
article.home-grid section div.grid div.right div.block.long {
  height: 59vw;
  width: -webkit-fill-available;
}

@media only screen and (max-width: 860px) {
  article.home-grid {
    margin-top: 5vw;
  }
  article.home-grid section div.title h3 {
    width: 40vw;
    margin-top: 1vw;
  }
  article.home-grid section div.grid {
    display: flex;
    justify-content: center;
    margin-top: 2vw;
  }
  article.home-grid section div.grid div.left,
article.home-grid section div.grid div.right {
    display: flex;
    flex-wrap: wrap;
    width: 66%;
  }
  article.home-grid section div.grid div.left div.block,
article.home-grid section div.grid div.right div.block {
    position: relative;
    z-index: 1;
    border-radius: 30px;
    margin: 0.5vw;
    width: 29vw;
    height: 29vw;
    background-color: black;
    overflow: hidden;
  }
  article.home-grid section div.grid div.left div.block img,
article.home-grid section div.grid div.right div.block img {
    border-radius: 30px;
    padding: 0vw;
    opacity: 0.8;
    transition: 0.3s ease;
  }
  article.home-grid section div.grid div.left div.block img.zoomed,
article.home-grid section div.grid div.right div.block img.zoomed {
    transform: scale(1.2);
  }
  article.home-grid section div.grid div.left div.block div.absolute,
article.home-grid section div.grid div.right div.block div.absolute {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    height: 100%;
    width: 100%;
  }
  article.home-grid section div.grid div.left div.block div.absolute div.top,
article.home-grid section div.grid div.right div.block div.absolute div.top {
    width: 25vw;
    height: 40%;
  }
  article.home-grid section div.grid div.left div.block div.absolute div.top h4,
article.home-grid section div.grid div.right div.block div.absolute div.top h4 {
    color: white;
    font-family: "DM Sans";
    font-weight: 200;
    margin-bottom: 1vw;
  }
  article.home-grid section div.grid div.left div.block div.absolute div.top p,
article.home-grid section div.grid div.right div.block div.absolute div.top p {
    color: white;
    font-family: "Cormorant Garamond";
  }
  article.home-grid section div.grid div.left div.block div.absolute div.bottom,
article.home-grid section div.grid div.right div.block div.absolute div.bottom {
    margin-top: 5vw;
  }
  article.home-grid section div.grid div.left div.block.big,
article.home-grid section div.grid div.right div.block.big {
    width: 59vw;
  }
  article.home-grid section div.grid div.left div.block.long,
article.home-grid section div.grid div.right div.block.long {
    height: 59vw;
    width: -webkit-fill-available;
  }
}
@media only screen and (max-width: 767px) {
  article.home-grid section div.title {
    margin-bottom: 5vw;
  }
  article.home-grid section div.title h3 {
    width: 70vw;
  }
  article.home-grid section div.grid {
    flex-direction: column;
  }
  article.home-grid section div.grid div.left,
article.home-grid section div.grid div.right {
    width: 100%;
  }
  article.home-grid section div.grid div.left div.block,
article.home-grid section div.grid div.right div.block {
    width: 90vw;
    height: 70vw;
    width: -webkit-fill-available;
    margin-bottom: 3vw;
  }
  article.home-grid section div.grid div.left div.block div.absolute div.top,
article.home-grid section div.grid div.right div.block div.absolute div.top {
    width: 90%;
  }
  article.home-grid section div.grid div.left div.block div.absolute div.top h4,
article.home-grid section div.grid div.right div.block div.absolute div.top h4 {
    color: white;
    font-family: "DM Sans";
    font-weight: 200;
    margin-bottom: 1vw;
  }
  article.home-grid section div.grid div.left div.block div.absolute div.top p,
article.home-grid section div.grid div.right div.block div.absolute div.top p {
    color: white;
    font-family: "Cormorant Garamond";
  }
  article.home-grid section div.grid div.left div.block div.absolute div.bottom,
article.home-grid section div.grid div.right div.block div.absolute div.bottom {
    margin-top: 5vw;
  }
  article.home-grid section div.grid div.left div.block.big,
article.home-grid section div.grid div.right div.block.big {
    width: 90vw;
    width: -webkit-fill-available;
  }
  article.home-grid section div.grid div.left div.block.long,
article.home-grid section div.grid div.right div.block.long {
    height: 70vw;
  }
}
article.home-two-cols {
  margin-top: 0vw;
  margin-bottom: 0vw;
}
article.home-two-cols section {
  display: flex;
  position: relative;
  justify-content: space-between;
}
article.home-two-cols section div.left {
  width: 50%;
}
article.home-two-cols section div.left div.content {
  width: 25vw;
}
article.home-two-cols section div.left .image-cube {
  width: 80%;
  margin-top: 10vh;
}
article.home-two-cols section div.right {
  width: 50%;
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}
article.home-two-cols section div.right .image-cube {
  width: 80%;
}
article.home-two-cols section div.right div.content {
  padding-right: 15vw;
  margin-top: 12vw;
}
article.home-two-cols section div.right div.content .default-btn {
  margin-top: 3vw;
}

@media only screen and (max-width: 767px) {
  article.home-two-cols {
    margin-top: 0vw;
  }
  article.home-two-cols section {
    flex-direction: column;
  }
  article.home-two-cols section div.left {
    width: 100%;
  }
  article.home-two-cols section div.left div.content {
    width: 50vw;
  }
  article.home-two-cols section div.left .image-cube {
    width: 80%;
    margin-top: 10vw;
  }
  article.home-two-cols section div.right {
    flex-direction: column-reverse;
    width: 100%;
  }
  article.home-two-cols section div.right .image-cube {
    width: 80%;
  }
  article.home-two-cols section div.right div.content {
    padding-bottom: 15vw;
  }
  article.home-two-cols section div.right div.content .default-btn {
    margin-top: 8vw;
  }
}
article.home-grid-logos section.bg-grey {
  padding-bottom: 5vw;
}
article.home-grid-logos section.bg-grey div.top {
  display: flex;
  align-items: center;
  padding-top: 3vw;
}
article.home-grid-logos section.bg-grey div.top img {
  width: 3vw;
  margin-right: 1vw;
}
article.home-grid-logos section.bg-grey div.top p.title {
  font-size: min(max(20px, 2.4vw), 30px);
}
article.home-grid-logos section.bg-grey div.bottom {
  display: flex;
}
article.home-grid-logos section.bg-grey div.bottom div.left {
  width: 40%;
}
article.home-grid-logos section.bg-grey div.bottom div.left div.content {
  width: 96%;
}
article.home-grid-logos section.bg-grey div.bottom div.left div.content p {
  padding-top: 1vw;
}
article.home-grid-logos section.bg-grey div.bottom div.right {
  width: 60%;
  padding: 1vw 4vw;
  mix-blend-mode: darken;
}
article.home-grid-logos section.bg-grey div.bottom div.right div.grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 3vw;
}
article.home-grid-logos section.bg-grey div.bottom div.right div.grid div.logo {
  padding: 1vw;
  width: 10vw;
  height: 20%;
}
article.home-grid-logos section.bg-grey div.bottom div.right div.grid div.logo img {
  object-fit: contain;
  width: 100%;
  max-width: 15vw;
}

@media only screen and (max-width: 767px) {
  article.home-grid-logos section.bg-grey {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
  article.home-grid-logos section.bg-grey div.top img {
    width: 12vw;
    padding-right: 2vw;
  }
  article.home-grid-logos section.bg-grey div.bottom {
    display: flex;
    flex-direction: column;
  }
  article.home-grid-logos section.bg-grey div.bottom div.left {
    width: 100%;
  }
  article.home-grid-logos section.bg-grey div.bottom div.left div.content {
    width: 96%;
  }
  article.home-grid-logos section.bg-grey div.bottom div.left div.content p {
    padding-top: 4vw;
  }
  article.home-grid-logos section.bg-grey div.bottom div.right {
    width: 100%;
    padding: 0;
    padding-top: 4vw;
  }
  article.home-grid-logos section.bg-grey div.bottom div.right div.grid {
    padding-bottom: 4vw;
  }
  article.home-grid-logos section.bg-grey div.bottom div.right div.grid div.logo {
    width: 25vw;
  }
  article.home-grid-logos section.bg-grey div.bottom div.right div.grid div.logo img {
    object-fit: contain;
    width: 100%;
    max-width: 23vw;
    mix-blend-mode: multiply;
  }
}
article.default-text-center {
  padding-top: 5vw;
  padding-bottom: 0vw;
}
article.default-text-center section {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  flex-direction: column;
}
article.default-text-center section h3 {
  margin-bottom: 1vw;
  text-align: center;
  width: 90%;
}
article.default-text-center section p.title {
  width: 60%;
  text-align: center;
  font-size: min(max(18px, 1.2vw), 30px);
  font-weight: 200;
  line-height: 130%;
  letter-spacing: 0.4px;
}

@media only screen and (max-width: 860px) {
  article.default-text-center {
    padding-top: 15vw;
    padding-bottom: 0vw;
  }
  article.default-text-center section {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    flex-direction: column;
  }
  article.default-text-center section h3 {
    margin-bottom: 1vw;
  }
  article.default-text-center section p.title {
    width: 60%;
    text-align: center;
    font-size: min(max(18px, 1.2vw), 30px);
    font-weight: 200;
  }
}
@media only screen and (max-width: 767px) {
  article.default-text-center {
    padding-top: 20vw;
  }
  article.default-text-center section h3 {
    margin-bottom: 2vw;
  }
  article.default-text-center section p.title {
    width: 90%;
  }
}
article.soluciones-grid section {
  display: flex;
  flex-wrap: wrap;
}
article.soluciones-grid section div.block {
  width: 50%;
  display: flex;
  height: 32vw;
  padding: 2vw;
}
article.soluciones-grid section div.block div.left {
  position: relative;
  border-radius: 30px;
  width: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
article.soluciones-grid section div.block div.left img {
  border-radius: 30px;
}
article.soluciones-grid section div.block div.left .default-btn {
  position: absolute;
  top: 86%;
  left: 50%;
  transform: translate(-50%, -50%);
}
article.soluciones-grid section div.block div.left .default-btn p {
  white-space: nowrap;
}
article.soluciones-grid section div.block div.right {
  padding-left: 2vw;
  width: 50%;
}
article.soluciones-grid section div.block div.right h3 {
  font-size: 200%;
  width: 85%;
}
article.soluciones-grid section div.block div.right ul {
  margin-top: 10px;
  max-height: 52%;
  overflow: auto;
}
article.soluciones-grid section div.block div.right ul li {
  border-bottom: 0.5px solid black;
  padding-bottom: 0.7vw;
  padding-top: 0.7vw;
}
article.soluciones-grid section div.block div.right ul li:last-child {
  border-bottom: none;
}

@media only screen and (max-width: 860px) {
  article.soluciones-grid section div.block {
    width: 100%;
    height: auto;
    padding-top: 10vw;
  }
  article.soluciones-grid section div.block div.left {
    max-height: 50vw;
  }
  article.soluciones-grid section div.block div.right {
    padding-left: 3vw;
  }
  article.soluciones-grid section div.block div.right h3 {
    font-size: 400%;
  }
  article.soluciones-grid section div.block div.right ul {
    max-height: 100%;
  }
  article.soluciones-grid section div.block div.right ul li {
    font-size: 180%;
  }
}
@media only screen and (max-width: 767px) {
  article.soluciones-grid section div.block {
    width: 100%;
    height: auto;
    padding-top: 10vw;
    flex-direction: column-reverse;
  }
  article.soluciones-grid section div.block div.left {
    width: 100%;
    max-height: 90vw;
    min-height: 90vw;
  }
  article.soluciones-grid section div.block div.right {
    width: 100%;
    margin-bottom: 5vw;
  }
  article.soluciones-grid section div.block div.right h3 {
    font-size: 500%;
    margin-bottom: 3vw;
  }
  article.soluciones-grid section div.block div.right ul li {
    padding-bottom: 3vw;
    padding-top: 3vw;
    font-size: 310%;
  }
}
/* Contenedor principal */
.default-btn-up {
  position: fixed;
  bottom: 15px; /* Valor inicial */
  right: 4%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  transition: bottom 0.3s ease-in-out; /* Transición suave */
}

/* Botón de asistencia */
.btn-asistencia {
  height: 3vw;
  width: auto;
  border: 1px solid black;
  background-color: white;
  border-radius: 100px;
  padding: 0 1vw;
  background: linear-gradient(to right, #47E6AC, #FFF7A0);
  background-size: 200% auto;
  transition: background-position 0.5s, transform 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-asistencia span {
  font-size: 1vw;
}

.btn-asistencia:hover {
  background-position: right center;
}

/* Botón de subir */
.btn-up {
  height: 5vw;
  width: 5vw;
  border: 1px solid black;
  background-color: white;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 1s ease-in-out;
}

.btn-up img {
  width: 3vw;
  transition: 0.3s;
}

.btn-up:hover img {
  margin-top: -0.5vw;
}

/* Media queries para pantallas más pequeñas */
@media only screen and (max-width: 860px) {
  .btn-up {
    height: 9vw;
    width: 9vw;
  }
  .btn-up img {
    width: 4vw;
  }
}
@media only screen and (max-width: 767px) {
  .btn-up {
    height: 14vw;
    width: 14vw;
  }
  .btn-up img {
    width: 9vw;
  }
  .btn-asistencia {
    padding: 3vw;
  }
  .btn-asistencia span {
    font-size: 3vw;
  }
}
article.acompanamiento-puntos section div.puntos {
  position: relative;
  height: 105vh;
  margin-bottom: 20vw;
}
article.acompanamiento-puntos section div.puntos img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
article.acompanamiento-puntos section div.puntos #vectorlottie {
  object-fit: contain;
  width: 100%;
  height: 100%;
  margin-left: 10vw;
}
article.acompanamiento-puntos section div.puntos .content {
  position: absolute;
  width: 20vw;
  left: 10%;
}
article.acompanamiento-puntos section div.puntos .content img {
  width: 6vw;
}
article.acompanamiento-puntos section div.puntos .content h4 {
  margin-bottom: 1vw;
}
article.acompanamiento-puntos section div.puntos .content p {
  font-weight: 200;
}
article.acompanamiento-puntos section div.puntos .content-01 {
  top: 8%;
  left: 18%;
}
article.acompanamiento-puntos section div.puntos .content-02 {
  top: 28%;
  left: 70%;
}
article.acompanamiento-puntos section div.puntos .content-03 {
  top: 56%;
  left: 47%;
}
article.acompanamiento-puntos section div.puntos .content-04 {
  top: 70%;
  left: 17%;
}
article.acompanamiento-puntos section div.puntos .content-05 {
  top: 93%;
  left: 75%;
}

.acompanamiento-foot .wrap img {
  max-height: 45%;
  height: 45%;
}

@media only screen and (max-width: 860px) {
  article.acompanamiento-puntos section div.puntos {
    margin-bottom: 5vw;
  }
  article.acompanamiento-puntos section div.puntos .content {
    position: absolute;
    width: 35vw;
    left: 10%;
  }
  article.acompanamiento-puntos section div.puntos .content img {
    width: 6vw;
  }
  article.acompanamiento-puntos section div.puntos .content h4 {
    margin-bottom: 1vw;
  }
  article.acompanamiento-puntos section div.puntos .content p {
    font-weight: 200;
  }
  article.acompanamiento-puntos section div.puntos .content-01 {
    top: 6%;
    left: 7%;
  }
  article.acompanamiento-puntos section div.puntos .content-02 {
    top: 24%;
    left: 64%;
  }
  article.acompanamiento-puntos section div.puntos .content-03 {
    top: 54%;
    left: 53%;
  }
  article.acompanamiento-puntos section div.puntos .content-04 {
    top: 60%;
    left: 10%;
  }
  article.acompanamiento-puntos section div.puntos .content-05 {
    top: 80%;
    left: 65%;
  }
}
@media only screen and (max-width: 767px) {
  article.acompanamiento-puntos section div.puntos {
    margin-bottom: 20vw;
    height: 120vh;
  }
  article.acompanamiento-puntos section div.puntos .content {
    position: absolute;
    width: 50vw;
    left: 10%;
  }
  article.acompanamiento-puntos section div.puntos .content img {
    width: 12vw;
  }
  article.acompanamiento-puntos section div.puntos .content h4 {
    margin-bottom: 1vw;
  }
  article.acompanamiento-puntos section div.puntos .content p {
    font-weight: 200;
  }
  article.acompanamiento-puntos section div.puntos .content-01 {
    top: 2%;
    left: 7%;
  }
  article.acompanamiento-puntos section div.puntos .content-02 {
    top: 23%;
    left: 40%;
  }
  article.acompanamiento-puntos section div.puntos .content-03 {
    top: 43%;
    left: 23%;
  }
  article.acompanamiento-puntos section div.puntos .content-04 {
    top: 65%;
    left: 5%;
  }
  article.acompanamiento-puntos section div.puntos .content-05 {
    top: 84%;
    left: 45%;
  }
}
article.acompanamiento-foot section.w-90 div.top {
  width: 55%;
}
article.acompanamiento-foot section.w-90 div.icos {
  display: flex;
  margin-top: 3vw;
  flex-wrap: wrap;
}
article.acompanamiento-foot section.w-90 div.icos div.wrap {
  padding: 2vw;
  width: 25%;
}
article.acompanamiento-foot section.w-90 div.icos div.wrap h4 {
  font-size: 110%;
  margin-top: 1.5vw;
  max-width: 80%;
}
article.acompanamiento-foot section.w-90 div.icos .wrap:first-child {
  padding-left: 0;
}
article.acompanamiento-foot section.w-90 div.bottom {
  margin-top: 2vw;
  width: 60%;
}
article.acompanamiento-foot section.w-90 div.bottom a.default-btn {
  margin-top: 3vw;
}

@media only screen and (max-width: 860px) {
  article.acompanamiento-foot {
    margin-top: 2vw;
    margin-bottom: 2vw;
  }
  article.acompanamiento-foot section.w-90 div.icos div.wrap img {
    width: 90%;
  }
  article.acompanamiento-foot section.w-90 div.icos div.wrap h4 {
    font-size: 240%;
  }
}
@media only screen and (max-width: 767px) {
  article.acompanamiento-foot {
    margin-top: 2vw;
    margin-bottom: 2vw;
  }
  article.acompanamiento-foot section.w-90 div.top {
    width: 90%;
  }
  article.acompanamiento-foot section.w-90 div.top h2 {
    margin-bottom: 2vw;
  }
  article.acompanamiento-foot section.w-90 div.icos div.wrap {
    width: 50%;
    padding: 5vw;
  }
  article.acompanamiento-foot section.w-90 div.icos div.wrap img {
    width: 90%;
  }
  article.acompanamiento-foot section.w-90 div.icos div.wrap h4 {
    font-size: 390%;
  }
  article.acompanamiento-foot section.w-90 div.icos .wrap:first-child {
    padding-left: 5vw;
  }
  article.acompanamiento-foot section.w-90 div.bottom {
    width: 90%;
    padding-top: 3vw;
  }
  article.acompanamiento-foot section.w-90 div.bottom a.default-btn {
    margin-top: 6vw;
  }
}
article.cta-form section.w-90 div.top {
  width: 55%;
}
article.cta-form section.w-90 div.icos {
  display: flex;
  margin-top: 3vw;
  flex-wrap: wrap;
}
article.cta-form section.w-90 div.icos div.wrap {
  padding: 2vw;
  width: 25%;
}
article.cta-form section.w-90 div.icos div.wrap h4 {
  font-size: 110%;
  margin-top: 1.5vw;
  max-width: 80%;
}
article.cta-form section.w-90 div.icos .wrap:first-child {
  padding-left: 0;
}
article.cta-form section.w-90 div.bottom {
  margin-top: 2vw;
  width: 60%;
}
article.cta-form section.w-90 div.bottom a.default-btn {
  margin-top: 3vw;
}

@media only screen and (max-width: 860px) {
  article.cta-form {
    margin-top: 2vw;
    margin-bottom: 2vw;
  }
  article.cta-form section.w-90 div.icos div.wrap img {
    width: 90%;
  }
  article.cta-form section.w-90 div.icos div.wrap h4 {
    font-size: 240%;
  }
}
@media only screen and (max-width: 767px) {
  article.cta-form {
    margin-top: 2vw;
    margin-bottom: 2vw;
  }
  article.cta-form section.w-90 div.top {
    width: 90%;
  }
  article.cta-form section.w-90 div.top h2 {
    margin-bottom: 2vw;
  }
  article.cta-form section.w-90 div.icos div.wrap {
    width: 50%;
    padding: 5vw;
  }
  article.cta-form section.w-90 div.icos div.wrap img {
    width: 90%;
  }
  article.cta-form section.w-90 div.icos div.wrap h4 {
    font-size: 390%;
  }
  article.cta-form section.w-90 div.icos .wrap:first-child {
    padding-left: 5vw;
  }
  article.cta-form section.w-90 div.bottom {
    width: 90%;
    padding-top: 3vw;
  }
  article.cta-form section.w-90 div.bottom a.default-btn {
    margin-top: 6vw;
  }
}
.pop-info {
  display: none;
  flex-direction: column;
  width: auto;
  padding: 2vw;
  max-width: 600px;
  border-radius: 25px;
}
.pop-info form {
  display: flex;
  flex-direction: column;
}
.pop-info form input {
  margin: 1vw 0;
  padding: 1vw;
  font-size: min(max(14px, 1vw), 20px);
}
.pop-info form button {
  border: 0;
  cursor: pointer;
  color: black;
  font-size: min(max(14px, 1vw), 20px);
  font-weight: 400;
  transition: 0.3s;
  margin: 1vw 0 0;
}
.pop-info .centrado {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
  display: none;
}
.pop-info .centrado button {
  border: 0;
  cursor: pointer;
  color: black;
  font-size: min(max(14px, 1vw), 20px);
  font-weight: 400;
  transition: 0.3s;
  margin: 1vw 0 0;
}

@media only screen and (max-width: 767px) {
  .pop-info {
    flex-direction: column;
    width: auto;
    padding: 8vw;
    max-width: 600px;
    border-radius: 25px;
    margin: 8vw;
  }
  .pop-info form {
    display: flex;
    flex-direction: column;
  }
  .pop-info form input {
    margin: 2vw 0;
    padding: 2vw;
    font-size: min(max(14px, 1vw), 20px);
  }
  .pop-info form button {
    border: 0;
    cursor: pointer;
    color: black;
    font-size: min(max(14px, 1vw), 20px);
    font-weight: 400;
    transition: 0.3s;
    margin: 2vw 0 0;
  }
}
article.default-text-pic section {
  display: flex;
}
article.default-text-pic section div.left {
  width: 50%;
}
article.default-text-pic section div.left h3 {
  margin-bottom: 1vw;
}
article.default-text-pic section div.left p {
  width: 80%;
}
article.default-text-pic section div.right {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
article.default-text-pic section div.right img {
  width: 80%;
  margin-top: 5vw;
}
article.default-text-pic.reverse section {
  flex-direction: row-reverse;
}
article.default-text-pic.reverse section .right {
  justify-content: flex-start;
}
@media only screen and (max-width: 860px) {
  article.default-text-pic section div.left p {
    width: 100%;
  }
  article.default-text-pic section div.right img {
    margin-top: 0vw;
  }
}
@media only screen and (max-width: 767px) {
  article.default-text-pic section {
    flex-direction: column-reverse;
  }
  article.default-text-pic section div.left {
    width: 100%;
  }
  article.default-text-pic section div.left p {
    width: 100%;
  }
  article.default-text-pic section div.right {
    width: 100%;
    height: 40vw;
  }
  article.default-text-pic section div.right img {
    margin-top: -5vw;
  }
  article.default-text-pic.reverse section {
    flex-direction: column;
  }
  article.default-text-pic.reverse section .right img {
    margin-top: 15vw;
  }
}
article.we-are-three-col {
  position: relative;
  display: flex;
  justify-content: center;
  height: 40vw;
}
article.we-are-three-col img {
  opacity: 0.4;
  position: absolute;
}
article.we-are-three-col section {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 2;
  width: 100%;
  width: 100%;
  top: 0;
  left: 0;
  padding-top: 0;
}
article.we-are-three-col section p.title {
  font-size: min(max(20px, 2.4vw), 30px);
}
article.we-are-three-col section div.blocks-wrap {
  display: flex;
  flex-wrap: wrap;
  padding-top: 3vw;
}
article.we-are-three-col section div.blocks-wrap div.block {
  width: 33%;
  padding-right: 5vw;
}
article.we-are-three-col section div.blocks-wrap div.block h4 {
  line-height: 120%;
  width: 70%;
}
article.we-are-three-col section div.blocks-wrap div.block h4 span {
  color: #47E6AC;
  font-weight: 400;
}
article.we-are-three-col section div.blocks-wrap div.block p {
  margin-top: 1vw;
  line-height: 150%;
}

@media only screen and (max-width: 860px) {
  article.we-are-three-col {
    height: 55vw;
  }
  article.we-are-three-col section div.blocks-wrap div.block {
    width: 33%;
    padding-right: 2vw;
  }
}
@media only screen and (max-width: 767px) {
  article.we-are-three-col {
    height: 114vh;
  }
  article.we-are-three-col img {
    width: 150vw;
  }
  article.we-are-three-col section div.blocks-wrap div.block {
    width: 100%;
    padding-right: 2vw;
    padding-top: 8vw;
  }
  article.we-are-three-col section div.blocks-wrap div.block p {
    margin-top: 4vw;
  }
}
article.asistencia section .blocks-wrap .block .default-btn {
  display: flex;
  flex-direction: row;
  margin-top: 15px;
  margin-bottom: 60px;
  max-width: 100%;
}
article.asistencia section .blocks-wrap .block .default-btn p {
  margin-top: 0;
}
article.asistencia section .blocks-wrap .block .default-btn img {
  position: relative;
  max-height: 15px;
  width: auto;
}

@media only screen and (max-width: 767px) {
  article.asistencia section .blocks-wrap .block {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  article.asistencia section .blocks-wrap .block .default-btn {
    margin-bottom: 30px;
    margin: 0;
  }
}
article.we-are-green-foot {
  position: relative;
  padding: 5vw;
  padding-top: 0;
}
article.we-are-green-foot section.w-90 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #47E6AC, #FFF7A0);
  border-radius: 20px;
}
article.we-are-green-foot section.w-90 h3 {
  width: 35%;
  padding: 3vw;
  line-height: 100%;
  color: #FFF;
}
article.we-are-green-foot section.w-90 p {
  width: 65%;
  padding: 3vw;
}

@media only screen and (max-width: 767px) {
  article.we-are-green-foot {
    margin-top: -15vw;
    margin-bottom: 10vw;
  }
  article.we-are-green-foot section.w-90 {
    flex-direction: column;
  }
  article.we-are-green-foot section.w-90 h3 {
    width: 100%;
  }
  article.we-are-green-foot section.w-90 p {
    width: 100%;
  }
}
article.contact-map {
  margin-top: -5vw;
}
article.contact-map section {
  display: flex;
  padding-top: 0;
}
article.contact-map section div.contact-us {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: baseline;
}
article.contact-map section div.contact-us a {
  width: 50%;
  display: flex;
  align-items: baseline;
}
article.contact-map section div.contact-us a p {
  font-size: 170%;
  padding-left: 2vw;
  transition: 0.3s;
}
article.contact-map section div.contact-us a:hover p {
  color: #47E6AC;
}
article.contact-map section.map div.map-wrap {
  border-radius: 50px;
  background-color: #47E6AC;
  height: 40vw;
  width: 100%;
}
article.contact-map section.map div.map-wrap iframe {
  height: 100%;
  width: 100%;
  border-radius: 50px;
}
article.contact-map section.map div.map-wrap .marker {
  background-image: url("../dist/images/logo-senvia.svg");
  background-size: cover;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

@media only screen and (max-width: 860px) {
  article.contact-map section div.contact-us a img {
    width: 20%;
  }
  article.contact-map section div.contact-us a p {
    font-size: 210%;
  }
}
@media only screen and (max-width: 767px) {
  article.contact-map section div.contact-us {
    flex-direction: column;
    padding-top: 2vw;
  }
  article.contact-map section div.contact-us a {
    width: 100%;
    padding-top: 5vw;
  }
  article.contact-map section div.contact-us a img {
    width: 30%;
    padding: 0vw 1vw;
  }
  article.contact-map section div.contact-us a p {
    font-size: 360%;
    padding: 4vw;
  }
  article.contact-map section div.contact-us a:last-child {
    flex-direction: row-reverse;
  }
  article.contact-map section.map {
    padding-bottom: 10vw;
  }
  article.contact-map section.map div.map-wrap {
    height: 60vw;
  }
}
article.partners-grid-logos section.w-90 {
  padding-bottom: 0vw;
}
article.partners-grid-logos section.w-90 div.content {
  width: 100%;
}
article.partners-grid-logos section.w-90 div.content div.grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 3vw;
}
article.partners-grid-logos section.w-90 div.content div.grid div.logo {
  padding: 1vw;
  width: 10vw;
  height: 20%;
}
article.partners-grid-logos section.w-90 div.content div.grid div.logo img {
  object-fit: contain;
  width: 100%;
  max-width: 15vw;
  mix-blend-mode: multiply;
}

@media only screen and (max-width: 860px) {
  article.partners-grid-logos section.w-90 div.content div.grid div.logo {
    width: 15vw;
  }
}
@media only screen and (max-width: 767px) {
  article.partners-grid-logos section.w-90 div.content div.grid div.logo {
    width: 20vw;
  }
}
article.partners-slider section {
  display: flex;
  flex-direction: column;
}
article.partners-slider section div.top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1vw;
}
article.partners-slider section div.top div.grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0vw;
}
article.partners-slider section div.top div.grid .logo {
  padding: 1vw;
  width: 10vw;
  height: 7vw;
  opacity: 0.3;
  display: flex;
  cursor: pointer;
}
article.partners-slider section div.top div.grid .logo img {
  object-fit: contain;
  width: 100%;
  max-width: 15vw;
  mix-blend-mode: multiply;
}
article.partners-slider section div.top div.grid .logo.active {
  border-bottom: 1px solid yellowgreen;
  opacity: 1;
}
article.partners-slider section div.bottom {
  display: flex;
  justify-content: center;
  background: linear-gradient(to right, #47E6AC, #FFF7A0);
  border-radius: 30px;
  padding: 7vw;
}
article.partners-slider section div.bottom div {
  width: 100%;
}
article.partners-slider section div.bottom div div.slide {
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  display: none;
}
article.partners-slider section div.bottom div div.slide .left {
  width: 50%;
}
article.partners-slider section div.bottom div div.slide .left h3 {
  font-size: 310%;
  margin-bottom: 2vw;
}
article.partners-slider section div.bottom div div.slide .left p {
  width: 90%;
}
article.partners-slider section div.bottom div div.slide div.right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
article.partners-slider section div.bottom div div.slide div.right img {
  width: 25vw;
  height: 8vw;
}
article.partners-slider section div.bottom div div.slide div.right div.grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3vw;
}
article.partners-slider section div.bottom div div.slide div.right div.grid div.logo {
  padding: 1vw;
  width: 8vw;
}
article.partners-slider section div.bottom div div.slide div.right div.grid div.logo img {
  object-fit: contain;
  width: 100%;
  max-width: 15vw;
  mix-blend-mode: multiply;
}
article.partners-slider section div.bottom div .slide.active {
  display: flex;
}
article.partners-slider section div.bottom div .flickity-prev-next-button.previous {
  left: -7%;
}
article.partners-slider section div.bottom div .flickity-prev-next-button.next {
  right: -7%;
}

article.partners-slider {
  margin-top: -5vw;
  padding-top: 0;
}
article.partners-slider .w-90 {
  margin-top: 0;
  padding-top: 0;
}

@media only screen and (max-width: 820px) {
  article.partners-slider section div.top div.grid .logo {
    width: 15vw;
  }
  article.partners-slider section div.bottom div div.slide .left {
    width: 70%;
  }
  article.partners-slider section div.bottom div div.slide div.right {
    width: 30%;
  }
  article.partners-slider section div.bottom div .slide.active {
    display: flex;
  }
  article.partners-slider section div.bottom div .flickity-prev-next-button.previous {
    left: -7%;
  }
  article.partners-slider section div.bottom div .flickity-prev-next-button.next {
    right: -7%;
  }
}
@media only screen and (max-width: 767px) {
  article.partners-slider {
    margin-top: -10vw;
  }
  article.partners-slider section div.top div.grid {
    margin-bottom: 5vw;
  }
  article.partners-slider section div.top div.grid .logo {
    width: 19vw;
    height: 20vw;
  }
  article.partners-slider section div.top div.grid .logo img {
    height: 20vw;
  }
  article.partners-slider section div.bottom div div.slide {
    flex-direction: column;
  }
  article.partners-slider section div.bottom div div.slide .left {
    width: 100%;
  }
  article.partners-slider section div.bottom div div.slide .left h3 {
    font-size: 700%;
    margin-top: 4vw;
    margin-bottom: 4vw;
  }
  article.partners-slider section div.bottom div div.slide .left p {
    width: 100%;
  }
  article.partners-slider section div.bottom div div.slide div.right {
    width: 100%;
    padding-top: 5vw;
  }
  article.partners-slider section div.bottom div div.slide div.right img {
    width: 70vw;
    height: 25vw;
  }
  article.partners-slider section div.bottom div div.slide div.right div.grid div.logo {
    width: 20vw;
  }
  article.partners-slider section div.bottom div .slide.active {
    display: flex;
  }
  article.partners-slider section div.bottom div .flickity-prev-next-button.previous {
    left: -7%;
  }
  article.partners-slider section div.bottom div .flickity-prev-next-button.next {
    right: -7%;
  }
}
article.servicios-bolas {
  background-color: white;
  position: relative;
}
article.servicios-bolas section.w-90 {
  position: relative;
  height: 56vw;
  overflow: hidden;
}
article.servicios-bolas section.w-90 img {
  border-radius: 15px;
}
article.servicios-bolas section.w-90 div.absolute {
  position: absolute;
  z-index: 1;
  top: 13%;
  left: 5%;
  width: 92%;
}
article.servicios-bolas section.w-90 div.absolute div.title {
  width: 100%;
  display: flex;
  align-items: flex-end;
  height: 15vw;
  width: 95%;
  margin-bottom: 5vw;
  padding-left: 3vw;
  justify-content: space-between;
}
article.servicios-bolas section.w-90 div.absolute div.title h2 {
  color: white;
  font-size: 450%;
  width: 40%;
  font-family: "DM Sans";
  font-style: normal;
  margin-bottom: 0;
}
article.servicios-bolas section.w-90 div.absolute div.title p {
  color: white;
  width: 50%;
  font-weight: 800;
  font-size: 170%;
  font-family: "Cormorant Garamond";
  font-style: italic;
  margin-bottom: 9px;
}
article.servicios-bolas section.w-90 div.absolute div.slider div.slide {
  padding: 1vw;
}
article.servicios-bolas section.w-90 div.absolute div.slider div.slide .bola {
  background-color: aquamarine;
  height: 20vw;
  width: 20vw;
  border-radius: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
}
article.servicios-bolas section.w-90 div.absolute div.slider div.slide .bola h3 {
  font-size: 140%;
  text-align: center;
  margin-bottom: 1vw;
  padding: 10px 30px;
  min-height: 20%;
}
article.servicios-bolas section.w-90 div.absolute div.slider div.slide .bola img {
  width: 8vw;
  height: 8vw;
  border-radius: 0px;
  max-height: 8vw;
}
article.servicios-bolas section.w-90 div.absolute div.slider div.slide .bola .back {
  background-color: aquamarine;
  height: 20vw;
  width: 20vw;
  border-radius: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  position: absolute;
  z-index: 9;
  opacity: 0;
}
article.servicios-bolas section.w-90 div.absolute div.slider div.slide .bola .back h3 {
  font-size: 1vw;
  line-height: 1.1;
  margin-bottom: 0;
}
article.servicios-bolas section.w-90 div.absolute div.slider div.slide .bola:hover .back {
  opacity: 1;
}

@media only screen and (max-width: 820px) {
  article.servicios-bolas section.w-90 {
    height: 70vw;
  }
  article.servicios-bolas section.w-90 div.absolute div.title {
    height: 20vw;
    align-items: center;
  }
  article.servicios-bolas section.w-90 div.absolute div.title h2 {
    font-size: 500%;
    width: 50%;
  }
  article.servicios-bolas section.w-90 div.absolute div.title p {
    font-size: 230%;
  }
  article.servicios-bolas section.w-90 div.absolute div.slider div.slide .bola {
    height: 28vw;
    width: 28vw;
  }
  article.servicios-bolas section.w-90 div.absolute div.slider div.slide .bola h3 {
    font-size: 170%;
  }
  article.servicios-bolas section.w-90 div.absolute div.slider div.slide .bola img {
    width: 10vw;
    height: 10vw;
    max-height: 12vw;
  }
  article.servicios-bolas section.w-90 div.absolute div.slider div.slide .bola .back {
    height: 28vw;
    width: 28vw;
  }
  article.servicios-bolas section.w-90 div.absolute div.slider div.slide .bola .back h3 {
    font-size: 140%;
  }
}
@media only screen and (max-width: 767px) {
  article.servicios-bolas section.w-90 {
    height: 160vw;
  }
  article.servicios-bolas section.w-90 div.absolute div.title {
    height: 55vw;
    align-items: center;
    flex-direction: column;
    margin-bottom: 2vw;
    justify-content: flex-start;
  }
  article.servicios-bolas section.w-90 div.absolute div.title h2 {
    font-size: 750%;
    width: 100%;
    margin-bottom: 8vw;
  }
  article.servicios-bolas section.w-90 div.absolute div.title p {
    font-size: 400%;
    width: 100%;
  }
  article.servicios-bolas section.w-90 div.absolute div.slider div.slide .bola {
    height: 65vw;
    width: 65vw;
  }
  article.servicios-bolas section.w-90 div.absolute div.slider div.slide .bola h3 {
    font-size: 450%;
    line-height: 120%;
    padding: 10px 20px;
  }
  article.servicios-bolas section.w-90 div.absolute div.slider div.slide .bola img {
    width: 25vw;
    height: 25vw;
    max-height: 25vw;
  }
  article.servicios-bolas section.w-90 div.absolute div.slider div.slide .bola .back {
    height: 65vw;
    width: 65vw;
  }
  article.servicios-bolas section.w-90 div.absolute div.slider div.slide .bola .back h3 {
    font-size: 270%;
  }
}
article.servicios-grid section.grid {
  display: flex;
  flex-wrap: wrap;
}
article.servicios-grid section.grid div.block {
  width: 33%;
  display: flex;
  flex-direction: column;
  padding: 2vw;
}
article.servicios-grid section.grid div.block img {
  width: 100%;
  height: 15vw;
  margin-bottom: 1vw;
}
article.servicios-grid section.grid div.block h3 {
  font-size: 270%;
  margin-bottom: 1vw;
}
article.servicios-grid section.grid div.block p {
  width: 95%;
}

@media only screen and (max-width: 767px) {
  article.servicios-grid section.grid div.block {
    width: 100%;
    padding: 4vw;
  }
  article.servicios-grid section.grid div.block img {
    width: 100%;
    height: 50vw;
    margin-bottom: 3vw;
  }
  article.servicios-grid section.grid div.block h3 {
    font-size: 670%;
    margin-bottom: 3vw;
  }
  article.servicios-grid section.grid div.block p {
    width: 95%;
  }
}
#scrollbar-solutions::-webkit-scrollbar {
  width: 12px;
}

#scrollbar-solutions::-webkit-scrollbar-track {
  background-color: rgb(248, 248, 248);
  border-radius: 20px;
}

#scrollbar-solutions::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 3px solid transparent;
  background-clip: content-box;
  background-color: #4AE6AC;
}

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