:root {
  --gi-azul-oscuro: #1c2d68;
  --gi-blanco: #ffffff;
  --gi-negro: #000000;
  --gi-gris: #96989A;
  --gi-azul-claro: #0292c2;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  box-sizing: border-box;
  color: #46555D;
}

body {
  overflow: hidden;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
}

p {
  font-family: 'Open Sans', sans-serif;
}

li {
  font-family: 'Open Sans', sans-serif;
  color: #46555D;
}

a {
  color: #46555D;
  text-decoration: none;
}

/*  -------  Custom scrollbar ------- */
body::-webkit-scrollbar {
  width: 10px;
  position: relative;
}

body::-webkit-scrollbar-track {
  background-color: transparent;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--gi-azul-oscuro);
  border-radius: 0;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: var(--gi-azul-claro);
}

/* --------------  Selección de textos ---------------- */
::-moz-selection,
a::-moz-selection,
p::-moz-selection {
  color: #ffffff;
  background-color: var(--gi-azul-oscuro);
  text-shadow: none;
}

::selection,
a::selection,
p::selection {
  color: #ffffff;
  background-color: var(--gi-azul-oscuro);
  text-shadow: none;
}

h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection {
  color: #ffffff;
  background-color: var(--gi-azul-oscuro);
  text-shadow: none;
}

.hideh1 h1 {
  font-size: 0.01em;
  color: transparent;
  opacity: 0;
  line-height: 0;
  margin: 0;
}

/* ===================== INTRO GI ===================== */
#intro-gi {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: #051530;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.intro-content {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3em;
}

.intro-logo {
  width: 120px;
  height: auto;
  transform-origin: center center;
  animation: breathe 2s ease-in-out infinite;
  will-change: opacity, filter;
}

@keyframes breathe {
  0% {
    opacity: 0.2;
    transform: scale(0.96);
    filter: blur(3px);
  }

  50% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
  }

  100% {
    opacity: 0.2;
    transform: scale(0.96);
    filter: blur(3px);
  }
}

.intro-enter {
  font-family: "Archivo", sans-serif;
  color: var(--gi-azul-claro);
  font-size: 1em;
  letter-spacing: 0.1em;
  transition: all ease 0.6s;
  cursor: pointer;
  opacity: 0;
}

.intro-enter:hover {
  color: var(--gi-blanco);
  transition: all ease 0.3s;
}

/* ===================== GI BTN ===================== */
.bt_gi,
.bt_inv {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 0.6em 2.4em;
  margin: 1.5em auto;
  color: var(--gi-blanco);
  background-color: var(--gi-azul-oscuro);
  font-size: 1em;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
  outline: none;
  border: none;
  user-select: none;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 25px;
  transition: all 0.2s ease-out;
}

/* Ripple effect */
.bt_ripple {
  background-position: center;
  transition: background 0.8s;
}

.bt_ripple:hover {
  background: #47a7f5 radial-gradient(circle, transparent 1%, #47a7f5 1%) center/15000%;
}

.bt_ripple:active {
  background-color: var(--gi-azul-oscuro);
  background-size: 100%;
  transition: background 0s;
}

/* ===================== NAVBAR ===================== */
#giMenu {
  position: fixed;
  width: 100%;
  height: auto;
  z-index: 80000;
}

/* NAVBAR */
#giMenu .navbar {
  z-index: 1000;
  padding: 15px 40px;
  transition: 0.2s all ease;
}

/* LOGO */
#giMenu .navbar-brand img {
  width: 100%;
  max-width: 248px;
  height: auto;
}

/* LINKS */
#giMenu .navbar-nav {
  margin-top: 18px;
}

#giMenu .navbar .navbar-nav .nav-link {
  will-change: color;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 400;
  font-size: 0.92em;
  letter-spacing: 0.06em;
  padding: 0em 1em 2.5em 1em;
  color: #555;
  -webkit-transition: color 0.4s;
  -moz-transition: color 0.4s;
  transition: color 0.4s;
}

#giMenu .navbar-nav .nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--gi-azul-oscuro);
  transition: width .4s;
  pointer-events: none;
}

#giMenu .navbar-nav .nav-link:hover::after {
  width: 100%;
  pointer-events: none;
}

#giMenu .navbar-nav .nav-lang .nav-link {
  display: inline-block;
  font-size: 0.86em;
  font-weight: 700;
  padding: 0 0.4em 1em 0.4em;
}

#giMenu .navbar-nav .nav-lang {
  padding-left: 0.6em;
  padding-bottom: 0.5em;
  margin-top: -18px;
}

#giMenu .navbar-nav .nav-lang span {
  color: var(--gi-gris);
}

@-webkit-keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
    transform: rotateX(-100deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 1;
  }
}

@keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
    transform: rotateX(-100deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    opacity: 1;
  }
}

/* MEGA MENU */
#giMenu .mega-menu {
  position: absolute;
  left: 3%;
  width: 96%;
  height: auto;
  max-height: 400px;
  background: var(--gi-blanco);
  display: none;
  padding: 25px 0;
  border-radius: 1.5em;
  box-shadow: 1px 1px 20px rgba(211, 211, 211, 0.66);
  -webkit-animation: swing-in-top-fwd cubic-bezier(0.2, 1.8, 0.3, 1.3) both;
  animation: swing-in-top-fwd 0.6s cubic-bezier(0.2, 1.8, 0.3, 1.3) both;
}

/* HOVER */
#giMenu .nav-item:hover .mega-menu {
  display: block;
}


/* TITULO */
#giMenu .mega-title {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#giMenu .mega-title h2 {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--gi-azul-oscuro);
}

#giMenu .mega-title h2::after {
  content: '';
  display: block;
  position: relative;
  width: 120px;
  height: 3px;
  left: 0;
  background: #86c92c;
  margin-top: 10px;
  transition: all 0.5s;
}

/* TEXTO */
#giMenu .mega-menu p {
  font-size: 1em;
  color: #555;
  margin: 0;
}

