html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* Fonts */
@font-face {
  font-family: "Archia";
  src: url("/fonts/archia-regular-webfont.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archia";
  src: url("/fonts/archia-semibold-webfont.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archia";
  src: url("/fonts/archia-bold-webfont.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* default theme */
/*	Font Import	*/
/* Lenis */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/*	General	*/
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  background-color: #f5f5f5;
  color: #000;
  font-size: 16px;
  font-size: calculateRem(16px);
  font-family: "Archia";
}

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

li {
  list-style: none;
}

a {
  cursor: pointer;
  outline: none;
  color: #000;
  transition: all 0.3s ease-out;
}

a img {
  transition: all 0.3s ease-out;
}

p {
  line-height: 130%;
}

p + p {
  margin-top: 15px;
}

/* formularios */
button.btn,
a.btn {
  transition: all 0.3s ease-out;
  border: none;
  font-size: 25px;
  font-size: calculateRem(25px);
  background: none repeat scroll 0 0 #f3b7a5;
  color: #000;
  margin: 0 0 5px 0;
  padding: 0px 18px;
  border: 3px solid #f3b7a5;
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  text-decoration: none;
  -webkit-appearance: none;
  border-radius: 30px;
  outline: none;
  cursor: pointer;
  min-height: 48px;
  justify-content: space-between;
  position: relative;
}
button.btn span,
a.btn span {
  font-size: 16px;
}
button.btn u,
a.btn u {
  background-color: #000;
  color: #fff;
  display: inline-block;
  padding: 17px 10px;
  margin: 0 8px 0 10px;
  text-decoration: none;
}
@media only screen and (max-width: 560px) {
  button.btn u,
  a.btn u {
    padding: 23px 12px;
  }
}
button.btn span + i,
a.btn span + i {
  margin-left: 15px;
}
button.btn i + span,
a.btn i + span {
  margin-left: 15px;
}
@media only screen and (min-width: 900px) {
  button.btn:hover,
  a.btn:hover {
    background-color: #fff;
    opacity: 1;
  }
}
button.btn.btn-inv,
a.btn.btn-inv {
  background-color: #fff;
}
@media only screen and (min-width: 900px) {
  button.btn.btn-inv:hover,
  a.btn.btn-inv:hover {
    border-color: #fff;
    background-color: #f3b7a5;
  }
}

.botones {
  display: flex;
}
.botones .btn + .btn {
  margin-left: 10px;
}

/* forms */
.input, .submit {
  display: block;
  margin-bottom: 20px;
  position: relative;
}
.input:last-child, .submit:last-child {
  margin-bottom: 0;
}
.input label, .submit label {
  display: block;
  margin-bottom: 8px;
}
.input label span, .submit label span {
  display: block;
  margin-top: 0px;
  margin-bottom: 8px;
  opacity: 0.5;
  font-size: 15px;
  line-height: 120%;
}
.input label i, .submit label i {
  float: right;
}
.input label + p, .submit label + p {
  margin-top: -3px;
  margin-bottom: 8px;
  opacity: 0.5;
  font-size: 15px;
  line-height: 120%;
}
.input label + p i, .submit label + p i {
  color: #666666;
}
.input label.error, .submit label.error {
  margin-top: 8px;
  font-weight: 600;
  color: red;
  font-size: 15px;
  order: 2;
}
.input select, .submit select {
  display: block;
  font-size: 17px;
  font-size: calculateRem(17px);
  letter-spacing: 0.5px;
  color: #444;
  line-height: 1.3;
  padding: 14px 20px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border: 2px solid transparent;
  box-shadow: none;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #f7f7f7;
  background-image: url("/img/ico-sort-down.svg");
  background-repeat: no-repeat, repeat;
  background-position: right 18px top 3px, 0 0;
  background-size: 20px auto, 100%;
}
.input select::-ms-expand, .submit select::-ms-expand {
  display: none;
}
.input select:focus, .submit select:focus {
  border-color: #f3b7a5;
  box-shadow: none;
  color: #222;
  outline: none;
}
.input select option, .submit select option {
  font-weight: normal;
}
.input textarea,
.input input, .submit textarea,
.submit input {
  width: 100%;
  border-radius: 0px;
  color: #000;
  border: 2px solid transparent;
  background-color: #f7f7f7;
  padding: 15px 20px;
  font-size: 17px;
  font-size: calculateRem(17px);
  letter-spacing: 0.5px;
}
.input textarea:focus,
.input input:focus, .submit textarea:focus,
.submit input:focus {
  border-color: #f3b7a5;
  outline: none;
}
.input textarea[type=submit],
.input input[type=submit], .submit textarea[type=submit],
.submit input[type=submit] {
  -webkit-appearance: none;
  cursor: pointer;
  background-color: #000;
  color: #fff;
}
@media only screen and (min-width: 900px) {
  .input textarea[type=submit]:hover,
  .input input[type=submit]:hover, .submit textarea[type=submit]:hover,
  .submit input[type=submit]:hover {
    border-color: #e14b1e;
    background-color: #e14b1e;
  }
}
.input textarea[type=submit]:active,
.input input[type=submit]:active, .submit textarea[type=submit]:active,
.submit input[type=submit]:active {
  border-color: #bbb;
  background-color: #bbb;
}
.input div.error-message, .submit div.error-message {
  margin-top: 8px;
  font-weight: 600;
  color: red;
  font-size: 15px;
}
.input > i, .submit > i {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: #bbb;
  transform: scale(1.5);
  transition: transform 0.3s ease-out;
  background-color: #f7f7f7;
  padding-left: 6px;
}
.input input:focus + i, .submit input:focus + i {
  transform: scale(0);
}
.input.submit > i, .submit.submit > i {
  background-color: transparent;
}
.input.radio label, .submit.radio label {
  margin-bottom: 0;
}
.input.radio input, .submit.radio input {
  width: auto;
}
.input.radio input:focus, .submit.radio input:focus {
  width: auto;
  margin: 0 4px 0 0;
  padding: 0;
  border: none;
}
.input.checkbox, .submit.checkbox {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  cursor: pointer;
  font-size: 15px;
  user-select: none;
}
.input.checkbox label, .submit.checkbox label {
  width: calc(100% - 54px);
  margin-bottom: 0;
  margin-top: 3px;
}
.input.checkbox label a, .submit.checkbox label a {
  text-decoration: underline;
}
.input.checkbox input, .submit.checkbox input {
  width: 20px;
  cursor: pointer;
  width: auto;
  z-index: 2;
  margin-right: 9px;
}
.input.checkbox p, .submit.checkbox p {
  width: 100%;
  margin-top: 2px;
  margin-bottom: 8px;
  opacity: 0.5;
  font-size: 15px;
  line-height: 120%;
}
.input.radio, .submit.radio {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 15px;
  user-select: none;
}
.input.radio label, .submit.radio label {
  margin-bottom: 0;
}
.input.radio input, .submit.radio input {
  /* Hide the browser's default checkbox */
  position: absolute;
  opacity: 0;
  cursor: pointer;
  top: 8px;
  right: 7px;
  width: auto;
  z-index: 2;
}
.input.radio input:focus, .submit.radio input:focus {
  margin: 3px 4px 0 0px;
}
.input.time, .submit.time {
  display: flex;
  flex-wrap: wrap;
  line-height: 48px;
  top: -5px;
}
.input.time label, .submit.time label {
  width: 100%;
  margin-bottom: 0;
  line-height: 29px;
}
.input.time select, .submit.time select {
  width: calc(50% - 8px);
  margin-right: 4px;
}
.input.time select:last-child, .submit.time select:last-child {
  margin-right: 0;
  margin-left: 4px;
}
.input.date input, .submit.date input {
  padding: 12px 20px;
}

.submit {
  margin-bottom: 0;
}
.submit label {
  margin-bottom: 15px;
}
.submit input[type=submit] {
  transition: all 0.3s ease-out;
  font-size: 14px;
  font-size: calculateRem(14px);
  background: none repeat scroll 0 0 #f3b7a5;
  color: #000;
  display: inline-block;
  margin: 0;
  text-decoration: none;
  border-radius: 0px;
  outline: none;
  cursor: pointer;
  padding: 0px 18px;
  border: 3px solid #f3b7a5;
  display: flex;
  white-space: nowrap;
  align-items: center;
  -webkit-appearance: none;
  border-radius: 30px;
  min-height: 48px;
}
@media only screen and (min-width: 900px) {
  .submit input[type=submit]:hover {
    background-color: #fff;
    border: 3px solid #f3b7a5;
  }
}
.submit > i {
  bottom: 14px;
  color: #000;
}

.doble {
  display: flex;
}
.doble .input {
  width: 100%;
  margin-right: 10px;
}
.doble .input > i {
  bottom: 19px;
}
.doble .input:last-child {
  margin-right: 0;
  margin-bottom: 15px;
}
@media only screen and (max-width: 560px) {
  .doble {
    display: block;
  }
  .doble input {
    margin-right: 0;
  }
}

.show-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 56px;
  height: 56px;
  padding: 17px 15px;
  background-color: #f3b7a5;
}
@media only screen and (max-width: 560px) {
  .show-menu {
    display: flex;
    position: fixed;
    z-index: 9998;
    left: 0;
    top: 0;
  }
}
.show-menu em {
  position: absolute;
  clip: rect(1px 1px 1px 1px); /* for Internet Explorer */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.show-menu i {
  transition: all 0.3s ease-out;
  width: 100%;
  height: 2px;
  display: inline-block;
  background-color: #000;
  position: relative;
}
.show-menu.open {
  background-color: #00a593;
}
.show-menu.open i {
  background-color: #fff;
}
.show-menu.open i:nth-child(2) {
  bottom: -10px;
  transform: rotate(45deg);
}
.show-menu.open i:nth-child(3) {
  transform: scale(0);
}
.show-menu.open i:nth-child(4) {
  top: -10px;
  transform: rotate(-45deg);
}

.main {
  padding-top: 86px;
  margin: 0 auto;
  max-width: 1500px;
  background-color: #fff;
}
@media only screen and (max-width: 560px) {
  .main {
    padding-top: 55px;
  }
}

header {
  position: fixed;
  z-index: 10;
  left: 0;
  width: 100%;
  top: 0;
}
header .header-box {
  background-color: #eee193;
  padding: 10px 10px 10px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}
@media only screen and (max-width: 800px) {
  header .header-box {
    padding: 10px 30px;
  }
}
@media only screen and (max-width: 560px) {
  header .header-box {
    padding: 10px;
  }
}
header .logo {
  margin-left: 20px;
}
header .logo a {
  background: url("/img/logo-mmove.svg") no-repeat left top;
  width: 180px;
  height: 42px;
  display: block;
  background-size: 100% auto;
  position: relative;
  overflow: hidden;
  text-indent: -9999px;
  transition: transform 0.3s ease-out;
}
@media only screen and (max-width: 560px) {
  header .logo a {
    height: 37px;
    width: 148px;
    margin-left: auto;
  }
}
.menu-open header .logo a {
  transform: translateY(-200%);
}
header .menu {
  margin-left: auto;
  /*
  ul {
  	display: flex;
  	@include mobile {
  		display: block;
  	}
  	li {
  		&+li {
  			margin-left: 2px;
  			@include mobile {
  				margin-left: 0;
  				border-top: 2px solid $blanco;
  			}
  		}

  		a {
  			font-size: 13px;
  			font-weight: bold;
  			text-decoration: none;
  			padding: 24px 15px;
  			@include mobile {
  				font-size: 14px;
  				display: block;
  				padding: 25px 20px;
  				color: $blanco;
  			}
  			&:hover {
  				background-color: $rosa;
  			}
  		}
  		&:last-child {
  			a {
  				background-color: $verde;
  				color: $blanco;
  				&:hover {
  					background-color: $rosa;
  				}
  				@include mobile {
  					color: darken($dos, 60%);
  					background-color: $blanco;
  				}
  			}
  		}
  	}
  }
  */
}
@media only screen and (max-width: 560px) {
  header .menu {
    transition: all 0.3s ease-out;
    z-index: 9998;
    position: fixed;
    top: 55px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00a593;
    transform: translateX(-100%);
  }
  header .menu.open {
    transform: translateX(0);
  }
}
@media only screen and (max-width: 560px) {
  header .btn {
    height: 30px;
    min-height: 30px;
  }
  header .btn span {
    font-size: 13px;
  }
  header .btn i {
    font-size: 20px;
  }
}
header .idiomas {
  display: flex;
  align-items: center;
  margin-left: 30px;
}
@media only screen and (max-width: 560px) {
  header .idiomas {
    transition: all 0.3s ease-out;
    z-index: 9999;
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 55px;
    margin-left: 0;
    transform: translateX(-100%);
    justify-content: flex-end;
    background-color: #e76f4b;
  }
  header .idiomas.open {
    transform: translateX(0);
  }
}
header .idiomas > i {
  margin-right: 10px;
  font-size: 20px;
  position: relative;
  top: 1px;
}
@media only screen and (max-width: 560px) {
  header .idiomas > i {
    color: #fff;
    margin-right: auto;
    margin-left: 20px;
  }
}
header .idiomas ul {
  display: flex;
}
@media only screen and (max-width: 560px) {
  header .idiomas ul li {
    border-left: 2px solid #fff;
  }
}
header .idiomas ul li a {
  font-size: 11px;
  text-decoration: none;
}
@media only screen and (max-width: 560px) {
  header .idiomas ul li a {
    display: inline-block;
    color: #fff;
    padding: 22px;
  }
}
header .idiomas ul li a:hover {
  color: #f3b7a5;
}
header .idiomas ul li a.active {
  font-weight: 600;
}
header .idiomas ul li + li {
  margin-left: 5px;
}
@media only screen and (max-width: 800px) {
  header .idiomas ul li + li {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 560px) {
  header .idiomas ul li + li {
    margin-left: 0px;
  }
}
header .idiomas ul li.active a {
  font-weight: 600;
}
@media only screen and (max-width: 560px) {
  header .idiomas ul li.active a {
    background-color: rgba(255, 255, 255, 0.3);
  }
}

section {
  min-height: calc(100vh - 86px);
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 800px) {
  section {
    padding: 30px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 560px) {
  section {
    padding: 40px 20px 60px;
    display: block;
    min-height: calc(100vh - 55px);
  }
}
section .text {
  transition: all 0.3s ease-out;
  transition-delay: 0.3s;
  opacity: 0;
  transform: translateY(-30px);
  max-width: 490px;
}
section .text.visible {
  opacity: 1;
  transform: translateY(0px);
}
@media only screen and (max-width: 800px) {
  section .text {
    text-align: center;
    max-width: 600px;
  }
}
section .text .title {
  font-weight: 900;
  font-size: 44px;
  line-height: 90%;
}
@media only screen and (max-width: 560px) {
  section .text .title {
    font-size: 36px;
  }
}
section .text .title span {
  color: #00a593;
}
section .text .title + p {
  margin-top: 10px;
}
section .text .subtitle {
  font-weight: normal;
  font-size: 20px;
  line-height: 120%;
  margin: 10px auto 15px;
}
section .text .subtitle sub {
  font-size: 60%;
}
@media only screen and (max-width: 560px) {
  section .text .subtitle {
    font-size: 17px;
  }
}
section .text .link {
  margin-top: 20px;
}
section .text .parrafos {
  margin-top: 20px;
  font-size: 15px;
  font-weight: normal;
}
@media only screen and (max-width: 560px) {
  section .text .parrafos {
    padding-inline: 20px;
  }
}
section .list {
  text-align: center;
  margin-top: 60px;
}
section .list .title {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 44px;
  line-height: 90%;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 560px) {
  section .list .title {
    font-size: 28px;
  }
}
section .list .title span {
  color: #007266;
}
section .list ul {
  display: flex;
}
@media only screen and (max-width: 800px) {
  section .list ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
section .list ul li {
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 800px) {
  section .list ul li {
    width: 40%;
    margin-bottom: 20px;
  }
  section .list ul li:last-child {
    margin-bottom: 0;
  }
}
section .list ul li + li {
  margin-left: 10px;
}
section .list ul li img {
  width: 100%;
}
section .list ul li p {
  font-weight: 700;
}

.soy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.soy .link a + a {
  margin-left: 5px;
}

.intro,
.ventajas,
.contact,
.presentacion {
  flex-direction: row;
}
@media only screen and (max-width: 800px) {
  .intro,
  .ventajas,
  .contact,
  .presentacion {
    flex-direction: column;
  }
}
.intro .text,
.ventajas .text,
.contact .text,
.presentacion .text {
  color: #000;
}
.intro .image,
.ventajas .image,
.contact .image,
.presentacion .image {
  width: 100%;
  margin-left: 60px;
}
@media only screen and (max-width: 800px) {
  .intro .image,
  .ventajas .image,
  .contact .image,
  .presentacion .image {
    margin-left: 0;
    margin-top: 40px;
  }
}
.intro.ventaja-empresa, .intro.ventaja-medio-ambiente,
.ventajas.ventaja-empresa,
.ventajas.ventaja-medio-ambiente,
.contact.ventaja-empresa,
.contact.ventaja-medio-ambiente,
.presentacion.ventaja-empresa,
.presentacion.ventaja-medio-ambiente {
  background-color: #fcede9;
}
.intro.ventaja-empresa .text, .intro.ventaja-medio-ambiente .text,
.ventajas.ventaja-empresa .text,
.ventajas.ventaja-medio-ambiente .text,
.contact.ventaja-empresa .text,
.contact.ventaja-medio-ambiente .text,
.presentacion.ventaja-empresa .text,
.presentacion.ventaja-medio-ambiente .text {
  order: 1;
}
.intro.ventaja-empresa .image, .intro.ventaja-medio-ambiente .image,
.ventajas.ventaja-empresa .image,
.ventajas.ventaja-medio-ambiente .image,
.contact.ventaja-empresa .image,
.contact.ventaja-medio-ambiente .image,
.presentacion.ventaja-empresa .image,
.presentacion.ventaja-medio-ambiente .image {
  order: 0;
  margin-left: 0;
  margin-right: 60px;
}
@media only screen and (max-width: 800px) {
  .intro.ventaja-empresa .image, .intro.ventaja-medio-ambiente .image,
  .ventajas.ventaja-empresa .image,
  .ventajas.ventaja-medio-ambiente .image,
  .contact.ventaja-empresa .image,
  .contact.ventaja-medio-ambiente .image,
  .presentacion.ventaja-empresa .image,
  .presentacion.ventaja-medio-ambiente .image {
    margin-right: 0;
    margin-bottom: 40px;
  }
}

.intro > .row {
  display: flex;
  align-items: center;
  width: 100%;
}
.intro > .row .text {
  flex: 0.8;
}
.intro > .row .image {
  flex: 1.2;
}
@media only screen and (max-width: 560px) {
  .intro > .row {
    flex-direction: column;
  }
}
.intro .scroll {
  position: absolute;
  z-index: 3;
  bottom: 40px;
  left: calc(50% - 10px);
  height: 32px;
  width: 20px;
  border: 2px solid #000;
  border-radius: 10px;
  text-align: center;
}
@media only screen and (max-width: 560px) {
  .intro .scroll {
    left: auto;
    right: 10px;
    bottom: 50%;
  }
}
.intro .scroll .point {
  position: absolute;
  top: 4px;
  left: calc(50% - 5px);
  font-size: 13px;
  animation: scrollball 3s ease-out 0s infinite;
}
.intro .scroll span {
  position: absolute;
  display: block;
  text-align: center;
  width: 100px;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  bottom: -20px;
  left: -44px;
  white-space: nowrap;
}
@media only screen and (max-width: 560px) {
  .intro .scroll span {
    transform: rotate(90deg) translate(35px, -2px);
  }
}

.covid {
  background-color: #f4ebb6;
}
.covid .text {
  text-align: center;
}
.covid .text .title b {
  color: darkred;
}
.covid .image {
  width: 100%;
  margin-top: 60px;
  text-align: center;
}
.covid .image img {
  width: 60%;
}
.covid .list {
  text-align: center;
  margin-top: 60px;
}
.covid .list .title {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 44px;
  line-height: 90%;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 560px) {
  .covid .list .title {
    font-size: 28px;
  }
}
.covid .list .title span {
  color: #007266;
}
.covid .list ul {
  display: flex;
}
@media only screen and (max-width: 800px) {
  .covid .list ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.covid .list ul li {
  text-align: center;
}
@media only screen and (max-width: 800px) {
  .covid .list ul li {
    width: 40%;
    margin-bottom: 20px;
  }
  .covid .list ul li:last-child {
    margin-bottom: 0;
  }
}
.covid .list ul li + li {
  margin-left: 10px;
}
.covid .list ul li img {
  width: 100%;
}
.covid .list ul li p {
  font-weight: 700;
}

.presentacion {
  flex-direction: row-reverse;
  min-height: auto;
}
.presentacion .image {
  margin-left: 0;
  margin-right: 60px;
}

.contact {
  background-color: #eee193;
}

@keyframes rotar {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes nube {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes ruta {
  0% {
    transform: scale(0);
  }
  10% {
    transform: scale(0);
  }
  20% {
    transform: scale(1);
  }
  25% {
    transform: translateX(-240%) translateY(0px);
  }
  35% {
    transform: translateX(-240%) translateY(360%);
  }
  50% {
    transform: translateX(550%) translateY(360%);
  }
  60% {
    transform: translateX(550%) translateY(0px);
  }
  63% {
    transform: translateX(650%) translateY(0px);
  }
  73% {
    transform: translateX(650%) translateY(0px) scale(0);
  }
  100% {
    transform: translateX(650%) translateY(0px) scale(0);
  }
}
@keyframes point-01 {
  0% {
    opacity: 0;
  }
  36% {
    opacity: 0;
  }
  37% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
}
@keyframes point-02 {
  0% {
    opacity: 0;
  }
  48% {
    opacity: 0;
  }
  49% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
}
@keyframes point-03 {
  0% {
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  66% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
}
/*Animaciones empresa */
@keyframes moneda {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reloj {
  0% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes estrella {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes cajas {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-60px);
  }
  80% {
    transform: translateY(0px);
  }
}
@keyframes recorrido {
  0% {
    transform: translateX(0px) translateY(0px);
  }
  20% {
    transform: translateX(-52px) translateY(0px);
  }
  40% {
    transform: translateX(-52px) translateY(-93px);
    opacity: 0;
  }
  60% {
    transform: translateX(-137px) translateY(-93px);
  }
  99% {
    transform: translateX(-137px) translateY(-93px);
    opacity: 0;
  }
  100% {
    transform: translateX(-137px) translateY(-93px);
    opacity: 0;
  }
}
@keyframes nube2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(0);
  }
}
/*Animaciones univesidades */
@keyframes coche-uni {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes cara {
  0% {
    transform: translateX(0px) translateY(0px);
  }
  50% {
    transform: translateX(-2px) translateY(3px);
  }
  100% {
    transform: translateX(0px) translateY(0px);
  }
}
@keyframes movil {
  0% {
    transform: rotate(0deg) scale(1);
  }
  10% {
    transform: rotate(-20deg) scale(1.1);
  }
  20% {
    transform: rotate(0deg) scale(1);
  }
  30% {
    transform: rotate(20deg) scale(1.1);
  }
  40% {
    transform: rotate(0deg);
  }
}
@keyframes dias {
  0% {
    transform: translateX(0%) translateY(0%);
  }
  40% {
    transform: translateX(0%) translateY(260%);
  }
  60% {
    transform: translateX(-130%) translateY(0%);
  }
  80% {
    transform: translateX(-130%) translateY(260%);
  }
  100% {
    transform: translateX(0%) translateY(0%);
  }
}
.infografia-01 {
  overflow: hidden;
  position: relative;
}

.funcionamiento .text {
  text-align: center;
  max-width: none;
}
.funcionamiento .text .subtitle {
  max-width: 400px;
}
.funcionamiento ol li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 30px 0;
}
@media only screen and (max-width: 560px) {
  .funcionamiento ol li {
    display: block;
    padding: 40px 15px 0;
  }
}
.funcionamiento ol li p {
  color: #f3b7a5;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 100%;
  width: 500px;
  text-align: center;
}
@media only screen and (max-width: 560px) {
  .funcionamiento ol li p {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    width: 100%;
    text-transform: none;
  }
}
.funcionamiento ol li img {
  width: 200px;
  margin-top: -10px;
}
@media only screen and (max-width: 560px) {
  .funcionamiento ol li img {
    margin-top: 0;
  }
}

.equipo {
  background-color: #f0f0f0;
}
.equipo .title {
  color: #000;
}
.equipo .text {
  color: #fff;
  text-align: center;
}
.equipo .text .subtitle {
  max-width: 400px;
  color: #000;
}
.equipo .text .block {
  margin-top: 30px;
  margin-bottom: 60px;
}
.equipo .text .block + .block {
  margin-top: 60px;
}
.equipo .text .block + .block .tit {
  color: #00a593;
}
.equipo .text .block .tit {
  font-weight: 900;
  font-size: 30px;
  margin-bottom: 30px;
  color: #f3b7a5;
}
.equipo .text .block .listado {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media only screen and (max-width: 560px) {
  .equipo .text .block .listado {
    flex-direction: column;
    align-items: center;
  }
}
.equipo .text .block .listado .person {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 560px) {
  .equipo .text .block .listado .person + .person {
    margin-top: 40px;
  }
}
.equipo .text .block .listado .person .img {
  width: 200px;
  margin-bottom: 0px;
}
.equipo .text .block .listado .person .img img {
  width: 200px;
}
.equipo .text .block .listado .person .txt {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.equipo .text .block .listado .person .txt .name {
  color: #000;
}
.equipo .text .block .listado .person .txt .charge {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 120%;
  margin-top: 5px;
  letter-spacing: 1px;
  color: #eee193;
}
.equipo .text .block .listado .person .txt .charge i {
  font-size: 10px;
  font-style: normal;
  display: block;
  margin-top: 4px;
}
.equipo .text .block .listado .person .txt a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  margin-top: 10px;
  padding: 5px 10px;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #eee193;
}
.equipo .text .block .listado .person .txt a span {
  display: none;
}
.equipo .text .block .listado .person .txt a:hover {
  background-color: #f3b7a5;
}
.equipo .text .block .listado .person .txt a i {
  font-size: 20px;
}

.videos {
  background-color: #333;
  color: #fff;
}
.videos .text {
  text-align: center;
}
.videos .list p.subtitle {
  font-weight: 900;
  font-size: 24px;
  margin-bottom: -10px;
  color: #f3b7a5;
}
.videos .list p.subtitle + p {
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.videos .list video {
  max-width: 1110px;
  width: 100%;
}
.videos .list video + p.subtitle {
  margin-top: 60px;
}

.social {
  padding: 60px;
  text-align: center;
  background-color: #f3b7a5;
  min-height: auto;
}
@media only screen and (max-width: 560px) {
  .social {
    padding: 30px 15px;
  }
}
.social .head {
  margin-bottom: 20px;
}
.social .head .title {
  font-size: 20px;
  margin-bottom: 5px;
}
.social ul {
  display: flex;
  justify-content: center;
}
.social ul li + li {
  margin-left: 20px;
}
.social ul li a i {
  font-size: 30px;
}
.social ul li a span {
  display: none;
}

.page-preview .main {
  padding-top: 0;
}
.page-preview header {
  position: static;
}
.page-preview header .menu {
  display: none;
}
.page-preview header .idiomas {
  margin-left: auto;
}
@media only screen and (max-width: 560px) {
  .page-preview header .idiomas {
    display: none;
  }
}
.page-preview .intro {
  height: auto;
  min-height: 0;
  text-align: center;
}
.page-preview .contact {
  min-height: auto;
}
.page-preview.menu-open {
  overflow: hidden;
}

.home header .menu.menu-preview {
  display: none;
}

.menu-preview {
  background-color: #333333;
  width: 100%;
  padding: 30px 40px;
  position: sticky;
  top: 0px;
  z-index: 2;
}
@media only screen and (max-width: 560px) {
  .menu-preview {
    display: none;
  }
}
.menu-preview.sticky {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}
@media only screen and (max-width: 560px) {
  .menu-preview.menu-mobile {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    padding: 56px 0 0 0;
    z-index: 20;
    height: 100%;
    overflow-y: auto;
  }
  .menu-preview.menu-mobile.open {
    display: block;
  }
}
.menu-preview > ul {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 560px) {
  .menu-preview > ul {
    display: block;
  }
}
.menu-preview > ul > li + li {
  margin-left: 10px;
}
@media only screen and (max-width: 560px) {
  .menu-preview > ul > li + li {
    margin-left: 0;
    margin-top: 1px;
  }
}
@media only screen and (max-width: 560px) {
  .menu-preview > ul > li {
    display: flex;
    flex-wrap: wrap;
  }
  .menu-preview > ul > li i {
    display: none;
  }
}
.menu-preview > ul > li a {
  display: block;
  text-decoration: none;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 13px;
  padding: 10px 15px;
  border-radius: 20px;
}
@media only screen and (min-width: 900px) {
  .menu-preview > ul > li a:hover {
    background-color: #fff;
    color: #1a1a1a;
  }
}
@media only screen and (max-width: 560px) {
  .menu-preview > ul > li a {
    width: calc(100% - 56px);
    height: 56px;
    display: flex;
    align-items: center;
    border-radius: 0;
  }
}
.menu-preview > ul > li ul {
  display: none;
}
@media only screen and (max-width: 560px) {
  .menu-preview > ul > li ul {
    width: 100%;
  }
  .menu-preview > ul > li ul.open {
    display: block;
  }
  .menu-preview > ul > li ul li + li {
    border-top: 1px solid #0d0d0d;
  }
  .menu-preview > ul > li ul li a {
    padding-left: 35px;
    background-color: #262626;
    height: 40px;
    width: 100%;
  }
}
.menu-preview > ul > li span {
  display: none;
}
@media only screen and (max-width: 560px) {
  .menu-preview > ul > li span {
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
  }
  .menu-preview > ul > li span i {
    display: block;
    background-color: #fff;
    width: 10px;
    height: 2px;
    transition: all 0.3s ease-out;
  }
  .menu-preview > ul > li span i:first-child {
    transform: translateX(-3px) rotate(45deg);
  }
  .menu-preview > ul > li span i:last-child {
    transform: translateX(3px) translateY(-2px) rotate(-45deg);
  }
  .menu-preview > ul > li span.open i:first-child {
    transform: translateX(3px) rotate(45deg);
  }
  .menu-preview > ul > li span.open i:last-child {
    transform: translateX(-3px) translateY(-2px) rotate(-45deg);
  }
}
.menu-preview > ul > li:last-child > a {
  width: 100%;
}

.preview {
  background-color: #333333;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
}
.preview > ul {
  position: sticky;
  top: 160px;
  margin-right: 30px;
  width: 200px;
  margin-right: 60px;
}
@media only screen and (max-width: 560px) {
  .preview > ul {
    display: none;
  }
}
.preview > ul > li {
  white-space: nowrap;
}
.preview > ul > li i {
  color: #f3b7a5;
  position: relative;
  bottom: -2px;
}
.preview > ul > li > a {
  font-size: 11px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 10px 5px;
}
.preview > ul > li > a:hover {
  color: #f3b7a5;
}
.preview .screen-list {
  width: calc(100% - 260px);
}
@media only screen and (max-width: 560px) {
  .preview .screen-list {
    width: 100%;
  }
}
.preview .screen-list > div {
  width: 100%;
  text-align: center;
  padding: 30px;
}
@media only screen and (max-width: 560px) {
  .preview .screen-list > div {
    padding: 30px 0;
  }
}
.preview .screen-list > div p {
  font-size: 13px;
  display: inline-block;
  margin-bottom: 20px;
  color: #fff;
}
.preview .screen-list > div img {
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}
@media only screen and (max-width: 560px) {
  .preview .screen-list > div img {
    width: 100%;
  }
}
.preview.preview-admin .screen-list > div img {
  width: 100%;
}

.features {
  background-color: #f3b7a5;
}
.features .text {
  text-align: center;
}
.features .text .title span {
  color: #fff;
}
.features .text p {
  font-weight: 700;
  font-size: 28px;
}
@media only screen and (max-width: 560px) {
  .features .text p {
    font-size: 18px;
  }
}
.features .list-features {
  max-width: 400px;
  margin: 40px auto 40px;
  text-align: center;
}
.features .list-features p + p {
  margin-top: 25px;
}
.features .image {
  border-top: 2px dotted #fff;
  border-bottom: 2px dotted #fff;
}
.features .image img {
  display: block;
  width: 100%;
}

.pop-msg {
  background-color: #f3b7a5;
  position: fixed;
  z-index: 5;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pop-msg p {
  padding: 30px;
  background-color: #fff;
  max-width: 400px;
  margin-bottom: 20px;
  text-align: center;
}
.pop-msg p span {
  font-weight: bold;
  font-size: 26px;
  display: block;
  margin-bottom: 10px;
}
.pop-msg p i {
  display: block;
  font-size: 35px;
  margin-top: 10px;
}
@media only screen and (max-width: 560px) {
  .pop-msg p {
    width: calc(100% - 90px);
  }
}
.pop-msg a {
  background-color: #fff;
}
@media only screen and (min-width: 900px) {
  .pop-msg a:hover {
    background-color: #000;
    color: #fff;
  }
}

.page-legal .legal {
  padding: 60px;
  padding-top: 146px;
}
@media only screen and (max-width: 560px) {
  .page-legal .legal {
    padding: 30px;
    padding-top: 115px;
  }
}
.page-legal .legal p strong {
  font-weight: 600;
}
.page-legal .legal a {
  text-decoration: underline;
}
.page-legal .legal h2 {
  font-size: 30px;
  margin-bottom: 20px;
}
.page-legal .legal h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.page-legal .legal h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.page-legal .legal p + h3,
.page-legal .legal p + h4 {
  margin-top: 20px;
}
.page-legal .legal ul, .page-legal .legal ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
.page-legal .legal ul li, .page-legal .legal ol li {
  margin-top: 10px;
  list-style: circle;
}
.page-legal .legal + .legal {
  border-top: 1px solid #cccccc;
}

footer {
  background-color: #000;
  padding: 20px 30px;
  text-align: center;
  font-size: 11px;
  color: #fff;
}
@media only screen and (max-width: 560px) {
  footer {
    padding: 20px 10px;
  }
}
footer a {
  color: #fff;
}
footer a + a {
  margin-left: 10px;
}
footer .made {
  margin-left: 20px;
  display: inline-block;
}
@media only screen and (max-width: 560px) {
  footer .made {
    display: block;
    text-align: center;
    margin-top: 20px;
    margin-left: 0;
  }
}
footer svg {
  width: 80px;
  height: auto;
  margin-left: 4px;
}
footer svg path {
  fill: yellow;
}

.transition-fade {
  opacity: 1;
  transition: 500ms;
  transform: translateX(0);
  transform-origin: left;
}

html.is-animating .transition-fade {
  opacity: 1;
  transform: translateX(100%);
}

html.is-leaving .transition-fade {
  opacity: 0;
  transform: translateX(0);
}
