@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

/* ---------- Variables ---------- */
:root {
  
  --secondary: #FFF621;
    --fs-btn-xxl: 64px;
  --primary: #e31748;
  --secundario: #fff621;
  --black: #1a1e23;
  --white: #f6f6f6;

  --color-1: #1a1e23;

  --font-1: "Open Sans", sans-serif;

  --fs-xl: 120px;
  --fs-lg: 96px;
  --fs-md: 64px;
  --fs-sm: 40px;
  --fs-xs: 24px;
  --fs-xxs: 18px;
  --fs-70: 70px;
  --fs-60: 60px;
  --fs-48: 48px;
  --fs-36: 36px;
  --fs-30: 30px;

  --fs-btn-xxl: 64px;
}

/* ---------- Animation ---------- */
@-webkit-keyframes showLogo {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes showLogo {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes aparecer {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }

  70% {
    opacity: 1;
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes aparecer {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }

  70% {
    opacity: 1;
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes draw {
  from {
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw {
  from {
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes iconoNS {
  0% {
    fill-opacity: 0;
    stroke-dashoffset: 2000px;
  }

  33% {
    fill-opacity: 0;
  }

  50% {
    fill-opacity: 1;
  }

  100% {
    fill-opacity: 1;
    stroke-dashoffset: 0px;
  }
}

@keyframes iconoNS {
  0% {
    fill-opacity: 0;
    stroke-dashoffset: 2000px;
  }

  33% {
    fill-opacity: 0;
  }

  50% {
    fill-opacity: 1;
  }

  100% {
    fill-opacity: 1;
    stroke-dashoffset: 0px;
  }
}

/* ---------- General ---------- */
* {
  font-family: var(--font-1);
}

html,
body {
  min-width: 380px;
  background-color: var(--color-1);
}

h1 {
  font-size: var(--fs-lg);
}

h2 {
  font-size: var(--fs-md);
}

h3 {
  font-size: var(--fs-xs);
}

h4 {
  font-size: var(--fs-xs);
}

.card {
  border: 0;
  border-radius: 30px;
  background-color: var(--white);
}

.card.card-outline {
  border: 1px solid var(--white);
  color: var(--white);
  background-color: transparent;
}

.btn-primary {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  padding: 10px 10px;
  transition: background-color 0.3s, border-color 0.3s;
  -o-transition: background-color 0.3s, border-color 0.3s;
  -moz-transition: background-color 0.3s, border-color 0.3s;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  border-radius: 15px;
}

.btn-primary.btn-xxl {
  font-size: var(--fs-xs);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  padding: 15px 20px;
  border-radius: 15px;
}

.btn-primary.btn-xl {
  font-size: var(--fs-xs);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  padding: 15px 20px;
  border-radius: 15px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible {
  background-color: color-mix(
    in srgb,
    var(--primary) 80%,
    white 20%
  ) !important;
  border-color: color-mix(in srgb, var(--primary) 80%, white 20%) !important;
}

.btn-primary:focus,
.btn-primary:focus-visible {
  box-shadow: 0 0 0 3px #e85b6080;
}

.btn-primary:active {
  background-color: color-mix(
    in srgb,
    var(--primary) 80%,
    black 20%
  ) !important;
  border-color: color-mix(in srgb, var(--primary) 80%, black 20%) !important;
}

.btn-secundario {
  background-color: var(--secundario);
  border: 1px solid var(--secundario);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  padding: 10px 10px;
  transition: background-color 0.3s, border-color 0.3s;
  -o-transition: background-color 0.3s, border-color 0.3s;
  -moz-transition: background-color 0.3s, border-color 0.3s;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  border-radius: 15px;
}

.btn-secundario.btn-xxl {
  font-size: var(--fs-xs);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  padding: 15px 20px;
  border-radius: 15px;
}

.btn-secundario.btn-xl {
  font-size: var(--fs-xs);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  padding: 15px 20px;
  border-radius: 15px;
}

.btn-secundario:hover,
.btn-secundario:focus,
.btn-secundario:focus-visible {
  background-color: color-mix(
    in srgb,
    var(--secundario) 80%,
    white 20%
  ) !important;
  border-color: color-mix(in srgb, var(--secundario) 80%, white 20%) !important;
}

.btn-secundario:focus,
.btn-secundario:focus-visible {
  box-shadow: 0 0 0 3px #e8d85b80;
}

.btn-secundario:active {
  background-color: color-mix(
    in srgb,
    var(--secundario) 80%,
    black 20%
  ) !important;
  border-color: color-mix(in srgb, var(--secundario) 80%, black 20%) !important;
}

.dropdown-menu[data-bs-popper] {
  left: unset;
  right: 0;
}

label {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: var(--color-1);
  text-transform: uppercase;
}

label.form-check-label {
  text-transform: none;
}

input[type="text"].form-control,
input[type="email"].form-control,
input[type="number"].form-control,
input[type="tel"].form-control,
input[type="date"].form-control,
textarea.form-control {
  padding: 16px;
  background-color: #ffffff69;
  border-radius: 10px;
  color:white;
  border: 0;
  border-bottom: 1px solid var(--color-1);
  transition: all 0.3s;
}

input[type="text"].form-control:focus,
input[type="text"].form-control:active,
input[type="email"].form-control:focus,
input[type="email"].form-control:active,
input[type="number"].form-control:focus,
input[type="number"].form-control:active,
input[type="tel"].form-control:focus,
input[type="tel"].form-control:active,
input[type="date"].form-control:focus,
input[type="date"].form-control:active,
textarea.form-control:focus,
textarea.form-control:active {
  box-shadow: none;
  border-bottom-color: var(--primary);
  background-color: rgba(177, 40, 44, 0.1);
}

input[type="text"].form-control::placeholder,
input[type="email"].form-control::placeholder,
input[type="number"].form-control::placeholder,
input[type="tel"].form-control::placeholder,
input[type="date"].form-control::placeholder,
textarea.form-control::placeholder {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: var(--color-1);
  opacity: 0.7;
}

input[type="number"].telefono::-webkit-outer-spin-button,
input[type="number"].telefono::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"].telefono {
  -moz-appearance: textfield;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-check-input:focus {
  border-color: var(--primary);
  outline: 0;
  box-shadow: 0 0 0 0.25rem #e85b6080;
}

.custom-tooltip {
  --bs-tooltip-bg: #000;
  --bs-tooltip-color: #f6f6f6;
  border-radius: 20px 20px 20px 0px;
  border: 1px solid#171717;
}

.px-20 {
  padding-left: 40px;
  padding-right: 40px;
}

.py-250 {
  padding-top: 250px;
  padding-bottom: 250px;
}

.pt-250 {
  padding-top: 250px;
}

.pb-250 {
  padding-bottom: 250px;
}

.my-250 {
  margin-top: 250px;
  margin-bottom: 250px;
}

.modal-content {
  background-color: transparent;
}

.modal-header {
  border: 0;
}

.icono-ns {
  position: absolute;
  max-width: 135px;
  left: 35%;
  top: 0px;
}

#icono-ns path {
  fill-opacity: 0;
  fill: transparent;
  stroke-dasharray: 2000px;
  stroke-dashoffset: 2000px;
}

#icono-ns.animacion path {
  fill-opacity: 1;
  fill: rgb(177, 40, 44);
  stroke-dashoffset: 0px;
  animation: iconoNS 5s ease-out 0s;
}

/* Button Two Start */
.button-two {
  background: #e31748;
  border-radius: 15px;
  border: 2px solid;
  border-color: none;
  width: 40px;
  height: 40px;
  padding: 0 !important;
}

.button-two svg {
  stroke: var(--white);
}

.button-two:focus {
  box-shadow: none;
}

.button-two .hamburger {
  transition: transform 1s;
  -o-transition: transform 1s;
  -moz-transition: transform 1s;
  -webkit-transition: transform 1s;
}

.button-two .line {
  transition: 1s;
  -o-transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  stroke-dasharray: 60 31 60 300;
}

.button-two[aria-expanded="true"] .hamburger {
  transform: translate(3px, -3px) rotate(0.125turn);
  -o-transform: translate(3px, -3px) rotate(0.125turn);
  -moz-transform: translate(3px, -3px) rotate(0.125turn);
  -webkit-transform: translate(3px, -3px) rotate(0.125turn);
}

.button-two[aria-expanded="true"] .line {
  stroke-dasharray: 60 105 60 300;
  stroke-dashoffset: -90;
}

/* Mouse animation */
@-webkit-keyframes scrollDown {
  0% {
    top: 12px;
    opacity: 0;
  }

  15% {
    top: 12px;
    opacity: 1;
  }

  30% {
    top: 12px;
    opacity: 1;
  }

  45% {
    top: 30px;
    opacity: 1;
  }

  100% {
    top: 30px;
    opacity: 0;
  }
}

@keyframes scrollDown {
  0% {
    top: 12px;
    opacity: 0;
  }

  15% {
    top: 12px;
    opacity: 1;
  }

  30% {
    top: 12px;
    opacity: 1;
  }

  45% {
    top: 30px;
    opacity: 1;
  }

  100% {
    top: 30px;
    opacity: 0;
  }
}

.mouse__icon.hide {
  display: none;
}

.scroll__down {
  position: fixed;
  right: 2rem;
  bottom: 1rem;
}

.scroll__mouse {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 54px;
  border: 2px solid var(--white);
  border-radius: 20px;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.2);
}

.scroll__wheel {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 7px;
  height: 11px;
  background-color: var(--white);
  border-radius: 4px;
  -webkit-animation: scrollDown 2s infinite;
  animation: scrollDown 2s infinite;
}

/* ---------- Preloader ---------- */
#preloader {
  width: 100%;
  height: 100vh;
  
  background-color: var(--black);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999;
}

#preloader.transparent {
  background-color: transparent;
}

#preloader .preloader-logo-container {
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

#preloader .preloader-logo-container.show {
  opacity: 1;
  animation: showLogo 1s ease-out 0s;
  transform: translate(0%, 0%);
  -o-transform: translate(0%, 0%);
  -moz-transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
  transition: opacity 1s ease-out, transform 1s ease-in-out 1.1s;
  -o-transition: opacity 1s ease-out, transform 1s ease-in-out 1.1s;
  -moz-transition: opacity 1s ease-out, transform 1s ease-in-out 1.1s;
  -webkit-transition: opacity 1s ease-out, transform 1s ease-in-out 1.1s;
}

#preloader .preloader-logo-container .preloader-logo {
  height: 152px;
}

/* ---------- Navbar ---------- */
.navbar {
  padding-left: 20px;
  padding-right: 20px;
}

.sticky-top {
  background-color: var(--color-1);
}

.navbar .navbar-nav .nav-item .nav-link {
  color: var(--white);
}

.navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--primary);
}

.navbar .navbar-nav .nav-item .btn-primary {
  margin-left: 20px;
  border-radius: 15px;
}

.navbar .dropdown-menu {
  --bs-dropdown-min-width: unset;
}

.navbar .dropdown-item {
  cursor: pointer;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active,
.navbar .dropdown-item:active {
  background-color: var(--primary);
  color: var(--white);
}

.navbar .dropdown-item:hover {
  opacity: 0.7;
}

.navbar .dropdown-item .flag-icon {
  font-size: 20px;
  border-radius: 50%;
}

.navbar .dropdown-toggle {
  margin-left: 20px;
  border: 2px solid var(--white);
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0px 6px;
  height: 38px;
  border-radius: 15px;
}

.navbar .dropdown-toggle::after {
  display: none;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.navbar .dropdown-toggle:active {
  border-color: var(--primary);
  color: var(--primary);
}

.navbar .dropdown-toggle:focus,
.navbar .dropdown-toggle:focus-visible,
.navbar .dropdown-toggle:active:focus,
.navbar .dropdown-toggle:active:focus-visible {
  box-shadow: 0 0 0 3px #e85b6080;
}

.navbar .dropdown-toggle::after {
  margin-left: 0;
}

.navbar .dropdown-toggle .flag-icon {
  font-size: 20px;
  border-radius: 50%;
}

/* ---------- Page Content ---------- */
#header-sticky-container {
  padding: 50px 0 25px;
  /* height: 100%; */
  width: 100%;
}

#page-content-1 {
  height: 0px;
}

/* ---------- Header ---------- */
#header-ns {
  position: -webkit-sticky;
  position: sticky;
  top: 5rem;
}

#header-ns .card {
  position: relative;
  border: none;
  overflow: hidden;
}

#header-ns .card-body {
  padding: 0px;
  height: 533px;
}

#header-ns .card-body .info-video {
  width: 50%;
  height: 295px;
}

#header-ns .card .card-body > .container-fluid,
#header-ns .card .card-body > .container-fluid > .row,
#header-ns .card .card-body > .container-fluid > .row > div {
  height: 100%;
}

#header-ns .header-ns-banner-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  aspect-ratio: 1/1;
  padding: 100px;
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  overflow: hidden;
  background-color: var(--color-1);
  box-shadow:initial;
  border: 0 ;
  width: 38%;
}

#header-ns
  .header-ns-banner-animation-container
  .header-ns-banner-animation
  #video-ns {
  height: 100%;
  width: 100%;
  border-radius: 40px;
  /* display: none; */
  z-index: 0;
}

#header-ns .title span {
  display: inline-block;
}

#header-ns .title span:nth-of-type(odd) {
  font-size: 24px;
  font-weight: 400;
  line-height: 0.5;
}

#header-ns .title span:nth-of-type(even) {
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: 0.5;
}

#header-ns .title .title-1 {
  margin-left: 5px;
  color: white;
  margin-bottom: 28px;
}

#header-ns .title .title-2 {
  margin-bottom: 28px;
  color: white;
}

#header-ns .title .title-3 {
  vertical-align: top;
  margin-top: 7px;
  margin-left: 6px;
  color: white;
}

#header-ns .title .title-4 {
  color: white;
}

#header-ns .title-5 {
  color: white;
  text-align: center;
}

#header-ns #video {
  height: 533px;
  width: 100%;
  object-fit: cover;
}

#video-overlay-ns {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--black);
  background-image: linear-gradient(to bottom, #950018, #1a1e23);
}

#video {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: grayscale(100%) contrast(84%) brightness(86%) sepia(9%)
    hue-rotate(-33deg) saturate(353%);
  background-color: #1a1a1a;
  border-radius: 24px;
  display: block;
}

.video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #e31748;
  mix-blend-mode: multiply;
  pointer-events: none;
}

#video-overlay-ns img {
  position: absolute;
  width: 30%;
  z-index: 100;
}

#video-overlay-ns canvas {
  height: 100%;
  width: 100vw;
}

#video-overlay-ns .video-overlay-ns-red {
  height: 100%;
  z-index: 99;
}

#video-overlay-ns .video-overlay-ns-red video {
  height: 100%;
}

#video-overlay-ns .video-overlay-ns-red .video-overlay-ns-img {
  background-image: url(/assets/img/red.png);
  display: block;
  background-repeat: repeat;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Page Content 2 */
#page-content-2 {
  padding: 35px 0 0px;
}

#page-content-2 .card-2 {
  margin-bottom: 50px;
}

#page-content-2 h4 {
  font-size: var(--fs-xs);
  text-align: start;
  margin-bottom: 0px;
  font-weight: 400;
  letter-spacing: -1px;
}

#page-content-2 h2 {
  font-size: var(--fs-48);
  font-weight: 700;
  margin-bottom: 0px;
  letter-spacing: -2px;
}

#page-content-2 h3 {
  font-size: 24px;
  text-align: start;
  margin-bottom: 0px;
  font-weight: 400;
  letter-spacing: -2px;
}

#page-content-2 .card-2 .andalucia {
  width: 173px;
  height: 120px;
}

#page-content-2 .card-2 .memory {
  width: 107px;
  height: 107px;
}

#page-content-2 .card-2 .candado {
  width: 100px;
  height: 100px;
}

#page-content-2 .card-2 .card-body {
  padding: 60px 20px;
}

#page-content-2 .card-2 .card-2-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

#page-content-2 .card-2 .card-2-container .card-2-column {
  display: flex;
  gap: 30px;
  align-items: start;
}

#page-content-2 .card-2 .card-2-container .card-2-column h2 {
  font-weight: 700;

  margin-bottom: 5px;
}

#page-content-2 .card-2 .card-2-container .card-2-column h3 {
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
  margin-top: -10px;
}

#page-content-2 .card-2 .card-2-container .card-2-column h4 {
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
}

#page-content-2 .card-3 {
  margin-bottom: 50px;
  background-color: var(--color-1);
}

#page-content-2 .card-3 .card-body {
  padding: 0px;
}

/* #page-content-2 .card-3 .card-3-container .card-3-content>div
{height: 528px;
    position: sticky;
    top: 0;
} */
/* 
#page-content-2
  .card-3
  .card-3-container
  .card-3-content
  .texto-digitalizacion-1 {
  background-color: var(--color-1);
  position: sticky;
  top: 0;
}

#page-content-2
  .card-3
  .card-3-container
  .card-3-content
  .texto-digitalizacion-3 {
  background-color: var(--color-1);
  position: sticky;
  top: 0;
}

#page-content-2
  .card-3
  .card-3-container
  .card-3-content
  .texto-digitalizacion-4 {
  background-color: var(--color-1);
  position: sticky;
  top: 0;
} */
/* 
#page-content-2
  .card-3
  .card-3-container
  .card-3-content
  .texto-digitalizacion-5 {
  background-color: var(--color-1);
  position: sticky;
  top: 0;
} */

#page-content-2
  .card-3
  .card-3-container
  .card-3-content
  .texto-digitalizacion-3
  h2 {
  line-height: 1.5;
}

#page-content-2
  .card-3
  .card-3-container
  .card-3-content
  .texto-digitalizacion-3
  .fondo-verde {
  background-color: #fff621;
  padding: 0px 20px;
  color: #000;
}

#page-content-2
  .card-3
  .card-3-container
  .card-3-content
  .texto-digitalizacion-1
  .fondo-rojo {
  background-color: #e31748;
  padding: 0px 20px;
  color: #ffffff;
}

#page-content-2
  .card-3
  .card-3-container
  .card-3-content
  .texto-digitalizacion-4
  .fondo-rojo {
  background-color: #e31748;
  padding: 0px 20px;
  color: #ffffff;
}

#page-content-2 .card-3 .card-3-container .texto-digitalizacion-5 .fondo-rojo {
  background-color: #e31748;
  padding: 0px 20px;
  color: #ffffff;
}

#page-content-2
  .card-3
  .card-3-container
  .card-3-content
  > div
  .texto-digitalizacion-1,
#page-content-2
  .card-3
  .card-3-container
  .card-3-content
  > div
  .texto-digitalizacion-3,