/* IMAGEN MEGA MENU */
#giMenu .mega-img {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

#giMenu .mega-img img {
  /* max-height: 330px; */
  max-height: 300px;
  width: auto;
  /* max-width: 300px; */
  max-width: 100%;
  margin: 0 auto;
}

#giMenu .mega-description {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

#giMenu .mega-description.centered {
  align-items: center;
}

#giMenu .mega-description.centered .row {
  width: 100%;
}

#giMenu .mega-description.separTop {
  padding-top: 2em;
  padding-bottom: 2em;
}

#giMenu .mega-description h3 {
  font-weight: bold;
  text-align: left;
  color: var(--gi-azul-claro);
}

#giMenu .mega-description.portafolio h3 {
  color: var(--gi-azul-oscuro);
}

#giMenu .mega-description.portafolio h3::after {
  content: '';
  display: block;
  position: relative;
  width: 120px;
  height: 3px;
  left: 0;
  background: #86c92c;
  margin-top: 10px;
  transition: all 0.5s;
}

#giMenu .mega-description .bt_gi {
  margin: 2em 0 1em 0;
  font-size: 12px;
  padding: 0 1.8em;
  height: 35px;
  line-height: 35px;
  font-weight: 400;
}

#giMenu .mega-description h4 {
  font-weight: bold;
  font-size: 1.05em;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 0 0.4em;
  margin-bottom: 0.5em;
  text-align: left;
  color: var(--gi-azul-oscuro);
}

#giMenu .mega-description.portafolio h4 {
  padding: 0;
  color: #46555D;
}

#giMenu .mega-description p {
  font-size: 1em;
  color: #46555D;
  text-align: left;
}

#giMenu .mega-description ul {
  list-style: none;
  padding-left: 0;
}

#giMenu .mega-description ul li {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.0em;
  font-weight: 400;
  line-height: 1.2em;
  color: #555555;
  padding: 0.3em 0.5em;
  margin-bottom: 0.3em;
  text-transform: none;
}

#giMenu .mega-description ul li a:hover {
  color: var(--gi-azul-claro);
}

#giMenu .recientes-title {
  margin: 1em 1em 0.5em 1em;
  color: var(--gi-azul-claro);
}

#giMenu .recientes-card {
  width: 100%;
  height: auto;
  margin: 1em;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 1em;
  padding-right: 2em;
}

#giMenu .recientes-card img {
  width: 100%;
  max-width: 100px;
  height: auto;
  border-radius: 4px;
  transition: all ease 0.3s;
  box-shadow: 1px 1px 8px rgba(167, 167, 167, 0.721);
}

#giMenu .recientes-card h4 {
  font-size: 1.1em;
  font-weight: 600;
  transition: all ease 0.3s;
  margin-bottom: 0;
}


#giMenu .recientes-card p.small-text {
  font-size: 0.8em;
  font-style: italic;
  color: var(--gi-gris);
}

#giMenu .recientes-card:hover p {
  color: var(--gi-azul-claro);
}

#giMenu .recientes-card:hover img {
  transform: scale(1.1);
}

/* ICONO SEARCH */
#giMenu .search-icon {
  cursor: pointer;
  padding-bottom: 1.5em;
  margin-left: 0.8em;
}

#giMenu .search-icon svg {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease;
  fill: var(--gi-gris);
}

#giMenu .search-icon:hover svg {
  transform: scale(1.1);
}

/* ===== HAMBURGER ===== */
#giMenu .hamburger {
  width: 35px;
  height: 25px;
  position: relative;
  border: none;
  background: transparent;
  z-index: 1200;
  cursor: pointer;
}

#giMenu .hamburger span {
  position: absolute;
  width: 100%;
  height: 4px;
  background: var(--gi-azul-oscuro);
  left: 0;
  transition: 0.3s ease;
  border-radius: 3px;
}

#giMenu .hamburger span:nth-child(1) {
  top: 0;
}

#giMenu .hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

#giMenu .hamburger span:nth-child(3) {
  bottom: 0;
}

/* ===== ANIMACIÓN A X ===== */
#giMenu .hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

#giMenu .hamburger.active span:nth-child(2) {
  opacity: 0;
}

#giMenu .hamburger.active span:nth-child(3) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-45deg);
}

/* ===== OVERLAY MENU MOBILE ===== */
#giMenu .mobile-menu {
  position: absolute;
  left: 0;
  top: -100vh;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: 0.4s ease;
  z-index: 1000;
  padding: 120px 20px 60px 3em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

#giMenu .mobile-menu.open {
  top: 0;
}

@media (min-width: 992px) {
  #giMenu .mobile-menu {
    display: none;
  }
}

#giMenu .mobile-menu a {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 400;
  font-size: 1em;
  letter-spacing: 0.08em;
  padding: 0.6em 1em 0.6em 1.8em;
  margin-top: 5px;
  color: var(--gi-azul-oscuro);
  display: block;
  font-weight: 600;
}

#giMenu .mobile-menu a:hover {
  color: var(--gi-azul-claro);
}

/* estilo del submenú */
#serviciosMenu {
  width: 85%;
  max-width: 400px;
  background-color: #ffffff;
  border-radius: 25px;
  padding: 1em 1em 2em 1em;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

#serviciosMenu .list-unstyled li a {
  font-size: 1em;
  opacity: 0.85;
  padding-bottom: 0;
}

#serviciosMenu a:hover {
  color: var(--gi-azul-claro);
}

#giMenu .navbar-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
}

#giMenu .servicios-mobile svg {
  width: 24px;
  height: 24px;
}

#giMenu .idiome-mobile {
  font-style: italic;
  margin-top: 3.5em !important;
}

#giMenu .idiome-mobile svg {
  width: 20px;
  height: 20px;
  margin-bottom: 3px;
}

.social_icons_mobile {
  display: flex;
  margin-top: 3em;
}

.social_icons_mobile a img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(39%) saturate(1170%) hue-rotate(190deg) brightness(95%) contrast(95%);
  width: 20px;
  height: auto;
}

