@font-face {
  font-family: "SourceCodePro";
  font-weight: 300;
  src: url("/assets/fonts/scp-300.woff2") format("woff2");
  font-display: fallback;
}

@font-face {
  font-family: "SourceCodePro";
  font-weight: 400;
  src: url("/assets/fonts/scp-400.woff2") format("woff2");
  font-display: fallback;
}

@font-face {
  font-family: "SourceCodePro";
  font-weight: 600;
  src: url("/assets/fonts/scp-600.woff2") format("woff2");
  font-display: fallback;
}

@font-face {
  font-family: "SourceCodePro";
  font-weight: 800;
  src: url("/assets/fonts/scp-800.woff2") format("woff2");
  font-display: fallback;
}

html {
  font-size: 62.5%;
  background-color: white;
  scroll-behavior: smooth;
}

html,
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
}

a,
button,
input {
  all: unset;
}

a,
button {
  cursor: pointer;
}

button {
  padding: 1.5rem 2rem;
}

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

* {
  -webkit-transition: all 0.6s cubic-bezier(0.175, 0.885, 0.3, 1.1);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.3, 1.1);
  color: #181818;
  font-family: "SourceCodePro";
}

h1,
header {
  font-weight: 300;
}

h1 {
  margin: 1rem 0 clamp(0.5rem, 0.2rem + 3vw, 2.8rem) 0;
  font-size: clamp(3.2rem, 1rem + 3vw, 5.2rem);
}

h2 {
  margin: 1rem 0 clamp(0.5rem, 0.2rem + 3vw, 2.8rem) 0;
  font-size: clamp(3rem, 1rem + 3vw, 5rem);
  font-weight: 300;
}

.header {
  color: #181818;
  font-weight: bolder;
  margin: 1rem 0 1.5rem 0;
  font-size: clamp(1.8rem, 1rem + 3vw, 2.2rem);
}

p {
  font-size: clamp(1.6rem, 0.6rem + 1vw, 1.8rem);
  color: #606060;
  margin: 0 auto;
  margin-bottom: 2rem;
  max-inline-size: 80ch;
}

img {
  inline-size: 100%;
  max-inline-size: 100%;
  block-size: auto;
  display: block;
}

.splide__pagination__page.is-active {
  background-color: #62e4e2 !important;
}

.splide__arrow {
  background-color: white !important;
  border: none;
  height: 4rem !important;
  width: 4rem !important;
  top: 130px !important;
  padding: 10px !important;
}

.splide__arrow--prev {
  left: -30px !important;
}

.splide__arrow--prev svg {
  margin-bottom: 10px;
  margin-right: -10px;
  top: 3px !important;
  left: 10px !important;
}

.splide__arrow--next {
  right: -30px !important;
}

.splide__arrow--next svg {
  margin-bottom: 10px;
  margin-left: -10px;
  top: 3px !important;
  left: 2px !important;
}

.splide__arrow svg {
  width: 4rem !important;
  height: 4rem !important;
}

.splide__pagination {
  display: none;
}

.social-networks-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-inline-size: 380px;
  margin: auto;
}

.social-networks-inline a {
  padding: 2rem;
}

.social-networks-inline a img {
  height: 3rem;
  width: 3rem;
}

section {
  text-align: center;
}

@-webkit-keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@-webkit-keyframes blink {
  from,
  to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes blink {
  from,
  to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.underline-primary {
  border-bottom: 0.5rem solid #62e4e2;
}

@media only screen and (min-width: 768px) {
  .underline-primary {
    border-bottom: 0.8rem solid #62e4e2;
  }
}

.w-600 {
  font-weight: 600;
}

.w-800 {
  font-weight: 800;
}

.limitted {
  max-inline-size: 1280px;
  margin: auto;
}

.bolder {
  font-weight: bolder;
}

.d-inline-block {
  display: inline-block;
}

.btn {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.6rem;
  color: #181818;
  border-radius: 2.5rem;
  border-bottom-left-radius: 0.5rem;
  border: 2px solid transparent;
  -webkit-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.3, 1.1);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.3, 1.1);
}

.btn:hover {
  background-color: white;
}

.btn.btn-primary {
  background-color: #62e4e2;
}

.btn.btn-primary:hover {
  background-color: white;
  border: 2px solid #62e4e2;
}

.btn.btn-secondary {
  background-color: #ffe200;
}

.btn.btn-secondary:hover {
  background-color: white;
  border: 2px solid #ffe200;
}

.btn.btn-icon {
  background-color: transparent;
  border: 2px solid #181818;
  border-radius: 100%;
  border-bottom-left-radius: 0;
}