#page-content-2
  .card-3
  .card-3-container
  .card-3-content
  > div
  .texto-digitalizacion-4 {
  background-color: var(--color-1);
  position: sticky;
  top: 0;
}

#page-content-2
  .card-3
  .card-3-container
  .card-3-content
  .texto-digitalizacion-2 {
  /* background: rgb(227, 23, 72);
  background: radial-gradient(
    circle,
    rgba(227, 23, 72, 1) -12%,
    rgba(26, 30, 35, 1) 31%,
    rgba(32, 30, 36, 1) 194%
  ); */
  position: sticky;
  top: 0;
}

#page-content-2 #texto-digitalizacion .card-3-content .texto-digitalizacion-2 {
  /* background: rgb(227, 23, 72);
  background: radial-gradient(
    circle,
    rgba(227, 23, 72, 1) -12%,
    rgba(26, 30, 35, 1) 31%,
    rgba(32, 30, 36, 1) 194%
  ); */
  position: sticky;
  top: 0;
  
}



#page-content-2 .card-3 .card-3-container .card-3-content > div h2 {
  width: 100%;

  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
  color: white;
}

#page-content-2
  .card-3
  .card-3-container
  .card-3-content
  > div:nth-of-type(2)
  h2,
#page-content-2
  .card-3
  .card-3-container
  .card-3-content
  > div:nth-of-type(3)
  h2,
#page-content-2
  .card-3
  .card-3-container
  .card-3-content
  > div:nth-of-type(4)
  h2 {
  margin-left: auto;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
  color: white;
  line-height: 1.4;
  opacity: 1;
}

/* #page-content-2 .card-3 .card-3-container .texto-digitalizacion-5 {
  position: relative;
} */

#page-content-2 .card-3 .card-3-container .texto-digitalizacion-5 h2 {
  color: white;
  width: 100%;
  text-align: center;
  font-weight: 700;
  margin-bottom: 110px;
}

#page-content-2 .card-3 .card-3-container .texto-digitalizacion-5 img {
  position: absolute;
  top: 230px;
  right: 326px;
  width: 20%;
}

#lineas-animacion .card {
  border: 0;
  border-radius: 30px;
  background-color: var(--color-1);
}

#page-content-2 .card-4 .card-header {
  padding-top: 180px 0px;
  padding-bottom: 60px;
}

#page-content-2 .card-4 .card-header {
  background-color: var(--color-1);
  border-radius: 0px;
  margin-bottom: -246px;
  z-index: 2;
  border-bottom: 0;
}

#page-content-2 .card-4 .card-body {
  background-color: var(--color-1);
  border-radius: 0px;
  padding-top: 275px;
  min-height: 2304px;
}

#page-content-2 .card-4 .card-4-container {
  display: flex;
  justify-content: space-between;
}

#page-content-2 .card-4 .card-4-container .card-4-content {
  flex-basis: 57%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#page-content-2 .card-4 .card-4-container .card-4-image > div {
  flex-basis: 50%;
}

#page-content-2 .card-4 .card-4-container .card-4-content h2 {
  font-weight: 700;
  margin-bottom: 40px;
  color: white;
  text-align: start;
  letter-spacing: -3px;
}

#page-content-2 .card-4 .card-4-container .card-4-content h4 {
  font-weight: 400;
  color: white;
  text-align: start;
  font-size: 20px;
  letter-spacing: 0px;
}

#page-content-2 .card-4 .card-4-container .card-4-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#page-content-2 .card-4 .card-4-container .card-4-image img {
  margin-left: auto;
  margin-right: auto;
}

#page-content-2 .card-4 .card-body .card-4-lineas-container {
  position: absolute;
}

#page-content-2 .card-4 .card-body .card-4-lineas-container svg {
  position: absolute;
  z-index: 2;
  overflow: visible;
}

#page-content-2 .card-4 .card-body .card-4-lineas-container #linea-izquierda {
  left: 12px;
  top: -134px;
  stroke-dasharray: 3081;
  stroke-dashoffset: 3200;
}

#page-content-2
  .card-4
  .card-body
  .card-4-lineas-container
  #linea-base-izquierda {
  left: 12px;
  top: -134px;
}

#page-content-2 .card-4 .card-body .card-4-lineas-container #linea-centro {
  top: -204px;
  left: 369px;
  stroke-dasharray: 3542;
  stroke-dashoffset: 3000;
  z-index: 3;
}

#page-content-2 .card-4 .card-body .card-4-lineas-container #linea-base-centro {
  top: -204px;
  left: 369px;
}

#page-content-2 .card-4 .card-body .card-4-lineas-container #linea-derecha {
  left: 369px;
  top: 123px;
  stroke-dasharray: 2603;
  stroke-dashoffset: 2700;
}

#page-content-2
  .card-4
  .card-body
  .card-4-lineas-container
  #linea-base-derecha {
  left: 369px;
  top: 123px;
}

#page-content-2 .card-4 .card-body .partner-aws {
  position: relative;
  z-index: 4;
  margin-top: 18px !important;
  width: 990px;
}

#page-content-2 .card-4 .card-body .partner-aws img {
  width: 160px;
  margin-top: 0px;
}

#page-content-2 .card-4 .card-body .partner-aws h2 {
  font-weight: 700;
  margin-top: 98px;
  margin-bottom: 89px;
  color: var(--white);
  font-size: var(--fs-lg);
  display: flex;
  align-items: start !important;
}

#page-content-2 .card-4 .card-body .partner-aws h3 {
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--white);

  width: 711px;
}

#page-content-2 .card-4 .card-body .partner-aws h4 {
  width: 600px;
  font-weight: 700;
  color: var(--white);
}

#page-content-2 .card-4 .card-body .caracteristicas {
  margin-top: 670px;
  position: relative;
  z-index: 3;
  padding-left: 307px;
}

#page-content-2 .card-4 .card-body .caracteristicas .caracteristica {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}

#page-content-2 .card-4 .card-body .caracteristicas .caracteristica .icon {
  border-radius: 50%;
  background-color: var(--white);
  width: 150px;
  height: 150px;
  min-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
}

#page-content-2 .card-4 .card-body .caracteristicas .caracteristica.show .icon {
  background-color: var(--primary);
}

#page-content-2
  .card-4
  .card-body
  .caracteristicas
  .caracteristica
  .icon
  .icon-background {
  background: var(--color-1);
  border-radius: 50%;
  padding: 10px;
  opacity: 0;
  transform: scale(0.7);
  -o-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -webkit-transform: scale(0.7);
}

#page-content-2
  .card-4
  .card-body
  .caracteristicas
  .caracteristica.show
  .icon
  .icon-background {
  animation: aparecer 300ms linear 0s;
  opacity: 1;
  transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
}

#page-content-2 .card-4 .card-body .caracteristicas .caracteristica .icon img {
  width: 100px;
}

#page-content-2 .card-4 .card-body .caracteristicas .caracteristica h2 {
  font-weight: 700;
  line-height: normal;
  opacity: 0;
  transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
}

#page-content-2 .card-4 .card-body .caracteristicas .caracteristica.show h2 {
  animation: aparecer 300ms linear 0s;
  opacity: 1;
  color: white;
}

.w-andalucia {
  width: auto;
}

/* Page Content 3 */
#page-content-3 {
  overflow: hidden;
  padding: 0;
}

#page-content-3 .section-1 {
  padding: 80px 10px;
  justify-content: center;
  display: flex;
  align-items: center;
}

#page-content-3 .section-1 h2 {
  text-align: center;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 40px;
  font-size: var(--fs-48);
}

#page-content-3 .section-1 h3 {
  text-align: center;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 80px;
  font-size: 20px;
}

#page-content-3 .caso-exito-images {
  padding-bottom: 140px;
}

#page-content-3 .caso-exito-images img {
  border-radius: 30px;
  transform: rotate(-25.82deg);
  transform-origin: center;
  margin: 80px auto;
  max-width: 1100px;
  width: 100%;
  display: block;
  position: relative;
  top: -100vh;
  left: 200vw;
}

#page-content-3 .caso-exito-images #caso-exito-1 {
  margin-top: 0;
}

#page-content-3 .caso-exito-images #caso-exito-3 {
  margin-bottom: 0;
}

#page-content-3 .section-1 img {
  width: 150px;
}

/* Carrusel */

.lista-info {
  width: fit-content;
  border: 1px solid white;
  padding: 10px;
}

.carrusel-servicios .card-carousel {
  text-decoration: none;
  color: white;
}

.carrusel-servicios .slick-slide {
  margin: 0;
}

.carrusel-servicios .borde-30 {
  border-radius: 30px;
}

.carrusel-servicios .info-servicios {
  margin-top: 40px;
}

.carrusel-servicios .info-servicios .titulos {
  font-size: 32px;
}

/* Page Content 4 */
#page-content-4 .card {
  overflow: hidden;
}

#page-content-4 .card .card-body {
  padding: 0;
}

#page-content-4 .card .card-body .columna_1 {
  padding-left: 100px;
}

#page-content-4 .card .card-body .columna_1 h2 {
  font-weight: 700;
  line-height: 1;
  margin-bottom: 40px;
  letter-spacing: -4px;
  font-size: var(--fs-lg);
}

#page-content-4 .card .card-body .columna_1 h3 {
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  font-size: 32px;
  letter-spacing: -2px;
}

#page-content-4 .card .card-body .columna_2 {
  position: relative;
  overflow: hidden;
  height: 876px;
}

#page-content-4 .card .card-body .columna_2 .perfiles-equipo {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: absolute;
  top: 0%;
}

#page-content-4 .card .card-body .columna_2 .perfiles-equipo img {
  box-shadow: 2px 0 10px 0 rgb(255 255 255 / 50%),
    -2px 0 10px 0 rgb(0 0 0 / 50%);
  border-radius: 50%;
  margin-bottom: 30px;
  mix-blend-mode: luminosity;
  object-fit: contain;
}

#page-content-4
  .card
  .card-body
  .columna_2
  .perfiles-equipo
  img:nth-of-type(even) {
  transform: translateY(-50%);
}

/* Page Content 5 */
#page-content-5 {
  overflow: hidden;
  padding: 100px 0;
}

#page-content-5 .columna_1,
#page-content-5 .columna_2 {
  height: 100%;
}

#page-content-5 .columna_1 {
  padding-left: 0px;
}

#page-content-5 .columna_2 {
  padding-right: 100px;
  display: flex;
  align-items: center;
}

#page-content-5 h2 {
  color: var(--white);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 50px;
  font-size: var(--fs-lg);
  letter-spacing: -3px;
}

#page-content-5 h3 {
  color: var(--white);
  font-weight: 700;
  line-height: normal;
  margin-bottom: 40px;
  font-size: 32px;
  letter-spacing: -1px;
  max-width: 745px;
}

#page-content-5 .rocket {
  display: block;
  margin-left: auto;
  transform: rotate(-4.602deg);
  -o-transform: rotate(-4.602deg);
  -moz-transform: rotate(-4.602deg);
  -webkit-transform: rotate(-4.602deg);
  position: relative;
  top: 1000px;
  left: 700px;
}

/* Contacto */
#contact-page h1 {
  color: var(--primary);
  font-size: var(--fs-lg);
  font-style: normal;
  font-weight: 700;
  line-height: 0.7;
  letter-spacing: -4px;
}

#contact-page h2 {
  color: white;
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.swal2-title{
  color:black !important
}
#contact-page .seccion-1 {
  position: relative;
}

#contact-form-section .card-info-contacto {
  padding: 60px;
}

#contact-form-section .card-info-contacto h2 {
  color: black;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.7;
  letter-spacing: -2px;
  margin-bottom: 15px;
}

#contact-form-section .card-info-contacto a {
  color: black;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
  text-decoration: none;
}

#contact-form-section_2 h2 {
  color: rgb(255, 255, 255);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

#contact-form-section_2 p {
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0px;
  max-width: 590px;
}

.contact-form-container form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-container input[type="text"].form-control::placeholder,
.contact-form-container input[type="email"].form-control::placeholder,
.contact-form-container input[type="number"].form-control::placeholder,
.contact-form-container input[type="tel"].form-control::placeholder,
.contact-form-container input[type="date"].form-control::placeholder,
.contact-form-container textarea.form-control::placeholder {
  color: var(--white);
}

.contact-form-container #contact-form .btn-primary {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  font-weight: 700;
  font-size: var(--fs-30);
  border-radius: 0;
  transition: background-color 0.3s, border-color 0.3s;
  -o-transition: background-color 0.3s, border-color 0.3s;
  -moz-transition: background-color 0.3s, border-color 0.3s;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  border-radius: 15px;
}

.contact-form-container form .form-check .form-check-label {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
}

.contact-form-container form .form-check .form-check-label a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

a.como-llegar {
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  color: var(--primary);
  font-size: var(--fs-xs);
  text-decoration: none;
}

.contact-title-section {
  padding-top: 0px;
  padding-bottom: 100px;
}

.contact-title-section h2 {
  color: var(--primary);
  font-weight: 700;
  line-height: normal;
}

.contact-title-section p {
  color: var(--white);
  font-size: var(--fs-xxs);
  font-weight: 400;
  line-height: normal;
  margin-top: 40px;
  max-width: 485px;
}

.contact-title-section .dots {
  max-width: 300px;
  display: block;
}

.contact-title-section .dots svg {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1/1;
}