/* ===================== PARA EL VIDEO DE LA PORTADA ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.scrub-wrapper {
  position: relative;
  width: 100%;
}

.sticky-video-container {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

#scroll-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-text {
  width: fit-content;
  height: 10vw;
  position: absolute;
  left: 45%;
  top: 45%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 10;
  padding-right: 2vw;
}

.line {
  opacity: 0;
}

.line1 {
  transform: translateY(50px);
}

.line1 h2 {
  font-family: "Archivo", sans-serif;
  font-size: 5vw;
  color: var(--gi-azul-oscuro);
  font-weight: 600;
  line-height: 1em;
  letter-spacing: -0.03em;
}

.line2 h2 {
  font-family: "Archivo", sans-serif;
  font-size: 3.4vw;
  color: var(--gi-gris);
  font-weight: 600;
  line-height: 1em;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

#scroll-video {
  transition: opacity 0.5s ease;
}

#scroll-video.is-hidden {
  opacity: 0;
}

/* ===================== AUDIO ===================== */
#audio-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
}

#audio-toggle img {
  width: 30px;
  height: 30px;
  position: absolute;
  transition: 0.6s all ease;
}

#audio-toggle img:hover {
  transform: scale(1.07);
  transition: 0.3s all ease;
}

#sound-off {
  display: none;
}

/* ===================== GENERIC TITLE ===================== */
.generic-title {
  width: 100%;
  height: auto;
  margin: 4em 0;
  padding: 0 1em;
  padding-left: 8vw;
}

.generic-title h2 {
  font-family: "Archivo", sans-serif;
  text-align: left;
  font-size: 4em;
  font-weight: 600;
  color: var(--gi-azul-oscuro);
  letter-spacing: -0.03em;
  line-height: 1em;
}

.generic-title h2 span {
  display: block !important;
  color: var(--gi-gris);
}

.generic-title h2 span.subtitle-small {
  font-family: "Archivo", sans-serif;
  text-align: left;
  font-size: 0.7em;
  font-weight: 600;
  /* line-height: 0; */
  margin: 0;
  padding: 0;
  margin-bottom: -1.5em;
  color: var(--gi-negro);
}

#index-section1 {
  margin-top: 6em;
}

#index-section2 {
  margin-top: 9em;
}

.generic-title-centrado {
  width: 100%;
  height: auto;
  margin: 4em 0;
  padding: 0 1em;
  text-align: center;
}

.generic-title-centrado h2 {
  display: inline;
  width: fit-content;
  font-family: "Archivo", sans-serif;
  text-align: center;
  font-size: 3.6em;
  font-weight: 600;
  color: var(--gi-azul-oscuro);
  letter-spacing: -0.03em;
  line-height: 1em;
}

.generic-title-centrado p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: var(--gi-gris);
  font-size: 1.1em;
  line-height: 1.4em;
  text-align: center;
  margin-top: 1em;
}

.generic-title-centrado .bt_gi {
  width: fit-content;
  display: block;
  margin-top: 2em;
}


/* ===================== GENERIC TEXT ===================== */
.generic-text-right {
  width: 100%;
  height: auto;
  padding: 0 1em;
}

.generic-text-right p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: var(--gi-gris);
  font-size: 1.1em;
  line-height: 1.4em;
}

.generic-text-left {
  width: 100%;
  height: auto;
  padding: 0 1em;
  padding-left: 8vw;
}

.generic-text-left p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: var(--gi-gris);
  font-size: 1.1em;
  line-height: 1.4em;
}

.text-border-wrap {
  width: fit-content;
  height: auto;
  border-top: 2px solid var(--gi-gris);
  padding-top: 1em;
}

/* ===================== SLIDER ===================== */
#gi-slider {
  max-width: 800px;
  width: 100%;
  margin: 4em 0 4em auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  position: relative;
}

#gi-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0));
}

#gi-slider::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to left,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0));
}

#gi-slider .logo-slider {
  width: 100%;
}

#gi-slider .logo-slider .slick-track {
  display: flex;
  align-items: center;
  margin-bottom: 2em;
}

#gi-slider .logo-slider img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

#gi-slider .slider-2 {
  direction: rtl;
}

#gi-slider .slider-2 .slick-slide {
  direction: ltr;
}

/* ===================== CARDS ===================== */
#index-section3 {
  margin-top: 9em;
}

.gi-card {
  width: 100%;
  min-height: 150px;
  display: flex;
  border-radius: 1em;
  overflow: hidden;
  box-shadow: 1px 1px 20px rgba(211, 211, 211, 0.66);
  background: var(--gi-blanco);
  margin-bottom: 2em;
}

/* VIDEO IZQUIERDA */
.gi-card-video {
  flex: 0 0 30%;
  overflow: hidden;
}

.gi-card-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 1s all ease;
}

/* CONTENIDO DERECHA */
.gi-card-text {
  flex: 1;
  background: var(--gi-blanco);
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Borde de abajo */
.gi-card-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--gi-azul-claro);
  transition: width 0.4s ease;
}

.gi-card:hover .gi-card-text::after {
  width: 100%;
}

.gi-card-text h3 {
  font-family: 'Archivo', sans-serif;
  color: var(--gi-azul-oscuro);
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 0.4em;
  transition: 0.3s ease all;
}

.gi-card-text p {
  margin: 0;
  color: var(--gi-gris);
  font-size: 1.1em;
  line-height: 1.4em;
}

.gi-card:hover .gi-card-video video {
  transition: 0.5s all ease;
}

.gi-card:hover h3 {
  color: var(--gi-azul-claro);
}

/* ===================== PORTAFOLIO ===================== */
#index-section4 {
  position: relative;
  margin-top: 9em;
  overflow: hidden;
}

#index-section4 .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: -1;
}

.portafolio-col {
  padding: 2em;
}

/* CARD */
.portafolio-card {
  border-radius: 8px;
  width: 100%;
  height: auto;
}

.portafolio-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 1px 1px 10px rgba(168, 168, 168, 0.3);
}

