@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=League+Spartan:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
.font-leaguespartan {
  font-family: "League Spartan", sans-serif;
  font-weight: 400 !important;
}

.font-raleway {
  font-family: "Raleway", serif;
}

.font-adelphi {
  font-family: "DM Sans", serif;
  font-weight: 900 !important;
}

@font-face {
  font-family: "Adelphi";
  src: url("../fonts/Adelphi_PE_VF_All.ttf");
}
@font-face {
  font-family: "Adelphi-2";
  src: url("../fonts/Adelphi_PE_VF_All_2.ttf");
}
@font-face {
  font-family: "Adelphi-3";
  src: url("../fonts/Adelphi_PE_VF_All_3.ttf");
}
@font-face {
  font-family: "Adelphi-5";
  src: url("../fonts/Adelphi_PE_VF_All_5.ttf");
}
.font-adelphi {
  font-family: "Adelphi", sans-serif;
}

.font-adelphi-2 {
  font-family: "Poppins", sans-serif;
}

.font-adelphi-3 {
  font-family: "Adelphi-3", sans-serif;
}

.font-adelphi-5 {
  font-family: "Adelphi-5", sans-serif;
}

body {
  margin: 0;
  font-family: "Raleway", serif;
  background-color: #ffffff;
}

.wrapper {
  width: 100%;
  overflow-x: hidden;
}

/* buttons */
.btn.custom-button {
  position: relative;
  border-radius: 0;
  color: #fff;
  font-weight: 700;
}
.btn.custom-button::before {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background-color: #000;
  z-index: -1;
}
.btn.button-red {
  background-color: #e54027;
}
.btn.button-red:hover {
  background-color: #fff;
  border-color: #e54027;
  color: #e54027;
}
.btn.button-green {
  background-color: #3db5ad;
  color: #000;
}
.btn.button-green:hover {
  background-color: #fff;
  border-color: #3db5ad;
}
.btn.button-yellow {
  background-color: #ffe13a;
  color: #000;
}
.btn.button-yellow:hover {
  background-color: #fff;
  border-color: #ffe13a;
  color: #000;
}

/*  squares  */
.square-element {
  position: relative;
  width: 150px;
  margin: 0 auto;
}
.square-element .square {
  position: relative;
  padding: 20px;
  height: 150px;
  width: 150px;
  transition: all 0.5s ease;
}
.square-element .square.red-square {
  background-color: #e54027;
}
.square-element .square.green-square {
  background-color: #3db5ad;
}
.square-element .square.cyan-square {
  background-color: #5aa9de;
}
.square-element .square.yellow-square {
  background-color: #ffe13a;
}
.square-element .square:hover {
  transform: scale(1.2);
}

.square-line-background::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 150px;
  height: 150px;
  border: 2px solid #000;
  z-index: -1;
}

/*  header  */
.header-top {
  background-color: #ffe13a;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top .social-icons a {
  margin: 0 10px;
  color: #000;
  text-decoration: none;
}
.header-top .social-icons a:hover {
  color: #555;
}
.header-top .language {
  display: flex;
  align-items: center;
  justify-content: end;
}
.header-top .language img {
  width: 20px;
  margin-right: 5px;
}

/* nav */
nav a {
  margin: 0 15px;
  color: black !important;
  font-weight: 700;
}

.navbar-light {
  color: black !important;
}

.nav-link a {
  color: black !important;
}

.logo-main {
  width: 200px;
}

section {
  position: relative;
  overflow: hidden;
}

.pt-120 {
  padding-top: 120px !important;
}

.pb-120 {
  padding-bottom: 120px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.main-text {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  padding: 100px 0;
}

/* make it great title */
.title {
  font-size: 3.5rem;
  font-weight: 900;
}

.title-2 {
  font-size: 1.5rem;
  font-weight: 400;
}

.title-3 {
  font-size: 1.5rem;
  font-weight: 400;
}

.title-4 {
  font-size: 2.5rem;
  font-weight: 600;
}

.title-big {
  font-size: 6rem;
  font-weight: 100;
}

.parrafo {
  font-size: 20px;
  font-weight: 800;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  /* Force each slide to take 100% width of the slider*/
}
.slide img {
  display: block;
  width: 100%;
  height: auto;
}

/* animations */
@keyframes rotate-animation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rotate-animation {
  animation: rotate-animation 10s linear infinite;
}

.rotate-animation-inverse {
  animation: rotate-animation 10s linear reverse infinite;
}

@keyframes rotate-and-shrink {
  0% {
    transform: rotate(0deg) scale(1);
  }
  10% {
    transform: rotate(30deg) scale(0);
  }
  20% {
    transform: rotate(60deg) scale(1);
  }
  30% {
    transform: rotate(90deg) scale(0);
  }
  40% {
    transform: rotate(120deg) scale(1);
  }
  50% {
    transform: rotate(150deg) scale(0);
  }
  60% {
    transform: rotate(180deg) scale(1);
  }
  70% {
    transform: rotate(210deg) scale(0);
  }
  80% {
    transform: rotate(240deg) scale(1);
  }
  90% {
    transform: rotate(360deg) scale(0);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
.rotate-and-shrink {
  animation: rotate-and-shrink 10s linear infinite;
}

@keyframes rotate-pause {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rotate-and-pause {
  animation: rotate-pause 10s alternate infinite;
}

@keyframes translate-horizontal-1 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-70px);
  }
}
@keyframes translate-horizontal-2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-140px);
  }
}
.translate-horizontal-1 {
  animation: translate-horizontal-1 5s alternate infinite;
}