@keyframes dotsAnimation {
  0% {
    transform: scale(0.8);
    -o-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
  }

  100% {
    transform: scale(1);
    -o-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@-webkit-keyframes dotsAnimation {
  0% {
    transform: scale(0.8);
    -o-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
  }

  100% {
    transform: scale(1);
    -o-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.contact-title-section .dots svg g circle {
  transform: scale(0.8);
  -o-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  transform-origin: center;
}

.contact-form-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact-form-section .card .card-body {
  padding: 50px;
}

.contact-form-section .card .card-body h3 {
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

.contact-form-section .card .card-body p {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.contact-form-section .card .card-body p a {
  text-decoration: none;
  color: var(--white);
  transition: opacity 0.3s;
}

.contact-form-section .card .card-body p a:hover {
  opacity: 0.5;
}

.contact-form-section .card .card-body .contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-form-section .card .card-body form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-form-section .card .card-body form label {
  margin-bottom: 30px;
  padding: 0 10px;
}

.contact-form-section .card .card-body button {
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: normal;
}

.contact-form-section .contact-form-container {
  position: relative;
}

.contact-form-section .contact-form-container.loading form {
  filter: blur(5px);
  -webkit-filter: blur(5px);
  pointer-events: none;
}

.contact-form-section .contact-form-container .form-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.contact-form-section .contact-form-container .form-spinner i {
  font-size: var(--fs-sm);
  color: var(--primary);
}

.contact-form-section .contact-form-container.loading .form-spinner {
  display: block;
}

.contact-map-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact-map-section h2 {
  max-width: 620px;
  color: var(--white);
  font-weight: 700;
  line-height: normal;
  margin-bottom: 50px;
}

.contact-map-section h3 {
  max-width: 730px;
  color: var(--primary);
  font-weight: 400;
  line-height: normal;
  margin-bottom: 50px;
}

.contact-map-section .eyes {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.contact-map-section .eyes .eye-bg {
  position: absolute;
  background-color: var(--primary);
  border-radius: 100%;
  width: 150%;
  height: 150%;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-map-section .eyes .eye {
  flex-basis: 50%;
  aspect-ratio: 12 / 5;
}

.contact-map-section .eyes .eye .iframe-map {
  height: 100%;
  position: relative;
}

.contact-map-section .eyes .eye .iframe-map iframe {
  width: 100%;
  height: 300%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ================= EYES RESPONSIVE START ================= */
.contact-map-section .eyes .eye.izq .iframe-map {
  clip-path: path(
    "M1 133.194C187.594 -49.6659 474.948 -36.3378 640.749 133.194C423.768 335.783 151.341 285.669 1 133.194Z"
  );
  -webkit-clip-path: path(
    "M1 133.194C187.594 -49.6659 474.948 -36.3378 640.749 133.194C423.768 335.783 151.341 285.669 1 133.194Z"
  );
}

.contact-map-section .eyes .eye.der .iframe-map {
  clip-path: path(
    "M641.369 133.194C454.775 -49.6659 167.421 -36.3378 1.61945 133.194C218.601 335.783 491.028 285.669 641.369 133.194Z"
  );
  -webkit-clip-path: path(
    "M641.369 133.194C454.775 -49.6659 167.421 -36.3378 1.61945 133.194C218.601 335.783 491.028 285.669 641.369 133.194Z"
  );
}

@media (max-width: 1399px) {
  .contact-map-section .eyes .eye.izq .iframe-map {
    clip-path: path(
      "M1 114.31C160.944 -42.4279 407.258 -31.0038 549.379 114.31C363.387 287.957 129.869 245.002 1 114.31Z"
    );
    -webkit-clip-path: path(
      "M1 114.31C160.944 -42.4279 407.258 -31.0038 549.379 114.31C363.387 287.957 129.869 245.002 1 114.31Z"
    );
  }

  .contact-map-section .eyes .eye.der .iframe-map {
    clip-path: path(
      "M554 114.31C392.665 -42.4279 144.21 -31.0038 0.852173 114.31C188.461 287.957 424.01 245.002 554 114.31Z"
    );
    -webkit-clip-path: path(
      "M554 114.31C392.665 -42.4279 144.21 -31.0038 0.852173 114.31C188.461 287.957 424.01 245.002 554 114.31Z"
    );
  }
}

@media (max-width: 1199px) {
  .contact-map-section .eyes .eye.izq .iframe-map {
    clip-path: path(
      "M1 95.4246C135.447 -35.1899 342.494 -25.6699 461.959 95.4246C305.617 240.131 109.325 204.335 1 95.4246Z"
    );
    -webkit-clip-path: path(
      "M1 95.4246C135.447 -35.1899 342.494 -25.6699 461.959 95.4246C305.617 240.131 109.325 204.335 1 95.4246Z"
    );
  }

  .contact-map-section .eyes .eye.der .iframe-map {
    clip-path: path(
      "M462 95.4246C327.554 -35.1899 120.508 -25.6699 1.04349 95.4246C157.385 240.131 353.675 204.335 462 95.4246Z"
    );
    -webkit-clip-path: path(
      "M462 95.4246C327.554 -35.1899 120.508 -25.6699 1.04349 95.4246C157.385 240.131 353.675 204.335 462 95.4246Z"
    );
  }
}

@media (max-width: 991px) {
  .contact-map-section .eyes .eye.izq .iframe-map {
    clip-path: path(
      "M1 70.576C100.064 -25.6663 252.624 -18.6515 340.65 70.576C225.452 177.202 80.8177 150.826 1 70.576Z"
    );
    -webkit-clip-path: path(
      "M1 70.576C100.064 -25.6663 252.624 -18.6515 340.65 70.576C225.452 177.202 80.8177 150.826 1 70.576Z"
    );
  }

  .contact-map-section .eyes .eye.der .iframe-map {
    clip-path: path(
      "M341.088 70.576C242.023 -25.6663 89.4622 -18.6515 1.43573 70.576C116.634 177.202 261.27 150.826 341.088 70.576Z"
    );
    -webkit-clip-path: path(
      "M341.088 70.576C242.023 -25.6663 89.4622 -18.6515 1.43573 70.576C116.634 177.202 261.27 150.826 341.088 70.576Z"
    );
  }
}

@media (max-width: 767px) {
  .contact-map-section .eyes .eye {
    flex-basis: 100%;
    margin: 20px 0;
  }

  .contact-map-section .eyes .eye.izq .iframe-map {
    clip-path: path(
      "M1 105.364C149.598 -38.9994 378.439 -28.4772 510.48 105.364C337.681 265.302 120.728 225.739 1 105.364Z"
    );
    -webkit-clip-path: path(
      "M1 105.364C149.598 -38.9994 378.439 -28.4772 510.48 105.364C337.681 265.302 120.728 225.739 1 105.364Z"
    );
  }

  .contact-map-section .eyes .eye.der .iframe-map {
    clip-path: path(
      "M510.783 105.364C362.185 -38.9994 133.345 -28.4772 1.30493 105.364C174.103 265.302 391.056 225.739 510.783 105.364Z"
    );
    -webkit-clip-path: path(
      "M510.783 105.364C362.185 -38.9994 133.345 -28.4772 1.30493 105.364C174.103 265.302 391.056 225.739 510.783 105.364Z"
    );
  }
}

@media (max-width: 575px) {
  .contact-map-section .eyes .eye.izq .iframe-map {
    clip-path: path(
      "M1 70.576C100.064 -25.6663 252.624 -18.6515 340.65 70.576C225.452 177.202 80.8177 150.826 1 70.576Z"
    );
    -webkit-clip-path: path(
      "M1 70.576C100.064 -25.6663 252.624 -18.6515 340.65 70.576C225.452 177.202 80.8177 150.826 1 70.576Z"
    );
  }

  .contact-map-section .eyes .eye.der .iframe-map {
    clip-path: path(
      "M340.609 70.576C241.544 -25.6663 88.9837 -18.6515 0.957184 70.576C116.156 177.202 260.791 150.826 340.609 70.576Z"
    );
    -webkit-clip-path: path(
      "M340.609 70.576C241.544 -25.6663 88.9837 -18.6515 0.957184 70.576C116.156 177.202 260.791 150.826 340.609 70.576Z"
    );
  }
}

/* ================= EYES RESPONSIVE END ================= */

/* Talento Form */
.talento-form-section .card .card-body {
  padding: 50px;
}

.talento-form-section .card .card-body h3 {
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

.talento-form-section .card .card-body p {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.talento-form-section .card .card-body p a {
  text-decoration: none;
  color: var(--white);
  transition: opacity 0.3s;
}

.talento-form-section .card .card-body p a:hover {
  opacity: 0.5;
}

.talento-form-section .card .card-body .talento-info-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.talento-form-section .card .card-body form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.talento-form-section .card .card-body form label {
  margin-bottom: 30px;
  padding: 0 10px;
}

.talento-form-section .card .card-body button {
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: normal;
}

.talento-form-section .talento-form-container {
  position: relative;
}

.talento-form-section .talento-form-container.loading form {
  filter: blur(5px);
  -webkit-filter: blur(5px);
  pointer-events: none;
}

.talento-form-section .talento-form-container .form-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.talento-form-section .talento-form-container .form-spinner i {
  font-size: var(--fs-sm);
  color: var(--primary);
}

.talento-form-section .talento-form-container.loading .form-spinner {
  display: block;
}

.attach-input-container {
  width: 100%;
}

.attach-input-container > label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.attach-input-container input[type="file"] {
  display: none;
}

.attach-input-container .attach-input-btn {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  text-transform: none;
  width: 100px;
  display: inline-block;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--primary);
  border-radius: 15px;
  color: var(--white);
  padding: 10px 0;
  cursor: pointer;
  transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
}

.attach-input-container .attach-input-btn:hover {
  opacity: 0.7;
}

.attach-input-container .attach-input-name {
  box-sizing: border-box;
  border: none;
  padding: 2px 10px;
  display: inline-block;
  width: calc(100% - 101px);
  overflow-x: hidden;
  text-overflow: ellipsis;
}

.attach-input-container .attach-input-name span {
  opacity: 0.7;
  color: #ffffff;
  text-transform: none;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}

/* Servicios Form */
.form-servicios-container {
  position: relative;
}

.form-servicios-container.loading form {
  filter: blur(5px);
  -webkit-filter: blur(5px);
  opacity: 0.5;
  pointer-events: none;
}

.form-servicios-container .form-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.form-servicios-container .form-spinner i {
  font-size: var(--fs-sm);
  color: var(--primary);
}

.form-servicios-container.loading .form-spinner {
  display: block;
  border-radius: 50%;
  padding: 6px;
  background: rgba(0, 0, 0, 0.3);
}

.form-servicios-container input[type="text"].form-control::placeholder,
.form-servicios-container input[type="email"].form-control::placeholder,
.form-servicios-container input[type="number"].form-control::placeholder,
.form-servicios-container input[type="tel"].form-control::placeholder,
.form-servicios-container input[type="date"].form-control::placeholder,
.form-servicios-container textarea.form-control::placeholder {
  color: var(--white);
}

/*============ PAGE SERVICIOS START ============*/
#servicio-bloque-1 {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #1a1e23;
  padding: 80px 0px !important;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#servicio-bloque-1 .columna_1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2px;
}

#servicio-bloque-1 .columna_1 h2 {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 48px !important;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -3.84px;
}

#servicio-bloque-1 .columna_1 h3 {
  color: #e31748;
  font-family: var(--font-1);
  font-size: var(--fs-lg) !important;
  font-style: normal;
  font-weight: 700;
  line-height: 0.6;
  letter-spacing: -6.2px;
}

#servicio-bloque-1 .columna_1 h4 {
  color: #e31748;
  font-family: var(--font-1);
  font-size: var(--fs-lg) !important;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -6.2px;
  width: 100%;
  text-align: start;
  white-space: nowrap;
}

#servicio-bloque-1 .columna_1 h4 span {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 48px !important;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -3.84px;
}

#servicio-bloque-1 .columna_2 {
  display: flex;
  align-items: flex-start;
  justify-content: end;
  perspective: 50em;
  margin-left: -33px;
  position: relative;
}

#servicio-bloque-1 #dna::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 64px;
  width: 100%;
  height: 122%;
  background: linear-gradient(to top, #1a1e23, #1a1e2300);
  pointer-events: none;
  z-index: 1;
}

#servicio-bloque-1 .columna_2 .adn {
  --h: 0.6em;
  /* control the size */
  --s: 7s;
  /* control the speed */
  margin: calc(2 * var(--h)) auto;
  aspect-ratio: 7/1;
  height: var(--h);
  animation: r var(--s) linear calc(var(--i) / -10 * var(--s)) infinite;
}

#servicio-bloque-1 .columna_2 .adn i {
  position: absolute;
  inset: calc((1 - 0.577) * 50%) calc(var(--h) / -10);
  transform: translateZ(calc(var(--h) / 2)) rotateX(180deg);
  background: linear-gradient(#e31748, #e31748, #e31748)
    hsl(calc(30 * var(--i)), 100%, 70%);
  display: grid;
}

#servicio-bloque-1 .columna_2 .adn i:nth-child(2) {
  transform: translateZ(calc(var(--h) / -2));
}

#servicio-bloque-1 .columna_2 .adn i:before,
#servicio-bloque-1 .columna_2 .adn i:after {
  content: "";
  grid-area: 1/1;
  background: inherit;
  transform-origin: top;
  transform: rotateX(120deg);
}

#servicio-bloque-1 .columna_2 .adn i:after {
  transform-origin: bottom;
  transform: rotateX(-120deg);
}

#servicio-bloque-1 .columna_2 .adn:before,
#servicio-bloque-1 .columna_2 .adn:after {
  content: "";
  position: absolute;
  width: calc(4 * var(--h));
  aspect-ratio: 1/1;
  border-radius: 50%;
  top: calc(50% - 2 * var(--h));
  background: radial-gradient(circle at top, #b1282c, #b1282c)
    hsl(calc(30 * var(--i)), 100%, 70%);
  box-shadow: 0 0 calc(1.5 * var(--h)) #b1282c;
  animation: inherit;
  animation-direction: reverse;
}

#servicio-bloque-1 .columna_2 .adn:before {
  left: 100%;
}

#servicio-bloque-1 .columna_2 .adn:after {
  right: 100%;
}

@-webkit-keyframes r {
  to {
    transform: rotateY(360deg);
  }
}

@keyframes r {
  to {
    transform: rotateY(360deg);
  }
}

#servicio-bloque-1 .columna_2 #dna * {
  transform-style: preserve-3d;
}

/************************************/

#servicio-bloque-2 {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #1a1e23;
  padding: 80px 0px 75px 0px;

  min-height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#servicio-bloque-2 .columna_1 div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
width: 100%;
max-width: 100%;
  margin-right: initial;
}

#servicio-bloque-2 .columna_1 div h2 {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2px;
}

#servicio-bloque-2 .columna_1 div p {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  max-width: 600px;
}

/* ************************************** */
#servicios-2 .card-2 {
  display: flex;
  gap: 30px;
  align-items: start;
}

#servicios-2 .card-2 .card-body {
  width: 100%;
  padding: 60px;
}

#servicios-2 .card-2 .card-body .card-2-column h2 {
  font-weight: 700;
  font-size: var(--fs-48);
  margin-bottom: 5px;
  letter-spacing: -4px;
}

#servicios-2 .card-2 .card-body .card-2-column h3 {
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
  margin-top: -10px;
}

#servicios-2 .card-2 .card-body .card-2-column h4 {
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
  font-size: 24px;
  letter-spacing: -1px;
}

/*****************************************/

#servicio-bloque-3 {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #1a1e23;
  padding: 75px 0px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#servicio-bloque-3 .borde-top {
  border-top: 1px solid #f6f6f6;
  width: 100%;
}

#servicio-bloque-3 .numeros {
  color: #f6f6f6;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.44px;
  font-family: var(--font-1);
}

#servicio-bloque-3 .h3-index {
  color: #e31748;
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.4px;
  font-family: var(--font-1);
}

#servicio-bloque-3 .h3-index-white {
  color: #f6f6f6;
}

#servicio-bloque-3 #pag-servicios p {
  margin-bottom: 0 !important;
}

#servicio-bloque-3 .borde-top .p-seccion {
  padding-bottom: 1rem;
}

#servicio-bloque-3 .p-seccion {
  color: #f6f6f6;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  min-height: 88px;
  letter-spacing: initial;
}

#servicio-bloque-3 h4.seccion-servicios {
  color: #f6f6f6;
  font-family: Helvetica;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.44px;
}

#servicio-bloque-3 .card-servicios .seccion-servicios {
  min-height: 58px;
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.44px;
}

#servicio-bloque-3 .card-servicios .p-seccion {
  min-height: 48px;
}

#servicio-bloque-3 .card-servicios {
  border-radius: 5px;
  border: 1px solid #f6f6f6;
}

#servicio-bloque-3 .btn-exitos {
  background: #b1282c;
  color: #f6f6f6;
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 10px;
  max-width: fit-content;
  text-align: center;
  letter-spacing: -2.4px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  white-space: nowrap;
}

#servicio-bloque-3 .btn-exitos:hover {
  background-color: #626262;
  color: white;
}

#servicio-bloque-3 .bg-radiente-bola.bola-5 {
  height: 74px;
  width: 74px;
  background: url(/ns_v3/assets/img/library/bola.jpeg);
  flex: 74px;
  max-width: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(0);
  position: relative;
  border-radius: 50%;
  z-index: 1;
  animation: cambiar 7s ease-in-out infinite;
}

#servicio-bloque-3 .titulo-acordion {
  color: #f6f6f6;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.44px;
  flex: 50%;
}

@keyframes cambiar {
  0% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

.card-nube {
  border-radius: 5px;
  border: 1px solid #f6f6f6;
}

/* ***************************************** */

.img-soluciones {
  width: 100%;
  height: 300px;
  border-radius: 30px;
  object-fit: cover;
}

#servicios-tabs .tab-content .borde-tab {
  border: 1px solid #f6f6f6;
  padding: 38px;
}

#servicios-tabs .tab-content .borde-tab p {
  font-weight: 300;
  font-size: 20px;
  color: #f6f6f6;
  font-style: normal;
  line-height: normal;
}

#servicios-tabs .tab-content .borde-tab h4 {
  font-weight: 700;
  font-size: 24px;
  color: #f6f6f6;
  font-style: normal;
  line-height: normal;
}

#servicios-tabs h2 {
  font-size: var(--fs-48);
  font-weight: 700;
  color: #f6f6f6;
  font-style: normal;
  line-height: normal;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

#servicios-tabs .nav .nav-item .nav-link {
  font-weight: 400;
  font-size: 24px;
  color: #f6f6f6;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1;
}

#servicios-tabs .nav .nav-item .nav-link {
  border: 1px solid #f6f6f6;
  border-radius: 0px;
  padding: 10px 10px;
}

#servicios-tabs .nav .nav-item .nav-link.active {
  border: none;
  background-color: #798ec7;
  border-radius: 0px;
  font-weight: 700;
}

#servicios-tabs .nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: white;
  --bs-nav-link-hover-color: white;
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 40px;
  list-style: none;
  gap: 12px;
}

#servicios-tabs .nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: transparent;
}

#servicios-tabs .tab-content .img-aws {
  width: 100px;
  height: 100px;
}

#servicios-tabs .tab-content .row .borde-tab {
  font-size: 24px;
  font-weight: 700;
  color: #f6f6f6;
  font-style: normal;
  line-height: 28px;
  margin-bottom: 30px;
  border-radius: 5px;
}

#servicios-tabs .tab-content .row .texto {
  font-size: 24px;
  font-weight: 700;
  color: #f6f6f6;
  font-style: normal;
  line-height: 28px;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

#carrusel-cms a {
  text-decoration: none;
  color: white;
}

.carrusel-cms .slick-slide {
}

.carrusel-cms a .borde-30 {
  border-radius: 30px;
}

.carrusel-cms a .info-servicios {
  margin-top: 40px;
}

.carrusel-cms a .info-servicios .titulos {
  font-size: 32px;
}

.carrusel-cms a .info-servicios .lista-info {
  font-size: 24px;
  font-weight: 400;
}

#servicios-tabs-2 .tab-content .borde-tab {
  border: 1px solid #f6f6f6;
  padding: 38px;
  border-radius: 5px;
}

#servicios-tabs-2 .tab-content .borde-tab p {
  font-weight: 300;
  font-size: 20px;
  color: #f6f6f6;
  font-style: normal;
  line-height: normal;
}

#servicios-tabs-2 {
  margin-top: 100px;
}

#servicios-tabs-2 .tab-content .borde-tab h4 {
  font-weight: 700;
  font-size: 24px;
  color: #f6f6f6;
  font-style: normal;
  line-height: normal;
}

#servicios-tabs-2 h2 {
  font-size: var(--fs-48);
  font-weight: 700;
  color: #f6f6f6;
  font-style: normal;
  line-height: normal;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

#servicios-tabs-2 .nav .nav-item .nav-link {
  font-weight: 400;
  font-size: 24px;
  color: #f6f6f6;
  font-style: normal;
  line-height: normal;
}

#servicios-tabs-2 .nav .nav-item .nav-link {
  border: 1px solid #f6f6f6;
  border-radius: 0px;
  padding: 10px 10px;
}

#servicios-tabs-2 .nav .nav-item .nav-link.active {
  border: none;
  border-radius: 0px;
  background-color: #e31748;
  font-weight: 700;
}

#servicios-tabs-2 .nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: white;
  --bs-nav-link-hover-color: white;
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 40px;
  list-style: none;
  gap: 12px;
}

#servicios-tabs-2 .nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: transparent;
}

#servicios-tabs-2 .tab-content .img-aws {
  width: 100px;
  height: 100px;
}

#servicios-tabs-2 .tab-content .row .borde-tab {
  font-size: 24px;
  font-weight: 700;
  color: #f6f6f6;
  font-style: normal;
  line-height: 28px;
  margin-bottom: 30px;
}

#servicios-tabs-2 .tab-content .row .texto {
  font-size: 24px;
  font-weight: 700;
  color: #f6f6f6;
  font-style: normal;
  line-height: 28px;
  margin-bottom: 30px;
}

/* ****** */

#servicios-tabs-3 .tab-content .borde-tab {
  border: 1px solid #f6f6f6;
  padding: 38px;
}

#servicios-tabs-3 .tab-content .borde-tab p {
  font-weight: 300;
  font-size: 20px;
  color: #f6f6f6;
  font-style: normal;
  line-height: normal;
}

#servicios-tabs-3 {
  margin-top: 100px;
}

#servicios-tabs-3 .tab-content .borde-tab h4 {
  font-weight: 700;
  font-size: 24px;
  color: #f6f6f6;
  font-style: normal;
  line-height: normal;
}

#servicios-tabs-3 h2 {
  font-size: var(--fs-48);
  font-weight: 700;
  color: #f6f6f6;
  font-style: normal;
  line-height: normal;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

#servicios-tabs-3 .nav .nav-item .nav-link {
  font-weight: 400;
  font-size: 24px;
  color: #f6f6f6;
  font-style: normal;
  line-height: normal;
}

#servicios-tabs-3 .nav .nav-item .nav-link {
  border: 1px solid #f6f6f6;
  border-radius: 0px;
  padding: 10px 10px;
}

#servicios-tabs-3 .nav .nav-item .nav-link.active {
  border: none;
  border-radius: 0px;
  background-color: #48b596;
  font-weight: 700;
}

#servicios-tabs-3 .nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: white;
  --bs-nav-link-hover-color: white;
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 40px;
  list-style: none;
  gap: 12px;
}

#servicios-tabs-3 .nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: transparent;
}

#servicios-tabs-3 .tab-content .img-aws {
  width: 100px;
  height: 100px;
}

#servicios-tabs-3 .tab-content .row .borde-tab {
  font-size: 24px;
  font-weight: 700;
  color: #f6f6f6;
  font-style: normal;
  line-height: 28px;
  margin-bottom: 30px;
}

#servicios-tabs-3 .tab-content .row .texto {
  font-size: 24px;
  font-weight: 700;
  color: #f6f6f6;
  font-style: normal;
  line-height: 28px;
  margin-bottom: 30px;
}