.portafolio-media img {
  width: 100%;
  height: auto;
  display: block;
  transition: .4s ease;
  border-radius: 8px;
}

.portafolio-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0;
  transition: .4s ease;
  transform: scale(1.005);
}

.portafolio-card:hover img {
  opacity: 0;
}

.portafolio-card:hover video {
  opacity: 1;
}

/* INFO */
.portafolio-info {
  padding: 1em 1em 1em 0;
}

.portafolio-info a {
  display: block;
  width: fit-content;
}

.portafolio-info h3 {
  width: fit-content;
  font-family: 'Archivo', sans-serif;
  color: var(--gi-azul-oscuro);
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 0.1em;
  transition: 0.3s ease all;
}

.portafolio-info h3:hover {
  color: var(--gi-azul-claro);
}

.portafolio-info p {
  color: var(--gi-gris);
  font-size: 1em;
  font-style: italic;
  line-height: 1.3em;
}

.portafolio-card-6 {
  margin-top: 12em;
}

.portafolio-card.anim-5 {
  max-width: 85%;
  margin-left: 7%;
}

.row2 {
  margin-top: 4em;
}

/* ===================== INDUSTRIES ===================== */
#index-section5 {
  margin-top: 9em;
  background: linear-gradient(135deg, #1c2d68 0%, #0292c2 100%);
  padding: 2em 0 7em 0;
}

.li-links {
  font-size: 0.9em;
}

.loose-col-3 {
  padding: 0 6%;
}

.li-links ul {
  margin: 0 auto;
}

.li-links ul li {
  font-size: 1.1em;
  line-height: 1.8em;
  width: fit-content;
}

.li-links ul li:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #55d5ff;
  transition: width .4s;
}

.li-links ul li:hover:after {
  width: 100%;
}

#index-section5 .generic-title-centrado h2 {
  color: var(--gi-blanco);
}

#index-section5 .generic-title-centrado p {
  color: var(--gi-blanco);
}

#index-section5 .li-links ul li {
  color: var(--gi-blanco);
}

#index-section5 .li-links ul li a {
  color: var(--gi-blanco);
}

/* ===================== INDUSTRIES ===================== */
#index-section6 {
  margin-top: 9em;
}

.gi-card-img {
  width: 100%;
  min-height: 190px;
  display: flex;
  border-radius: 1em;
  overflow: hidden;
  box-shadow: 1px 1px 20px rgba(211, 211, 211, 0.66);
  background: var(--gi-blanco);
  margin-bottom: 2em;
}

.gi-card-img-media {
  flex: 0 0 30%;
  overflow: hidden;
}

.gi-card-img-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.5s all ease;
}

.gi-card-img-text {
  flex: 1;
  background: var(--gi-blanco);
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.gi-card-img-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--gi-azul-claro);
  transition: width 0.4s ease;
}

.gi-card-img:hover .gi-card-img-text::after {
  width: 100%;
}

.gi-card-img-text h3 {
  font-family: 'Archivo', sans-serif;
  color: var(--gi-azul-oscuro);
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 0.4em;
  transition: color 0.3s ease;
}

.gi-card-img-text h3 span {
  font-size: 0.9em;
  display: block;
  font-weight: 800;
  color: var(--gi-negro);
}

.gi-card-img-text p {
  margin: 0;
  color: var(--gi-gris);
  font-size: 1.1em;
  line-height: 1.4em;
}

.gi-card-img:hover .gi-card-img-media img {
  transform: scale(1.08);
}

.gi-card-img:hover .gi-card-img-text h3 {
  color: var(--gi-azul-claro);
}

.cta-text {
  width: 100%;
  height: auto;
  text-align: right;
}

.cta-text a {
  width: fit-content;
  color: var(--gi-gris);
  font-size: 1em;
  transition: 0.6s ease all;
  border-bottom: 1px solid var(--gi-gris);
  font-style: italic;
}

.cta-text a:hover {
  color: var(--gi-azul-claro);
  border-bottom: 1px solid var(--gi-azul-claro);
  transition: 0.3s ease all;
}

/*  --------  FOOTER -------- */
.ft-roof img {
  width: 100%;
  height: auto;
}

footer {
  width: 100%;
  margin-top: 100px;
  text-align: left;
  background: linear-gradient(135deg,
      #1a2a62 0%,
      #1c2d68 50%,
      #203172 100%);
  color: #ffffff;
  letter-spacing: 0.02em;
}

footer .container {
  padding-top: 3em !important;
  padding-bottom: 2em;
}

footer .ft-contact p {
  text-align: center;
}

footer ul {
  list-style-type: none;
}

footer ul li {
  font-size: 0.80em;
  letter-spacing: 0.05em;
  margin-bottom: 0.3em;
}

footer ul li a {
  color: #ffffff;
  transition: 0.6s ease all;
}

footer ul li a:hover {
  color: #35b9d9;
  transition: 0.3s ease all;
}

footer ul li.li-title {
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  width: 50%;
  min-width: 96px;
  min-height: 24px;
  padding-bottom: 1px;
  border-bottom: 1px #0292c2 solid;
  margin-bottom: 0.65em;
  color: var(--gi-blanco);
}

footer p,
#sectionOne footer p {
  font-size: 0.80em;
  line-height: 1.1em;
  margin-bottom: 0.4em;
  color: #ffffff;
  text-align: left;
}

footer p a,
#sectionOne footer p a {
  color: #ffffff;
}

footer p a:hover,
#sectionOne footer p a:hover {
  color: #35b9d9;
}

footer .social_icons {
  margin-bottom: 1.4em;
  text-align: center;
}

footer .social_icons a {
  margin: 0 0.4em;
}

footer .social_icons a img {
  width: 20px;
  transition: 0.6s all ease;
}

footer .social_icons a img:hover {
  transform: scale(1.1);
  transition: 0.3s all ease;
}

.ft-bottom {
  padding-top: 2em;
}

.ft-bottom p {
  text-align: center;
}

.br-line {
  display: block;
}

.indexthis {
  font-size: 0.3em;
  color: #1c2d68;
  opacity: 0.02;
}