.translate-horizontal-2 {
  animation: translate-horizontal-2 5s alternate infinite;
}

@keyframes snake-lines-animation {
  0% {
    transform: translateX(-200px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes snake-lines-rotate-animation {
  0% {
    transform: rotateX(0deg);
  }
  25% {
    transform: rotateX(180deg);
  }
  50% {
    transform: rotateX(0deg);
  }
  75% {
    transform: rotateX(180deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
.snake-lines-rotate-animation {
  animation: snake-lines-rotate-animation 10s alternate infinite;
}

.snake-lines-animation {
  animation: snake-lines-animation 10s alternate infinite;
}

@keyframes translate-up-down-1 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(200px);
  }
}
@keyframes translate-up-down-2 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-300px);
  }
}
.translate-up-down-1 {
  animation: translate-up-down-1 5s linear alternate infinite;
}

.translate-updown-2 {
  animation: translate-up-down-2 10s linear alternate infinite;
}

@keyframes translate-up-down-3 {
  0% {
    top: 0;
    left: 0;
  }
  25% {
    top: 0;
    left: 300px;
    /* Desplazamiento horizontal */
  }
  50% {
    top: 200px;
    /* Desplazamiento vertical */
    left: 300px;
  }
  75% {
    top: 200px;
    left: 0;
  }
  100% {
    top: 0;
    left: 0;
  }
}
.translate-up-down-3 {
  animation: translate-up-down-3 5s linear alternate infinite;
}

.translate-up-down-4 {
  animation: translate-up-down-3 5s linear alternate-reverse infinite;
}

/* end - animations */
.main-banner-elements {
  position: relative;
  margin-left: 200px;
  width: 700px;
  height: 100%;
}
.main-banner-elements .main-banner-background {
  width: 100%;
}
.main-banner-elements .main-puzzle {
  position: absolute;
  top: 170px;
  left: -150px;
}
.main-banner-elements .main-puzzle img {
  width: 450px;
}
.main-banner-elements .main-gears {
  position: absolute;
  top: 60px;
  right: 250px;
}
.main-banner-elements .main-gears .gear1,
.main-banner-elements .main-gears .gear2 {
  width: 30px;
}
.main-banner-elements .main-gears .gear1 {
  position: relative;
  top: 13px;
  right: -10px;
}
.main-banner-elements .main-cube-line {
  position: absolute;
  top: 300px;
  right: 300px;
}
.main-banner-elements .main-cube-line .cube-line {
  width: 80px;
}
.main-banner-elements .main-dots {
  position: absolute;
  bottom: 100px;
  right: 200px;
}
.main-banner-elements .main-dots img {
  width: 5px;
  margin: 0 3px;
}
.main-banner-elements .main-circles {
  position: absolute;
  bottom: 35px;
  right: 200px;
}
.main-banner-elements .main-circles .main-circles-box {
  position: relative;
}
.main-banner-elements .main-circles .main-circle {
  position: absolute;
  top: 0;
}
.main-banner-elements .main-circles img {
  width: 70px;
}

.section-quehacemos {
  text-align: center;
}

.section-talentos {
  overflow: unset;
}
.section-talentos .talentos-content {
  display: flex;
  justify-content: center;
  width: 100%;
}
.section-talentos .talentos-content h2,
.section-talentos .talentos-content p {
  color: black;
}
.section-talentos .talentos-elements {
  position: relative;
  width: 100%;
  top: -120px;
}
.section-talentos .talentos-box {
  position: relative;
}
.section-talentos .talentos-box .block1,
.section-talentos .talentos-box .block2,
.section-talentos .talentos-box .block3,
.section-talentos .talentos-box .block4,
.section-talentos .talentos-box .block5,
.section-talentos .talentos-box .block6,
.section-talentos .talentos-box .block7 {
  width: 160px;
  position: absolute;
}
.section-talentos .talentos-box .block1 {
  top: 0;
  left: 0;
  z-index: 2;
}
.section-talentos .talentos-box .block3 {
  top: 100px;
  left: 0;
  z-index: 1;
}
.section-talentos .talentos-box .block6 {
  top: 200px;
  left: 0;
  z-index: 0;
}
.section-talentos .talentos-box .block4 {
  top: 155px;
  left: 81px;
  z-index: 1;
}
.section-talentos .talentos-box .block7 {
  top: 258px;
  left: 70px;
  z-index: 0;
}
.section-talentos .talentos-box .block5 {
  top: 208px;
  left: 157px;
  z-index: 1;
}
.section-talentos .talentos-box .block2 {
  top: 100px;
  left: 166px;
  z-index: 2;
}

.section-wedoit .wedoit-content {
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-wedoit .wedoit-elements {
  position: relative;
  width: 100%;
}
.section-wedoit .wedoit-elements .wedoit-background {
  width: 100%;
}
.section-wedoit .wedoit-elements .wedoit-gears {
  position: absolute;
  top: 40%;
  right: 0;
}
.section-wedoit .wedoit-elements .wedoit-gears .gear1,
.section-wedoit .wedoit-elements .wedoit-gears .gear2 {
  width: 30px;
}
.section-wedoit .wedoit-elements .wedoit-gears .gear1 {
  position: relative;
  top: 13px;
  right: -10px;
}
.section-wedoit .wedoit-elements .wedoit-dots {
  position: absolute;
  top: 300px;
  right: 3%;
  transform: rotate(90deg);
  z-index: 1;
}
.section-wedoit .wedoit-elements .wedoit-dots img {
  width: 5px;
  margin: 3px 3px;
}
.section-wedoit .wedoit-elements .wedoit-white-cube {
  position: absolute;
  bottom: -100px;
  right: 50px;
}
.section-wedoit .wedoit-elements .wedoit-white-cube img {
  width: 250px;
}
.section-wedoit .wedoit-elements .wedoit-diamonds {
  position: absolute;
  left: 40px;
  bottom: 50px;
}
.section-wedoit .wedoit-elements .wedoit-diamonds img {
  width: 20px;
}
.section-wedoit .wedoit-elements .wedoit-snake-lines {
  position: absolute;
  display: flex;
  flex-direction: column;
  left: -10px;
  bottom: 150px;
}
.section-wedoit .wedoit-elements .wedoit-snake-lines img {
  width: 150px;
}
.section-wedoit .wedoit-elements .wedoit-circle-dot {
  position: absolute;
  top: 50px;
  left: 50px;
}
.section-wedoit .wedoit-elements .wedoit-circle-dot img {
  width: 60px;
}
.section-wedoit .wedoit-elements .wedoit-line {
  position: absolute;
  top: 0;
  left: 80px;
}
.section-wedoit .wedoit-elements .wedoit-line .wedoit-dot {
  position: absolute;
  top: -20px;
  left: -6px;
}
.section-wedoit .wedoit-elements .wedoit-circle {
  position: absolute;
  top: 200px;
  left: 200px;
}
.section-wedoit .wedoit-elements .wedoit-circle img {
  width: 60px;
}
.section-wedoit .wedoit-elements .wedoit-color-cube-1 {
  position: absolute;
  top: 50px;
  right: 250px;
  z-index: 0;
}
.section-wedoit .wedoit-elements .wedoit-color-cube-1 img {
  width: 250px;
}
.section-wedoit .wedoit-elements .wedoit-color-cube-2 {
  position: absolute;
  bottom: 0px;
  right: 370px;
  z-index: 1;
}
.section-wedoit .wedoit-elements .wedoit-color-cube-2 img {
  width: 200px;
}
.section-wedoit .wedoit-elements .wedoit-black-cube-1 {
  position: absolute;
  top: -50px;
  left: 150px;
}
.section-wedoit .wedoit-elements .wedoit-black-cube-1 img {
  width: 200px;
}
.section-wedoit .wedoit-elements .wedoit-black-cube-2 {
  position: absolute;
  top: 200px;
  left: 150px;
}
.section-wedoit .wedoit-elements .wedoit-black-cube-2 img {
  width: 200px;
}

/* formas de cubos a los costados */
.forma-flotante {
  position: absolute;
}
.forma-flotante.forma-1 {
  left: -50px;
  bottom: 100px;
  z-index: 0;
  filter: brightness(0.5);
  transform: rotate(-25deg);
}
.forma-flotante.forma-1 img {
  width: 150px;
}
.forma-flotante.forma-2 {
  right: -130px;
  top: 100px;
  z-index: -1;
}
.forma-flotante.forma-2 img {
  width: 450px;
}
.forma-flotante.forma-3 {
  right: -70px;
  top: 0px;
  z-index: 0;
}
.forma-flotante.forma-3 img {
  width: 250px;
}
.forma-flotante.forma-4 {
  left: -80px;
  bottom: 20%;
  z-index: 0;
}
.forma-flotante.forma-4 img {
  width: 250px;
}
.forma-flotante.forma-5 {
  right: 100px;
  top: 150px;
  z-index: 0;
}
.forma-flotante.forma-5 img {
  width: 900px;
}
.forma-flotante.forma-6 {
  left: -300px;
  top: 100px;
  z-index: 0;
}
.forma-flotante.forma-6 img {
  width: 650px;
}
.forma-flotante.forma-7 {
  left: -200px;
  top: 100px;
  z-index: 0;
}
.forma-flotante.forma-7 img {
  width: 450px;
}
.forma-flotante.forma-8 {
  left: -150px;
  top: 0px;
  z-index: 0;
}
.forma-flotante.forma-8 img {
  width: 350px;
}
.forma-flotante.forma-9 {
  left: 300px;
  top: 550px;
  z-index: 0;
}
.forma-flotante.forma-9 img {
  width: 100px;
}
.forma-flotante.forma-9.staff-augmentation {
  left: 100px;
}
.forma-flotante.forma-9.staff-augmentation img {
  width: 100px;
}
.forma-flotante.forma-10 {
  left: 100px;
  bottom: 100px;
  z-index: 0;
}
.forma-flotante.forma-10 img {
  width: 30px;
}
.forma-flotante.forma-10.staff-augmentation {
  left: unset;
  right: 200px;
  bottom: unset;
  top: 87px;
}
.forma-flotante.forma-10.staff-augmentation img {
  width: 30px;
}
.forma-flotante.forma-11 {
  right: 200px;
  bottom: -140px;
  z-index: 0;
}
.forma-flotante.forma-11 img {
  width: 250px;
}
.forma-flotante.forma-11.staff-augmentation {
  right: unset;
  left: 300px;
  bottom: -120px;
}
.forma-flotante.forma-11.staff-augmentation img {
  width: 250px;
}
.forma-flotante.forma-12 {
  left: -100px;
  top: 50px;
  z-index: -1;
}
.forma-flotante.forma-12 img {
  width: 650px;
}
.forma-flotante.forma-13 {
  right: -100px;
  bottom: 50px;
  z-index: -1;
}
.forma-flotante.forma-13 img {
  width: 650px;
}
.forma-flotante.forma-14 {
  left: -100px;
  top: 1px;
}
.forma-flotante.forma-14 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fa:hover {
  color: #5aa9de !important;
}

.fa-custom-yellow {
  color: transparent;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #000;
}

.fa-custom-red {
  color: transparent;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #e54027;
}
.fa-custom-red:hover {
  -webkit-text-stroke-color: #5aa9de;
}

.imagencubo1 {
  bottom: 155px;
  left: 341px;
  width: 75px;
  z-index: 3;
  position: absolute;
}

.imagencubo2 {
  width: 177px;
  right: 195px;
  position: absolute;
}

.imagencubo3 {
  left: -264px;
  width: 481px;
  position: absolute;
  bottom: 303px;
}

.imagencubo4 {
  right: -228px;
  width: 449px;
  position: absolute;
  bottom: 74px;
}

.section-recruiting {
  overflow: unset;
}

/* section backgrounds */
.background-red {
  background-color: #e54027;
  color: #fff;
}

.background-cyan {
  background-color: #5aa9de;
  color: #fff;
}

.background-green {
  background-color: #3db5ad;
  color: #fff;
}

.background-grey {
  background-color: #e5e5e5;
  color: black !important;
}

/* imagenes */
.section-contacto {
  background-color: rgb(97, 179, 172);
  display: flex;
  align-items: center;
  width: 100%;
  color: black;
  height: 750px;
}
.section-contacto .img-contacto {
  z-index: 1;
  width: 30%;
  max-width: 400px;
  position: absolute;
  left: 10%;
  /* Ajustar posición horizontal */
  bottom: 10%;
  /*Ajustar posición vertical*/
  top: 50%;
  transform: translateY(-50%);
}
.section-contacto form .form-control {
  font-family: "League Spartan", sans-serifs;
}
.section-contacto .formulario {
  background-color: white;
  position: relative;
  width: 90%;
  max-width: 450px;
  margin: 0 auto;
  /* Center the form */
  z-index: 3;
  border-radius: 10px;
  padding: 35px 35px;
  /* Adjusted padding */
  box-sizing: border-box;
}
.section-contacto .formulario form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section-contacto .formulario .form-group {
  margin-bottom: 15px;
  /* Reducir espacio entre campos */
  display: flex;
  flex-direction: column;
}
.section-contacto .formulario .form-group label {
  margin-bottom: 5px;
  /* Espacio inferior al label */
  font-size: 0.9em;
  /* Tamaño del label */
  color: #444;
  /* Color del label */
}
.section-contacto .formulario .form-control {
  border: none;
  /* Remove all borders */
  border-bottom: 1px solid red;
  /* Add a red border at the bottom */
  padding: 10px;
  font-size: 1em;
  border-radius: 0;
  /* Remove border radius */
  outline: none;
}
.section-contacto .formulario.formulario-2 {
  border-radius: unset;
  max-width: unset;
  padding: 60px 120px;
}
.section-contacto .overflow-unset {
  overflow: unset;
}
.section-contacto .custom-button {
  padding: 10px 45px;
}
.section-contacto.contacto-2 {
  height: unset;
}

.section-clients .carousel-logo {
  height: 80px;
}

.section-makeitgreat {
  background-color: #ffe13a;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.section-everywhere {
  background-color: white;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.section-everywhere .everywhere-content {
  position: relative;
  z-index: 0;
}

.section-ourpurpose h3 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 40px;
}

.section-ourvalues h3 {
  font-size: 40px;
  font-weight: 800;
  margin-top: 40px;
}

.section-ourvaluesp {
  margin-top: -14px;
}

.imagen-proceso {
  margin-top: 30px;
  width: 100%;
  margin-bottom: 30px;
}

.section-proceso .process-box {
  display: flex;
  position: relative;
}
.section-proceso .process-item-balloon {
  flex: 0 0 40%;
}
.section-proceso .process-item-dot {
  position: relative;
  flex: 0 0 20%;
}
.section-proceso .process-item-text {
  flex: 0 0 40%;
}
.section-proceso .process-item-text ul li {
  font-family: "League Spartan";
  font-size: 1.2rem;
}
.section-proceso .ballon-with-text {
  position: relative;
}
.section-proceso .ballon-with-text p {
  position: absolute;
  color: #fff;
  top: 96px;
  left: 83px;
  font-family: "DM sans", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.1;
  width: 170px;
}
.section-proceso .img-dot {
  position: absolute;
  width: 30px;
  top: 45%;
  left: 72px;
}
.section-proceso .vertical-line {
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  background-color: #000;
}

.section-staff-augmentation {
  overflow: unset;
}

.benefits-list {
  list-style: none;
  padding: 0;
}
.benefits-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
  gap: 10px;
}

.benefit-icon {
  width: 30px;
  height: 30px;
}

/* carousel */
.slider-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
  justify-content: center;
}