/* ****** */

#servicios-tabs-4 .tab-content .borde-tab {
  border: 1px solid #f6f6f6;
  padding: 38px;
}

#servicios-tabs-4 .tab-content .borde-tab p {
  font-weight: 300;
  font-size: 20px;
  color: #f6f6f6;
  font-style: normal;
  line-height: normal;
}

#servicios-tabs-4 {
  margin-top: 100px;
}

#servicios-tabs-4 .tab-content .borde-tab h4 {
  font-weight: 700;
  font-size: 24px;
  color: #f6f6f6;
  font-style: normal;
  line-height: normal;
}

#servicios-tabs-4 h2 {
  font-size: var(--fs-48);
  font-weight: 700;
  color: #f6f6f6;
  font-style: normal;
  line-height: normal;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

#servicios-tabs-4 .nav .nav-item .nav-link {
  font-weight: 400;
  font-size: 24px;
  color: #f6f6f6;
  font-style: normal;
  line-height: normal;
}

#servicios-tabs-4 .nav .nav-item .nav-link {
  border: 1px solid #f6f6f6;
  border-radius: 0px;
  padding: 10px 10px;
}

#servicios-tabs-4 .nav .nav-item .nav-link.active {
  border: none;
  border-radius: 0px;
  background-color: #d1db6c;
  font-weight: 700;
  color: black;
}

#servicios-tabs-4 .nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: white;
  --bs-nav-link-hover-color: white;
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 40px;
  list-style: none;
  gap: 12px;
}

#servicios-tabs-4 .nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: transparent;
}

#servicios-tabs-4 .tab-content .img-aws {
  width: 100px;
  height: 100px;
}

#servicios-tabs-4 .tab-content .row .borde-tab {
  font-size: 24px;
  font-weight: 700;
  color: #f6f6f6;
  font-style: normal;
  line-height: 28px;
  margin-bottom: 30px;
}

#servicios-tabs-4 .tab-content .row .texto {
  font-size: 24px;
  font-weight: 700;
  color: #f6f6f6;
  font-style: normal;
  line-height: 28px;
  margin-bottom: 30px;
}

#servicios-tabs-5 .tab-content .borde-tab h4 {
  font-weight: 700;
  font-size: 24px;
  color: #f6f6f6;
  font-style: normal;
  line-height: normal;
}

#servicios-tabs-6 .tab-content .borde-tab h4 {
  font-weight: 700;
  font-size: 24px;
  color: #f6f6f6;
  font-style: normal;
  line-height: normal;
}

/*****************************************/

#servicio-bloque-4 .accordion-item {
  background-color: transparent;
  border: none;
  margin-top: 100px;
}

#servicio-bloque-4 .bg-radiente-bola.bola-acordion {
  height: 210px;
  width: 210px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(0);
  background: url(/ns_v3/assets/img/library/bola.jpeg);
}

#servicio-bloque-4 h3.acordion-body {
  color: #f6f6f6;
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.4px;
}

#servicio-bloque-4 .p-acordion {
  color: #f6f6f6;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 50px;
}

#servicio-bloque-4 .card-acordion {
  background-color: #f6f6f6;
  padding: 100px 50px;
  margin-top: -40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 30px;
}

#servicio-bloque-4 h3.titulo-card-acordion {
  color: #1a1e23;
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.4px;
  margin-bottom: 15px;
}

#servicio-bloque-4 h5.subtitulo-card-acordion {
  color: #1a1e23;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.44px;
}

#servicio-bloque-4 .p-card-acordion {
  color: #1a1e23;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/*****************************************/

#servicio-bloque-5 {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #1a1e23;
  padding: 75px 0px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#servicio-bloque-5 .fila_2 {
  padding: 60px;
  border: 0;
  border-radius: 30px;
  background-color: var(--white);
}

#servicio-bloque-5 .fila_1 {
  margin-bottom: 100px;
}

#servicio-bloque-5 .fila_1 .columna_1 {
  display: flex;
  align-items: start;
  justify-content: flex-start;
}

#servicio-bloque-5 .fila_1 .columna_1 div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  max-width: 805px;
  margin-right: auto;
}

#servicio-bloque-5 .fila_1 .columna_1 div h3 {
  color: #ffffff;
  font-family: var(--font-1);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  max-width: 660px;
}

#servicio-bloque-5 .fila_1 .columna_1 div p {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.84px;
}

#servicio-bloque-5 .fila_1 button {
  background-color: #e31748;
  border: none;
  border-radius: 15px;
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  padding: 10px;
  letter-spacing: -0.84px;
}

#servicio-bloque-5 .fila_1 .columna_2 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

#servicio-bloque-5 .fila_2 .columna_1 .contenedor-info {
  display: flex;
  width: 100%;
  max-width: 250px;
  min-height: 184px;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#servicio-bloque-5 .fila_2 .columna_1 .contenedor-info h6 {
  color: #1a1e23;
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.44px;
  text-align: center;
}

#servicio-bloque-5 .fila_2 .columna_1 .contenedor-info p {
  color: #1a1e23;
  font-family: var(--font-1);
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

#servicio-bloque-5 .fila_2 .columna_1_0 div p {
  color: #2d2a26;
  font-family: var(--font-1);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -2px;
}

#servicio-bloque-5 .fila_2 .columna_2 div {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
}

#servicio-bloque-5 .fila_2 .columna_2 div p {
  color: #2d2a26;
  font-family: var(--font-1);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.44px;
}

#servicio-bloque-5 .columna_1_2 .bloque div {
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: fit-content;
  margin: 5px;
  border-radius: 5px;
  background: #f6f6f6;
  border: solid 1px #f6f6f6;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  white-space: nowrap;
  cursor: pointer;
}

#servicio-bloque-5 .columna_1_2 .bloque span {
  color: #e31748;
  font-family: var(--font-1);
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#servicio-bloque-5 .columna_1_2 .bloque div svg path {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#servicio-bloque-5 .columna_1_2 .bloque div:hover {
  background: transparent;
  border: solid 1px #f6f6f6;
}

#servicio-bloque-5 .columna_1_2 .bloque div:hover svg path {
  fill: #f6f6f6;
}

#servicio-bloque-5 .columna_1_2 .bloque div:hover span {
  color: #fa00005b;
}

#servicio-bloque-5 .columna_1_2 .contenedor-bloque {
  width: fit-content;
  display: inline-block;
  border: 1px solid #e31748;
}

#servicio-bloque-5 .columna_1_2 .servicios-aws h3 {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.44px;
}

#servicio-bloque-5 .columna_1_2 .servicios-aws .bloque div {
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: fit-content;
  margin: 5px;
  border-radius: 5px;
  background: transparent;
  border: solid 1px #b1282c;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  white-space: nowrap;
  cursor: pointer;
}

#servicio-bloque-5 .columna_1_2 .servicios-aws .bloque span {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#servicio-bloque-5 .columna_1_2 .servicios-aws .bloque div svg path {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  fill: #f6f6f6;
}

/*****************************************/

#servicio-bloque-6 {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #1a1e23;
  padding: 75px 0px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#servicio-bloque-6 .columna_2 div {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
}

#servicio-bloque-6 .columna_2 div p {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.44px;
}

#servicio-bloque-6 .columna_2 div p:nth-of-type(2) {
  font-size: 18px;
}

#servicio-bloque-6 .columna_2 div p:nth-of-type(3) {
  color: var(--Rojo, #b1282c);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/*****************************************/

#servicio-bloque-7 {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #1a1e23;
  padding: 75px 0px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#servicio-bloque-7 .title {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.4px;
}

#servicio-bloque-7 .columnas .contenedor-img {
  width: 100%;
  height: 300px;
  border-radius: 300px;
  overflow: hidden;
}

#servicio-bloque-7 .columnas .contenedor-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

#servicio-bloque-7 .columnas .tittle {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.4px;
}

#servicio-bloque-7 .columnas .txt {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#servicio-bloque-7 .columnas .tittle-2 {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.44px;
}

#servicio-bloque-7 .columnas .bloque div {
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: fit-content;
  margin: 5px;
  border-radius: 5px;
  background: #f6f6f6;
  border: solid 1px #f6f6f6;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  white-space: nowrap;
}

#servicio-bloque-7 .columnas .bloque span {
  color: #e31748;
  font-family: var(--font-1);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#servicio-bloque-7 .columnas .card-txt {
  width: 100%;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid#F6F6F6;
}

/*****************************************/

#servicio-bloque-8 {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #1a1e23;
  padding: 75px 0px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#servicio-bloque-8 .columna_0 .title {
  color: #f6f6f6;
  font-family: Helvetica;
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.4px;
  margin-bottom: 80px;
}

#servicio-bloque-8 .columna_2 div {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
}

#servicio-bloque-8 .columna_2 div p {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.44px;
}

#servicio-bloque-8 .columna_1 .contenedor-txt {
  display: flex;
  width: 300px;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-radius: 5px;
  border: 1px solid#F6F6F6;
}

#servicio-bloque-8 .columna_1 .contenedor-txt .div-1 p {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.44px;
}

#servicio-bloque-8 .columna_1 .contenedor-txt .div-2,
#servicio-bloque-8 .columna_1 .contenedor-txt .div-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

#servicio-bloque-8 .columna_1 .contenedor-txt .div-2 p {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#servicio-bloque-8 .columna_1 .contenedor-txt .div-2 div {
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: #f6f6f6;
}

#servicio-bloque-8 .columna_1 .contenedor-txt .div-2 div span {
  color: #e31748;
  font-family: var(--font-1);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#servicio-bloque-8 .columna_1 .contenedor-txt .div-3 span {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.44px;
}

#servicio-bloque-8 .columna_1 .contenedor-txt .div-4 p {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#servicio-bloque-8 .columna_1 .contenedor-txt .div-4 span {
  border-radius: 5px;
  border: 1px solid#F6F6F6;
  padding: 5px;
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

#servicio-bloque-8 .columna_1 .contenedor-txt .div-5 p {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#servicio-bloque-8 .columna_1 .contenedor-imagenes .contenedor-img-1 {
  position: relative;
  z-index: 3;
}

#servicio-bloque-8 .columna_1 .contenedor-imagenes .contenedor-img-2 {
  position: relative;
  z-index: 2;
  top: -50px;
}

#servicio-bloque-8 .columna_1 .contenedor-imagenes .contenedor-img-3 {
  position: relative;
  z-index: 1;
  top: -100px;
}

/*****************************************/

#servicio-bloque-9 {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #1a1e23;
  padding: 75px 0px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#servicio-bloque-9 .columna_1 .title {
  color: #e31748;
  font-family: var(--font-1);
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -3.84px;
}

#servicio-bloque-9 .columna_1 p {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.44px;
}

#servicio-bloque-9 .columna_1 .btn {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: solid 1px #b1282c;
  background: #b1282c;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#servicio-bloque-9 .columna_1 .btn span {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.4px;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#servicio-bloque-9 .columna_1 .btn:hover {
  cursor: pointer;
  background-color: transparent;
}

#servicio-bloque-9 .columna_1 .btn:hover span {
  color: #e31748;
}

#servicio-bloque-9 .columna_2 form {
  display: flex;
  width: 100%;
  max-width: 610px;
  margin-left: auto;
  padding: 50px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  border-radius: 30px;
  border: 1px solid#F6F6F6;
}

#servicio-bloque-9 .columna_2 form h4 {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.4px;
  margin-bottom: 0;
}

#servicio-bloque-9 .columna_2 form label {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#servicio-bloque-9 .columna_2 form #enviar-form-servicios {
  display: flex;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: solid 1px #b1282c;
  background: #b1282c;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 40px;
}

#servicio-bloque-9 .columna_2 form #enviar-form-servicios:hover {
  border: solid 1px #f6f6f6;
  cursor: pointer;
  background-color: transparent;
}

#servicio-bloque-9 .columna_2 form .form-control {
  padding-left: 0 !important;
}

#servicio-bloque-9 .columna_2 form .form-label {
  margin-bottom: 0;
}

#servicio-bloque-9 .columna_2 form .form-control {
  border: 0;
  border-bottom: 1px solid #f6f6f6;
  border-radius: 0;
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#servicio-bloque-9 .columna_2 form .ficha-servicios {
  color: #171717;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 5px;
  width: fit-content;
  cursor: pointer;
  /*white-space: nowrap;*/
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  border: 1px solid#F6F6F6;
  background: #f6f6f6;
  color: #e31748;
  font-family: var(--font-1);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#servicio-bloque-9 .columna_2 form .ficha-servicios svg path {
  fill: #b1282c;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#servicio-bloque-9 .columna_2 form .checkbox {
  display: none;
}

#servicio-bloque-9 .columna_2 form .contenedor-option {
  padding: 0;
  max-width: fit-content;
  position: relative;
  z-index: 1;
}

#servicio-bloque-9 .columna_2 form .contenedor-option input {
  position: absolute;
  z-index: -1;
  width: 100%;
  max-width: 100%;
  height: -webkit-fill-available;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  margin: 0px;
}

#servicio-bloque-9
  .columna_2
  form
  .contenedor-option
  .form-check-input:checked
  + label {
  background: #b1282c;
  color: #f6f6f6;
  border: 1px solid#B1282C;
}

#servicio-bloque-9
  .columna_2
  form
  .contenedor-option
  .form-check-input:checked
  + label
  svg
  path {
  fill: #f6f6f6;
}

#servicio-bloque-9 .columna_2 form .contenedor-option .form-check-input:focus {
  border-color: none !important;
  outline: 0;
  box-shadow: 0 0 0 0rem rgb(13 110 253 / 0%) !important;
}

#servicio-bloque-9
  .columna_2
  form
  .contenedor-option
  .form-check-input:checked {
  background-color: transparent !important;
  border-color: #b1282c !important;
}

#servicio-bloque-9 .columna_2 form .form-check-input {
  border: none !important;
  background-color: transparent !important;
}

#servicio-bloque-9 .columna_2 form .servicios-aws .ficha-servicios {
  border: 1px solid#B1282C;
  background: #1b1d24;
  color: #f6f6f6;
}

/*============ PAGE SERVICIOS END ============*/

/* Kit digital Form */
.kit-digital-form-section {
  padding: 100px 0;
}

.kit-digital-form-section .card .card-body {
  padding: 50px;
}

.kit-digital-form-section .card .card-body h3 {
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

.kit-digital-form-section
  form
  > .container-fluid
  > .row:not(:last-child)
  > div {
  margin-bottom: 30px;
}

.kit-digital-form-section
  form
  > .container-fluid
  > .row:not(:last-child)
  > div
  > div,
.kit-digital-form-section
  form
  > .container-fluid
  > .row:not(:last-child)
  > div
  > div
  > label {
  margin-bottom: 20px;
}

.kit-digital-form-section form .form-check:not(:last-of-type) {
  margin-bottom: 10px;
}

.kit-digital-form-section form .btn-primary {
  margin-top: 30px;
}

.kit-digital-form-container.loading form {
  filter: blur(5px);
  -webkit-filter: blur(5px);
  opacity: 0.5;
  pointer-events: none;
}

.kit-digital-form-container .form-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.kit-digital-form-container .form-spinner i {
  font-size: var(--fs-sm);
  color: var(--primary);
}

.kit-digital-form-container.loading .form-spinner {
  display: block;
  border-radius: 50%;
  padding: 6px;
  background: rgba(0, 0, 0, 0.3);
}

/*============ PAGE SOBRE NOSOTROS START ============*/

#nosotros-bloque-1 {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #1a1e23;
  padding-top: 0px;
  padding-bottom: 125px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#nosotros-bloque-1 .columna_1 h2 {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -3.84px;
}

#nosotros-bloque-1 .columna_1 h4 {
  color: #e31748;
  font-family: var(--font-1);
  font-size: var(--fs-lg);
  font-style: normal;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -5.2px;
  width: 100%;
  text-align: start;
  white-space: nowrap;
}

#nosotros-bloque-1 .columna_1 p {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 40px;
}

#nosotros-bloque-1 .columna_2 .items {
  display: flex;
  width: 200px;
  padding: 10px;
  border-radius: 30px;
  border: 1px solid #f6f6f6;
  display: inline-block;
  text-align: center;
  margin: 15px;
}

#nosotros-bloque-1 .columna_2 .items.item-2,
#nosotros-bloque-1 .columna_2 .items.item-4,
#nosotros-bloque-1 .columna_2 .items.item-5 {
  margin-right: 0;
}

#nosotros-bloque-1 .columna_2 .items p:nth-of-type(1) {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.4px;
  margin-bottom: 0;
}

#nosotros-bloque-1 .columna_2 .items p:nth-of-type(2) {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}

.chevron {
  position: absolute;
  width: 231px;
  height: 50px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #e31748;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(50px);
  }
  67% {
    opacity: 1;
    transform: translateY(150px);
  }
  100% {
    opacity: 0;
    transform: translateY(200px) scale3d(0.5, 0.5, 0.5);
  }
}

#nosotros-bloque-1 .columna_2 {
  position: relative;
  overflow: hidden; /* por si el gradiente se extiende fuera */
  height: 100%;
}

#nosotros-bloque-1 .columna_2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 122%;
  background: linear-gradient(to top, #1a1e23, #1a1e2300);
  pointer-events: none;
  z-index: 1;
}

#nosotros-bloque-1 .seccion-1 {
  position: relative;
}

#nosotros-bloque-1 .columna_2 {
  position: absolute;
  z-index: 0;
  opacity: 1;
  left: 99%;
  top: 64%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  height: 63%;
}

/* ************************************* */

#nosotros-bloque-1_2 .items .number {
  color: #1a1e23;
  font-family: var(--font-1);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -3.84px;
}

#nosotros-bloque-1_2 .items .info {
  color: #1a1e23;
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.84px;
}

#nosotros-bloque-1_2 .carg-bloque-1_2 {
  padding: 60px;
}

/* ****************************************** */

#nosotros-bloque-1_3 h2 {
  color: #ffffff;
  font-family: var(--font-1);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2.84px;
}

#nosotros-bloque-1_3 h2 span {
  color: #e31748;
  font-family: var(--font-1);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2.84px;
}

#nosotros-bloque-1_3 .metodologia {
  border: 1px solid #f6f6f6;
  border-radius: 5px;
  background-color: transparent;
  color: white;
  padding: 40px;
  max-width: 560px;
}

#nosotros-bloque-1_4 a {
  background-color: #e31748;
  border: none !important;
  border-radius: 15px;
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  padding: 10px;
  letter-spacing: -0.84px;
  text-decoration: none;
}

/*****************************************/

#nosotros-bloque-2 {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #1a1e23;
  padding-top: 125px;
  padding-bottom: 125px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#nosotros-bloque-2 .columna-txt h3 {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.88px;
  margin-bottom: 20px;
}