#index-section7 {
  margin: 10em 0;
}

/* ===================== PORTADA MOBILE ===================== */
#portada-mobile {
  position: relative;
  width: 100%;
  height: 100vh;
  display: none;
}

.portada-mobile-video {
  position: relative;
  width: 100%;
  height: 100vh;
}

.portada-mobile-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-position: bottom;
  /* padding-top: 71px; */
}

.portada-mobile-title {
  position: absolute;
  width: 100%;
  height: auto;
  top: 120px;
  padding: 1.5em;
}

.portada-mobile-title h2 {
  font-family: "Archivo", sans-serif;
  color: var(--gi-azul-oscuro);
  font-weight: 600;
  line-height: 1em;
  letter-spacing: -0.03em;
  text-align: center;
  font-size: 2.8em;
}

.portada-mobile-title h2 span {
  display: block;
  font-size: 0.8em;
  color: var(--gi-gris);
}

.pulse-btn {
  animation: breathing 2s ease-in-out infinite;
}

@keyframes breathing {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

#scroll-mobile {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15vh;
  width: fit-content;
  height: auto;
  opacity: 0;
}

#scroll-mobile .scroll-anim {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}

#scroll-mobile .chevron {
  position: absolute;
  width: 18px;
  height: 4px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

#scroll-mobile .chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

#scroll-mobile .chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

#scroll-mobile .chevron:before,
#scroll-mobile .chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: var(--gi-azul-oscuro);
}

#scroll-mobile .chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

#scroll-mobile .chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }

  33% {
    opacity: 1;
    transform: translateY(30px);
  }

  67% {
    opacity: 1;
    transform: translateY(40px);
  }

  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

#scroll-mobile .text {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9em;
  color: var(--gi-azul-oscuro);
  text-transform: uppercase;
  animation: pulse 1s linear alternate infinite;
  opacity: 0.25;
  text-wrap: nowrap;
  margin-top: 5em;
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}

/* ===================== PAGE HEADER ===================== */
/* -----------   Internal pages  ------------- */
#page-inside {
  height: auto;
  min-height: 100vh;
  padding: 0;
  overflow-y: hidden;
}

#page-inside .pageHead {
  position: relative;
  margin-top: 120px;
  /* 80px is fit */
  margin-bottom: 100px;
  width: 100%;
  height: auto;
  padding: 0;
  background-color: #1c2d68;
  overflow: hidden;
}

#page-inside .pageHead.palomaHead {
  background-color: transparent;
  padding-top: 36px;
  margin-bottom: 70px;
}

#page-inside .pageHead img.mainPic {
  will-change: transform, margin-top;
  display: inline-block;
  width: 64.8%;
  height: auto;
  visibility: hidden;
}

#page-inside .pageHead .headTitle {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 34.5%;
  height: auto;
  padding-left: 2%;
  padding-right: 2%;
}

#page-inside .pageHead .headTitle h1 {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 3.6em;
  letter-spacing: 0;
  line-height: normal;
  visibility: hidden;
}

#page-inside .pageHead .headTitle h1 span {
  display: block;
  color: #0292c2;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.6em;
  font-weight: 600;
}

/* #page-inside .pageHead .headTitle h2 {
  color: #0292c2;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 2.0em;
  font-weight: 600;
} */

#page-inside .content-txt h2 {
  font-size: 3.2em;
  font-weight: 700;
  text-align: left;
}

#page-inside .content-txt h2 span {
  display: block;
  font-size: 0.6em;
  font-weight: 500;
  color: var(--gi-azul-claro);
  line-height: normal;
  padding-bottom: 3px;
  margin-bottom: 10px;
  /* margin-left: -8%; */
  /* width: 50%; */
  min-width: 215px;
  /* border-bottom: 1px #0199c5 solid; */
}

#page-inside .content-txt h4 {
  font-size: 1.75em;
  line-height: 1.3em;
  font-weight: 400;
  color: #0292c2;
  text-align: left;
}

#page-inside .content-txt h4.no-btm {
  margin-bottom: 0;
  line-height: 0.6em;
}

#page-inside .content-txt h3 {
  font-size: 2.3em;
  line-height: 1.18em;
  font-weight: 700;
  color: #1c2d68;
  text-align: left;
  margin-bottom: 1.8em;
}

#page-inside .content-txt h3.en-clientes {
  padding-bottom: 0em;
}

#page-inside .content-txt h3:after {
  content: '';
  display: block;
  position: relative;
  width: 120px;
  height: 3px;
  left: 0;
  background: #86c92c;
  margin-top: 10px;
  transition: all 0.5s;
}

#page-inside .content-txt.legal-txt h5 {
  font-size: 1.4em;
  margin-top: 2em;
  margin-bottom: 1.4em;
  color: var(--gi-azul-oscuro);
}

#page-inside .content-txt p {
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.7em;
  margin-bottom: 1em;
  color: #617782;
  text-align: justify;
}

#page-inside .content-txt p i {
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
}

#page-inside .content-txt p strong {
  color: #405058;
}

#page-inside .content-txt.legal-txt p {
  font-size: 0.95em;
  font-weight: 400;
}

#page-inside .content-txt.legal-txt p strong {
  font-weight: 700;
  color: #455157;
}

#page-inside .content-txt ul,
#page-inside .content-txt ol {
  margin-bottom: 1.5em;
  padding-left: 30px;
}

#page-inside .content-txt ul li,
#page-inside .content-txt ol li {
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.7em;
  text-align: left;
}

#page-inside .content-txt ul li strong,
#page-inside .content-txt ol li strong {
  font-weight: 600;
}

#page-inside .content-txt.legal-txt ul li,
#page-inside .content-txt.legal-txt ol li {
  font-size: 0.95em;
  font-weight: 400;
}

#page-inside .content-txt p.smallp {
  font-size: 0.9em;
  text-align: center;
  margin-bottom: 0;
}

#page-inside .content-txt p span.gi-greattext {
  color: #617782;
}

