* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
  width: 8px; /* Ancho de la barra de desplazamiento */
}

::-webkit-scrollbar-track {
  background-color: #161620; /* Color de fondo de la barra de desplazamiento */
}

::-webkit-scrollbar-thumb {
  background-color: #40319d; /* Color del control deslizante de la barra de desplazamiento */
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  background-color: #161620;
  font-family: "Sora", sans-serif;
  margin: 0;
}
@media (max-width: 800px) {
  body {
    overflow-x: hidden !important;
  }
}

.tag {
  color: #827AC5;
  display: inline;
  font-weight: 600;
  font-size: 24px !important;
}

.language {
  background-color: transparent;
  color: #827AC5;
  border: none;
}

.button {
  position: relative;
  padding: 10px 20px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: transparent;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  z-index: 1;
  border-radius: 50px;
  padding: 14px 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 380px) {
  .button {
    font-size: 10px;
  }
}
@media (max-width: 320px) {
  .button {
    font-size: 9px !important;
  }
}
.button:hover {
  padding: 14px 40px;
}
.button span {
  margin-left: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.button:hover span {
  font-weight: 600;
}

.button-container {
  display: inline-block;
  position: relative;
  background-image: linear-gradient(45deg, #671d96, #40319d);
  border-radius: 50px;
  overflow: hidden;
  margin: 20px 0 20px 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #161620;
  z-index: -1;
  margin: 2px;
  border-radius: 50px;
}

.header .hamburger {
  display: none;
  padding: 20px;
  margin: auto 20px;
  color: white;
  top: 0;
  right: 0;
}
@media (max-width: 970px) {
  .header .hamburger {
    display: inherit;
    cursor: pointer;
  }
}
.header .header__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 80px;
  background-color: #0a0712;
  width: 82%;
  margin: auto;
  margin-top: 30px;
  border-radius: 50px;
  padding: 0 70px;
}
@media (max-width: 970px) {
  .header .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    width: 90%;
  }
}
.header .header__logo {
  margin: 0;
}
.header .header__logo img {
  height: 40px;
}
@media (max-width: 600px) {
  .header .header__logo img {
    height: 35px;
  }
}
@media (max-width: 970px) {
  .header {
    overflow-x: hidden !important;
  }
}