#nosotros-bloque-2 .columna-txt p {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#nosotros-bloque-2 .columna-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

/*****************************************/
#nosotros-bloque-3 .valoramos {
  color: var(--Rojo, #b1282c);
  font-family: Helvetica;
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -2.4px;
  max-width: 100%;
}

#nosotros-bloque-3 {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #1a1e23;
  padding-top: 125px;
  padding-bottom: 125px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#nosotros-bloque-3 h3 {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -3.84px;
}

#nosotros-bloque-3 p {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.44px;
  max-width: 500px;
  margin-right: auto;
}

/*****************************************/

#nosotros-bloque-4 {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #1a1e23;
  margin: 125px 0px;
  overflow-x: hidden;
}

#nosotros-bloque-4 h2 {
  color: #e31748;
  font-family: var(--font-1);
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -3.84px;
  white-space: nowrap;
}

#nosotros-bloque-4 .contenedor-txt-container {
  border-top: solid 1px #b1282c;
  border-bottom: solid 1px #b1282c;
}

#nosotros-bloque-4 .contenedor-txt {
  display: inline-flex;
  padding: 20px 50px;
  justify-content: center;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  align-items: center;
  position: relative;
  left: -42%;
}

#nosotros-bloque-4 .contenedor-txt.animacion {
  animation: marquee 50s linear infinite alternate;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/*****************************************/

#nosotros-bloque-5 {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #1a1e23;
  padding: 125px 0px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

#nosotros-bloque-5 .fila-1 .col-12,
#nosotros-bloque-5 .fila-2 .col-12,
#nosotros-bloque-5 .fila-3 .col-12,
#nosotros-bloque-5 .fila-4 .col-12 {
  display: block;
}

#nosotros-bloque-5 .fila-4 .col-12 {
  text-align: end;
}

#nosotros-bloque-5 .card {
  width: 100%;
  max-width: 225px;
  min-height: 422px;
  border-radius: 30px;
  border: solid 1px #f6f6f6;
  margin-bottom: 0;
  display: inline-block;
  padding: 0;
  margin-bottom: 50px;
}

#nosotros-bloque-5 .fila-1 .card:nth-of-type(2),
#nosotros-bloque-5 .fila-2 .card:nth-of-type(4),
#nosotros-bloque-5 .fila-3 .card:nth-of-type(4),
#nosotros-bloque-5 .fila-4 .card:nth-of-type(3) {
  margin-right: 0px !important;
}

#nosotros-bloque-5 .fila-2 .card,
#nosotros-bloque-5 .fila-3 .card,
#nosotros-bloque-5 .fila-4 .card {
  background-color: transparent;
}

#nosotros-bloque-5 .card .card-header {
  background: transparent;
  padding: 0;
  border: 0;
}

#nosotros-bloque-5 .card .card-header img {
  width: 100%;
  height: 260px;
  object-position: top;
  mix-blend-mode: luminosity;
  object-fit: cover;
  border-radius: 30px;
}

#nosotros-bloque-5 .card .card-body {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

#nosotros-bloque-5 .card .card-body .name {
  color: #171717;
  font-family: var(--font-1);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.44px;
}

#nosotros-bloque-5 .card .card-body .puesto {
  color: #171717;
  font-family: var(--font-1);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#nosotros-bloque-5 .fila-2 .card .card-body .name,
#nosotros-bloque-5 .fila-3 .card .card-body .name,
#nosotros-bloque-5 .fila-4 .card .card-body .name,
#nosotros-bloque-5 .fila-2 .card .card-body .puesto,
#nosotros-bloque-5 .fila-3 .card .card-body .puesto,
#nosotros-bloque-5 .fila-4 .card .card-body .puesto {
  color: #f6f6f6;
}

/*============ PAGE SOBRE NOSOTROS END ============*/

/* PARNERTS */
#partners-body {
  overflow-x: hidden !important;
}

#partners-1 h2 {
  color: var(--white);
  /* H1 */
  font-family: var(--font-1);
  font-size: 49px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.84px;
}

#partners-1 h1 {
  color: var(--primary);
  font-family: var(--font-1);
  font-size: var(--fs-lg);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -6px;
  padding-left: 0px;
  margin-top: -30px;
}

#partners-1 h6 {
  color: var(--white);
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.4px;
  margin-top: 30px;
}

:root {
  --color-background: #b1282c;
  --color-icon: #5c1414;
}

.wrapper {
  position: relative;
  margin: auto;
  width: 28vw;
  height: 28vw;
  perspective: 1000px;
}

#partners-1 .wrapper::after {
  content: "";
  position: absolute;
  bottom: -47px;
  left: -62px;
  width: 637px;
  height: 100%;
  background: linear-gradient(to top, #1a1e23, #1a1e2300);
  pointer-events: none;
  z-index: 1;
}

.center {
  width: 15%;
  height: 15%;
  position: absolute;
  top: 42.5%;
  left: 42.5%;
  border-radius: 50%;
  background-color: var(--color-background);
  animation: blur 5s infinite;
}

.content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform-style: preserve-3d;
  animation: rotate 10s linear infinite;
}

.radius {
  width: 90%;
  height: 90%;
  position: absolute;
  top: 5%;
  left: 5%;
  border-radius: 50%;
  border: 3vw solid var(--color-background);
  animation: blur 5s infinite;
}

.radius.first {
  transform: rotateY(72deg);
}

.radius.second {
  transform: rotateX(70deg) rotateY(30deg);
}

.radius.third {
  transform: rotateX(70deg) rotateY(-30deg);
}

@keyframes rotate {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}

@keyframes blur {
  0% {
    box-shadow: none;
  }
  50% {
    box-shadow: 0 0 4vw 0 var(--color-icon), inset 0 0 4vw 0 var(--color-icon);
  }
  100% {
    box-shadow: none;
  }
}

.card-partners {
  border-radius: 30px;
  background: var(--white);
  height: 100%;
}

.card-partners .card-header {
  border-radius: 30px;
  border: 1px solid var(--white);
  background: var(--color-1);
  display: flex;
  justify-content: center;
  padding: 60px 0;
  height: 200px;
}

.card-partners .card-body {
  border-radius: 30px;
  background: var(--white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-partners .card-body p {
  color: var(--color-1);
  /* Párrafo */
  font-family: var(--font-1);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.card-partners .card-body h3 {
  color: var(--color-1);
  /* H4 */
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.4px;
}

#partners-2 div .espacio {
  padding: 80px 100px;
}

#partners-2 div .espacio h3 {
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.4px;
  color: white;
  margin-bottom: 40px;
}

#partners-2 div .espacio p {
  font-family: var(--font-1);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.4px;
  color: white;
}

#partners-3 {
  padding-left: 100px;
}

#partners-4 h3 {
  color: var(--white);
  /* H3 */
  font-family: var(--font-1);
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.4px;
}

#partners-4 h3 span {
  color: var(--primary);
  /* H3 */
  font-family: var(--font-1);
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.4px;
}

#partners-5 .fila_1 {
  margin-top: 100px;
}

#partners-5 .fila_1 .columna_1 {
  display: flex;
  align-items: start;
  justify-content: flex-start;
}

#partners-5 .fila_1 .columna_1 div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  max-width: 805px;
  margin-right: auto;
}

#partners-5 .fila_1 .columna_1 div h3 {
  color: #ffffff;
  font-family: var(--font-1);
  font-size: var(--fs-lg);
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -3.84px;
}

#partners-5 .fila_1 .columna_1 div p {
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.84px;
}

#partners-5 .fila_1 button {
  background-color: #e31748;
  border: none;
  border-radius: 15px;
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  padding: 10px;
  letter-spacing: -0.84px;
}

#partners-5 .fila_1 .columna_2 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* PARNERTS */

/* CASOS EXITOS */
#body_exitos {
  overflow-x: hidden !important;
}

#casos-exitos-1 h2 {
  color: var(--white);
  /* H1 */

  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -3.84px;
}

#casos-exitos-1 h1 {
  color: var(--primary);

  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -7.2px;
  padding-left: 320px;
  margin-top: -40px;
}

#casos-exitos-1 h6 {
  color: var(--white);
  font-family: var(--font-1);
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -2.4px;
}

.casos-exitos {
  overflow: hidden;
  white-space: nowrap;
  padding: 5px 0px;
  background-color: var(--color-1);
}

.casos-exitos .col-12 {
  display: flex;
  gap: 30px;
  align-items: center;
}

.btn-casos {
  border-radius: 5px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 166px;
  padding: 0;
  width: 100%;
  margin-top: 1rem;
}

.btn-casos img {
  width: 100%;
  height: 100%;
  object-fit: none !important;
}

.btn-casos:hover {
  border-radius: 5px;
  background: #fff;
  border-color: #e31748;
  border-width: 3px;
}

.casos-exitos .marquee-text {
  color: var(--white);

  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -7.2px;
  opacity: 0;
}

.casos-exitos .marquee-text:nth-of-type(odd) {
  transform: translateX(-100%);
}

.casos-exitos .marquee-text:nth-of-type(even) {
  transform: translateX(100%);
}

.casos-exitos .marquee-text-1 {
  display: inline-block;
  animation: marquee-1 20s linear infinite;
}

.casos-exitos .marquee-text-3 {
  display: inline-block;
  animation: marquee-1 20s linear infinite;
}

.casos-exitos .marquee-text-2 {
  color: var(--white);

  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -7.2px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.casos-exitos .marquee-text-5 {
  color: var(--white);
  text-transform: uppercase;
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -7.2px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.casos-exitos .marquee-text-8 {
  color: var(--white);

  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -7.2px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.casos-exitos .marquee-text-2 {
  display: inline-block;
  animation: marquee-1 20s linear infinite;
}

.casos-exitos .marquee-text-2 {
  color: var(--white);

  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -7.2px;
}

#casos-exitos-2 {
  background-image: url(/ns_v3/assets/img/soluciones.png);
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  height: 700px;
  background-size: contain;
}

#casos-exitos-3 {
  background-image: url(/ns_v3/assets/img/trabajos.png);
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  height: 700px;
  background-size: contain;
}

#casos-exitos-4 {
  background-image: url(/ns_v3/assets/img/desarrollo.png);
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  height: 700px;
  background-size: contain;
}

.card-casos-exitos {
  border-radius: 30px;

  background: white;
  backdrop-filter: blur(15px);
  z-index: 99;

  align-items: flex-start;
  gap: 50px;

  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.card-casos-exitos .btn-primary.btn-xl {
  border-radius: 30px;
  font-size: var(--fs-xs);
  border-radius: 0;
  border-bottom-left-radius: 30px;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background-color: white;
  border: 3px solid var(--primary);
  color: var(--primary);
}

#logo_card_exitos {
  width: 100%;
  object-fit: none;
  max-width: 200px;
  max-height: 100px;
  padding-top: 1rem;
}

.modal-content {
  border: 0;
}

#titulo_card {
  color: var(--Dark-blue, #1a1e23);
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.4px;
}

#subtitulo_card {
  color: var(--Dark-blue, #1a1e23);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.44px;
  margin-bottom: 0.5rem;
}

#img_card_exitos {
  width: 100%;

  height: 100%;
  object-fit: cover;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

#link[href=""]:empty {
  display: none;
}

#cerrar_card {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 9999;
  width: fit-content;
  font-size: var(--fs-30);
  color: white;
}

.mt-40 {
  margin-top: 40px;
}

/* ************************************* */

#exitos-tabs .nav .nav-item li {
  font-weight: 400;
  font-size: 24px;
  color: #f6f6f6;
  font-style: normal;
  line-height: normal;
}

#exitos-tabs .nav .nav-item .nav-link {
  border: 1px solid #f6f6f6;
  border-radius: 0px;
  font-size: 24px;
  font-weight: 400;
}

#exitos-tabs .nav .nav-item #exito-1-tab.active {
  border: none;
  border-radius: 0px;
  background-color: #798ec7;
  font-weight: 700;
}
#exitos-tabs .nav .nav-item #exito-2-tab.active {
  border: none;
  border-radius: 0px;
  background-color: #e31748;
  font-weight: 700;
}
#exitos-tabs .nav .nav-item #exito-3-tab.active {
  border: none;
  border-radius: 0px;
  background-color: #d1db6c;
  font-weight: 700;
  color: black;
}

#exitos-tabs .nav .nav-item #exito-4-tab.active {
  border: none;
  border-radius: 0px;
  background-color: #48b596;
  font-weight: 700;
}

#exitos-tabs .nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: white;
  --bs-nav-link-hover-color: white;
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 40px;
  list-style: none;
  gap: 12px;
}

#exitos-tabs .nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: transparent;
}

.carrusel-exitos-cms a {
  text-decoration: none;
  color: white;
}

.carrusel-exitos-cms a .borde-30 {
  border-radius: 30px;
}

.carrusel-exitos-cms a .info-servicios {
  margin-top: 40px;
}

.carrusel-exitos-cms a .info-servicios .titulos {
  font-size: 32px;
}

.carrusel-exitos-cms a .info-servicios .lista-info {
  font-size: 24px;
  font-weight: 400;
}

.carrusel-exitos-cms a img {
  overflow: hidden;
  object-fit: cover;
}

.carrusel-exitos-web a {
  text-decoration: none;
  color: white;
}

.carrusel-exitos-web a .borde-30 {
  border-radius: 30px;
}

.carrusel-exitos-web a .info-servicios {
  margin-top: 40px;
}

.carrusel-exitos-web a .info-servicios .titulos {
  font-size: 32px;
}

.carrusel-exitos-web a .info-servicios .lista-info {
  font-size: 24px;
  font-weight: 400;
}

.carrusel-exitos-web a img {
  overflow: hidden;
  object-fit: cover;
}

.carrusel-exitos-redes a {
  text-decoration: none;
  color: white;
}

.carrusel-exitos-redes a .borde-30 {
  border-radius: 30px;
}

.carrusel-exitos-redes a .info-servicios {
  margin-top: 40px;
}

.carrusel-exitos-redes a .info-servicios .titulos {
  font-size: 32px;
}

.carrusel-exitos-redes a .info-servicios .lista-info {
  font-size: 24px;
  font-weight: 400;
}

.carrusel-exitos-redes a img {
  overflow: hidden;
  object-fit: cover;
}

.carrusel-exitos-grafico a {
  text-decoration: none;
  color: white;
}

.carrusel-exitos-grafico a .borde-30 {
  border-radius: 30px;
}

.carrusel-exitos-grafico a .info-servicios {
  margin-top: 40px;
}

.carrusel-exitos-grafico a .info-servicios .titulos {
  font-size: 32px;
}

.carrusel-exitos-grafico a .info-servicios .lista-info {
  font-size: 24px;
  font-weight: 400;
}

.carrusel-exitos-grafico a img {
  overflow: hidden;
  object-fit: cover;
}

/* CASOS EXITOS */

/* TALENTO */
#talento .card-partners .card-header {
  border-radius: 30px;
  border: 1px solid var(--white);
  background: white;
  display: flex;
  justify-content: center;
  padding: 0 0;
  height: 200px;
  border: 0;
}

#talento .card-partners .card-header img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 26px;
}

.h5-talento {
  color: var(--white);
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.4px;
}

.h5-talento span {
  color: var(--primary);
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.4px;
}

.mano {
  position: absolute;
  top: -250px;
  left: -50px;
}

#talento-1 .seccion-1 .h1 {
  color: var(--primary);
  font-family: var(--font-1);
  font-size: var(--fs-lg);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -9px;
  padding-left: 0px;
  margin-top: -44px;
}

#talento-1 .seccion-1 .h2 {
  color: var(--white);
  font-family: var(--font-1);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -3px;
}

#talento-1 .seccion-1 .h6 {
  color: var(--white);
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0px;
}

#talento-1 .seccion-1 {
  position: relative;
  overflow: hidden; /* por si el gradiente se extiende fuera */
}

#talento-1 .equipo {
  position: relative;
  overflow: hidden; /* por si el gradiente se extiende fuera */
  height: 100%;
  padding-top: 15px;
}

#talento-1 .equipo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 122%;
  background: linear-gradient(to top, #1a1e23, #1a1e2300);
  pointer-events: none;
  z-index: 1;
}

#talento-1 .svg-icon {
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  width: 70px;
}
#talento-1 .svg-icon-large {
  width: 15em;
  height: 15em;
  animation-duration: 6000ms;
  animation-name: spinLeft;
}
#talento-1 .svg-icon-small {
  width: 8em;
  height: 8em;
  position: absolute;
  margin-left: -43px;
  margin-top: -25px;
  animation-duration: 4000ms;
  animation-name: spinRight;
}
#talento-1 .svg-icon path,
.svg-icon polygon,
.svg-icon rect {
  fill: #d82525;
}
#talento-1 .svg-icon-small path {
  stroke: #830505;
  stroke-width: 0.3;
}
@keyframes spinLeft {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinRight {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.borde-30 {
  border-radius: 30px;
}

.pt-100 {
  padding-top: 100px;
}

#talento-1 .valoramos h2 {
  color: var(--white);
  font-family: var(--font-1);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

#talento-1 .valoramos .lista-info {
  color: var(--white);
  font-family: var(--font-1);
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0px;
}

.shadow-personalizado {
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.3);
}

.info-talentos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.img-talentos {
  position: relative;
  overflow: hidden;
}

.presentacion-talento {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #e31748;
  color: white;
  text-align: start;
  padding: 40px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s ease;
  height: 100%;
}

.img-talentos:hover .presentacion-talento {
  opacity: 1;
  transform: translateY(0);
}

.presentacion-talento h4 {
  color: var(--white);
  font-family: var(--font-1);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  max-width: 170px;
}

.presentacion-talento p {
  color: var(--white);
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  max-width: 170px;
}

#talento-1 #partners-2 .card-talento p {
  color: var(--white);
  font-family: var(--font-1);
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0px;
  max-width: 385px;
}

#talento-1 #partners-2 .card-talento {
  border: 1px solid #f6f6f6;
  border-radius: 5px;
  background-color: transparent;
  color: white;
  padding: 40px;
  max-width: 465px;
}

#talento-1 #partners-2 h2 {
  color: var(--white);
  font-family: var(--font-1);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 40px;
}

#talento-1 #partners-2 a {
  background-color: #e31748;
  border: none !important;
  border-radius: 15px;
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  padding: 10px;
  letter-spacing: -0.84px;
  text-decoration: none;
}

#modal-1 .modal-dialog {
  background-color: #000;
  border-radius: 30px;
}

.modal .modal-content .modal-header button {
  background-color: transparent;
  border: none;
}

/* #modal-1 input[type="text"].form-control, input[type="email"].form-control, input[type="number"].form-control, input[type="tel"].form-control, input[type="date"].form-control, textarea.form-control {
    padding: 16px;
    background-color: #2e2e2ea1;
    border-radius: 10px;
    border: 0;
    border-bottom: 1px solid var(--color-1);
    transition: all .3s;
    color: white;
} */