#page-inside .content-txt p span.gi-greattext:hover {
  /* background-color: rgb(125, 255, 179); */
  background-color: #A7D765;
}

/* #page-inside .content-txt .contact-buttons p.smallp {
  line-height: 1.3em;
  margin-top: 2.5em;
} */

#page-inside .content-txt .errorpage-content h3,
#page-inside .content-txt .errorpage-content h4,
#page-inside .content-txt .errorpage-content p {
  text-align: center;
  width: 100%;
}

#page-inside .content-txt p a,
#page-inside .content-txt ul li a {
  color: #0292c2;
  font-weight: 400;
}

#page-inside .content-txt p a:hover,
#page-inside .content-txt ul li a:hover {
  color: #46555D;
  background-color: #A7D765;
}

#page-inside.page-portfolio .content-txt p.client-url a:hover {
  background-color: transparent;
}

.loose-col-1 {
  padding: 0 5%;
}

.loose-col-2 {
  padding: 0 8% 20px 8%;
}

.loose-col-3 {
  padding: 0 6%;
}

#sectionOne .loose-col-1 {
  margin-top: 5%;
}

#sectionOne .loose-col-2 {
  margin-top: 3%;
}

.awards-img {
  text-align: center;
  padding: 4% 3%;
}

.awards-img img {
  width: 100%;
  max-width: 370px;
  height: auto;
}

.simple-img {
  text-align: center;
  padding: 4% 3%;
  will-change: transform, opacity, margin-top;
}

.simple-img img {
  width: 100%;
  max-width: 650px;
  height: auto;
}

.parall-img-wrap {
  padding-left: 2%;
  padding-right: 2%;
}

.parall-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  box-shadow: 1px 8px 20px rgba(101, 101, 101, 0.515);
}

.parall-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.2);
  transform-origin: center;
}

.bt-m0 {
  margin-bottom: 0;
}

.bt-m6 {
  margin-bottom: 6%;
}

.bt-m9 {
  margin-bottom: 9%;
}

.tp-m0 {
  margin-top: 0em;
}

#grid-works a.bt_inv.bt-m0.bt_ripple {
  z-index: 720;
}

.cta_cohete {
  width: 100%;
  height: auto;
  margin: 0 auto;
  z-index: 700;
  text-align: center;
}

.cta_cohete img {
  width: 80%;
  max-width: 90px;
  height: auto;
}

.rocket-move {
  -webkit-animation: rocket-launch 1.2s ease-out forwards;
  animation: rocket-launch 1.2s ease-out forwards;
}

@-webkit-keyframes rocket-launch {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    -webkit-transform: translateY(-33vh);
    transform: translateY(-33vh);
  }
}

@keyframes rocket-launch {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    -webkit-transform: translateY(-33vh);
    transform: translateY(-33vh);
  }
}

.rocket-back {
  -webkit-animation: rocket-rewind 0.5s ease-out forwards;
  animation: rocket-rewind 0.5s ease-out forwards;
}

@-webkit-keyframes rocket-rewind {
  0% {
    -webkit-transform: translateY(-33vh);
    transform: translateY(-33vh);
  }

  100% {
    -webkit-transform: translateY(0vh);
    transform: translateY(0vh);
  }
}

@keyframes rocket-rewind {
  0% {
    -webkit-transform: translateY(-33vh);
    transform: translateY(-33vh);
  }

  100% {
    -webkit-transform: translateY(0vh);
    transform: translateY(0vh);
  }
}

#cta-cita,
#cta-download {
  margin-bottom: 6em;
  overflow-x: hidden;
}

#cta-download {
  padding-top: 6em;
}

#page-inside.page-portfolio #cta-cita {
  margin-bottom: 5em;
}

#cta-cita-service {
  margin-top: 3.5em;
  margin-bottom: 6em;
  overflow-x: hidden;
}

#cta-cita h2,
#cta-cita-service h2 {
  font-size: 2.6em;
  text-align: center;
}

#cta-download h3 {
  display: inline;
  font-size: 2.4em;
  text-align: center;
  margin-top: 2.5em;
  color: var(--gi-azul-oscuro);
  font-weight: 600;
}

#cta-cita h3,
#cta-cita-service h3 {
  font-size: 1.5em;
  font-weight: 400;
  color: #0292c2;
  text-align: center;
}

#cta-download h4 {
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.4em;
  color: var(--gi-azul-claro);
  text-align: center;
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
}

#cta-cita h3,
#cta-cita-service h3 {
  font-size: 1.5em;
  font-weight: 400;
  color: #0292c2;
  text-align: center;
}

#cta-cita p,
#cta-cita-service p {
  text-align: center;
  padding: 30px 5%;
}

#cta-download p {
  text-align: center;
  padding: 0px 5% 10px 5%;
}

#page-inside #cta-cita h2,
#page-inside #cta-cita-service h2,
#page-inside #cta-download h2 {
  font-size: 2.5em;
}


.top-col-3 {
  padding-top: 3%;
}

.top-col-4 {
  padding-top: 4%;
}

.row-top-2 {
  margin-top: 2%;
}

.row-top-3 {
  margin-top: 3%;
}

.row-top-5 {
  margin-top: 5%;
}

/* .row-top-7 {
  margin-top: 7%;
} */

.row-top-7 {
  margin-top: 10%;
}

.sep-mt-40 {
  margin-top: 40px;
  width: 100%;
}

.sep-mb-30 {
  margin-bottom: 30px;
}

.sep-mb-7p {
  margin-bottom: 7%;
  width: 100%;
}

.sep-mb-10p {
  margin-bottom: 10%;
}

.simple-img {
  text-align: center;
  padding: 4% 3%;
  will-change: transform, opacity, margin-top;
}

.simple-img img {
  width: 100%;
  max-width: 650px;
  height: auto;
}

.curve-cut,
.curve-cut-blue {
  position: relative;
  float: left;
  width: 100%;
  height: 136px;
  padding-bottom: 10px;
  border: none;
  outline: none;
  background-color: #e8e8e8;
}