.btn:disabled {
  pointer-events: none;
  color: #b7b7b7;
  background-color: #f2f2f2;
}

.control {
  position: relative;
}

.control input {
  width: 100%;
  margin: 1.9rem 0;
  border-bottom: 1px solid white;
  -webkit-padding-start: 0.25rem;
          padding-inline-start: 0.25rem;
  padding-bottom: .75rem;
  padding-top: .25rem;
  color: white;
  font-size: 1.7rem;
  text-align: start;
}

.control label {
  pointer-events: none;
  position: absolute;
  left: 0.25rem;
  top: 2.25rem;
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
}

.control input:focus + label,
.control input:valid + label {
  top: 0rem;
}

header {
  background-color: #fff4ea !important;
}

main .hero {
  overflow-y: hidden;
  padding-top: 6rem;
  position: relative;
  padding-bottom: clamp(1rem, 4rem + 30vw, 32rem);
  background-color: #fff4ea;
  margin-bottom: 3rem;
}

@media only screen and (min-width: 768px) {
  main .hero {
    padding-top: 8rem;
  }
}

main .hero .call-to-action {
  padding: 1.2rem 2.25rem;
}

main .hero .content {
  position: relative;
  text-align: center;
  padding: 3rem 2rem 0 2rem;
  margin: auto;
  margin-bottom: 4rem;
  z-index: 2;
  max-inline-size: 660px;
}

main .hero .content button {
  margin-top: 2rem;
}

main .hero .layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
}

main .hero .layer > main .hero .layer--people {
  width: 100%;
}

main .hero .layer--people {
  z-index: 1;
}

main .hero .layer--people img {
  margin: auto;
  max-inline-size: 900px;
}

main .hero .layer--stripe {
  z-index: 0;
}

@media only screen and (min-width: 768px) {
  main .hero button {
    display: none;
  }
}

main .our-values {
  padding: 0 3rem;
  margin-bottom: 3rem;
  max-inline-size: 1100px;
}

main .our-values .values-carousel {
  display: none;
  margin-top: 4rem;
  max-inline-size: 100%;
}

main .our-values .values-carousel img {
  margin-bottom: 1rem;
  block-size: auto;
  max-inline-size: 100%;
}

main .our-values .values-carousel .card {
  padding: 1rem 5rem;
}

main .our-values .values-mobile .card {
  margin: 4rem 0;
}

main .our-values .values-mobile .card img {
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media only screen and (min-width: 578px) {
  main .our-values {
    padding: 0 8rem;
  }
  main .our-values .values-carousel {
    display: block;
  }
  main .our-values .values-mobile {
    display: none;
  }
}

main .facts {
  margin-top: 60px;
}

main .facts .facts-grid {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "years-in-business years-in-business" "team-of over-clients" "headquarters-in-argentina headquarters-in-argentina" "headquarters-in-spain headquarters-in-spain" "run-by run-by";
  grid-gap: 40px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0 120px 0;
}

main .facts .facts-grid * {
  color: #333;
  line-height: 1;
}

main .facts .facts-grid .card {
  position: relative;
  height: 100%;
  width: 100%;
}

main .facts .facts-grid .main-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding-bottom: 32px;
}

main .facts .facts-grid .separator {
  position: absolute;
  bottom: 0;
  width: 100%;
}

main .facts .facts-grid .years-in-business {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: years-in-business;
}

main .facts .facts-grid .years-in-business .separator {
  border-bottom: 16px solid #62e4e2;
}

main .facts .facts-grid .years-in-business .main-content {
  font-size: clamp(2.5rem, 10rem + 3vw, 3rem);
  font-weight: 300;
}

main .facts .facts-grid .years-in-business .main-content .fact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  max-width: 380px;
  margin: auto;
}

main .facts .facts-grid .years-in-business .main-content .fact .years {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1;
  font-weight: 700;
  font-size: clamp(13.5rem, 10rem + 3vw, 16rem);
}

main .facts .facts-grid .years-in-business .main-content .fact .in-business {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.25;
  text-align: start;
  padding-left: 10px;
  font-size: clamp(4.6rem, 1rem + 3vw, 5.5rem);
}

main .facts .facts-grid .years-in-business .main-content .fact .in-business.es {
  font-size: clamp(3.6rem, 0rem + 2.7vw, 4.5rem);
}

main .facts .facts-grid .team-of {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: team-of;
}

main .facts .facts-grid .team-of .separator {
  border-bottom: 16px solid #ffe200;
}

main .facts .facts-grid .team-of .main-content {
  font-weight: 300;
  font-size: clamp(2.5rem, 1rem + 3vw, 4rem);
}