.talento-form-section form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#talento-form input::placeholder {
  color: white;
  opacity: 1;
}

#modal-1 #talento-form-submit {
  background-color: #e31748;
  border: none !important;
  border-radius: 15px;
  color: #f6f6f6;
  font-family: var(--font-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  padding: 10px;
  letter-spacing: -0.84px;
  text-decoration: none;
}
/* TALENTO */

/* KIT DIGITAL */
.contact-title-section h2 {
  color: var(--white);
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -3.84px;
}

#kit-digital .contact-title-section h1 {
  color: var(--primary);
  font-family: Helvetica;
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -7.2px;
  padding-left: 85px;
}

#kit-digital .contact-map-section h1 {
  max-width: 550px;
}

.kit-digital-proceso-section p {
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 550px;
}

#kit-digital .margin-top-250 p {
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 550px;
}

.h3-kit {
  color: #f6f6f6 !important;
  font-family: var(--font-1);
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -3.84px;
  max-width: 550px !important;
}

#kit-digital .card-kit {
  border-radius: 30px;
  background: var(--white);
  padding: 50px;
  height: 100%;
}

#kit-digital .card-kit .h2-numero {
  color: var(--primary);
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -3.84px;
}

#kit-digital .card-kit p {
  color: var(--color-1);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.dudas {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-left: 50px;
  border-radius: 30px;
  background: #f6f6f6;
  padding: 30px;
  min-height: 250px;
  padding-bottom: 30px;
  padding-top: 0px;
}

.margin-top-250 {
  margin-top: 250px;
}

.margin-top-150 {
  margin-top: 150px;
}

.icono-kit {
  width: 100%;
  max-width: 110px;
  height: auto;
}

.banner-rojo {
  display: flex;
  padding: 50px;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  row-gap: 30px;
  position: absolute;
  top: -50px;
  left: 0;
  border-radius: 30px;
  background: var(--primary);
  z-index: 2;
}

.banner-rojo h2 {
  color: var(--white);
  /* H1 */
  font-family: Helvetica;
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -3.84px;
  flex: 100%;
}

.banner-rojo p {
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.card-kit h3 {
  color: var(--color-1);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.44px;
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
}

.h4-kit {
  color: var(--white);
  text-align: right;
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.4px;
  max-width: 575px;
}

.h4-kit span {
  color: var(--primary);
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.4px;
}

.te-llamamos {
  width: fit-content;
  text-decoration: none;
}

.tipos {
  background-image: url(/ns_v3/assets/img/tipos.png);
  background-size: cover;
  position: relative;
}

.h2-kit {
  color: var(--white);
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -3.84px;
  max-width: 522px;
}

#kit-digital .h3-titulo {
  color: var(--color-1);
  text-align: center;

  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.44px;
}

#kit-digital .h3-empleados {
  color: var(--color-1);

  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.44px;
  display: flex;
  align-items: center;
}

#kit-digital .h3-precio {
  color: var(--color-1);
  text-align: center;
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -3.84px;
}

.h2-facilitamos {
  color: var(--white);
  text-align: center;
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -3.84px;
  max-width: 1129px;
  margin: 50px 0;
}

.h2-facilitamos span {
  color: var(--primary);
  text-align: center;
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -3.84px;
}

.h5-cubre {
  color: #fff;
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.4px;
  margin-bottom: 50px;
}

.p-li {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.h4-solicita {
  color: var(--color-1);
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -3.84px;
}

.p-solicita {
  color: var(--color-1);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: start !important;
}

/* KIT DIGITAL */

#svg_newscript.activos path {
  animation: animateText 4s ease forwards;
}

#svg_newscript.activos {
  animation: colorFill 1.5s ease forwards 3.5s;
}

#svg_newscript path:nth-child(1) {
  stroke-dasharray: 1249px;
  stroke-dashoffset: 1249px;
  animation-delay: 0s;
}

#svg_newscript path:nth-child(2) {
  stroke-dasharray: 1249px;
  stroke-dashoffset: 1249px;
  animation-delay: 0.5s;
}

#svg_newscript path:nth-child(3) {
  stroke-dasharray: 1249px;
  stroke-dashoffset: 1249px;
  animation-delay: 0.7s;
}

#svg_newscript path:nth-child(4) {
  stroke-dasharray: 1249px;
  stroke-dashoffset: 1249px;
  animation-delay: 0.9s;
}

#svg_newscript path:nth-child(5) {
  stroke-dasharray: 1249px;
  stroke-dashoffset: 1249px;
  animation-delay: 1.3s;
}

#svg_newscript path:nth-child(6) {
  stroke-dasharray: 1249px;
  stroke-dashoffset: 1249px;
  animation-delay: 1.5s;
}

#svg_newscript path:nth-child(7) {
  stroke-dasharray: 1249px;
  stroke-dashoffset: 1249px;
  animation-delay: 1.8s;
}

#svg_newscript path:nth-child(8) {
  stroke-dasharray: 1249px;
  stroke-dashoffset: 1249px;
  animation-delay: 2.1s;
}

#svg_newscript path:nth-child(9) {
  stroke-dasharray: 1249px;
  stroke-dashoffset: 1249px;
  animation-delay: 2.4s;
}

@keyframes animateText {
  to {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes animateText {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes colorFill {
  from {
    fill: transparent;
    text-decoration: none;
  }

  to {
    fill: #1a1e23;
  }
}

@-webkit-keyframes colorFill {
  from {
    fill: transparent;
    text-decoration: none;
  }

  to {
    fill: #1a1e23;
  }
}

/* Footer */
footer {
  overflow: hidden;
  padding: 50px 0;
}

footer #footer-logo-card {
  width: 100%;
  padding: 0px 0px 40px 0px;
}

#svg_newscript {
  max-width: 250px;
}

footer .card .card-body {
  padding: 20px 0;
}

footer .card .card-body h1 {
  font-size: 150px;
  font-weight: 700;
  line-height: normal;
}

footer .partners-img {
  margin-bottom: 50px;
  padding: 0 1rem;
}

footer .partners-img .partners-img-row:first-of-type {
  margin-bottom: 20px;
}

footer .partners-img .partners-img-row:last-of-type {
  display: flex;
  gap: 20px;
}

footer .partners-img .partners-img-row:last-of-type > div {
  display: flex;
  align-items: center;
}

footer .partners-img .partners-img-row:last-of-type img {
  width: 100%;
}

footer .footer-bottom-cards {
  display: flex;
  gap: 20px;
}

footer .footer-bottom-cards .card {
  width: 100%;
}

footer .footer-bottom-cards .card .card-body {
  padding: 30px;
}

footer .footer-bottom-cards .card .card-body img,
footer .footer-bottom-cards .card .card-body p,
footer .footer-bottom-cards .card .card-body .redes-sociales {
  margin-bottom: 0px;
}

footer .footer-bottom-cards .card .card-body p:last-of-type {
  margin: 0;
}

footer .footer-bottom-cards .card .card-body p a {
  text-decoration: none;
  color: var(--color-1);
  transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
}

footer .footer-bottom-cards .card .card-body p a:hover {
  opacity: 0.7;
}

footer .footer-bottom-cards .card .card-body .copyright a {
  font-weight: 700;
  color: var(--black);
}

footer .footer-bottom-cards .card .card-body .redes-sociales {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

footer .footer-bottom-cards .card .card-body .redes-sociales a {
  font-size: var(--fs-30);
  color: var(--color-3);
  transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
}

footer .footer-bottom-cards .card .card-body .redes-sociales a:hover {
  opacity: 0.7;
}

footer .footer-bottom-cards .card .card-body .footer-links {
}

footer .footer-bottom-cards .card .card-body .footer-links h3 {
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

footer .footer-bottom-cards .card .card-body .footer-links .list-group {
  border-radius: 0;
}

footer
  .footer-bottom-cards
  .card
  .card-body
  .footer-links
  .list-group
  .list-group-item {
  border: none;
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
}

footer
  .footer-bottom-cards
  .card
  .card-body
  .footer-links
  .list-group
  .list-group-item:not(:last-of-type) {
  margin-bottom: 10px;
}

.fa-arrow-up {
  animation: bounce2 2s ease infinite;
}

.mt-260 {
  margin-top: 260px !important;
}

@keyframes bounce2 {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-15px);
  }

  60% {
    transform: translateY(-15px);
  }
}

/* @media (max-width:1930px) {
    #page-content-2 .card-4 .card-body .card-4-lineas-container #linea-centro {
        top: -204px;
        left: 624px;
        stroke-dasharray: 3302;
        stroke-dashoffset: 3000;
        z-index: 3;
    }

    #page-content-2 .card-4 .card-body .card-4-lineas-container #linea-base-centro {
        top: -204px;
        left: 624px;
    }

    #page-content-2 .card-4 .card-body .card-4-lineas-container #linea-izquierda {
        left: 267px;
        top: -134px;
        stroke-dasharray: 3081;
        stroke-dashoffset: 3200;
    }

    #page-content-2 .card-4 .card-body .card-4-lineas-container #linea-base-izquierda {
        left: 267px;
        top: -134px;
    }

    #page-content-2 .card-4 .card-body .card-4-lineas-container #linea-derecha {
        left: 624px;
        top: 123px;
        stroke-dasharray: 2603;
        stroke-dashoffset: 2700;
    }

    #page-content-2 .card-4 .card-body .card-4-lineas-container #linea-base-derecha {
        left: 624px;
        top: 123px;
    }
} */

/* Breakpoints */
@media (max-width: 1600px) {
  .casos-exitos .marquee-text {
    font-size: 50px;
    letter-spacing: -3px;
  }
}

@media (max-width: 1399px) {
  .icono-ns {
    position: absolute;
    max-width: 135px;
    left: 40%;
    top: 0px;
  }

  .banner-rojo {
    display: flex;
    padding: 50px;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    row-gap: 30px;
    position: absolute;
    top: -150px;
    left: 0;
    border-radius: 30px;
    background: var(--primary);
    z-index: 2;
  }

  #header-ns .header-ns-banner-animation {
    height: 450px;
  }

  #nosotros-bloque-5 .fila-4 .col-12 {
    text-align: start;
  }

  #partners-2 {
    padding-right: 25px;
  }

  #partners-3 {
    padding-left: 25px;
  }
}

@media (max-width: 1199px) {
  #header-ns .header-ns-banner-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    aspect-ratio: 1/1;
    padding: 100px;
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100%;
    overflow: hidden;
    background-color: var(--black);
    width: 50%;
  }

  .icono-ns {
    position: absolute;
    max-width: 135px;
    left: 50%;
    top: 0px;
  }

  #header-ns .card-body {
    height: 521px;
  }

  #header-ns .title-5 {
    color: white;
    text-align: center;
    margin-top: 35px;
  }

  #header-ns .card-body .info-videov {
    width: 100%;
    height: 400px;
  }

  #header-ns .header-ns-banner-animation {
    height: 500px;
    top: unset;
    right: unset;
    left: 50%;
    bottom: 100px;
    transform: translateX(-50%);
  }

  #header-sticky-container {
    height: auto;
  }

  #header-sticky-container {
    padding: 40px 0 25px;
  }

  #header-ns-animation {
    max-height: 100vh;
  }

  #page-content-2 .card-3 .card-3-container .card-3-content > div h1 {
    width: 100%;
  }

  #page-content-2
    .card-3
    .card-3-container
    .card-3-content
    > div:nth-of-type(2)
    h1,
  #page-content-2
    .card-3
    .card-3-container
    .card-3-content
    > div:nth-of-type(3)
    h1,
  #page-content-2
    .card-3
    .card-3-container
    .card-3-content
    > div:nth-of-type(4)
    h1 {
    width: 100%;
  }

  #page-content-4 .card .card-body .columna_1 {
    padding-top: 50px;
    padding-left: 50px;
    padding-bottom: 50px;
  }

  #page-content-4 .card .card-body .columna_2 {
    height: 1000px;
  }

  #page-content-5 .rocket {
    height: 500px;
  }

  #servicio-bloque-1 .columna_2 svg {
    opacity: 0.6;
  }

  #servicio-bloque-1 .columna_2 {
    position: absolute;
    z-index: 0;
    opacity: 0.3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }

  #servicio-bloque-1 .columna_2 .adn {
    --h: 0.8em;
  }

  .casos-exitos .marquee-text {
    font-size: 35px;
    letter-spacing: -3px;
    text-wrap: wrap;
    text-align: center;
  }

  #casos-exitos-2 {
    height: 550px;
  }

  #casos-exitos-2 div {
    z-index: 2;
    position: relative;
  }

  #casos-exitos-2::before {
    background-color: rgb(0 0 0 / 20%);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    content: "";
  }

  #casos-exitos-3 {
    height: 550px;
  }

  #casos-exitos-3 div {
    z-index: 2;
    position: relative;
  }

  #casos-exitos-3::before {
    background-color: rgb(0 0 0 / 20%);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    content: "";
  }

  #casos-exitos-4 {
    height: 550px;
  }

  #casos-exitos-4 div {
    z-index: 2;
    position: relative;
  }

  #casos-exitos-4::before {
    background-color: rgb(0 0 0 / 20%);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    content: "";
  }

  footer .card .card-body h1 {
    font-size: 120px;
  }

  footer .card .card-body img {
    height: 120px;
  }

  footer .footer-bottom-cards .card .card-body .footer-links {
    flex-wrap: wrap;
  }

  footer .footer-bottom-cards .card .card-body .footer-links > div {
    flex-basis: calc(50% - 20px);
  }

  footer
    .footer-bottom-cards
    .card
    .card-body
    .footer-links
    > div:last-of-type {
    flex-basis: 100%;
  }

  #partners-1 {
    position: relative;
    transition: all 0.5s ease;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #partners-1 .wrapper {
    position: absolute;
    width: 81vw;
    height: 81vw;
    z-index: 0;
    opacity: 0.3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }

  #partners-1 .texto-partners {
    z-index: 1;
  }

  #partners-1 h1 {
    font-size: 48px !important;
  }

  #partners-2 div .espacio {
    padding: 30px 20px;
  }

  #partners-5 .fila_1 .columna_1 div h3 {
    font-size: var(--fs-48);
  }

  #partners-5 .fila_1 .columna_1 div p {
    font-size: 22px;
  }

  #partners-2 div .espacio p {
    font-size: 18px;
  }

  #partners-5 .fila_1 {
    margin-top: 50px;
  }

  #talento-1 .seccion-1 {
    position: relative;
    transition: all 0.5s ease;
    min-height: 266px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #talento-1 .equipo {
    position: absolute;
    width: 81vw;
    height: 81vw;
    z-index: 0;
    opacity: 0.3;
    left: 50%;
    top: 64%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }

  #talento-1 .seccion-1 .h1 {
    font-size: 48px !important;
    margin-top: -23px;
  }

  .pt-100 {
    padding-top: 35px;
  }

  #talento-1 .valoramos h2 {
    color: var(--white);
    font-family: var(--font-1);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  #talento-1 #partners-2 a {
    background-color: #e31748;
    border: none !important;
    border-radius: 15px;
    color: #f6f6f6;
    font-family: var(--font-1);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    padding: 10px;
    letter-spacing: -0.84px;
    text-decoration: none;
  }

  #talento-1 #partners-2 h2 {
    color: var(--white);
    font-family: var(--font-1);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 25px;
  }

  #talento-1 .valoramos .lista-info {
    color: var(--white);
    font-family: var(--font-1);
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0px;
    margin-bottom: 0px;
  }

  #equipos .pt-100 {
    padding-top: 0px;
  }

  #nosotros-bloque-1 .columna_1 h4 {
    font-size: var(--fs-48);
    letter-spacing: -2.2px;
  }

  #nosotros-bloque-1 .columna_1 p {
    font-size: 22px;
    margin-top: 23px;
  }

  #nosotros-bloque-1 .columna_2 {
    left: 67%;
  }

  #nosotros-bloque-1_3 h2 span {
    color: #e31748;
    font-family: var(--font-1);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.84px;
  }

  #nosotros-bloque-1_3 h2 {
    color: #ffffff;
    font-family: var(--font-1);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.84px;
  }

  #nosotros-bloque-1_4 a {
    background-color: #e31748;
    border: none !important;
    border-radius: 15px;
    color: #f6f6f6;
    font-family: var(--font-1);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    padding: 10px;
    letter-spacing: -0.84px;
    text-decoration: none;
  }

  #contact-page .seccion-1 {
    position: relative;
    transition: all 0.5s ease;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #contact-page .absolute-columna-2 {
    position: absolute;
    width: 81vw;
    height: 81vw;
    z-index: 0;
    opacity: 0.3;
    left: 50%;
    top: 39%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }

  #contact-page h1 {
    color: var(--primary);
    font-size: var(--fs-48);
    font-style: normal;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -4px;
  }

  #contact-page h2 {
    color: white;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 0.7;
    letter-spacing: -1px;
  }

  .contact-title-section p {
    color: var(--white);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 26px;
  }

  #talento-1 .seccion-1 .h6 {
    font-weight: 400;
    line-height: 1.2;
  }

  #nosotros-bloque-1 .columna_1 p {
    font-weight: 400;
  }

  #partners-1 h1 {
    font-size: 48px !important;
    letter-spacing: -2.2px;
    margin-top: -20px;
  }

  #partners-1 h6 {
    color: var(--white);
    font-family: var(--font-1);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1.4px;
    margin-top: -2px;
  }

  #exitos-tabs .nav .nav-item .nav-link {
    border: 1px solid #f6f6f6;
    border-radius: 0px;
    font-size: 18px;
    font-weight: 400;
  }

  .mt-40 {
    margin-top: 9px;
  }

  .carrusel-exitos-cms a .info-servicios .titulos {
    font-size: 28px;
  }

  .carrusel-exitos-cms a .info-servicios {
    margin-top: 20px;
  }

  .carrusel-exitos-cms a .info-servicios .lista-info {
    font-size: 20px;
    font-weight: 400;
  }

  .carrusel-cms a .info-servicios .titulos {
    font-size: 28px;
  }

  .carrusel-cms a .info-servicios {
    margin-top: 20px;
  }

  .carrusel-cms a .info-servicios .lista-info {
    font-size: 20px;
    font-weight: 400;
  }

  .carrusel-exitos-web a .info-servicios .titulos {
    font-size: 28px;
  }

  .carrusel-exitos-web a .info-servicios {
    margin-top: 20px;
  }

  .carrusel-exitos-web a .info-servicios .lista-info {
    font-size: 20px;
    font-weight: 400;
  }

  .carrusel-exitos-redes a .info-servicios .titulos {
    font-size: 28px;
  }

  .carrusel-exitos-redes a .info-servicios {
    margin-top: 20px;
  }

  .carrusel-exitos-redes a .info-servicios .lista-info {
    font-size: 20px;
    font-weight: 400;
  }

  .carrusel-exitos-grafico a .info-servicios .titulos {
    font-size: 28px;
  }

  .carrusel-exitos-grafico a .info-servicios {
    margin-top: 20px;
  }

  .carrusel-exitos-grafico a .info-servicios .lista-info {
    font-size: 20px;
    font-weight: 400;
  }

  .presentacion-talento p {
    font-size: 17px;
  }
  .presentacion-talento h4 {
    font-size: 17px;
  }

  .presentacion-talento {
    padding: 11px;
  }

  #page-content-4 .card .card-body .columna_1 h2 {
    font-size: var(--fs-60);
  }

  #page-content-4 .card .card-body .columna_1 h3 {
    font-size: var(--fs-30);
  }

  #page-content-5 h2 {
    font-size: var(--fs-60);
  }

  #page-content-5 h3 {
    line-height: 1.1;
    font-size: var(--fs-30);
    letter-spacing: -1px;
  }

  .btn-primary.btn-xxl {
    font-size: var(--fs-xs);
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    padding: 10px 15px;
    border-radius: 15px;
  }

  #page-content-3 .section-1 h2 {
    text-align: center;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 40px;
    font-size: 38px;
    letter-spacing: -2px;
    line-height: 1;
  }

  #page-content-3 .section-1 h2 {
    text-align: center;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 40px;
    font-size: 38px;
    letter-spacing: -2px;
    line-height: 1;
  }

  #page-content-3 .section-1 h3 {
    text-align: center;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 30px;
    font-size: 20px;
  }

  .carrusel-servicios a .info-servicios {
    margin-top: 20px;
  }
}