.curve-cut-blue {
  background-color: #EFF9FE;
}

.curve-cut img {
  cursor: default !important;
  width: 100%;
}

#page-inside .featured-block {
  padding: 5% 4% 3% 4%;
  text-align: left;
  margin-top: 60px;
  margin-bottom: 50px;
  background-color: var(--gi-azul-oscuro);
  text-align: center;
}

#page-inside .featured-block h4 {
  width: 100%;
  font-size: 2.5em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2em;
  color: #1c2d68;
}

#page-inside .featured-block h4:after {
  content: '';
  display: block;
  position: relative;
  width: 120px;
  height: 3px;
  left: 50%;
  margin-left: -60px;
  background: #0292c2;
  margin-top: 8px;
  transition: all 0.5s;
}

#page-inside .featured-block.portfolio-list {
  padding: 2% 6% 0 6%;
  background-color: #ffffff;
  background: -moz-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}

.portfolio-card {
  border: none;
}

.portfolio-card .card {
  border: 0px;
  min-height: 300px;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
  transition: all 0.6s ease;
  margin-bottom: 36px;
  overflow: hidden;
}

.portfolio-card .card:hover {
  transform: scale(1.02);
  -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .20), 0 2px 28px 0 rgba(0, 0, 0, .22);
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .20), 0 2px 28px 0 rgba(0, 0, 0, .22);
  cursor: pointer;
  transition: all 0.5s ease;
}

.portfolio-card .card:after {
  content: "";
  width: 0px;
  height: 3px;
  border-bottom: 6px var(--gi-azul-claro) solid;
  position: absolute;
  bottom: 0;
  left: 0;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 350;
}

.portfolio-card .card:hover:after {
  width: 100%;
}

.portfolio-card .card.tallcard {
  min-height: 232px;
}

.portfolio-card .card .card-body {
  padding-bottom: 0.4em;
  padding-top: 0.8em;
  min-height: 70px;
}

.portfolio-card .card img {
  width: 100%;
  max-width: 480px;
}

.portfolio-card .card.underli img {
  border-bottom: 1px #e3dfda solid;
}

.portfolio-card .card .card-title {
  display: block;
  font-size: 0.95em !important;
  font-weight: 600;
  text-align: left;
  line-height: 1.2em !important;
  color: #444;
}

.portfolio-card .card .card-title span {
  display: block;
  font-size: 0.9em;
  font-weight: 400;
  margin-top: 6px;
}

#list-project .portfolio-card .card {
  min-height: 217px;
}

.filter-selector {
  margin-top: 20px;
  width: 100%;
}

.filter-selector .hform .control-label {
  font-weight: 600;
}

.award-logo-list {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 5em;
}

.award-logo-list img {
  width: auto;
  height: 48px;
  margin: 0 24px;
  opacity: 0.8;
}


/* --------  Pagination ------- */
.pagination-line {
  margin-top: 30px;
  margin-bottom: 12%;
}

.pagination>li {
  margin: 0 4px;
  border-radius: 6px;
  font-size: 0.9em;
}

.pagination>li>a,
.pagination>li>span {
  transition: background-color 0.3s;
  width: 100%;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid #777;
  font-family: 'Raleway', sans-serif;
  font-size: 1.0em;
  color: #555555;
  background-color: transparent;
}

.pagination>li>a:hover,
.pagination>li>a:focus,
.pagination>li>span:hover,
.pagination>li>span:focus {
  color: #ffffff !important;
  background-color: #47a7f5;
  border-color: #47a7f5;
  box-shadow: none;
}

.pagination>li.page-item.active>a,
.pagination>li.page-item.active>span {
  color: #ffffff;
  border: 1px solid #0292c2;
  background-color: #0292c2;
}

.pagination>li.page-item a.page-link.current {
  color: #FFF;
  border: 1px solid #888;
  background-color: #888;
}

#page-inside .featured-block h4.title-white {
  color: var(--gi-blanco);
}

.descargar-brochure {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 1em;
}

/*  Industires List */
#industries-list {
  margin-bottom: 106px !important;
}

#industries-list h2 {
  margin-bottom: 0.2em;
}

#industries-list h3.subtit {
  color: var(--gi-azul-claro);
  margin-bottom: 1.8em;
}

#industries-list ul {
  margin-bottom: 0;
}

#industries-list .li-links ul li {
  font-size: 1.1em;
  line-height: 1.8em;
  width: fit-content;
}

#industries-list .li-links ul li:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #0292c2;
  /* #46555D; */
  transition: width .4s;
}

#industries-list .li-links ul li:hover:after {
  width: 100%;
}

h1.industry_vtitle {
  font-size: 2.3em;
  line-height: 1.18em;
  font-weight: 700;
  color: #1c2d68;
  text-align: left;
  margin-bottom: 1.8em;
}

h1.industry_vtitle::after {
  content: '';
  display: block;
  position: relative;
  width: 120px;
  height: 3px;
  left: 0;
  background: #86c92c;
  margin-top: 10px;
  transition: all 0.5s;
}

.intro-indus h2 {
  font-size: 2.6em;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.5em;
  color: #1c2d68;
}

.intro-indus h2::after {
  content: '';
  display: block;
  position: relative;
  width: 120px;
  height: 3px;
  left: 0;
  background: #86c92c;
  margin-top: 10px;
  transition: all .5s;
}

h3.client-intro {
  font-size: 2.2em !important;
  font-weight: 800 !important;
  color: #1c2d68;
}

h3.client-intro span {
  padding-bottom: 0.3em;
  font-family: 'Open Sans';
  font-size: 0.62em;
  font-weight: 400;
  display: block;
  line-height: 1.4em;
  color: #46555D;
}

.client-container {
  overflow: hidden;
}

.client-list {
  margin-top: 2em;
  margin-bottom: 1em;
}

.client-list.list-production {
  margin-top: 4em;
}

.client-list.list-media {
  margin-bottom: 10%;
}