main .facts .facts-grid .team-of .main-content .quantity {
  font-weight: 700;
  font-size: clamp(9rem, 8rem + 3vw, 15rem);
}

main .facts .facts-grid .over-clients {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: over-clients;
  background-color: #eb96fb;
  font-size: clamp(3rem, 1rem + 3vw, 4.8rem);
  font-weight: 300;
  padding: 10px;
}

main .facts .facts-grid .over-clients * {
  color: white;
}

main .facts .facts-grid .over-clients .quantity {
  font-weight: 700;
  font-size: clamp(9rem, 8rem + 3vw, 12rem);
}

main .facts .facts-grid .over-clients .clients {
  font-weight: 700;
}

main .facts .facts-grid .headquarters {
  border-bottom: 16px solid #f4587a;
  padding-bottom: 140px;
  position: relative;
  height: 100%;
}

main .facts .facts-grid .headquarters p {
  margin: 0;
  max-width: 15ch;
  font-weight: 300;
  font-size: clamp(3rem, 1rem + 3vw, 4rem);
  text-align: start;
}

main .facts .facts-grid .headquarters img {
  position: relative;
  padding-bottom: 30px;
  position: absolute;
  right: 0;
  top: 0;
}

main .facts .facts-grid .headquarters-in-argentina {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: headquarters-in-argentina;
}

main .facts .facts-grid .headquarters-in-argentina img {
  width: 148px;
  height: 210px;
}

main .facts .facts-grid .headquarters-in-spain {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: headquarters-in-spain;
}

main .facts .facts-grid .headquarters-in-spain img {
  width: 170px;
  height: 210px;
}

main .facts .facts-grid .run-by {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: run-by;
}

main .facts .facts-grid .run-by .btn-secondary {
  padding: 1.2rem 2.25rem;
}

main .facts .facts-grid .run-by .partners {
  background-color: #b9e4ee;
  padding: 20px;
  margin-bottom: 40px;
}

main .facts .facts-grid .run-by .partners .press-content p {
  margin: 0;
  max-width: 15ch;
  font-weight: 300;
  font-size: clamp(3rem, 1rem + 3vw, 4rem);
  text-align: start;
}

main .facts .facts-grid .run-by .partners .press-content h1 {
  text-align: start;
  margin-bottom: 0;
}

main .facts .facts-grid .run-by .partners .press-content .pics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 25px;
}

main .facts .facts-grid .run-by .partners .press-content .pics a {
  -webkit-transition: .3s all ease-out;
  transition: .3s all ease-out;
}

main .facts .facts-grid .run-by .partners .press-content .pics a:hover, main .facts .facts-grid .run-by .partners .press-content .pics a:focus {
  -webkit-filter: brightness(1.3);
          filter: brightness(1.3);
}

main .facts .facts-grid .run-by .partners .press-content .pics img {
  width: 68px;
  height: 68px;
}

@media only screen and (min-width: 992px) {
  main .facts .facts-grid {
    -ms-grid-columns: (0.1fr)[24];
        grid-template-columns: repeat(24, 0.1fr);
        grid-template-areas: none;
    grid-gap: 40px 40px;
  }
  main .facts .facts-grid .years-in-business {
    -ms-grid-column: 1;
    -ms-grid-column-span: 13;
    grid-column: 1 / span 13;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  main .facts .facts-grid .team-of {
    -ms-grid-column: 14;
    -ms-grid-column-span: 6;
    grid-column: 14 / span 6;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  main .facts .facts-grid .over-clients {
    -ms-grid-column: 20;
    -ms-grid-column-span: 6;
    grid-column: 20 / span 6;
    -ms-grid-row: 1;
    grid-row: 1;
    padding: 10px 5px;
  }
  main .facts .facts-grid .headquarters {
    padding-bottom: 0;
  }
  main .facts .facts-grid .headquarters img {
    min-height: 300px;
    height: 100%;
    height: 394px;
    width: auto;
    margin: auto;
    position: static;
    padding-top: 40px;
    padding-bottom: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main .facts .facts-grid .headquarters-in-argentina {
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
    grid-column: 1 / span 7;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  main .facts .facts-grid .headquarters-in-spain {
    -ms-grid-column: 8;
    -ms-grid-column-span: 7;
    grid-column: 8 / span 7;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  main .facts .facts-grid .run-by {
    -ms-grid-column: 15;
    -ms-grid-column-span: 11;
    grid-column: 15 / span 11;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}

main .content {
  padding: 0 2rem;
}

.mx-limitted {
  max-inline-size: 1080px;
  margin: auto;
}
/*# sourceMappingURL=about-us.css.map */