@media (max-width: 1024px) {
  #servicio-bloque-1 .columna_1 {
    position: relative;
    z-index: 1;
  }

  #page-content-2 .card-4 .card-body .partner-aws h2 {
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 50px;
    color: var(--white);

    display: flex;
    align-items: start !important;
  }

  #page-content-2 .card-4 .card-body .partner-aws {
    position: relative;
    z-index: 4;
    margin-top: 18px !important;
    width: 1026px;
  }

  #page-content-2 .card-4 .card-body .card-4-lineas-container #linea-derecha {
    left: 260px;
    top: -13px;
    stroke-dasharray: 2395;
    stroke-dashoffset: 2700;
  }

  #page-content-2
    .card-4
    .card-body
    .card-4-lineas-container
    #linea-base-derecha {
    left: 260px;
    top: -13px !important;
  }

  #page-content-2
    .card-4
    .card-body
    .card-4-lineas-container
    #linea-base-izquierda {
    left: -274px;
    top: -50px;
    display: none;
  }

  #page-content-2
    .card-4
    .card-body
    .card-4-lineas-container
    #linea-base-centro {
    left: 83px;
    top: -420px;
    display: none;
  }

  #page-content-2 .card-4 .card-body .card-4-lineas-container #linea-izquierda {
    left: -274px;
    top: -50px;
    display: none;
  }

  #page-content-2 .card-4 .card-body .card-4-lineas-container #linea-centro {
    left: 83px;
    top: -420px;
    display: none;
  }

  #page-content-2 .card-4 .card-header {
    background-color: var(--color-1);
    border-radius: 0px;
    margin-bottom: -296px;
    z-index: 2;
    border-bottom: 0;
  }

  #page-content-2 .card-4 .card-body .caracteristicas {
    margin-top: 0;
    position: relative;
    z-index: 3;
    padding-left: 197px;
  }

  #talento-1 #partners-2 h2 {
    color: var(--white);
    font-family: var(--font-1);
    font-size: 31px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 25px;
  }
}

@media (max-width: 991px) {
  .mt-260 {
    margin-top: 80px;
  }

  .icono-ns {
    position: absolute;
    max-width: 135px;
    left: 60%;
    top: 0px;
  }

  #svg_newscript.activos {
    height: auto;
  }

  .banner-rojo {
    display: flex;
    padding: 50px;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    row-gap: 30px;
    position: absolute;
    top: -150px;
    left: 0;
    border-radius: 30px;
    background: var(--primary);
    z-index: 2;
    flex-direction: column;
  }

  .dudas {
    margin-left: 0;
  }

  :root {
    --fs-xl: 96px;
    --fs-lg: 72px;
    --fs-md: 48px;
    --fs-sm: 32px;
    --fs-xs: 20px;
    --fs-xxs: 16px;

    --fs-btn-xxl: 48px;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    text-align: center;
  }

  .navbar .navbar-nav .nav-item .btn-primary {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 135px;
  }

  .navbar .navbar-nav .nav-item .btn-secundario {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 135px;
  }

  .navbar .dropdown-toggle {
    margin-left: 0px;
  }

  #header-ns .card-body {
    padding: 0px;
  }

  #header-ns .header-ns-banner-animation {
    padding: 100px 0;
    align-items: flex-end;
    bottom: 50px;
  }

  #header-ns
    .header-ns-banner-animation-container
    .header-ns-banner-animation
    #video-ns {
    height: auto;
    margin: auto 0;
  }

  #header-ns .title span:nth-of-type(even) {
    font-weight: 700;
    line-height: 0.5;
  }

  #page-content-2 .card-4 .card-body .partner-aws {
    position: relative;
    z-index: 4;
    margin-top: 18px !important;
    width: 630px;
  }

  #page-content-2 .card-4 .card-body .card-4-lineas-container #linea-derecha {
    stroke-dasharray: 2422;
    stroke-dashoffset: 2700;
  }

  #page-content-2 .card-4 .card-body .partner-aws h4 {
    width: 304px;
    font-weight: 400;
    color: var(--white);
  }
  #video-overlay-ns img {
    width: 37%;
  }

  #page-content-2 .card-2 .card-2-container .card-2-column {
    justify-content: center;
  }

  #page-content-2 .card-2 .card-2-container {
    display: block;
  }

  #page-content-2 .card-2 .card-body {
    padding: 30px 50px;
  }

  #page-content-2 .card-3 .card-body {
    padding: 0px 41px 50px;
  }

  #page-content-2 .card-3 .card-3-container .card-3-content > div h1 {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  #page-content-2 .card-3 .card-3-container .texto-digitalizacion-5 img {
    position: absolute;
    top: 216px;
    right: -0;
    width: 20%;
  }

  #page-content-2
    .card-3
    .card-3-container
    .card-3-content
    > div:nth-of-type(2)
    h1,
  #page-content-2
    .card-3
    .card-3-container
    .card-3-content
    > div:nth-of-type(3)
    h1,
  #page-content-2
    .card-3
    .card-3-container
    .card-3-content
    > div:nth-of-type(4)
    h1 {
    padding-top: 100px;
  }

  #page-content-2 .card-4 .card-body .partner-aws h2 {
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 50px;
    color: var(--white);

    display: flex;
    align-items: start !important;
  }

  #page-content-2 .card-4 .card-header {
    z-index: 5;
    margin-bottom: -100px;
    padding: 50px;
  }

  #page-content-2 .card-4 .card-header .card-4-container .card-4-image img {
    width: 48%;
  }

  #page-content-2 .card-4 .card-body {
    padding: 50px;
    min-height: auto;
  }

  #page-content-2 .card-4 .card-body .card-4-lineas-container {
    left: 0;
    top: 540px;
  }

  #page-content-2 .card-4 .card-body .card-4-lineas-container svg {
    z-index: 1;
  }

  #page-content-2
    .card-4
    .card-body
    .card-4-lineas-container
    #linea-base-izquierda {
    left: -274px;
    top: -50px;
    display: none;
  }

  #page-content-2
    .card-4
    .card-body
    .card-4-lineas-container
    #linea-base-centro {
    left: 83px;
    top: -420px;
    display: none;
  }

  #page-content-2
    .card-4
    .card-body
    .card-4-lineas-container
    #linea-base-derecha {
    left: 83px !important;
    top: 170px !important;
  }

  #page-content-2 .card-4 .card-body .card-4-lineas-container #linea-izquierda {
    left: -274px;
    top: -50px;
    display: none;
  }

  #page-content-2 .card-4 .card-body .card-4-lineas-container #linea-centro {
    left: 83px;
    top: -420px;
    display: none;
  }

  #page-content-2 .card-4 .card-body .card-4-lineas-container #linea-derecha {
    left: 83px !important;
    top: 170px !important;
  }

  #page-content-2 .card-4 .card-body .caracteristicas {
    margin-top: 0px;
    position: relative;
    z-index: 3;
    padding-left: 373px;
  }

  #page-content-2 .card-4 .card-4-container {
    display: block;
  }
  #page-content-2 .card-4 .card-body .caracteristicas .caracteristica .icon {
    max-width: 75px;
    min-width: 75px;
    height: 75px;
  }

  #page-content-2 .card-4 .card-4-container .card-4-content h1,
  #page-content-2 .card-4 .card-4-container .card-4-content h4 {
    margin-bottom: 40px;
  }

  #page-content-2 .card-4 .card-body .partner-aws img {
    width: 122px;
    margin-top: 19px;
  }

  #page-content-2 .card-4 .card-body .caracteristicas {
    padding-left: 0;
    margin-left: -33px;
  }

  #page-content-2 .card-4 .card-body .caracteristicas .caracteristica {
    margin-bottom: 30px;
  }

  #page-content-2 .card-4 .card-body .caracteristicas .caracteristica h1 {
    font-size: var(--fs-48);
  }

  #page-content-3 .section-1 {
    padding: 50px 50px;
  }

  #page-content-4 .card {
    overflow: hidden;
  }

  #header-ns .card-body .info-video {
    width: 83%;
    height: 295px;
  }

  #page-content-4 .card .card-body .columna_1 {
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 50px;
    padding-bottom: 300px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.5);
  }

  #page-content-4 .card .card-body .columna_2 {
    position: absolute;
    z-index: 0;
  }

  #page-content-4 .card .card-body .columna_2 .perfiles-equipo {
    width: 400px;
    right: 0;
  }

  #page-content-4 .card .card-body .columna_2 .perfiles-equipo img {
    width: 150px;
  }

  #page-content-5 {
    position: relative;
  }

  #page-content-5 .columna_1 {
    padding-left: 50px;
    padding-right: 50px;
    position: relative;
    z-index: 1;
  }

  #page-content-5 .columna_2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
  }

  #page-content-5 .columna_2 .rocket {
    opacity: 0.5;
  }

  .contact-title-section {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .contact-title-section .dots {
    margin-top: 50px;
  }

  .contact-form-section .contact-form-card-container {
    position: relative;
  }

  .contact-form-section .contact-form-img {
    position: absolute;
    bottom: 0;
    width: 100%;
    right: 0;
  }

  .contact-form-section .contact-form-img img {
    width: 20%;
    display: block;
    margin: 0px 10px 10px auto;
  }

  .contact-form-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .contact-map-section {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  #servicio-bloque-1 .columna_1 h2 {
    font-size: 50px;
  }

  #servicio-bloque-1 .columna_1 h3 {
    font-size: 80px;
  }

  #servicio-bloque-1 .columna_1 h4 {
    font-size: 80px;
  }

  #servicio-bloque-1 .columna_1 h4 span {
    font-size: 50px;
  }

  #servicio-bloque-4 .cuerpo-txt {
    width: 100%;
  }

  #servicio-bloque-9 .columna_2 form {
    max-width: 100%;
    margin: 0 auto;
  }

  .mano {
    position: relative;
    top: -0;
    left: -50px;
  }

  #partners-2 {
    padding-right: 0px;
  }

  #partners-3 {
    padding-left: 0px;
  }

  .py-250 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .pt-250 {
    padding-top: 50px;
  }

  .pb-250 {
    padding-bottom: 50px;
  }

  .my-250 {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  #partners-2 {
    padding-left: 0;
  }

  #partners-3 {
    padding-right: 0;
  }

  footer .card .card-body h1 {
    font-size: 100px;
  }

  footer .card .card-body img {
    height: 100px;
  }

  footer #footer-logo-card {
    padding: 0;
  }

  #img_card_exitos {
    border-bottom-right-radius: 0;
    border-top-left-radius: 30px;
  }

  .card-casos-exitos .btn-primary.btn-xl {
    border-bottom-right-radius: 30px;
  }

  #nosotros-bloque-5 .fila-1 .col-12,
  #nosotros-bloque-5 .fila-2 .col-12,
  #nosotros-bloque-5 .fila-3 .col-12,
  #nosotros-bloque-5 .fila-4 .col-12 {
    text-align: center;
  }

  #header-ns .header-ns-banner-animation {
    width: 75%;
  }
}