.client-list h4 {
  width: 100%;
  font-size: 2em;
  font-weight: 600;
  text-align: center;
  margin-top: 2em;
  margin-bottom: 2em;
  color: #1c2d68;
}

.client-list h4::after {
  content: '';
  display: block;
  position: relative;
  width: 120px;
  height: 3px;
  left: 50%;
  margin-left: -60px;
  background: #0292c2;
  margin-top: 8px;
  transition: all 0.5s;
}

.client-list ul {
  list-style-type: none;
}

.client-list ul li {
  line-height: 1.9em;
  margin-bottom: 3px;
  background-image: url(../img/list_circle.png);
  background-repeat: no-repeat;
  background-position: 0 center;
  padding-left: 20px;
  font-weight: 400;
}

.client-list li a {
  color: #46555D;
  border-bottom: 2px #b3deed solid;
}

.client-list li a:hover {
  color: #46555D;
  border-bottom: 2px #A7D765 solid;
}

#page-inside .pageHead.resultsPage {
  margin-bottom: 80px;
  min-height: 70px;
  height: auto;
}

#page-inside .pageHead.resultsPage h1 {
  font-weight: 400;
  font-size: 2.0em;
  text-align: center;
  color: #ffffff;
  padding-top: 15px;
}

#page-inside.page-portfolio .pageHead {
  overflow: hidden;
  background-color: var(--gi-azul-oscuro);
  margin-bottom: 0;
}

#page-inside.page-portfolio .pageHead img.mainPic,
#page-inside .pageHead img.industryPic {
  display: block;
  width: 100%;
  height: auto;
  z-index: 2;
  visibility: hidden;
}

#page-inside .wrapperProfilePic {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

#page-inside .clientProfilePic {
  will-change: transform;
  position: relative;
  width: 180px;
  height: 180px;
  margin-top: -100px;
  margin-left: 2%;
  border: 0px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #ffffff;
  padding: 6px;
  z-index: 500;
  text-align: center;
  box-shadow: 5px 4px 12px 0px rgba(0, 0, 0, 0.30);
  -webkit-box-shadow: 5px 4px 12px 0px rgba(0, 0, 0, 0.30);
  -moz-box-shadow: 5px 4px 12px 0px rgba(0, 0, 0, 0.30);
}

#page-inside .clientProfilePic img {
  position: absolute;
  max-width: 78%;
  /* max in pixels= 170px; */
  height: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#page-inside.page-portfolio .client-data {
  text-align: left;
  padding: 0 3%;
}

#page-inside.page-portfolio .client-data h1 {
  font-size: 2.1em;
  margin-top: 0.9em;
  margin-bottom: 0.5em;
  color: var(--gi-azul-oscuro);
}

#page-inside.page-portfolio .client-data h4 {
  font-size: 1.0em;
  color: #46555D;
  margin-top: 0;
  text-transform: lowercase;
  letter-spacing: 0.015em;
}

#page-inside.page-portfolio .client-data h4 i {
  opacity: 0.5;
}

#page-inside.page-portfolio .client-data h5 {
  font-size: 1.0em;
  color: #46555D;
  margin-top: 0;
  margin-bottom: 0.3em;
}

#page-inside.page-portfolio .client-data h4 {
  font-size: 1em;
  color: #8d8f90;
  margin-top: 0;
}

#page-inside .content-txt h5:after {
  content: '';
  display: block;
  position: relative;
  width: 120px;
  height: 3px;
  left: 0;
  background: #86c92c;
  margin-top: 10px;
  transition: all 0.5s;
}

.smalltxt a {
  font-size: 0.93em;
  color: #0292c2;
}

#page-inside.page-portfolio .client-data h5:after {
  height: 2px;
  margin-top: 6px;
}

#page-inside.page-portfolio .client-data .aDevice {
  will-change: transform, margin-top;
  margin-top: 20px;
  margin-bottom: 40px;
  padding-top: 30px;
  text-align: left;
}

#page-inside.page-portfolio .client-data .aDevice img {
  width: 100%;
  height: auto;
  max-width: 300px;
}

#page-inside.page-portfolio p.client-url {
  color: #333;
  font-weight: 600;
  margin-top: 32px;
}

#page-inside.page-portfolio p.client-url a:before {
  width: 0%;
}

#page-inside.page-portfolio p a:before,
#page-inside.page-portfolio p a:after {
  bottom: 0;
}

.bigPortafImg,
.anyPortafImg {
  float: left;
  width: 90%;
  max-width: 1200px;
  margin-left: 5%;
  margin-bottom: 40px;
  text-align: center;
}

.bigPortafImg img,
.anyPortafImg img {
  display: inline-block;
  width: 100%;
  max-width: 1080px;
  height: auto;
  box-shadow: 5px 6px 12px 0px rgba(0, 0, 0, 0.40);
  -webkit-box-shadow: 5px 6px 12px 0px rgba(0, 0, 0, 0.40);
  -moz-box-shadow: 5px 6px 12px 0px rgba(0, 0, 0, 0.40);
  margin-bottom: 40px;
}

.anyPortafImg img {
  width: 100%;
  height: auto;
  max-width: 800px;
}

.anyPortafImg.noShadow img {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}

.scroll-expand-video-section {
  position: relative;
  width: 100%;
}

.scroll-expand-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transform: scale(0.7);
  transform-origin: center center;
  box-shadow: 0 0 10px rgba(138, 138, 138, 0.474);
}

#page-inside.page-portfolio.en-industrias .pageHead {
  margin-bottom: 5em;
}

.content-txt {
  overflow: hidden;
}

.contact-buttons {
  margin-top: 3em;
  padding-top: 3em;
}

.contact-buttons.no-margin {
  margin-top: 0;
}

.contact-buttons .bt_gi {
  width: fit-content;
  display: block;
}

.contact-buttons img {
  width: 100%;
  height: auto;
  max-width: 220px;
}

.btn-azul-claro {
  background-color: var(--gi-azul-claro);
}

.btn-azul-claro2 {
  background-color: #35b09a;
}

#noticias-container{
  padding-bottom: 4em;
}