/*
	Theme Name: Preveo Template
	Theme URI: https://llos.xyz
	Description: Preveo template
	Version: 1.0
	Author: LLOS&
	Author URI: http://llos.xyz
	Text Domain: llos
	Domain Path: /lang
*/
/*	Variables
	---- */
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Instrument+Serif:ital@0;1&display=swap");
:root {
  --100vh: calc(var(--vh, 1vh) * 100);
  --black: #1e1e1e;
}

/*	Typography
	---------- */
/*	Misc
	---- */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  background: #ffffff;
  color: var(--black);
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 20px;
}

strong {
  font-weight: 600;
}

.serif {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: normal;
}

.serif-italic {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
}

a {
  color: #fff;
  transition: all 0.25s ease-in-out;
  text-decoration: none;
  outline: none;
}

a:hover,
a:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

h2 {
  font-size: 64px;
  line-height: 64px;
  text-align: center;
}

p {
  margin-block-start: 0;
  margin-block-end: 1em;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

section {
  position: relative;
}

.transition {
  transition: all 0.25s ease-in-out;
}

.mobile {
  display: none;
}

.desktop {
  display: block;
}

.max-width {
  max-width: 1464px;
  margin: 0 auto;
}

.side-padding {
  padding: 0 70px;
}

.round-btn {
  background-color: var(--black);
  color: #fff;
  border-radius: 1.5em;
  padding: 7px 28px;
  font-size: 18px;
  line-height: 20px;
  cursor: pointer;
  display: inline-block;
}
.round-btn:hover, .round-btn:focus {
  background-color: rgb(60, 60, 60);
}

.forminator-button-submit {
  background-color: var(--black);
  color: #fff;
  border-radius: 1.5em !important;
  padding: 7px 28px !important;
  font-size: 18px !important;
  line-height: 20px !important;
  cursor: pointer;
}
.forminator-button-submit:hover, .forminator-button-submit:focus {
  background-color: rgb(60, 60, 60);
}

.round-corners {
  border-radius: 1.5rem;
}

.drop-shadow {
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.25);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.coffee {
  top: -70px;
  left: 40%;
  z-index: -1;
}

.sun {
  top: -70px;
  right: 10%;
  z-index: -1;
}

.activity {
  top: 20%;
  right: 0;
  z-index: -1;
}

.map-pin {
  top: 21%;
  left: 10%;
  z-index: -1;
}

.lock {
  bottom: -70px;
  right: 15%;
  z-index: -1;
}

.alert-circle {
  bottom: 0px;
  left: 35%;
  z-index: -1;
}

.check-circle {
  top: -100px;
  left: 8%;
  z-index: -1;
}

.clock {
  top: -60px;
  right: 8%;
  z-index: -1;
}

.settings {
  top: -30px;
  right: 15%;
  z-index: -1;
}

.arrow-right-circle {
  bottom: 50px;
  left: 25%;
  z-index: -1;
}

.send {
  bottom: -60px;
  right: 8%;
  z-index: -1;
}

.filter {
  bottom: 80px;
  left: 15%;
  z-index: -1;
}

.crosshair {
  bottom: 50px;
  right: 15%;
  z-index: -1;
}

.smile {
  bottom: 50px;
  right: 9%;
  z-index: 1;
}

.icon {
  position: absolute;
}

.appear {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
  will-change: transform, opacity;
  position: absolute;
  inset: 0;
}

.appear.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger with delays */
.appear:nth-child(1) {
  transition-delay: 0s;
}

.appear:nth-child(2) {
  transition-delay: 0.2s;
  z-index: 2;
}

.appear:nth-child(3) {
  transition-delay: 0.5s;
}

/*	Header
	------ */
.header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 17px;
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 99;
}
.header .center-section {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
}
.header .btns-cont {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header--scrolled {
  border-bottom: 1px solid lightgrey;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo a {
  height: 35px;
}
.header-logo img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.login-account {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.login-account .user-icon {
  padding: 6px;
  box-sizing: border-box;
  height: 32px;
}
.login-account .user-icon img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.languages {
  font-size: 16px;
  line-height: 20px;
}
.languages .wpml-ls-current-language {
  font-weight: 600;
}
.languages ul {
  display: flex;
}
.languages li:not(:last-child)::after {
  content: "|";
  margin-right: 2px;
  color: var(--black);
}
.languages a {
  color: var(--black);
}

.hero-cont {
  margin-top: 15px;
  position: relative;
  margin-bottom: 180px;
  display: flex;
  flex-flow: column;
}
.hero-cont .hero-inner {
  background-color: var(--black);
  color: #fff;
  margin-bottom: 100px;
  padding: 60px 40px 0px 40px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  aspect-ratio: 5/2.6;
  box-sizing: border-box;
  position: relative;
}
.hero-cont .preveo-tour-btn {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.preveo-tour-pop-up .intro-video {
  position: relative;
  width: 60%;
  flex: 0 0 auto;
}
.preveo-tour-pop-up .intro-video video {
  width: 100%;
  height: auto;
}
.preveo-tour-pop-up .intro-video .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 99;
}
.preveo-tour-pop-up .intro-video .close-btn svg {
  width: 12px;
  height: 12px;
}

.logo-title-row {
  margin: 0 auto;
  text-align: center;
  max-width: 750px;
  width: 750px;
  width: 60%;
  z-index: 3;
}
.logo-title-row h2 {
  font-size: 64px;
  line-height: 64px;
  font-size: min(64px, 4vw);
  line-height: min(64px, 4vw);
}

.logo-white-inline {
  height: min(55px, 3.5vw);
  display: inline-block;
}
.logo-white-inline svg {
  width: auto;
  height: 100%;
}
.logo-white-inline svg path {
  fill: #fff !important;
}

.logo-black svg {
  width: 100%;
  height: auto;
}
.logo-black svg path {
  fill: var(--black);
}

.logo-white svg {
  width: 100%;
  height: auto;
}
.logo-white svg path {
  fill: #fff !important;
}

.hero-laptop-cont {
  width: 60%;
  margin: 0 auto;
  margin-bottom: -80px;
  position: relative;
}
.hero-laptop-cont img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.hero-laptop-cont .hero-laptop {
  position: relative;
  z-index: 0;
}
.hero-laptop-cont .hero-video {
  position: absolute;
  top: 4%;
  left: 10%;
  right: 10%;
  height: 83%;
  z-index: 0;
}
.hero-laptop-cont .hero-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-elements {
  position: absolute;
  inset: 0;
}
.hero-elements .yellow {
  width: 20%;
  position: absolute;
  right: 2%;
  bottom: 15%;
}
.hero-elements .green {
  width: 25%;
  position: absolute;
  left: 7%;
  top: 40%;
}
.hero-elements .pink {
  width: 20%;
  position: absolute;
  bottom: 5%;
  right: 20%;
}
.hero-elements .yellow,
.hero-elements .pink,
.hero-elements .green {
  height: auto;
  position: absolute;
}
.hero-elements .yellow img,
.hero-elements .pink img,
.hero-elements .green img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-elements .loader {
  position: absolute;
  top: 73px;
  left: 80px;
}
.hero-elements .pie-chart {
  position: absolute;
  top: 45px;
  right: 130px;
}
.hero-elements .bar-chart {
  position: absolute;
  bottom: 20px;
  right: 90px;
}

/*	intro
	------ */
.intro-cont {
  margin-bottom: 100px;
}
.intro-cont h2 {
  margin-bottom: 115px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.intro-cont p {
  font-size: 24px;
}

/*	ventajas
	------ */
.ventajas-cont {
  padding-bottom: 250px;
  text-align: center;
}
.ventajas-cont h2 {
  margin-block-end: 45px;
}
.ventajas-cont .ventaja-item {
  padding: 40px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.ventajas-cont .ventaja-title {
  font-size: 24px;
  margin-block-end: 5px;
  line-height: 32px;
  font-weight: 600;
}
.ventajas-cont img {
  padding: 20px;
}

.benificiarios-cont {
  padding-bottom: 90px;
  text-align: center;
}
.benificiarios-cont h2 {
  margin-block-end: 45px;
}
.benificiarios-cont h3 {
  font-weight: 600;
  font-size: 24px;
  margin-block-end: 10px;
}
.benificiarios-cont .benificiario-image {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.benificiarios-cont img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.benificiarios-cont .grid-4 {
  margin-bottom: 90px;
  align-items: flex-end;
}

.acceso-cont {
  padding-bottom: 200px;
}
.acceso-cont .pricing-btn {
  margin-top: 15px;
}

.acceso-swiper {
  overflow: hidden;
  width: 100%;
  height: 20vw;
  margin-bottom: 25px;
}
.acceso-swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.acceso-inner {
  position: relative;
  background-color: var(--black);
  color: #fff;
  padding: 40px;
  text-align: center;
}
.acceso-inner .bottom-section {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
}

.acceso-cto-cont {
  background-color: #fff;
  color: var(--black);
  padding: 25px;
  padding-bottom: 30px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 13px;
  margin-top: -240px;
  z-index: 10;
}
.acceso-cto-cont .logo {
  width: 220px;
}

.popup-cont {
  position: fixed;
  inset: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.popup {
  background-color: #fff;
  width: 550px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  z-index: 999;
  padding: 30px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.popup .logo {
  margin-bottom: 30px;
  width: 136px;
}
.popup .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.popup .close-btn svg {
  width: 12px;
  height: 12px;
}
.popup h3 {
  text-align: center;
  font-size: 24px;
}

.acceso-pop-up h3 {
  width: 65%;
}
.acceso-pop-up a {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
}

.pricing-pop-up {
  text-align: center;
}
.pricing-pop-up .computer-small {
  width: 264px;
  margin-bottom: 20px;
}
.pricing-pop-up .computer-small img {
  width: 100%;
  height: auto;
  display: block;
}
.pricing-pop-up .highlight {
  background-color: #ffce00;
  border-radius: 14px;
  padding: 10px;
  font-size: 25px;
}

.popup-cont.active {
  display: flex;
}

#consent-1 {
  margin-top: 30px;
}

#consent-2 {
  margin-top: 10px;
}

.forminator-button-submit {
  margin-top: 60px !important;
}

.forminator-edit-module {
  display: none;
}

.forminator-ui {
  margin: 0 !important;
}

.forminator-row-last .forminator-field {
  display: flex;
  justify-content: center;
}

.forminator-button-submit {
  padding-left: 70px !important;
  padding-right: 70px !important;
}

.forminator-row {
  margin-bottom: 0 !important;
}

/*	faq
	------ */
.faq-cont {
  margin-top: 90px;
  padding-bottom: 300px;
}

.faq-inner {
  background-color: #f3f3f3;
  padding: 0px 90px 0px 90px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.faq-header {
  background-color: #fdbdc9;
  padding: 50px 25px 70px 50px;
  display: inline-flex;
  gap: 35px;
  justify-content: flex-start;
  align-items: center;
  margin-top: -90px;
  margin-right: auto;
}

.faq-text {
  width: 70%;
  min-width: 600px;
  margin-left: auto;
  margin-top: 90px;
  margin-bottom: 90px;
}
.faq-text h3,
.faq-text h2 {
  font-size: 24px;
  font-weight: 600;
}

.faq-contact {
  background-color: #fdbdc9;
  padding: 25px 60px 20px 45px;
  display: inline-flex;
  gap: 55px;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: -50px;
  margin-left: auto;
}
.faq-contact p {
  margin-block-end: 0;
}

.simple-page {
  margin-top: 50px;
  margin-bottom: 150px;
}
.simple-page h2 {
  font-size: 24px;
  font-weight: 600;
  text-align: left;
}

/*	Footer
	------ */
.footer {
  padding-bottom: 100px;
}

.footer-inner {
  background-color: var(--black);
  color: #fff;
  margin-bottom: 45px;
  padding: 85px 40px 85px 40px;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  gap: 45px;
  box-sizing: border-box;
  position: relative;
}
.footer-inner .logo {
  width: 190px;
  height: 85px;
}
.footer-inner .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  row-gap: 30px;
  justify-content: space-around;
}
.footer-logos .logo {
  height: 50px;
}
.footer-logos .logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*	Responsive
	------ */
@media (max-width: 1100px) {
  /*	Header
  ------ */
  .header {
    padding-top: 15px;
    padding-bottom: 15px;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
  }
  .header .desktop {
    display: none;
  }
  .hero-cont {
    margin-bottom: 200px;
  }
  .header-logo {
    flex-flow: column;
    align-items: center;
    gap: 0;
    width: 120px;
    height: 100%;
  }
  .header-logo a {
    width: 100%;
    height: 100%;
  }
  .header-logo img {
    width: 100%;
    height: auto;
  }
  .login-account {
    margin-left: 0;
  }
  .login-account .user-icon {
    padding: 2px;
  }
  .grid-3,
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}
@media (max-width: 768px) {
  .header .btns-cont {
    align-items: center;
    gap: 5px;
    flex-flow: column;
  }
  .languages {
    font-size: 14px;
  }
  h2 {
    font-size: 40px;
    line-height: 40px;
  }
  .round-btn {
    border-radius: 1.5em !important;
    padding: 4px 12px !important;
    font-size: 13px !important;
    line-height: 18px !important;
  }
  .acceso-cont .round-btn,
  .popup .round-btn,
  .forminator-button-submit {
    padding: 12px 35px !important;
    font-size: 20px !important;
    line-height: 20px !important;
    cursor: pointer;
  }
  .acceso-cont .round-btn:hover, .acceso-cont .round-btn:focus,
  .popup .round-btn:hover,
  .popup .round-btn:focus,
  .forminator-button-submit:hover,
  .forminator-button-submit:focus {
    background-color: rgb(60, 60, 60);
  }
  .acceso-cont .pricing-btn {
    margin-top: 15px;
  }
  .side-padding {
    padding-left: 15px;
    padding-right: 15px;
  }
  .grid-3,
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
  }
  .icon {
    scale: 0.7;
  }
  .coffee {
    top: -100px;
    left: 9%;
  }
  .sun {
    top: -90px;
  }
  .alert-circle {
    bottom: -50px;
    left: 5%;
  }
  .settings {
    top: -100px;
    right: 0%;
  }
  .clock {
    top: -60px;
    right: 30%;
  }
  .smile {
    right: 2%;
    bottom: 280px;
  }
  .arrow-right-circle {
    bottom: 80px;
    left: 5%;
  }
  .send {
    bottom: 40px;
    right: 8%;
  }
  .logo-white-inline {
    height: 35px;
  }
  /*	Hero
  ------ */
  .hero-cont {
    margin-bottom: 100px;
  }
  .hero-cont .hero-inner {
    margin-bottom: 100px;
    padding: 60px 20px 0px 20px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    aspect-ratio: 2/2.7;
  }
  .logo-title-row {
    width: 100%;
  }
  .logo-title-row h2 {
    font-size: 40px;
    line-height: 40px;
  }
  .hero-laptop-cont {
    width: 100%;
    z-index: 1;
    margin-bottom: -50px;
  }
  .hero-elements .green {
    display: none;
  }
  .hero-elements .yellow {
    width: 45%;
    bottom: 3%;
    z-index: 0;
  }
  .hero-elements .pink {
    width: 45%;
    left: 5%;
    right: auto;
    bottom: 20%;
    z-index: 10;
  }
  .hero-elements .loader {
    top: 40%;
    left: 0px;
  }
  .hero-elements .pie-chart {
    top: 15px;
    right: 15px;
  }
  .hero-elements .bar-chart {
    bottom: 5px;
    right: 0;
    display: none;
  }
  .preveo-tour-pop-up .intro-video {
    width: 98%;
  }
  .acceso-inner {
    padding: 15px;
  }
  .acceso-inner .bottom-section {
    flex-flow: column;
    gap: 60px;
    padding-right: 0px;
  }
  .acceso-swiper {
    height: 70vw;
  }
  .acceso-cto-cont {
    padding: 25px 25px 30px 25px;
    margin-top: 50px;
    margin-bottom: -120px;
    gap: 13px;
  }
  .popup {
    width: calc(100% - 40px);
  }
  .acceso-pop-up .popup {
    max-height: 85vh;
    overflow-y: scroll;
    justify-content: flex-start;
  }
  .acceso-pop-up .popup h3 {
    width: 100%;
  }
  .forminator-ui.forminator-custom-form[data-grid=open] .forminator-col:not(:last-child) {
    margin-bottom: 0 !important;
  }
  .forminator-ui.forminator-custom-form[data-design=material] .forminator-button {
    width: auto !important;
  }
  .faq-cont {
    padding-bottom: 250px;
  }
  .faq-header {
    padding: 15px;
    gap: 20px;
    flex: 0 0 auto;
    width: 310px;
    margin-top: -90px;
  }
  .faq-header h2 {
    text-align: left;
  }
  .faq-contact {
    gap: 20px;
    padding: 25px 20px 20px 30px;
    padding-bottom: -50px;
  }
  .faq-inner {
    padding: 0px;
  }
  .faq-text {
    width: 100%;
    min-width: auto;
    margin-left: auto;
    margin-top: 90px;
    margin-bottom: 90px;
    padding-left: 15px;
    padding-right: 15px;
  }
  /*	Footer
  ------ */
  .footer-inner {
    margin-bottom: 70px;
    padding: 80px 20px 80px 20px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  .footer-logos {
    row-gap: 40px;
  }
  .footer-logos .logo {
    height: 47px;
    width: 48%;
  }
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
}
@media (max-width: 380px) {
  .header-logo {
    width: 100px;
  }
}/*# sourceMappingURL=style.css.map */