.slider-card {
  flex: 0 0 45%;
  width: 45%;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  margin: 0px 28px;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
  color: #757575;
  box-shadow: 2px 3px 7px rgb(174, 173, 173);
}

.slider-card p {
  margin-top: 34px;
  margin-bottom: 15px;
}

.slider-card.active {
  opacity: 1;
  transform: scale(1.07);
  color: black;
  background-color: #f0f0f0;
}

.card-icon {
  width: 38px;
  position: absolute;
  top: 15px;
  left: 27px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 27px;
}

.slider-control {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: white;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-control.active {
  width: 45px;
  height: 8px;
  border-radius: 5px;
  background-color: #75e3e0;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  color: #ffd700;
  font-size: 1.1em;
  -webkit-text-stroke: 1px black;
  /* For Webkit browsers like Chrome and Safari */
}

/* carousel logos */
.logo-carousel {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.logo-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  padding: 10px 0;
}

.carousel-logo {
  height: 40px;
  margin: 0 20px;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.carousel-logo:hover {
  opacity: 1;
}

.carousel-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.carousel-btn:hover {
  opacity: 1;
}

/* form */
.service-details__how-we-help-points .icon-opt {
  flex: 0 0 10%;
}
.service-details__how-we-help-points .icon-opt i {
  font-size: 12px;
  background-color: var(--conult-base);
  padding: 10px;
  color: #fff;
  border-radius: 50px;
}
.service-details__how-we-help-points .text {
  flex: 0 0 90%;
}

.section-contacto {
  background-color: #61b3ac;
  display: flex;
  align-items: center;
  width: 100%;
  color: black;
  padding: 40px 0;
}
.section-contacto .forma-fondo {
  position: absolute;
  filter: brightness(0.5);
  width: 1900px;
  -o-object-fit: cover;
     object-fit: cover;
}

.background-green-with-image {
  background-image: url("../images/elementos/fondo2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #61b3ac;
  width: 100%;
  color: white;
  padding: 40px 0;
}

/* numeros */
.number-box {
  position: relative;
  /* Required to stack squares */
  width: 120px;
  height: 120px;
}
.number-box .square {
  position: relative;
  width: 100px;
  height: 100px;
  z-index: 2;
}
.number-box .black-square {
  position: absolute;
  top: -5px;
  left: -7px;
  background-color: black;
  z-index: 1;
}
.number-box .red-square {
  background-color: #e54027;
}
.number-box .yellow-square {
  background-color: #ffe13a;
}
.number-box .green-square {
  background-color: #3db5ad;
}
.number-box .cyan-square {
  background-color: #5aa9de;
}
.number-box .number {
  right: -55px;
  color: white;
  font-size: 70px;
  font-weight: 900 !important;
  position: relative;
  top: 34px;
}

/* footer */
footer {
  background-color: white;
  color: black;
  padding: 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  /* Make footer-content relative to position the icons*/
}

.social-icons {
  margin-bottom: 15px;
}
.social-icons a {
  font-size: 22px;
  color: #e45548;
  text-decoration: none;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.copyright-text {
  font-size: 13px;
  text-align: center;
  white-space: nowrap;
  color: #444;
}

.contact-icons {
  position: fixed;
  right: 30px;
  bottom: 5%;
  /* width: 47px; */
  transform: translateY(-55%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contact-icons a {
  font-size: 22px;
  color: white;
  text-decoration: none;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 10px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.14), 1px 6px 30px 0 rgba(0, 0, 0, 0.12), 0 3px 4px -3px rgba(0, 0, 0, 0.3);
}

.contact-icons2 {
  position: absolute;
  right: 19%;
  transform: translateY(-87%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icons2 a {
  font-size: 18px;
  color: white;
  text-decoration: none;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.copyright-text a {
  color: red;
}

.contact-icons a:first-child {
  background-color: #25d366;
  /* whatsapp background color */
}
.contact-icons a:last-child {
  background-color: #77b1f5;
  /* email background color */
}

.contact-icons2 a:first-child {
  background-color: #25d366;
  /* whatsapp background color */
}
.contact-icons2 a:last-child {
  background-color: #77b1f5;
  /* email background color */
}

/* Extra style to hide input arrow */
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.section-proceso .vertical-line {
  left: 441px;
}

.right-images .main-banner-elements {
  width: 550px;
}

.main-banner-elements .main-puzzle img {
  width: 400px;
}

.main-banner-elements .main-puzzle {
  position: absolute;
  top: 89px;
  left: -124px;
}

.forma-flotante.forma-11.staff-augmentation {
  right: unset;
  left: 1181px;
  bottom: -104px;
}

.forma-flotante.forma-11 {
  right: 139px;
  bottom: -1px;
  z-index: 0;
}

.forma-flotante.forma-11.staff-augmentation img {
  width: 192px;
}

.main-banner-elements .main-cube-line {
  position: absolute;
  top: 200px;
  right: 200px;
}

/* queries */
@media (max-width: 1920px) {
  .recruiting {
    right: 86px !important;
    bottom: -107px !important;
    z-index: 0;
  }
}
@media (max-width: 1440px) {
  .forma-flotante.forma-11 {
    right: 85px;
    bottom: -107px;
    z-index: 0;
  }
  .recruiting {
    right: 85px;
    bottom: -107px;
    z-index: 0;
  }
  .forma-flotante.forma-11 img {
    width: 192px;
  }
  .forma-flotante.forma-11.staff-augmentation {
    right: unset;
    left: 1152px !important;
    bottom: -99px !important;
  }
}
@media (max-width: 1199px) {
  .right-images .main-banner-elements {
    width: 450px;
  }
  .main-banner-elements .main-puzzle img {
    width: 250px;
  }
}
@media (max-width: 991px) {
  .main-banner-elements {
    margin-left: 0;
  }
  .right-images .main-banner-elements {
    width: 350px;
    margin-left: -30px;
    top: 100px;
  }
  .main-banner-elements .main-puzzle img {
    width: 150px;
  }
  .main-banner-elements .main-puzzle {
    left: 10px;
  }
  .main-banner-elements .main-gears .gear1,
  .main-banner-elements .main-gears .gear2 {
    width: 20px;
  }
  .main-banner-elements .main-dots {
    right: 0;
  }
  .main-banner-elements .main-circles img {
    width: 50px;
  }
  .main-banner-elements .main-cube-line {
    top: 150px;
    right: 100px;
  }
  .main-banner-elements .main-cube-line .cube-line {
    width: 50px;
  }
  .main-banner-elements .main-puzzle img {
    width: 250px;
  }
  .main-banner-elements .main-circles {
    right: 100px;
  }
  .main-banner-elements .main-gears {
    top: 30px;
    right: 100px;
  }
  .main-banner-elements .main-puzzle {
    top: 70px;
  }
  .main-banner-elements .main-puzzle {
    left: -80px;
  }
  .section-contacto .formulario.formulario-2 {
    padding: 60px 60px;
    width: unset;
  }
  .forma-flotante.forma-11 {
    bottom: -70px;
  }
  .forma-flotante.forma-11 img {
    width: 150px;
  }
  .forma-flotante.forma-9,
  .forma-flotante.forma-10 {
    display: none;
  }
  .section-proceso .vertical-line {
    left: 376px;
  }
  .section-talentos .talentos-elements {
    width: 350px;
    height: 400px;
    top: 0;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .right-images {
    margin-left: 50px;
  }
  .forma-flotante.forma-5,
  .forma-flotante.forma-6 {
    display: none;
  }
  .section-contacto {
    height: unset;
  }
  .section-contacto .formulario {
    max-width: unset;
  }
  footer .contact-icons {
    position: fixed;
    bottom: 20px;
    right: 15px;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
  footer .contact-icons a {
    margin: 5px 0;
  }
  .section-proceso .ballon-with-text p {
    top: 50px;
    left: 40px;
    font-size: 1.3rem;
    width: 100px;
  }
  .section-proceso .img-dot {
    position: absolute;
    width: 30px;
    top: 40%;
    left: 40px;
  }
  .section-proceso .vertical-line {
    left: 272px;
  }
  .monitor {
    width: unset;
  }
}
@media (max-width: 575px) {
  .logo-main {
    width: 155px;
  }
  .footer-content .copyright-text {
    white-space: unset;
  }
  .section-proceso .container {
    max-width: 420px;
    width: 420px;
  }
  .section-proceso .vertical-line {
    left: 224px;
  }
  .section-proceso .img-dot {
    top: 52px;
  }
  .section-proceso .ballon-with-text p {
    top: 27px;
    left: 32px;
  }
  .section-main.pb-120 {
    padding-bottom: 60px !important;
  }
  .title-big {
    font-size: 46px !important;
  }
  .right-images .main-banner-elements {
    top: 0;
    margin-left: unset;
    width: 300px;
  }
  .main-banner-elements .main-puzzle img {
    width: 145px;
  }
  .main-banner-elements .main-circles img {
    width: 36px;
  }
  .main-banner-elements .main-cube-line {
    top: 150px;
    right: 100px;
  }
  .main-banner-elements .main-cube-line .cube-line {
    width: 30px;
    position: absolute;
    left: 144px;
    top: -184px;
  }
  .main-banner-elements .main-gears .gear1,
  .main-banner-elements .main-gears .gear2 {
    width: 20px;
  }
  .section-wedoit .wedoit-content {
    width: 100%;
  }
  .mobile {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    top: 10px;
  }
  .btn {
    width: 135px;
  }
  .btnspan {
    width: 197px !important;
  }
  .btn-connect {
    width: 120px !important;
    font-size: 11px;
    margin-right: -9px;
  }
  .navbar-light .navbar-toggler {
    color: black;
    border-color: rgba(0, 0, 0, 0);
  }
  .main-banner-elements .main-gears {
    position: absolute;
    top: 1px;
    width: -1px;
    right: 53%;
  }
  .main-banner-elements .main-circles .main-circle {
    position: absolute;
    top: 8px;
  }
  .main-banner-elements .main-gears .gear1 {
    left: 5px;
    position: relative;
    top: 8px;
  }
  .main-banner-elements {
    position: relative;
    margin-left: 2px;
    height: 100%;
    top: 9px;
  }
  .title {
    font-size: 2.5rem;
    font-weight: 900;
  }
  .title-3 {
    font-size: 18px;
  }
  .title-4 {
    font-size: 28px;
  }
  .title-2 {
    font-size: 1rem;
    font-weight: 400;
  }
  .letter {
    font-size: 26px !important;
  }
  .main-text {
    display: flex;
    flex-direction: column;
    padding: 13px 20px;
  }
  .main-banner-elements .main-circles {
    position: absolute;
    bottom: 26px;
    right: 199px;
  }
  .puntos img {
    margin: 0 5px;
  }
  .section-proceso .vertical-line {
    left: 345px;
  }
  .section-quehacemos {
    padding: 0px !important;
  }
  .mobile-wedoit {
    width: 140px !important;
    position: absolute;
    bottom: -55px !important;
    right: 7% !important;
  }
  .section-wedoit {
    padding: 30px !important;
    height: 780px;
  }
  .section-wedoit .wedoit-elements {
    position: relative;
    width: 350px;
  }
  .section-wedoit .wedoit-elements {
    position: relative;
    width: 350px;
  }
  .section-wedoit .wedoit-elements .wedoit-gears .gear1 {
    width: 18px;
  }
  .section-wedoit .wedoit-elements .wedoit-gears .gear2 {
    width: 18px;
  }
  .section-wedoit .wedoit-elements .wedoit-gears {
    right: 15px;
  }
  .section-wedoit .wedoit-elements .wedoit-white-cube img {
    width: 105px;
  }
  .section-wedoit .wedoit-elements .wedoit-dots {
    position: absolute;
    top: 127px;
    right: -1%;
    z-index: 0;
  }
  .section-wedoit .wedoit-elements .wedoit-white-cube {
    position: absolute;
    bottom: -49px;
    right: 23px;
  }
  .section-wedoit .wedoit-elements .wedoit-snake-lines {
    position: absolute;
    display: flex;
    flex-direction: column;
    left: -12px;
    bottom: 58px;
  }
  .section-wedoit .wedoit-elements .wedoit-dots img {
    width: 2px;
  }
  .section-wedoit .wedoit-elements .wedoit-snake-lines img {
    width: 98px;
  }
  .section-wedoit .wedoit-elements .wedoit-diamonds img {
    width: 9px;
  }
  .section-wedoit .wedoit-elements .wedoit-diamonds {
    position: absolute;
    left: 13px;
    bottom: 10px;
  }
  @keyframes translate-up-down-1 {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(100px);
    }
  }
  @keyframes translate-up-down-2 {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-100px);
    }
  }
  @keyframes translate-up-down-3 {
    0% {
      top: 0;
      left: 0;
    }
    25% {
      top: 0;
      /* Desplazamiento horizontal reducido */
      left: calc(80% - 50px);
    }
    50% {
      /* Desplazamiento vertical */
      top: 150px;
      left: calc(80% - 50px);
    }
    75% {
      top: 150px;
      left: 0;
    }
    100% {
      top: 0;
      left: 0;
    }
  }
  .section-wedoit .wedoit-elements .wedoit-color-cube-1 img {
    left: -11px;
    top: 69px;
    position: absolute;
    width: 92px;
  }
  .section-wedoit .wedoit-elements .wedoit-color-cube-1 {
    position: absolute;
    top: -63px;
    right: 246px;
    z-index: 2;
  }
  .section-wedoit .wedoit-elements .wedoit-color-cube-2 img {
    left: 153px;
    position: absolute;
    width: 109px;
    bottom: 0px;
  }
  .section-wedoit .wedoit-elements .wedoit-black-cube-1 img {
    z-index: 1;
    right: -85px;
    width: 81px;
    position: absolute;
    top: -19px;
  }
  .section-wedoit .wedoit-elements .wedoit-black-cube-2 img {
    right: -79px;
    z-index: 1;
    position: absolute;
    width: 87px;
    bottom: -92px;
  }
  .section-wedoit .wedoit-elements .wedoit-circle-dot img {
    width: 40px;
  }
  .section-wedoit .wedoit-elements .wedoit-circle-dot img {
    width: 32px;
  }
  .section-wedoit .wedoit-elements .wedoit-line {
    position: absolute;
    top: 4px;
    left: 51px;
  }
  .line-mobile {
    height: 75px;
  }
  .section-wedoit .wedoit-elements .wedoit-circle-dot {
    position: absolute;
    top: 18px;
    left: 35px;
  }
  .wedoit-dot {
    width: 8px;
    top: -11px !important;
    left: -3px !important;
  }
  .wedoit-circle {
    display: none;
  }
  .number-box .number {
    right: -47px;
    color: white;
    font-size: 70px;
    font-weight: 900 !important;
    position: relative;
    top: 21px;
  }
  .contact-icons2 {
    display: none;
  }
  .forma-flotante.forma-8 img {
    width: 116px;
  }
  .forma-flotante.forma-8 {
    left: 336px;
    top: -6px;
    z-index: 0;
  }
  .forma-staff {
    left: -316px !important;
  }
  .left {
    justify-content: left !important;
  }
  .section-proceso .vertical-line {
    left: 225px;
  }
  .forma-flotante.forma-11 {
    right: 10px;
    bottom: -71px;
    z-index: 0;
  }
  .cubo-left {
    left: 10px;
  }
  .forma-flotante.forma-11.staff-augmentation img {
    width: 250px;
  }
  .forma-14 {
    left: -200px;
    top: 1px;
  }
  .forma-14 img {
    top: -6px;
    width: 1671px !important;
    position: absolute;
  }
}
@media (max-width: 419px) {
  .section-contacto .formulario.formulario-2 {
    padding: 20px 15px !important;
    width: unset !important;
  }
  .formulario {
    padding: 20px !important;
    z-index: 0 !important;
  }
  .formulario .form-control {
    font-size: 11.5px !important;
    overflow: hidden !important;
  }
  .formulario .form-control::-moz-placeholder {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .formulario .form-control::placeholder {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .forma-flotante.forma-8 {
    left: 265px;
    top: -13px;
    z-index: 0;
  }
  .forma-flotante.forma-11 img {
    width: 119px;
  }
  .forma-flotante.forma-11 {
    bottom: 46px !important;
    right: 68px !important;
  }
  .main-banner-elements .main-cube-line {
    top: 150px;
    right: 600px;
    width: 400px !important;
  }
  .main-banner-elements .main-cube-line .cube-line {
    left: 788px;
    top: -19px;
  }
  .main-banner-elements .main-dots {
    right: 145px !important;
    top: 197px !important;
  }
  .main-banner-elements .main-dots img {
    width: 3px;
    margin: 0 2px;
  }
  .section-proceso .process-box {
    display: flex;
    position: relative;
    margin-right: 40px;
  }
  .section-proceso .vertical-line {
    left: 209px;
  }
  .p1 {
    font-size: 19px !important;
  }
  .p2 {
    font-size: 20px !important;
  }
  .p3 {
    font-size: 15px !important;
  }
  .p4 {
    font-size: 16px !important;
  }
  .plr-20 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .forma-flotante.forma-11.resize {
    right: 85px !important;
    bottom: 8px !important;
  }
}/*# sourceMappingURL=style.css.map */