.nav {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
}
@media (max-width: 970px) {
  .nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
}
.nav li {
  list-style: none;
  margin-left: 30px;
}
@media (max-width: 970px) {
  .nav li {
    margin: 20px 0;
  }
}
.nav a, .nav li {
  color: #fff;
  text-decoration: none;
}
.nav .nav__dropdown {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media (max-width: 970px) {
  .nav .nav__dropdown {
    height: unset !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
.nav .nav__dropdown:hover .list__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav .list__container {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  background-color: #0a0712;
  top: 50px;
  left: -310px;
  padding: 40px;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
@media (max-width: 970px) {
  .nav .list__container {
    position: relative;
    left: unset;
    top: unset;
    padding: 40px 0 0 0;
  }
}
.nav .list__container:hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav .list__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  -webkit-box-align: unset !important;
      -ms-flex-align: unset !important;
          align-items: unset !important;
}
@media (max-width: 970px) {
  .nav .list__ul {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}
.nav .list__title {
  margin: 20px 50px !important;
}
@media (max-width: 970px) {
  .nav .list__title {
    margin: 10px !important;
    position: relative;
    z-index: 9;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
.nav .list__title span {
  background-image: linear-gradient(45deg, #671d96, #40319d);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline;
  font-weight: 600;
}
@media (max-width: 970px) {
  .nav .list__title ul {
    display: none !important;
    height: unset !important;
    margin: 20px 0;
  }
}
.nav .list__title ul li {
  margin: 10px 0 10px 10px !important;
  width: 120px !important;
}
.nav .list__title ul li:nth-child(1) {
  margin-top: 10px !important;
}
.nav .list__title:hover ul {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.nav .list {
  color: white;
}
.nav .list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
}
.nav .list ul li {
  margin: 0;
}
.nav .cerrar {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
  color: white;
  z-index: 99999;
  cursor: pointer;
}
@media (max-width: 970px) {
  .nav .cerrar {
    display: inherit;
  }
}
@media (max-width: 970px) {
  .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    z-index: 99998;
    top: 0;
    left: 100vw;
    height: 100vh;
    width: 100vw;
    background: #0a0712;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    overflow-y: scroll;
  }
}

.header__languages {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  cursor: pointer;
}
@media (max-width: 970px) {
  .header__languages {
    padding: 0;
  }
}
.header__languages li {
  margin-right: 2px;
  font-size: 14px;
}
@media (max-width: 970px) {
  .header__languages li {
    font-size: 10px;
  }
}
@media (max-width: 600px) {
  .header__languages li {
    width: 24px;
  }
}

.pre-footer {
  margin: 50px 0 0 0;
  padding: 50px 0 20px 0;
  text-align: center;
}
.pre-footer h3, .pre-footer p {
  color: white;
}
.pre-footer p {
  width: 46%;
  margin: auto;
}
@media (max-width: 1024px) {
  .pre-footer p {
    width: 70%;
  }
}

@media (max-width: 500px) {
  .pre-footer {
    margin: 50px 50px;
  }
}

@media (max-width: 380px) {
  .pre-footer p {
    width: 85%;
  }
}
.pre-footer .button {
  border: none;
  cursor: pointer;
}

.footer {
  background: rgb(103, 29, 150);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(103, 29, 150, 0.4734023876)), color-stop(42%, rgba(64, 49, 157, 0.4087956461)), color-stop(74%, rgba(64, 49, 157, 0)));
  background: linear-gradient(0deg, rgba(103, 29, 150, 0.4734023876) 0%, rgba(64, 49, 157, 0.4087956461) 42%, rgba(64, 49, 157, 0) 74%);
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer a {
  color: white;
  text-decoration: none;
}
.footer small {
  color: white;
}
.footer .legal {
  margin-top: 15px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer .legal a {
  margin: 0;
}
.footer .legal-google {
  margin-bottom: 30px;
}
.footer .footer__inner {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.footer .footer__inner img {
  width: 200px;
  margin-bottom: 20px;
}
.footer .footer__inner i {
  color: white;
  font-size: 20px;
  margin: 0 10px;
}
.footer .footer__inner .payment-methods {
  width: 60px;
  margin-bottom: 20px;
}
.footer .footer__inner .icon-img {
  color: white;
  height: 20px;
  width: auto;
  font-size: 20px;
  margin: 0 10px;
}
.footer .footer__inner span {
  color: white;
}
.footer .footer__inner .button-container {
  background-image: none;
}
.footer .footer__inner .footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 510px) {
  .footer .footer__inner .footer__social {
    width: 90%;
    margin: auto;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer .footer__inner .footer__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media (max-width: 1025px) {
  .footer .footer__inner .footer__icons {
    margin-top: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer .footer__inner .footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  margin-bottom: 20px;
}
.footer .footer__inner .footer__info a {
  color: white;
  text-decoration: none;
}
.footer .footer__inner .footer__info p {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 10px;
}

.hero .hero__inner {
  color: #fff;
  text-align: center;
  word-spacing: -0.22px;
}
.hero .hero__inner h2 {
  font-weight: 400;
  font-size: 22px;
  margin: 20px auto;
  margin-top: 60px;
}
@media (max-width: 400px) {
  .hero .hero__inner h2 {
    font-size: 22px;
  }
}


.hero .hero__inner h3 {
  display: block;
  white-space: nowrap;
  width: 12ch;
  font-size: 120px;
  font-weight: 400;
  margin: 0;
  margin: 10px auto;
  -webkit-animation: typing 1.5s steps(12), blink 0.5s step-end infinite alternate;
          animation: typing 1.5s steps(12), blink 0.5s step-end infinite alternate;
  overflow: hidden;
}
@media (max-width: 800px) {
  .hero .hero__inner h3 {
    font-size: 34px;
    -webkit-animation: none;
            animation: none;
  }
}
@media (max-width: 601px) {
  .hero .hero__inner h3 {
    font-size: 34px;
  }
}
@media (max-width: 430px) {
  .hero .hero__inner h3 {
    font-size: 34px;
  }
}
@media (max-width: 361px) {
  .hero .hero__inner h3 {
    font-size: 34px;
  }
}
@media (max-width: 320px) {
  .hero .hero__inner h3 {
    font-size: 34px;
  }
}

.bigproject__video {
  width: 500px;
  overflow: hidden;
  border-radius: 40px;
  margin: 40px auto;
}
@media (max-width: 768px) {
  .bigproject__video {
    width: 70%;
  }
}
.bigproject__video video {
  width: 100%;
}

.is-active {
  left: 0;
}

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

@keyframes typing {
  from {
    width: 0;
  }
}
@-webkit-keyframes blink {
  50% {
    border-color: transparent;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
.legal-google {
  text-align: center;
  padding: 0 10px;
}

.blog__card img {
  width: 100%;
  height: auto;
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (max-width: 768px) {
  .blog__card img {
    width: 100%;
    height: auto;
    max-width: 300px;
  }
}

.brands-strip__img {
  width: auto;
  height: auto;
  max-height: 60px;
}
@media (max-width: 768px) {
  .brands-strip__img {
    max-height: 40px;
    will-change: transform;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}

@media (max-width: 768px) {
  .works__card img {
    width: 100%;
    height: auto;
    max-width: 250px;
    will-change: transform;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}

@media (max-width: 768px) {
  .certification-block img {
    max-width: 120px;
    height: auto;
    will-change: transform;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}