@media (max-width: 767px) {
  :root {
    --fs-xl: 90px;
    --fs-lg: 68px;
    --fs-md: 36px;
    --fs-sm: 24px;
    --fs-xs: 18px;
    --fs-xxs: 14px;

    --fs-btn-xxl: 36px;
  }

  .icono-ns {
    position: absolute;
    max-width: 135px;
    left: 40%;
    top: 0px;
  }

  #nosotros-bloque-1,
  #nosotros-bloque-2,
  #nosotros-bloque-3,
  #nosotros-bloque-5 {
    padding-top: 35px;
    padding-bottom: 50px;
  }

  #nosotros-bloque-4 {
    margin: 50px 0;
  }

  .h2-facilitamos {
    margin: 0;
  }

  .btn-casos img {
    object-fit: contain !important;
  }

  #header-ns .header-ns-banner-animation {
    right: 20px;
    bottom: 20px !important;
    position: relative;
    bottom: initial !important;
    right: initial !important;
    left: initial !important;
    top: initial !important;
    transform: initial !important;
    width: 100%;
    align-items: start;
    margin-top: 2rem;
  }
  #header-ns .card-body{
    height: fit-content !important;
  }
  #page-content-2 .card-2 .card-2-container .card-2-column img {
    height: 120px;
  }

  #page-content-2 .card-4 .card-body .partner-aws {
    position: relative;
    z-index: 4;
    margin-top: 18px !important;
    width: 100%;
  }

  #page-content-2 .card-4 .card-body .partner-aws h1 {
    width: 100%;
  }

  #page-content-2 .card-4 .card-body .partner-aws h3 {
    width: 100%;
  }

  #page-content-2 .card-4 .card-body .card-4-lineas-container {
    top: 200px;
  }

  #page-content-2
    .card-4
    .card-body
    .card-4-lineas-container
    #linea-base-derecha {
    left: 83px !important;
    top: 139px;
  }

  #page-content-2 .card-4 .card-body .card-4-lineas-container #linea-derecha {
    stroke-dasharray: 2474;
    left: 83px !important;
    top: 139px;
  }

  #page-content-2 .card-4 .card-body .caracteristicas {
    margin-top: 40px;
    margin-left: -8px;
  }

  #page-content-2 .card-4 .card-body .caracteristicas .caracteristica {
    gap: 20px;
  }

  #page-content-2 .card-4 .card-body .caracteristicas .caracteristica h1 {
    font-size: 38px;
  }

  #page-content-2
    .card-4
    .card-body
    .caracteristicas
    .caracteristica
    .icon
    img {
    width: 55px;
  }

  #page-content-3 {
    padding: 50px 0;
  }

  #page-content-3 .section-1 h1 {
    width: 100%;
  }

  #page-content-3 .section-1 h3 {
    width: 100%;
  }

  #page-content-4 .card .card-body .columna_2 .perfiles-equipo {
    width: 350px;
  }

  #page-content-4 .card .card-body .columna_2 .perfiles-equipo img {
    width: 125px;
  }

  #page-content-4 .card .card-body .columna_2 .perfiles-equipo img {
    box-shadow: 2px 0 10px 0 rgb(255 255 255 / 50%),
      -2px 0 10px 0 rgb(0 0 0 / 50%);
    border-radius: 50%;
    margin-bottom: 30px;
    mix-blend-mode: luminosity;
    object-fit: contain;
  }

  .contact-title-section {
    padding-top: 35px;
    padding-bottom: 30px;
  }

  .contact-form-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .contact-map-section {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  #servicio-bloque-5 .fila_2 .columna_1 .contenedor-info {
    max-width: 100%;
  }

  #servicio-bloque-4 .card-acordion {
    padding: 50px 20px;
  }

  #servicio-bloque-8 .columna_1 .contenedor-imagenes {
    display: none !important;
  }

  #servicio-bloque-8 .columna_1 .contenedor-txt {
    width: 100%;
  }

  #servicio-bloque-9 .columna_2 form .ficha-servicios svg {
    display: none;
  }

  #servicio-bloque-5 .columna_1_2 .bloque span,
  #servicio-bloque-5 .columna_1_2 .servicios-aws .bloque span,
  #servicio-bloque-9 .columna_2 form .ficha-servicios {
    font-size: 14px;
  }

  #nosotros-bloque-1 .columna_1 h2 {
    font-size: 54px;
  }

  #nosotros-bloque-5 .card {
    margin-right: 0px;
  }

  #nosotros-bloque-4 .contenedor-txt {
    position: static;
  }

  #talento footer {
    padding-top: 50px !important;
  }

  .card-casos-exitos {
    padding: 20px;
  }

  .dudas {
    min-height: 350px;
    margin-top: 100px;
  }

  .banner-rojo {
    top: 0;
  }

  .margin-top-250 {
    margin-top: 50px;
  }

  .margin-top-150 {
    margin-top: 25px;
  }

  .casos-exitos .marquee-text {
    letter-spacing: 0;
    font-size: var(--fs-30);
    z-index: 999;
  }

  #casos-exitos-2 {
    height: 550px;
  }

  #casos-exitos-3 {
    height: 550px;
  }

  #casos-exitos-4 {
    height: 550px;
  }

  .casos-exitos {
    white-space: initial;
  }

  .marquee-text p {
    text-align: center;
  }

  .btn-main {
    font-size: 28px;
  }

  #casos-exitos-1 h1 {
    padding-left: 30%;
    margin-top: -10px;
  }

  .h1 {
    font-size: var(--fs-md) !important;
    letter-spacing: -1px !important;
  }

  .h2 {
    font-size: 26px !important;
    letter-spacing: -1px !important;
  }

  .h6 {
    font-size: 22px !important;
    letter-spacing: -1px !important;
  }

  .h3 {
    font-size: 24px !important;
    letter-spacing: -1px !important;
  }

  .h3 span {
    font-size: 24px !important;
    letter-spacing: -1px !important;
  }

  footer .card .card-body h1 {
    font-size: 80px;
  }

  footer .card .card-body img {
    height: 80px;
  }

  footer .footer-bottom-cards {
    flex-wrap: wrap;
  }

  footer .footer-bottom-cards .card:first-of-type {
    order: 2;
  }

  .comillas {
    max-width: 60px;
  }
  footer .footer-bottom-cards .card .card-body {
    padding: 20px;
  }

  footer .footer-bottom-cards .card .card-body .copyright {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .icono-ns {
    position: absolute;
    max-width: 135px;
    left: 45%;
    top: 0px;
  }

  :root {
    --fs-xl: 60px;
    --fs-lg: 44px;
    --fs-md: 30px;
    --fs-sm: 22px;
    --fs-xs: 18px;
    --fs-xxs: 14px;

    --fs-btn-xxl: 30px;
  }

  #navbar-brand-logo {
    width: 145px;
    height: 40px;
  }

  #kit-digital .contact-title-section h1 {
    padding-left: 0;
  }

  .banner-rojo {
    padding: 30px;
  }

  .scroll__down {
    bottom: unset;
    top: calc(100vh - 1rem - 60px);
    top: calc(100svh - 1rem - 60px);
  }

  #header-ns .card-body .info-video {
    height: 355px;
  }

  #header-ns #video {
    height: 355px;
    width: 100%;
    object-fit: cover;
  }

  #header-ns .title span:nth-of-type(odd) {
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
  }

  #header-ns .title span:nth-of-type(even) {
    font-weight: 700;
    line-height: 0.7;
    letter-spacing: -2px;
  }

  #header-ns .title .title-1 {
    margin-left: 5px;
    color: white;
    margin-bottom: 0px;
  }

  #header-ns .title .title-2 {
    margin-bottom: 0px;
  }

  #header-ns .title .title-3 {
    vertical-align: top;
    margin-top: 7px;
  }

  #header-ns .card-body {
    height: 355px;
  }

  #header-ns .header-ns-banner-animation {
    
    height: auto;
    width: 100%;
  }

  #page-content-2 .card-4 .card-body .card-4-lineas-container {
    top: 200px;
  }

  #page-content-2 .card-4 .card-body .partner-aws h2 {
    font-weight: 700;
    margin-top: 33px;
    margin-bottom: 33px;
    color: var(--white);
    font-size: var(--fs-60);
    display: flex;
    align-items: start !important;
    line-height: 1;
  }

  #page-content-2 .card-4 .card-4-container .card-4-content h2 {
    margin-bottom: 20px;
  }

  #page-content-2 .card-4 .card-body .partner-aws h4 {
    width: 280px;
    font-weight: 700;
    color: var(--white);
    font-size: 20px;
    letter-spacing: -1px;
    text-align: start;
    padding-left: 10px;
  }

  #page-content-2 .card-4 .card-4-container .card-4-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #page-content-2 .card-4 .card-body .partner-aws {
    position: relative;
    z-index: 4;
    margin-top: 18px !important;
    width: 485px;
  }

  #page-content-2 .card-4 .card-body .partner-aws h3 {
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--white);
    font-size: var(--fs-30);
    width: 347px;
  }
  #page-content-2 .card-4 .card-body .card-4-lineas-container #linea-derecha {
    left: 96px !important;
    top: 496px !important;
    stroke-dasharray: 2662;
    stroke-dashoffset: 2700;
  }

  #page-content-2
    .card-4
    .card-body
    .card-4-lineas-container
    #linea-base-derecha {
    left: 96px !important;
    top: 496px !important;
  }

  #page-content-2 h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 0px;
    letter-spacing: -1px;
  }

  #page-content-2 .card-3 .card-3-container .card-3-content > div h2 {
    width: 100%;
    padding-top: 140px;
    padding-bottom: 140px;
    font-weight: 700;
    margin-bottom: 0;
    text-align: center;
    color: white;
  }

  #page-content-2 .card-3 .card-3-container .texto-digitalizacion-5 img {
    position: absolute;
    top: 367px;
    right: -4px;
    width: 20%;
  }

  #page-content-2 h4 {
    text-align: start;
  }

  #page-content-2 h4 {
    font-size: 20px;
    text-align: start;
    margin-bottom: 0px;
    font-weight: 400;
    letter-spacing: -1px;
  }

  #page-content-2 .card-2 .andalucia {
    width: 87px;
    height: 60px;
  }

  #page-content-2 .card-2 .memory {
    width: 87px;
    height: 64px;
  }
  #page-content-2 .card-2 .candado {
    width: 87px;
    height: 60px;
  }

  #page-content-2 h3 {
    font-size: 20px;
    text-align: start;
    margin-bottom: 11px;
    font-weight: 400;
    letter-spacing: -1px;
  }

  .w-andalucia {
    width: 100%;
  }

  #page-content-3 .caso-exito-images img {
    top: -50vh;
    left: 200vw;
    margin: 40px 0;
  }

  #page-content-3 .caso-exito-images #caso-exito-1 {
    margin-top: 50px;
  }

  #page-content-3 .caso-exito-images #caso-exito-3 {
    margin-bottom: 50px;
  }

  #page-content-3 .section-1 img {
    width: 100px;
  }

  .contact-title-section h1 {
    font-size: calc(8vw + 26px);
  }

  #servicio-bloque-1 .columna_1 h2 {
    font-size: 32px !important;
  }

  #servicio-bloque-1 .columna_1 h3 {
    font-size: 48px !important;
  }

  #servicio-bloque-1 .columna_1 h4 {
    font-size: 48px !important;
  }

  #servicio-bloque-1 .columna_1 h4 span {
    font-size: 24px !important;
  }

  #servicio-bloque-3 .btn-exitos {
    font-size: 24px;
  }

  #servicio-bloque-1 {
    padding: 50px 0px !important;
    min-height: 250px;
  }

  #servicios-2 .card-2 .card-body {
    width: 100%;
    padding: 30px;
  }

  #servicio-bloque-5 .fila_2 .columna_2 div,
  #servicio-bloque-6 .columna_2 div {
    flex-direction: column;
  }

  #servicio-bloque-1 .columna_1 h4 {
    text-align: center;
  }

  #servicio-bloque-1 .columna_1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
  }

  #nosotros-bloque-5 .card {
    max-width: 300px;
  }

  #nosotros-bloque-1 .columna_2 .items {
    width: 100%;
    margin: auto;
    margin-bottom: 30px;
  }

  footer .card .card-body h1 {
    font-size: var(--fs-md);
  }

  footer .card .card-body img {
    height: 60px;
  }

  footer #footer-logo-card {
    margin-bottom: 5px;
  }

  footer
    .footer-bottom-cards
    .card
    .card-body
    .footer-links
    .list-group
    .list-group-item {
    font-size: 12px;
  }

  .img-soluciones {
    width: 100%;
    height: 186px;
    border-radius: 30px;
    object-fit: cover;
  }

  #servicios-tabs h2 {
    font-size: 32px;
  }

  #servicios-tabs-2 h2 {
    font-size: 32px;
  }

  #servicios-tabs-3 h2 {
    font-size: 32px;
  }

  #servicios-tabs-4 h2 {
    font-size: 32px;
  }

  #servicios-tabs .tab-content .row .texto {
    text-align: center;
  }

  #servicios-tabs .tab-content .borde-tab p {
    font-weight: 700;
  }

  #servicios-tabs .tab-content .borde-tab {
    border: 1px solid #f6f6f6;
    padding: 20px;
  }

  #servicios-tabs-2 .tab-content .row .texto {
    text-align: center;
  }

  #servicios-tabs-2 .tab-content .borde-tab p {
    font-weight: 700;
  }

  #servicios-tabs-2 .tab-content .borde-tab {
    border: 1px solid #f6f6f6;
    padding: 20px;
  }

  #nosotros-bloque-1_2 .carg-bloque-1_2 {
    padding: 20px;
  }

  #servicios-tabs-3 .tab-content .row .texto {
    text-align: center;
  }

  #servicios-tabs-3 .tab-content .borde-tab p {
    font-weight: 700;
  }

  #servicios-tabs-3 .tab-content .borde-tab {
    border: 1px solid #f6f6f6;
    padding: 20px;
  }

  #servicios-tabs-4 .tab-content .row .texto {
    text-align: center;
  }

  #servicios-tabs-4 .tab-content .borde-tab p {
    font-weight: 700;
  }

  #servicios-tabs-4 .tab-content .borde-tab {
    border: 1px solid #f6f6f6;
    padding: 20px;
  }

  .carrusel-servicios a .info-servicios .titulos {
    font-size: 24px;
  }
}

@media (max-width: 440px) {
  .icono-ns {
    position: absolute;
    max-width: 135px;
    left: 60%;
    top: 0px;
  }

  #preloader .preloader-logo-container .preloader-logo {
    height: 40px;
    width: 195px;
  }

  #header-ns .card-body {
    padding: 0px;
  }

  #page-content-2 .card-2 .card-body {
    padding: 30px;
  }

  #page-content-2 .card-3 .card-body {
    padding: 0px 15px 30px;
  }

  #page-content-2 .card-3 .card-3-container .card-3-content > div h1 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  #page-content-2 .card-4 .card-header {
    padding: 30px;
  }

  #page-content-2 .card-4 .card-body {
    padding: 30px;
  }

  #page-content-2 .card-4 .card-body .partner-aws h1 {
    width: 100%;
    font-size: calc(10vw + 12px);
  }

  #page-content-2 .card-4 .card-body .card-4-lineas-container {
    top: 100px;
    left: -20px;
  }

  #page-content-2 .card-4 .card-body .partner-aws img {
    margin-top: 31px;
  }

  #page-content-2 .card-4 .card-body .partner-aws h1 {
    margin-bottom: 20px;
  }

  #page-content-2 .card-4 .card-body .partner-aws {
    position: relative;
    z-index: 4;
    margin-top: 18px !important;
    width: 351px;
  }

  #page-content-3 {
    padding-top: 0px;
  }

  #page-content-3 .section-1 {
    padding: 40px 20px 20px;
  }

  #page-content-3 .caso-exito-images {
    padding-bottom: 40px;
  }

  #page-content-3 .caso-exito-images img {
    top: -50vh;
    left: 200vw;
    margin: 40px 0;
  }

  #page-content-3 .caso-exito-images #caso-exito-1 {
    margin-top: 50px;
  }

  #page-content-3 .caso-exito-images #caso-exito-3 {
    margin-bottom: 50px;
  }

  #page-content-4 .card .card-body .columna_1 {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
    padding-bottom: 180px;
  }

  #page-content-4 .card .card-body .columna_1 h1 {
    font-size: calc(10vw + 12px);
  }

  #page-content-4 .card .card-body .columna_2 .perfiles-equipo img {
    width: 140px;
  }

  #page-content-5 {
    padding: 0px 0px 50px;
  }

  #page-content-5 .columna_1 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .order-5 {
    display: flex;
  }

  #servicio-bloque-5 .fila_2 {
    padding: 20px;
    border: 0;
    border-radius: 30px;
    background-color: var(--white);
  }

  #servicios-tabs-2 {
    margin-top: 50px;
  }

  #servicios-tabs-3 {
    margin-top: 50px;
  }

  #servicios-tabs-4 {
    margin-top: 50px;
  }
}

html[xmlns*=""] .safari_only {
  display: none !important;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .safari_only {
    display: none !important;
  }
}
.card-3-content {
  position: relative; /* ✅ Mantener relative */
  height: 70vh;
  
  overflow: hidden;
      display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-3-content > div {
  position: absolute; /* ✅ HACERLOS ABSOLUTOS */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.card-3-content > div.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  margin-top: 3rem;
}

.path-red {
  stroke: #2d2a26;
  stroke-width: 20;
  fill: none;
}

.path-draw {
  stroke: #e31748;
  
  stroke-width: 20;
  fill: none;
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
}
#mi-svg {
  left: -28px;
  top: -100px;
}

.manos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slick-slide {
  height: fit-content !important;
}

.carrusel-exito .slick-dots {
  text-align: start;
}
.carrusel-exito .slick-dots li button:before {
  content: "";
  opacity: 1;
  background-color: white;
}
.carrusel-exito .slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: #e31748;
}
.carrusel-exito .slick-dots li.slick-active button::after {
  content: "";
  background-color: #e31748;
  width: 100%;
  height: 3px;
  position: absolute;
  top: -10px;
  left: 0;
}

.instituciones {
  background-color: white;
  border-radius: 30px;
  padding: 80px;
}
.instituciones h3 {
  font-size: var(--fs-sm);
}
.instituciones p {
  font-size: var(--fs-xxs);
}
.logos-instituciones {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logos-instituciones img {
  width: 100%;
  height: auto;
  max-width: 200px;
}
.carrusel-servicios a {
  text-decoration: none;
  color: white;
}
.slick-prev:before, .slick-next:before {

  font-size: 34px;

}

@media (max-width: 1400px) {
  :root {
    --fs-xl: 70px;
    --fs-lg: 50px;
    --fs-48: 48px;
    --fs-md: 34px;
    --fs-sm: 20px;
    --fs-xs: 18px;
    --fs-xxs: 16px;
    --fs-48: 30px;
    --fs-60: 36px;
    --fs-36: 22px;
    --fs-30: 20px;

    --fs-btn-xxl: 34px;
  }
  #talento-1 .seccion-1 .h1 {

    margin-top: -24px;
  }
  
}
@media (max-width: 1200px) {
  #preloader .preloader-logo-container .preloader-logo {
    height: 80px;
  }
  #preloader .preloader-logo-container {
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }


  :root {
    --fs-xl: 60px;
    --fs-lg: 40px;
    --fs-48: 38px;
    --fs-md: 26px;
    --fs-sm: 20px;
    --fs-xs: 18px;
    --fs-xxs: 16px;
    --fs-48: 30px;
    --fs-60: 36px;
    --fs-36: 22px;
    --fs-30: 20px;

    --fs-btn-xxl: 34px;
  }
}

@media (max-width: 1025px) {
  #mi-svg {
    display: none;
  }
}

@media (max-width: 992px) {
}
@media (max-width: 768px) {
  
  #page-content-2 .card-4 .card-body {
    padding: 15px;
    min-height: auto;
  }
  #preloader .preloader-logo-container .preloader-logo {
    height: 40px;
    max-width: 145px;
  }
  #header-ns {
    
    position: relative;
    top: 0rem;
  }
  .info-talentos {
    display: grid
;
    grid-template-columns: repeat(2, 1fr);
}
.mouse__icon{
  display: none;
}
.slick-prev{
  left: 0;
  z-index: 9999;
}
 .slick-next{
  right: 10px;
  z-index: 9999
 }
}


html,
body{
  overflow-x: hidden !important;
}


.texto-digitalizacion-2 {
  position: relative;
  overflow: hidden; /* por si acaso */
}

.texto-digitalizacion-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(227, 23, 72, 1) -12%, rgba(26, 30, 35, 1) 31%, rgba(32, 30, 36, 1) 194%);
  opacity: 0;
  z-index: 0;
  animation: fadeBackground 2s infinite ease-in-out;
}

.texto-digitalizacion-2 h2 {
  position: relative;
  z-index: 1;
}

@keyframes fadeBackground {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.slick-prev, .slick-next{
  top: 30%;
  transform: translateY(-100%);
}
.title-5 {
  width: 100%;
}


#banner-clabe {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #1A1E23;
  padding: 120px 0px;
  padding-top: 60px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#banner-clabe .contenedor-principal {
  background: var(--secondary);
  border-radius: 0px;
  padding: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  border-radius:30px
}

#banner-clabe .contenedor-principal .contenedor-1 {
  background: initial;
  border-radius: 30px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 24px;
  width: 50%;
  min-height: 275px;
}

#banner-clabe .contenedor-principal .contenedor-1 .titulo {
  color: #1A1E23;
  font-family: var(--font-1);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 0;
  letter-spacing: -0;
  text-align: start;
}
#banner-clabe .contenedor-principal .contenedor-1 .titulo-2{
  color: #1A1E23;
  font-family: var(--font-1);
  font-size: var(--fs-30);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 0;
  letter-spacing: -0;
  text-align: start;
}
#banner-clabe .contenedor-principal .contenedor-1 .btn {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: white;
  font-family: var(--font-1);
  font-size: var(--fs-30);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 0;
  border: solid 1px #1A1E23;
  background-color: #1A1E23;
  border-radius: 15px;
}

#banner-clabe .contenedor-principal .contenedor-1 .btn:hover {
  border: solid 1px var(--secundario);
  color: var(--secundario);
  background-color: #1A1E23;
}


#banner-clabe .contenedor-principal .contenedor-2 {
  background: var(--color-1);
  width: 50%;
  max-width: initial;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  border-radius:10px
}

#banner-clabe .contenedor-principal .contenedor-2 .subcontenedor {
  width: 100%;
  max-width: initial;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;

}

#banner-clabe .contenedor-principal .contenedor-2 .titulo {
  color: var(--color-1);
  font-family: var(--font-1);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 0;
  letter-spacing: -0;
}

#banner-clabe .contenedor-principal .contenedor-2 ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}

#banner-clabe .contenedor-principal .contenedor-2 ul li {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center  ;
  justify-content: flex-start;
  gap: 3px;
}

#banner-clabe .contenedor-principal .contenedor-2 ul li span {
  color: white;
  font-family: var(--font-1);
  font-size: var(--fs-xs);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 0;
  letter-spacing: 0;
}

#banner-clabe .contenedor-principal .contenedor-2 .contenedor-imagen {
  width: 40%;
}

#banner-clabe .contenedor-principal .contenedor-2 .contenedor-imagen img {
  max-width: 100%;
}

#banner-clabe .contenedor-principal-marquee {
  padding: 20px 0px;
  border: solid 1px var(--secondary);
  width: 100%;
  overflow: hidden;
}

#banner-clabe .contenedor-principal-marquee p {
  color: var(--secondary);
  font-family: var(--font-1);
  font-size: 64px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  white-space: nowrap;
  margin-bottom: 0;
}

#banner-clabe .marquee {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  animation: marquee 20s linear infinite;
}

@keyframes marquees {
  0% {
      transform: translateX(100%);
  }

  100% {
      transform: translateX(-100%);
  }
}

@-webkit-keyframes marquees {
  0% {
      transform: translateX(100%);
  }

  100% {
      transform: translateX(-100%);
  }
}

.slick-arrow{
  display: none !important;
}
.carrusel-servicios:hover .slick-arrow{
  display: inline-block !important;
}

@media (max-width:992px){

#banner-clabe .contenedor-principal {
  background: var(--secondary);
  border-radius: 0px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  border-radius:30px
}

#banner-clabe .contenedor-principal .contenedor-1 {
  background: initial;
  border-radius: 30px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 24px;
  width: 100%;
  min-height: 275px;
}
#banner-clabe .contenedor-principal .contenedor-2 {
  background: var(--color-1);
  width: 100%;
  max-width: initial;
  display: flex
;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  border-radius: 10px;
}
}