* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}
.verde {
  color: #00AEA3;
}
.blanco {
  color: #FFFFFF;
}
.negro {
  color: #000000;
}
.verdeClaroBG {
  background: #00D0A3;
}
.verdeBG {
  background: #00AEA3;
}
.blancoBG {
  background: #FFFFFF;
}
.negroBG {
  background: #000000;
}
.marron {
  color: #A78B6B;
}
.marronFill {
  fill: #A78B6B;
}
.verdeFill {
  fill: #00aea4;
}
.blancoFill {
  fill: #FFFFFF;
}
/*--Oxygen*/
.oxygen-light {
  font-family: "Oxygen", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.oxygen-regular {
  font-family: "Oxygen", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.oxygen-bold {
  font-family: "Oxygen", sans-serif;
  font-weight: 700;
  font-style: normal;
}
/*-//Oxygen*/
/*--Oxanium*/
.oxanium-thin {
  font-family: "Oxanium", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}
.oxanium-light {
  font-family: "Oxanium", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.oxanium-regular {
  font-family: "Oxanium", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.oxanium-medium {
  font-family: "Oxanium", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.oxanium-semibold {
  font-family: "Oxanium", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.oxanium-bold {
  font-family: "Oxanium", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.oxanium-black {
  font-family: "Oxanium", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
/*-//Oxanium*/
body {
  color: #333;
  overflow-x: hidden;
  font-family: "Oxygen", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-style: normal;
}
.container {
  width: 90%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0;
}
/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 1000;
  padding: 35px 0;
  border-bottom: 1px solid rgba(205, 200, 190, .4);
  transition: all ease-in-out .4s;
}
.push {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12%;
}
.nav-container {
  width: 90%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  width: 180px;
  height: auto;
  transition: all ease-in-out .4s;
}
.logo svg {
  fill: #FFFFFF;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
}
.nav-menu a {
  font-family: "Oxygen", sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 13px;
  opacity: 0.75;
  transition: all .3s ease-in-out;
}
.nav-menu a:hover {
  color: #FFFFFF;
  opacity: 1;
  transition: all .4s ease-in-out;
}
.nav-menu a:focus, .nav-menu a:active, .nav-menu a.active {
  color: #FFFFFF;
  opacity: 1;
  transition: all .4s ease-in-out;
}
.secondary-btn {
  background: #00AEA3;
  color: rgba(255, 255, 255, 0.75);
  border: 1px #00AEA3 solid;
  padding: 9px 14px 9px 16px;
  border-radius: 25px;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  column-gap: 4px;
  flex-direction: row;
  flex-wrap: nowrap;
  transition: all .3s ease-in-out;
}
.secondary-btn.diapo {
  background: #FFFFFF;
  color: #00AEA3;
  border: 1px #FFFFFF solid;
}
.secondary-btn span svg {
  width: 15px;
  padding-left: 2px;
  height: auto;
  fill: #FFFFFF;
  transform: rotate(-45deg);
  transition: all .3s ease-in-out;
}
.secondary-btn.activo {
  background: #39CD96;
  color: rgba(255, 255, 255, 1);
  transition: all .3s ease-in-out;
}
.secondary-btn.activo span svg {
  padding-left: 0;
  transform: rotate(0);
  transition: all .4s ease-in-out;
}
.secondary-btn.activo:hover span svg {
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}
.secondary-btn.sinMovimiento span svg {
  transform: scale(80%);
  transition: all 1s ease-in-out;
}
.secondary-btn.sinMovimiento:hover span svg {
  transform: scale(100%);
  transition: all .3s ease-in-out;
}
.secondary-btn.diapo span svg {
  fill: #00AEA3;
}
.secondary-btn:hover {
  background: #39CD96;
  border: 1px #00AEA3 solid;
  color: rgba(255, 255, 255, 1);
  transition: all .3s ease-in-out;
}
.secondary-btn:hover span svg {
  transform: rotate(0deg);
  transition: all .3s ease-in-out;
}
.secondary-btn.diapo:hover span svg {
  fill: #FFFFFF;
  transform: rotate(0deg);
  transition: all .3s ease-in-out;
}
.primary-btn {
  background: #00AEA3;
  color: rgba(255, 255, 255, 1);
  border: 1px #00AEA3 solid;
  padding: 7px 7px 7px 20px;
  border-radius: 25px;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  min-width: max-content;
  column-gap: 6px;
  flex-direction: row;
  flex-wrap: nowrap;
  transition: all .3s ease-in-out;
  overflow: hidden;
  position: relative;
}
.primary-btn span {
  width: 34px;
  height: 34px;
  border-radius: 25rem;
  background: #FFFFFF;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}
.primary-btn span svg {
  width: auto;
  height: auto;
  fill: #00AEA3;
  transform: rotate(-45deg);
  transition: all .3s ease-in-out;
}
.bg-btn {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #00AEA3;
  background: -webkit-linear-gradient(90deg, rgba(0, 174, 163, 1) 30%, rgba(57, 205, 150, 1) 100%);
  background: -moz-linear-gradient(90deg, rgba(0, 174, 163, 1) 30%, rgba(57, 205, 150, 1) 100%);
  background: linear-gradient(90deg, rgba(0, 174, 163, 1) 30%, rgba(57, 205, 150, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00AEA3", endColorstr="#39CD96", GradientType=1);
  opacity: 0;
  z-index: 0;
  transition: all .3s ease-in-out;
}
.primary-btn:hover .bg-btn {
  opacity: 1;
  transition: all .3s ease-in-out;
}
.arribaBtn {
  position: relative;
  display: flex;
  column-gap: 8px;
  z-index: 1;
  align-items: center;
}
.primary-btn:hover span svg {
  transform: rotate(0deg);
  transition: all .3s ease-in-out;
}
.cabezal-section {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 12px;
}
.cabezal-section h4 {
  text-transform: uppercase;
  width: max-content;
}
.cabezal-section .nav-arrow {
  width: 16px;
  height: auto;
}
.cabezal-section .nav-arrow svg {
  width: 16px;
  height: auto;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: none;
  z-index: 1000;
  padding: 20px 0;
  height: 80px;
}
.header.fixed .menu-toggle span {
  background: #000000;
}
.header.fixed .logo svg {
  width: 150px;
  transition: all ease-in-out .4s;
}
.header.fixed .logo svg {
  fill: #00AEA3;
}
.header.fixed .nav-menu a {
  color: #000000;
  opacity: 0.75;
  transition: all .3s ease-in-out;
}
.header.fixed .nav-menu a:hover {
  color: #00AEA3;
  transition: all .4s ease-in-out;
  opacity: 1;
}
.header.fixed .nav-menu a:focus, .header.fixed .nav-menu a:active, .header.fixed .nav-menu a.active {
  color: #00AEA3;
  opacity: 1;
  transition: all .4s ease-in-out;
}
.hero {
  height: 100vh;
  height: 100svh;
  width: 100%;
  max-width: 100%;
  background: #000;
  display: flex;
  align-items: flex-start;
  position: relative;
  color: white;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.overlayHero-top {
  width: 100%;
  height: 200px;
  background: rgba(0, 0, 0, 0.08);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000014", endColorstr="#000000", GradientType=0);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.overlayHero-left {
  width: 65%;
  height: 100vh;
  height: 100svh;
  background: #000000;
  background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.img-slider {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: fixed;
  top: 0;
  z-index: -1;
}
.overlayHero-bottom {
  width: 100%;
  height: 60vh;
  height: 60svh;
  background: #000000;
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.overlayWhite-top {
  width: 100%;
  height: 20vh;
  height: 20svh;
  background: #FFFFFF;
  background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(0deg, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 5%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=0);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.img-slider {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: fixed;
  top: 0;
  z-index: -1;
}
.swiper-pagination-hero {
  gap: 8px;
  display: flex
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #ffffff;
  opacity: .4;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #FFFFFF;
}
.antNav {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.prevNav {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.prev-hero svg {
  transform: rotate(180deg);
}
#swiperHeroProyectos .swiper-slide {
  width: 100%;
  max-width: 100%;
  height: auto;
  overflow: hidden;
}
.swiper-button-next, .swiper-button-prev {
  position: relative;
  top: inherit;
  width: auto;
  height: auto;
  margin-top: inherit;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: none;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  left: 0;
  right: 0;
}
.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: '';
}
.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: '';
}
.antNav, .sigNav {
  display: flex;
}
.prev-hero, .next-hero {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  height: 15px;
}
.prev-hero span, .next-hero span {
  font-family: "Oxanium", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #FFFFFF;
  margin: 3px 0 0;
  padding: 0;
  opacity: .75;
}
.prev-hero svg, .next-hero svg {
  width: 20px;
  height: auto;
}
.prev-hero svg {
  margin-right: 10px;
  width: 20px;
  height: auto;
  fill: #FFFFFF;
}
.next-hero svg {
  margin-left: 10px;
  width: 20px;
  height: auto;
  fill: #FFFFFF;
}
.hero-content {
  width: 90%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100vh;
  height: 100svh;
  position: relative;
  z-index: 3;
  display: flex;
  min-height: fit-content;
  position: relative;
}
.hero-info-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 60px;
  margin: 0;
  flex-wrap: wrap;
}
.hero-principal-wrapper {
  max-width: 50%;
}
.hero-text p {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1.5em;
  opacity: .9;
}
.hero-text p:last-child {
  margin-bottom: 80px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  width: 100%;
  max-width: 100%;
  align-items: flex-start;
  justify-content: space-between;
}
.fStats {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-label {
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #FFFFFF;
  margin-bottom: 5px;
}
.stat-label-exp {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 0;
  text-align: left;
}
.stat-label-exp strong {
  text-transform: uppercase;
  font-weight: 900;
  color: #ffffff;
  background: #01aea3;
  padding: 4px 16px 5px;
  border-radius: 50rem;
  line-height: 1em;
  margin: 4px 0 0;
  display: table;
}
.stat-value {
  font-size: 14px;
  font-weight: 400;
}
.stat-value.year {
  white-space: nowrap;
}
.cta-btn {
  background: #00BFA5;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
}
.cta-btn:hover {
  background: #00AEA3;
}
.hero-badge {
  position: relative;
}
.position-sello {
  position: absolute;
  right: 0;
  top: 180PX;
}
.badge-circle {
  width: 150px;
  height: 150px;
  position: relative;
  display: flex;
  align-content: center;
  justify-content: center;
}
.sello {
  position: absolute;
  z-index: 2;
}
.selloBg {
  position: absolute;
  z-index: 1;
}
.hero-navigation {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  width: 90%;
  max-width: 1480px;
  z-index: 9;
  border-top: 1px solid rgba(217, 217, 217, .6);
  padding: 40px 0;
}
.nosotros {
  /*background: url(../img/bg2b.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  background-size: cover;*/
  height: auto;
}
.BGfijo {
  background: url(../img/bg2b.png);
  background-repeat: no-repeat;
  background-position: top center;
  /*background-attachment: fixed;*/
  background-size: cover;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: -1;
}
.circle-fade {
  width: 860px;
  height: 860px;
  background: #00F1E1;
  background: radial-gradient(circle, rgba(0, 241, 225, 1) 0%, rgba(0, 241, 225, 0) 65%);
  position: absolute;
  bottom: -430px;
  left: 0;
  z-index: -1;
}
.tituloPrimero {
  font-size: 68px;
  font-size: clamp(38px, 4vw, 68px);
  font-weight: 700;
  margin-bottom: 38px;
  line-height: 1.1em;
}
.tituloSegundo {
  font-size: 50px;
  font-size: clamp(28px, 3vw, 50px);
  margin: 24px 0 38px;
  line-height: 1.2em;
  font-weight: 700;
}
.tituloTercero {
  font-size: 36px;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.3em;
  font-weight: 600;
  margin: 24px 0 38px;
}
.datosProyectoAmpliado .stat.clienteName {
  max-width: 270px;
}
.rowInfoDestacado .tituloSegundo {
  font-size: 36px;
  font-size: clamp(22px, 2.5vw, 42px);
}
.parrafoSus p {
  margin: 8px 0 0;
}
.tituloCuarto {
  font-family: "Oxanium", sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 5px;
  line-height: 1;
  margin: 0;
  padding: 3px 0 0;
}
p {
  color: #000;
  opacity: .75;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 400;
  margin: 0 0 38px
}
.container-general {
  max-width: 1480px;
  margin: 0 auto 0;
  width: 90%;
  position: relative;
  z-index: 1;
}
.containerV {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
}
.context {
  position: sticky;
  height: 100vh;
  height: 100svh;
  width: 100%;
  padding: 79px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  align-content: flex-start;
  flex-direction: column;
}
.vertical-scroll {
  display: flex;
  width: 90%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  position: relative;
}
.column {
  width: calc(100% / 2);
}
.left-column, .right-column {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
}
.frame img {
  display: block;
  width: 100%;
  height: auto;
}
.green-sphere {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #00BFA5, #4CAF50);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sphere-inner {
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.sphere-inner::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.dots-pattern {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.dot-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  width: 150px;
}
.dot-grid::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #00BFA5;
  border-radius: 50%;
  grid-column: 1;
  grid-row: 1;
}
.dot-grid::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #00BFA5;
  border-radius: 50%;
  grid-column: 3;
  grid-row: 2;
}
.sustainability-text {
  flex: 1;
}
.section-label {
  color: #00BFA5;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}
.sustainability-text h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.2;
  color: #333;
}
.sustainability-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #666;
}
.learn-more-btn {
  background: #00BFA5;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  transition: background 0.3s ease;
}
.learn-more-btn:hover {
  background: #00AEA3;
}
.experience {
  border-radius: 0 108px 0 0;
  padding: 80px 0;
  color: #FFFFFF;
}
.gradient {
  background: #009B92;
  background: -webkit-linear-gradient(-90deg, rgba(0, 155, 146, 1) 0%, rgba(0, 174, 163, 1) 74%, rgba(57, 205, 150, 1) 100%);
  background: -moz-linear-gradient(-90deg, rgba(0, 155, 146, 1) 0%, rgba(0, 174, 163, 1) 74%, rgba(57, 205, 150, 1) 100%);
  background: linear-gradient(-90deg, rgba(0, 155, 146, 1) 0%, rgba(0, 174, 163, 1) 74%, rgba(57, 205, 150, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#009B92", endColorstr="#39CD96", GradientType=0);
}
.experience-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.experience-text {
  flex: 1;
  max-width: 550px;
}
.experience-text h2 {
  margin-bottom: 20px;
  ;
}
.experience-text p {
  font-size: 16px;
  line-height: 1.5em;
  opacity: 0.9;
}
.experience-stats {
  display: flex;
  gap: 24px;
  padding: 0 24px 0 0;
}
.stat-card {
  text-align: center;
  padding: 38px;
  border-radius: 15px;
  border: 1px solid #FFFFFF;
  min-width: calc(50% - 10px);
  background: #00AEA3;
  aspect-ratio: 16 / 13;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stat-icon {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
}
.stat-icon img {
  vertical-align: middle;
  width: 36px;
}
.stat-card-sustentabilidadRight .stat-icon img {
  vertical-align: middle;
  width: 48px;
}
.stat-number {
  font-family: "Oxanium", sans-serif;
  font-weight: 600;
  font-size: 3.8rem;
  margin-bottom: 10px;
  text-align: left;
  line-height: 1;
  margin: 20px 0 10px;
}
.services {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  /*background: url("../img/bg3b.png");
  background-repeat: no-repeat;
  background-size: cover;*/
  background-position: bottom center;
}
.services .container {
  position: relative;
  z-index: 2;
}
.services-header {
  margin: 0 auto 30px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.service-card {
  padding: 40px 30px;
  border-radius: 15px;
  background: #f8f9fa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.service-card.featured {
  background: #00BFA5;
  color: white;
  grid-row: span 2;
}
.service-number {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #00BFA5;
}
.service-card.featured .service-number {
  color: white;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 12px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.service-image {
  margin: 20px 0;
  border-radius: 10px;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.sustentabilidad {
  background: #FDF5E3;
  padding: 0;
  position: relative;
  z-index: 1;
}
.overlay-servicios {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: #FDF5E3;
  background: -webkit-linear-gradient(0deg, rgba(253, 245, 227, 1) 0%, rgba(253, 245, 227, 0) 100%);
  background: -moz-linear-gradient(0deg, rgba(253, 245, 227, 1) 0%, rgba(253, 245, 227, 0) 100%);
  background: linear-gradient(0deg, rgba(253, 245, 227, 1) 0%, rgba(253, 245, 227, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FDF5E3", endColorstr="#FDF5E3", GradientType=0);
}
.texturas-wrapper .textura {
  opacity: .4;
}
.textura {
  background: url(../img/bg2.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  mix-blend-mode: multiply;
  opacity: .4;
}
#swiperServicios .service-card-wrapper .blancoBG {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
}
#swiperServicios .service-card-wrapper {
  aspect-ratio: 16 / 10;
  position: relative;
  padding: 40px;
  border: 1px solid #CDC8BE50;
  border-radius: 12px;
  display: block;
  text-decoration: none;
  overflow: hidden;
  transition: all ease-in-out .4s;
}
#swiperServicios .service-card-wrapper .plus {
  position: absolute;
  right: 20px;
  top: 20px;
  background: #FFFFFF;
  border-radius: 25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(40%);
  transition: .4s;
}
#swiperServicios .service-card-wrapper .plus img {
  width: 20px;
  height: auto;
}
#swiperServicios .service-card-wrapper .servicio-img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: all ease-in-out .3s;
}
#swiperServicios .slider-activo .service-card-wrapper {
  border-radius: 12px 62px 12px 12px;
  transition: all ease-in-out .6s;
}
#swiperServicios .slider-activo .service-card-wrapper .servicio-img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
  transition: all ease-in-out .3s;
}
#swiperServicios .slider-activo .service-card-wrapper .plus {
  transform: scale(100%);
  right: 40px;
  top: 40px;
  opacity: 1;
  transition: all ease-in-out .6s;
}
#swiperServicios .service-card-wrapper h5 {
  font-size: 21px;
  line-height: 1.3em;
  font-weight: 600;
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  margin: 0;
  color: #000000;
  transition: all ease-in-out .3s;
  z-index: 2;
}
#swiperServicios .service-card-wrapper h5 span {
  font-family: "Oxanium", sans-serif;
  font-weight: 500;
  font-size: 18px;
}
#swiperServicios .slider-activo .service-card-wrapper h5 {
  color: #FFFFFF;
  transition: all ease-in-out .3s;
}
#swiperServicios .service-card-wrapper .numeroCard {
  font-family: "Oxanium", sans-serif;
  font-size: 44px;
  line-height: 1;
  color: #00AEA3;
  font-weight: 700;
  transition: all ease-in-out .3s;
}
#swiperServicios .slider-activo .service-card-wrapper .numeroCard {
  font-size: 66px;
  color: #FFFFFF;
  transition: all ease-in-out .4s;
}
#swiperServicios .service-card-wrapper .overlay-bottom-service {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #000000;
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
  z-index: 0;
  opacity: 0;
  transition: all ease-in-out .3s;
}
#swiperServicios .slider-activo .service-card-wrapper .overlay-bottom-service {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 140px;
  opacity: 1;
  transition: all ease-in-out .3s;
}
.pRelative {
  position: relative;
}
.slider-nav-group {
  width: auto;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 0;
  position: absolute;
  bottom: 0;
  right: 0;
}
.text-nav-group {
  font-size: 13px;
  margin-right: 10px;
  opacity: .75;
}
.slider-nav-group .swiper-button-next svg {
  width: 20px;
  fill: #000000;
}
.slider-nav-group .swiper-button-prev svg {
  transform: rotate(180deg);
  width: 20px;
  fill: #000000;
}
.textura {
  background: url(../img/bg2.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  mix-blend-mode: multiply;
  opacity: .6;
}
.solutions-stat {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #333;
  min-width: 400px;
}
.sustentabilidad-stats {
  display: flex;
  gap: 24px;
  background: #ffffffe8;
  border-radius: 68px 44px 12px 68px;
  max-width: 44%;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 24px;
}
.row {
  margin-right: 0;
  margin-left: 0;
}
.gradiente-left {
  position: absolute;
  left: 4.9%;
  right: auto;
  top: 0;
  width: 110px;
  height: 100%;
  background: #FFFFFF;
  background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=1);
  z-index: 4;
}
.gradiente-right {
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  width: 190px;
  height: 100%;
  background: #FFFFFF;
  background: -webkit-linear-gradient(275deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(275deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(275deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=0);
  z-index: 4;
}
#swiperClientes {
  overflow: hidden;
  margin: 0 0 0 5%;
}
#swiperClientes .swiper-slide {
  width: auto;
  height: auto;
  margin: 0 12px;
}
#swiperClientes .swiper-wrapper {
  display: flex;
  align-items: center;
  height: 150px;
}
.sClientes {
  height: 150px;
  position: absolute;
  left: auto;
  right: 0;
  top: 50%;
  margin: -75px 0 0 0;
  display: flex;
  align-items: center;
  mix-blend-mode: multiply;
  opacity: .85;
}
.clients-logos {
  display: flex;
  max-width: 140px;
  width: 100%;
  height: auto;
}
.clients-logos img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.stat-visual {
  position: relative;
}
.stat-card-sustentabilidad {
  border-radius: 46px 46px 0 46px;
  overflow: hidden;
}
.stat-card.borderR1 {
  border-radius: 0 12px 0 44px;
}
.stat-card.borderR2 {
  border-radius: 0 44px 0 12px;
}
.green-sphere-small {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00BFA5, #4CAF50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sphere-inner-small {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}
.dots-pattern-small {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.dot-grid-small {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 40px;
}
.dot-grid-small::before, .dot-grid-small::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #00BFA5;
  border-radius: 50%;
}
.stat-number-large {
  font-size: 3rem;
  font-weight: 300;
  color: #00BFA5;
  margin-bottom: 10px;
}
.stat-label-large {
  font-size: 14px;
  color: #666;
  line-height: 1.3;
}
.paddingCard {
  padding: 14px 38px 38px 0 !important;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: space-between;
}
.flex-separador {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 38px;
  align-items: center;
  gap: 24px;
}
.flex-separador .linea {
  width: 100%;
  min-width: max-content;
  height: 1px;
  background: rgba(166, 138, 107, .4);
}
.flex-separador button {
  min-width: fit-content;
}
.imagen-sustentabilidad {
  width: 120%;
  object-fit: cover;
  height: 720px;
  object-position: bottom;
}
.img-recorte {
  width: 100%;
  background: url(../img/bg-sustentabilidad.jpg) no-repeat;
  background-position: left bottom;
  background-size: 120%;
  height: auto;
  overflow: hidden;
  padding: 260px 0 80px;
  position: relative;
}
.clientes {
  border-radius: 0 0 0 108px;
  padding: 120px 0;
  background: #fef8eb;
  position: relative;
}
.pullup {
  overflow-x: hidden;
  max-width: 100vw;
}
.clientesBg {
  background: #00AEA3;
  padding: 0 0 1px;
  position: relative;
  bottom: 0;
  margin: 0;
  overflow: hidden;
  max-width: 100vw;
}
.clientesBg .textura {
  border-radius: 0 0 0 108px;
}
.container-sus-img {
  bottom: 0;
  left: 0;
  z-index: -3;
  height: 35vw;
  overflow: hidden;
  padding: 0 0 100px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.container-sus-img .img-bg-sus {
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: center;
  position: relative;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
}
.susCont {
  position: relative;
  z-index: 2;
}
.content-img-sustentabilidad {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform-origin: auto 0;
  -webkit-transform-origin-y: 0;
  -ms-transform-origin-y: 0;
}
.overlay-sustentabilidad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: #FDF5E3;
  background: -webkit-linear-gradient(180deg, rgba(253, 245, 227, 1) 0%, rgba(253, 245, 227, 0) 100%);
  background: -moz-linear-gradient(180deg, rgba(253, 245, 227, 1) 0%, rgba(253, 245, 227, 0) 100%);
  background: linear-gradient(180deg, rgba(253, 245, 227, 1) 0%, rgba(253, 245, 227, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FDF5E3", endColorstr="#FDF5E3", GradientType=0);
}
.psustenta.overlay-sustentabilidad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: #FFFFFF;
  background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=0);
}
.texturaSustentabilidad {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  mix-blend-mode: darken;
  width: 100%;
}
.texturaSustentabilidad img {
  height: 100%;
  width: 100%;
}
/* Footer */
.footer {
  background: #00AEA3;
  color: white;
  padding: 80px 0 30px;
  margin: -1px 0 1px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 40px;
}
.footer-main h3 {
  margin: 0 0 38px;
}
.footer-main p {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 1;
}
.footer-main p.titleFooter {
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  opacity: 1;
  margin: 0 0 6px;
}
.footer-logo {
  margin: 80px 0 0;
}
.footer-logo img {
  width: 240px;
  height: auto;
}
.footer-info {
  display: flex;
  gap: 60px;
  flex-direction: column;
}
.footer-section h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  opacity: 0.75;
}
.footer-section p {
  color: #FFFFFF;
  text-decoration: none;
  opacity: 1;
  font-weight: bold;
}
.footer-section a {
  font-size: 18px;
  margin-bottom: 20px;
  opacity: .75;
  margin: 0;
}
.footer-section p.direccion {
  font-size: 18px;
}
.footer-bottom {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0 0 10%;
}
.footer-section a.direccion {
  color: #FFFFFF;
  opacity: 1;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 400;
  margin: 0 0 6px;
}
.footer-section p.direccion {
  margin: 0 0 4px;
}
.footer-links {
  display: flex;
  gap: 30px;
}
.contact-row {
  display: flex;
  justify-content: flex-start;
  gap: 60px;
}
.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.footer-links a:hover {
  opacity: 1;
}
.footer-section {
  max-width: 380px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  color: white;
  opacity: 1;
  display: block;
  width: 30px;
  height: auto;
  transition: opacity 0.3s ease;
}
.footer-social a img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.footer-social a:hover {
  opacity: .85;
  transition: opacity 0.3s ease;
}
.footer-copyright {
  text-align: left;
  padding: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.footer-copyright p {
  font-size: 13px;
  opacity: 0.6;
  color: #FFFFFF;
  margin: 0;
}
.footer-section a {
  color: #FFFFFF;
  text-decoration: none;
  opacity: 1;
  font-weight: bold;
}
.footer-section a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
.footer-links a {
  color: #FFFFFF;
  text-decoration: none;
  opacity: .75;
  font-weight: bold;
}
.footer-links a:hover {
  color: #FFFFFF;
  text-decoration: none;
}
.footer-links a.active {
  color: #FFFFFF;
  text-decoration: none;
  opacity: 1;
}
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
.rotating {
  -webkit-animation: rotating 8s linear infinite;
  -moz-animation: rotating 8s linear infinite;
  -ms-animation: rotating 8s linear infinite;
  -o-animation: rotating 8s linear infinite;
  animation: rotating 8s linear infinite;
}
.clientesListRow .col-lg-2 {
  width: 12.5%;
}
.nuestraAmbicion-section {
  border-radius: 0 108px 0 0;
}
.flex-nuestraAmbicion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}
.container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.img-fluid {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.container-fluid.flotante {
  position: absolute;
  z-index: 0;
  min-height: max-content;
  height: auto;
  display: flex;
}
.container-fluid.flotante .img-fluid {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  min-height: auto;
}
.experience.numerosNosotras {
  border-radius: 0;
  padding: 80px 0;
  color: #FFFFFF;
}
.numerosNosotras.gradient {
  background: #009B92;
  background: -webkit-linear-gradient(90deg, rgba(0, 155, 146, 1) 0%, rgba(0, 174, 163, 1) 74%, rgba(57, 205, 150, 1) 100%);
  background: -moz-linear-gradient(90deg, rgba(0, 155, 146, 1) 0%, rgba(0, 174, 163, 1) 74%, rgba(57, 205, 150, 1) 100%);
  background: linear-gradient(90deg, rgba(0, 155, 146, 1) 0%, rgba(0, 174, 163, 1) 74%, rgba(57, 205, 150, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#39CD96", endColorstr="#009B92", GradientType=0);
}
.breadcrumbs-section {
  position: relative;
  top: 80px;
  padding: 15px 0;
  z-index: 10;
  height: 54px;
  overflow: hidden;
}
.imago-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 54px;
  background: url("../img/Imago-m.svg");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .1;
}
.flex-breadcrumbs span {
  width: 16px;
  position: relative;
  display: block;
  height: auto;
}
.flex-breadcrumbs span svg {
  width: 12px;
  height: auto;
}
.flex-breadcrumbs {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 18px;
}
.flex-breadcrumbs a.breadcrumbs-text {
  font-family: "Oxanium", sans-serif;
  font-weight: 400;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  margin: 3px 0 0;
}
.flex-breadcrumbs a.breadcrumbs-text.activo {
  font-family: "oxygen-bold", sans-serif;
  font-weight: 500;
  text-transform: none;
  font-size: 18px;
  margin: 3px 0 0;
}
.nosotros.nuestrosValores {
  background: none;
}
.Ini-section {
  margin: 80px 0 0;
  overflow-y: visible;
  height: auto;
  z-index: 2;
  background: #FFFFFF;
}
.Ini-section.serviciosIni {
  background: none;
}
.fondo-servicios {
  overflow-y: visible;
  background: url(../img/bg2b.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.Ini-section.serviciosIni {
  background-size: contain;
}
.Ini-section.nosotrosIni p strong {
  font-size: 20px;
}
.Ini-section.nosotrosIni p {
  font-size: 18px;
}
.nosotrosIni-imgColumn {
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
}
.nosotrosIniRow {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  height: calc(100vh - 135px);
  height: calc(100svh - 135px);
  overflow-y: visible;
}
.nosotrosIniRow .cabezal-section {
  margin: 0 0 24px;
}
.img-NosotrosIni {
  width: auto;
  height: calc(100vh - 146px);
  object-fit: cover;
  position: relative;
  top: 60px;
}
.serviciosIni-txtColumn p {
  font-size: 18px;
}
#swiperEquipo .equipo-card-wrapper {
  opacity: .4;
}
#swiperEquipo .card-equipo-detalle {
  aspect-ratio: 9 / 12;
  position: relative;
  border: 1px solid rgba(166, 138, 107, .4);
  border-radius: 12px;
  overflow: hidden;
  transition: all ease-in-out .3s;
}
#swiperEquipo .equipo-card-wrapper .plus {
  position: absolute;
  right: 10px;
  top: 10px;
  background: #FFFFFF;
  border-radius: 25rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all ease-in-out .4s;
}
#swiperEquipo .equipo-card-wrapper .plus img {
  width: 17px;
  height: auto;
}
#swiperEquipo .equipo-card-wrapper .equipo-img {
  position: relative;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
  transition: all ease-in-out .3s;
}
#swiperEquipo .slider-activo .card-equipo-detalle {
  border-radius: 12px 42px 12px 12px;
  transition: all ease-in-out .6s;
}
#swiperEquipo .slider-activo .equipo-card-wrapper .equipo-img {
  position: relative;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
  transition: all ease-in-out .3s;
}
#swiperEquipo .slider-activo .equipo-card-wrapper {
  opacity: 1;
  transition: all ease-in-out .4s;
}
#swiperEquipo .slider-activo .equipo-card-wrapper .plus {
  right: 24px;
  top: 24px;
  width: 30px;
  height: 30px;
  opacity: 1;
  transition: all ease-in-out .6s;
}
#swiperEquipo .equipo-card-wrapper h5 {
  font-size: 21px;
  line-height: 1.3em;
  font-weight: 500;
  position: absolute;
  bottom: 0;
  left: 30px;
  margin: 0;
  opacity: 0;
  color: #FFFFFF;
  transition: all ease-in-out .4s;
  z-index: 2;
}
#swiperEquipo .slider-activo .equipo-card-wrapper h5 {
  color: #FFFFFF;
  position: absolute;
  bottom: 30px;
  left: 30px;
  margin: 0;
  opacity: 1;
  transition: all ease-in-out .6s;
}
#swiperEquipo .equipo-card-wrapper .overlay-bottom-equipo {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #000000;
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
  z-index: 0;
  opacity: 0;
  transition: all ease-in-out .3s;
}
#swiperEquipo .slider-activo .equipo-card-wrapper .overlay-bottom-equipo {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 140px;
  opacity: 1;
  transition: all ease-in-out .3s;
}
#swiperEquipo.swiper {
  width: 130%;
  height: 100%;
  overflow: hidden;
  max-width: 190%;
  margin-right: -30%;
}
#swiperEquipo .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
#swiperEquipo .equipo-card-wrapper h4 {
  font-family: "Oxanium", sans-serif;
  margin: 30px 0 0;
  font-weight: 600;
  font-size: 21px;
}
#swiperEquipo .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-nav-group.nav-full {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
  margin: 0 0 40px;
  position: relative;
  bottom: 0;
  right: 0;
  width: 100%;
  justify-content: space-between;
}
.slider-nav-group.nav-full.marB5 {
  margin: 0 0 5px;
}
.experience-text.fullV {
  flex: 1;
  max-width: 550px;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
}
.slider-nav-group.nav-full .text-nav-group {
  margin-right: 0;
  opacity: .4;
}
.slider-nav-group.nav-full .grupo-arrows {
  display: flex;
  align-items: center;
  gap: 12px;
}
.slider-nav-group.nav-full .text-nav-group {
  width: auto;
  min-width: max-content;
}
.slider-nav-group.nav-full .linea {
  width: 100%;
  height: 1px;
  background: #FFFFFF;
  opacity: .4;
}
.slider-nav-group.nav-full .prev-equipo svg, .slider-nav-group.nav-full .next-equipo svg {
  fill: #FFFFFF;
}
.clientesList-section {
  border-radius: 0 0 0 108px;
  padding: 80px 0;
  background: #fef8eb;
  overflow: hidden;
  position: relative;
}
.clientesList-section .container {
  mix-blend-mode: multiply;
}
.clienteLogo img {
  mix-blend-mode: multiply;
  opacity: .85;
}
.clientesList-section .textura {
  border-radius: 0 0 0 108px;
  overflow: hidden;
}
.clienteCategory {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  min-width: max-content;
  margin-bottom: 20px;
}
.clienteCategory .categoria {
  display: inline-flex;
  width: auto;
  min-width: max-content;
  margin-right: 24px;
  font-size: 20px;
  font-weight: 600;
}
.clienteCategory .line {
  height: 1px;
  position: relative;
  display: inline-flex;
  width: 100%;
  background: #A78B6B;
  opacity: .4;
}
.clientesListRow {
  margin-bottom: 40px;
}
.clientesListRow:last-child {
  margin-bottom: 0;
}
.hero.heroProyectos {
  height: calc(100vh - 53px);
  height: calc(100svh - 53px);
}
.proyectosList-section-wrapper {
  background: #000000;
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 1) 50%, rgba(0, 174, 163, 1) 50%);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 1) 50%, rgba(0, 174, 163, 1) 50%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 50%, rgba(0, 174, 163, 1) 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#00AEA3", GradientType=0);
}
.proyectosList-section {
  border-radius: 0 108px 0 108px;
  padding: 80px 0 100px;
}
.filtrosRow {
  padding: 24px 0 24px;
}
a.cardProyecto {
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  transition: all ease-in-out .3s;
}
a.cardProyecto .proyectoImg {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 12;
  position: relative;
  z-index: 0;
  transition-delay: .4s;
}
a.cardProyecto h2 {
  max-width: 85%;
  font-family: "Oxygen", sans-serif;
  position: absolute;
  top: auto;
  left: 24px;
  bottom: 0;
  text-decoration: none;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1em;
  margin: 0;
  color: #FFFFFF;
  z-index: 2;
  opacity: 0;
  transition: all ease-in-out .4s;
}
.row.listadoProyectosRow {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  margin-right: -12px !important;
  margin-left: -12px !important;
}
a.cardProyecto .overlay-bottom-proyecto {
  position: absolute;
  top: auto;
  left: 0;
  bottom: -100px;
  width: 100%;
  height: 100px;
  background: #000000;
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
  z-index: 1;
  opacity: 1;
  transition: all ease-in-out .4s;
}
a.cardProyecto .plus {
  position: absolute;
  right: 0;
  top: 0;
  background: #FFFFFF;
  border-radius: 25rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 2;
  transform: scale(20%);
  transition: all ease-in-out .4s;
}
a.cardProyecto .plus img {
  width: 16px;
  height: auto;
}
a.cardProyecto:hover {
  border-radius: 12px 36px 12px 12px;
  transition: all ease-in-out .4s;
}
a.cardProyecto:hover .plus {
  right: 24px;
  top: 24px;
  opacity: 1;
  transform: scale(100%);
  transition: all ease-in-out .4s;
}
a.cardProyecto:hover h2 {
  bottom: 24px;
  opacity: 1;
  transition: all ease-in-out .4s;
  transition-delay: .2s;
}
a.cardProyecto:hover .overlay-bottom-proyecto {
  bottom: 0;
  opacity: 1;
  transition: all ease-in-out .5s;
}
.ServiciosIniRow {
  padding: 0;
}
.hero-text {
  position: relative;
  bottom: 0;
  margin: 0 0 100px;
  width: 100%;
}
.PAmpliado .hero-text {
  position: relative;
  bottom: 0;
  margin: 0;
}
/*
.container-servicio {
  min-height: calc(100vh - 144px);
  min-height: calc(100svh - 144px);
  display: flex;
  align-items: center;
}*/
.container-servicio {
  height: auto;
  display: flex;
  align-items: center;
}
.ServiciosIniRow .cabezal-section {
  margin: 0 0 24px;
}
/*.serviciosIni-txtColumn {
  padding: 80px 0;
}*/
.ServiciosIniRow {
  padding: 80px 0;
}
.imgServicioList {
  object-fit: cover;
  aspect-ratio: 16 / 7;
  position: relative;
  z-index: 0;
  width: 100%;
}
.wrapperImgServicios {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 36px;
}
.overlay-corner {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .7;
  background: #000000;
  background: -webkit-linear-gradient(145deg, rgba(0, 0, 0, 1) 4%, rgba(0, 0, 0, 0) 41%);
  background: -moz-linear-gradient(145deg, rgba(0, 0, 0, 1) 4%, rgba(0, 0, 0, 0) 41%);
  background: linear-gradient(145deg, rgba(0, 0, 0, 1) 4%, rgba(0, 0, 0, 0) 41%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
  z-index: 1;
  width: 100%;
  height: 100%;
}
.numberServiciosCard {
  position: absolute;
  z-index: 2;
  font-weight: 700;
  font-family: "Oxanium", sans-serif;
  color: #FFFFFF;
  font-size: 42px;
  top: 30px;
  left: 30px;
  line-height: 1;
}
.card-servicios h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 30px;
}
.card-servicios h2 span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2em;
  font-family: "Oxanium", sans-serif;
  color: #00AEA3;
}
.serviciosList {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 80px;
}
.sustentabilidadIniRow {
  padding: 80px 0 0;
}
.sliderProyectosSustentables .slider-nav-group.nav-full .linea {
  background: #A78B6B;
}
.sliderProyectosSustentables .secondary-btn {
  min-width: max-content;
}
.sustentabilidadIniRow .cabezal-section {
  margin-bottom: 24px;
}
.componenteRight {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.group-arrowS {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.SustentabilidadParrafo {
  margin: 70px 0 0;
}
.SustentabilidadParrafo p {
  font-size: 18px;
}
.Ini-section.sustentabilidadIni {
  background: #FDF5E3;
}
.texturaSutentabilidad {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  z-index: 0;
}
.sustentabilidadIni .container {
  z-index: 2;
}
.sustentabilidadIni .overlay-sustentabilidad {
  height: 230px;
}
.sustentabilidadIni .sustentabilidad-stats {
  border-radius: 68px 44px 12px 68px;
  max-width: 50%;
  float: right;
}
.sustentabilidadIni .stat-icon {
  margin-bottom: 0;
  display: block;
  position: absolute;
  right: -25px;
  top: -65px;
}
.sustentabilidadIni .stat-icon img {
  width: 150px;
}
.sustentabilidadIni .paddingCard {
  padding: 14px 38px 38px 38px !important;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  float: left;
}
.pSustentables-card-Image {
  border-radius: 36px 36px 0 0;
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
}
.pSustentables-card-Image .plusIconWrapper {
  transition: all ease-in-out .4s;
  opacity: 0;
}
.pSustentables-card-Image:hover .plusIconWrapper {
  transition: all ease-in-out .4s;
  opacity: 1;
}
.plusIconWrapper {
  position: absolute;
  width: 80px;
  height: 80px;
  background: #FFF;
  top: 50%;
  left: 50%;
  margin: -40px 0 0 -40px;
  border-radius: 25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.plusIconWrapper img {
  width: 40px;
  height: auto;
}
.sustentabilidadIni .recorte {
  position: relative;
  z-index: -1;
  overflow: hidden;
}
.recorte {
  position: relative;
  z-index: -1;
  max-width: 100vw;
  overflow-x: hidden;
}
.sustentabilidadIni .container-sus-img {
  overflow: visible;
}
.pSustentables-img {
  aspect-ratio: 16 / 6;
}
.gestionResiduosIni {
  padding: 80px 0;
}
.gestionResiduosIni .video {
  margin: 10px 0 0;
  background: #000000;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  border-radius: 36px;
}
.gestionResiduosIni .video video {
  border-radius: 24px;
}
.pSustentables-info {
  height: 260px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  border-radius: 0 0 36px 36px;
  background: #FFFFFF;
  position: relative;
  z-index: 1;
}
.pSustentable-statInfo {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.pSustentable-statInfo .stat {
  width: 50%;
}
.pSustentables-info .stat-label {
  color: #000000;
}
.sliderProyectosSustentables .container {
  position: relative;
  z-index: 2;
  padding: 0 0 100px;
}
.texturaWrapper {
  background: #01aea3;
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 280px;
}
.texturaBG {
  background: #fef8eb;
  position: absolute;
  width: 100%;
  height: 360px;
  bottom: 0;
  left: 0;
  z-index: 0;
  border-radius: 0 0 0 108px;
  overflow: hidden;
}
.texturaBG .texturaInner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
#swiperProyectosSustentables .pSustentables-card-wrapper {
  opacity: .4;
  transition: all ease-in-out .6s;
}
#swiperProyectosSustentables .slider-activo .pSustentables-card-wrapper {
  opacity: 1;
  transition: all ease-in-out .6s;
}
.heroImageContent {
  background-position: top center !important;
  background-size: cover !important;
  width: 100%;
  height: 100%;
}
.stats-InfoProyecto .stat-label {
  color: #000000;
}
.flex-stat {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.columnTitulo {
  padding: 0 50px 0 0;
}
.stats-InfoProyecto {
  padding: 80px 0;
}
.stat.alcance {
  width: 50%;
}
.stat-value.strongValue {
  font-weight: 600;
}
.rowInfoDestacado {
  padding: 0 0 80px;
}
.sectionAmpliadoBG {
  background: #000000;
}
.datosProyectoAmpliado {
  border-radius: 0 108px 0 0;
  background: #FFFFFF;
}
.sliderGaleria {
  position: relative;
  top: -1px;
  background: #FFFFFF;
}
#swiperGaleria .galeria-card-wrapper {
  opacity: .4;
  transition: all ease-in-out .6s;
}
#swiperGaleria .slider-activo .galeria-card-wrapper {
  opacity: 1;
  transition: all ease-in-out .6s;
}
.galeria-card-Image {
  border-radius: 36px;
  overflow: hidden;
}
.galeria-img {
  aspect-ratio: 16 / 8;
  object-fit: cover;
}
.accordionWrapper {
  background: #01aea3;
}
.contactoWrapper {
  background: #01aea3;
}
.serviciosWrapper {
  background: #01aea3;
}
.contactoIni {
  border-radius: 0 0 0 108px;
  overflow: hidden;
  background: url(../img/bg2b.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.serviciosWrapper-content {
  border-radius: 0 0 0 108px;
  overflow: hidden;
}
.acordionDatosP {
  padding: 80px 0;
  border-radius: 0 0 0 108px;
  overflow: hidden;
}
.acordionDatosP .accordion {
  --bs-accordion-color: #000000;
  --bs-accordion-bg: #FFFFFF;
  --bs-accordion-border-color: none;
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 30px;
  --bs-accordion-btn-color: #000000;
  --bs-accordion-btn-bg: #FFFFFF;
}
.acordionDatosP .accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}
.acordionDatosP .accordion-item {
  border-bottom: 1px solid #D9D9D9;
}
.acordionDatosP .accordion-item:last-child {
  border-bottom: none;
}
.acordionDatosP .accordion-button:not(.collapsed) {
  color: #00aea4;
  background-color: #FFFFFF;
  box-shadow: none;
}
.acordionDatosP .accordion-body {
  padding: 0;
}
.acordionDatosP .accordion-button {
  font-size: 20px;
  font-weight: 600;
}
.acordionDatosP .accordion-button.collapsed::after {
  width: 12px;
  height: 15px;
  margin-left: auto;
  content: "";
  background-image: url(../img/arrowDown.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.acordionDatosP .accordion-button::after {
  width: 12px;
  height: 15px;
  margin-left: auto;
  content: "";
  background-image: url(../img/arrowDownActive.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.listContacto a.stat-value svg {
  width: 16px;
  height: auto;
  padding: 0 0 4px;
  transition: all ease-in-out .3s;
}
.listContacto .stat-value {
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.listContacto a.stat-value {
  color: #00AEA3;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  margin: 0;
}
.listContacto a.stat-value:hover svg {
  transform: rotate(-45deg);
  transition: all ease-in-out .3s;
}
.listContacto {
  margin-top: 50px;
}
.listContacto p {
  margin: 0;
}
.contacto-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contacto-social a {
  display: block;
  width: 26px;
  height: auto;
}
.listContacto .stat {
  margin-bottom: 40px;
}
.contactoIniRow {
  padding: 80px 0;
}
.form-label {
  margin-bottom: 0;
  padding: 0 .75rem;
  color: #000000;
  font-size: 14px;
}
.form-control {
  font-size: 20px;
  border: none;
  padding: 0 8px;
  background: transparent;
  border-bottom: 1px solid #CDC8BE;
  border-radius: 0;
  height: 40px;
  color: #000000;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
  background-color: transparent;
  border-color: none;
  outline: 0;
  box-shadow: none;
}
.form-control.linea {
  font-size: 20px;
  border: none;
  background: transparent;
  border-bottom: 1px solid #CDC8BE;
  border-radius: 0;
  height: 40px;
  color: #191E23;
  padding: 8px;
}
.field-holder .form-label {
  margin-bottom: 0;
  padding: 0 8px;
  color: #000000;
  font-size: 16px;
}
.form-label span, .mensajeLabel span {
  font-size: 82%;
  position: relative;
  top: -4px;
  left: 2px;
}
.field-holder .form-control.linea:focus {
  outline: none;
  box-shadow: none;
}
.field-holder {
  position: relative;
  margin: 24px 0 38px;
}
.field-holder input {
  position: relative;
  z-index: 2;
  background: transparent;
  box-shadow: none;
  outline: none;
}
.field-holder input:hover {
  background: transparent;
}
.field-holder label {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  cursor: text;
  transition: .3s ease-in-out;
}
.field-holder input, .field-holder label {
  width: 100%;
  height: 40px;
  box-shadow: none;
  outline: none;
}
.field-holder label {
  font-family: "Oxanium", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.field-holder input:focus + label, .field-holder input:valid + label {
  top: -30px;
  pointer-events: none;
  transition: .3s ease-in-out;
  box-shadow: none;
  outline: none;
}
.field-holder input:focus, .field-holder input:valid, .field-holder textarea:focus {
  border-color: #A78B6B;
}
input:focus, textarea:focus {
  border-color: #A78B6B;
}
.form-control:focus {
  border-color: #A78B6B;
  outline: 0;
  box-shadow: none;
}
.trusted-by-list {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.rowForm {
  margin-bottom: 20px;
}
.msj-error {
  display: none;
}
.flexForm-end {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 0 0;
}
.flexForm-end p {
  font-size: 13px;
}
textarea.form-control {
  height: auto;
  min-height: 193px;
  field-sizing: content;
}
label.mensajeLabel {
  font-family: "Oxanium", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  margin-bottom: 0;
  padding: 36px 8px 0;
  color: #000000;
  font-size: 16px;
}
.contactoIni-txtColumn .cabezal-section {
  margin: 0 0 24px;
}
.pSustentables-card-Image .titularSliderGaleria {
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-items: baseline;
  bottom: 36px;
  margin: 0;
  padding: 0 50px;
  z-index: 3;
  width: 100%;
  justify-content: space-between;
}
.galeria-card-wrapper .titularSliderGaleria {
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-items: baseline;
  bottom: 36px;
  margin: 0;
  padding: 0 50px;
  z-index: 3;
  width: 100%;
  justify-content: center;
}
.galeria-card-wrapper .overlay-black-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background: #000000;
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
  z-index: 2;
}
.swiper-pagination-galeria {
  gap: 8px;
  display: flex;
}
.pSustentables-card-Image .titularSlider {
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-items: baseline;
  bottom: 36px;
  margin: 0;
  padding: 0 50px;
  z-index: 3;
  width: 100%;
  justify-content: space-between;
}
.pSustentables-card-Image .titularSlider h2 {
  margin: 0;
  color: #FFF;
}
.swiper-pagination-pSustentables {
  gap: 8px;
  display: flex;
}
.pSustentables-card-Image .overlay-black-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: #000000;
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
  z-index: 2;
}
.stat-card-sustentabilidad .stats-wrapper {
  width: 100%;
  padding-left: 18px;
}
.todoImagen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
}
.img-heroSlider {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  max-width: 100vw;
}
.swiper-slide {
  flex-shrink: 0;
  max-width: 100%;
  width: 100%;
  position: relative;
}
.heroContenido {
  position: relative;
  bottom: 0;
  left: 0;
  width: 90%;
  max-width: 1480px;
  margin: auto;
  height: 100svh;
}
.stat-card-sustentabilidadRight .stats-wrapper {
  width: 100%;
}
.sustentabilidadIni .sustentabilidad-stats {
  margin: 0 0 20px !important;
}
.containerH {
  display: none;
}
.container-fluid.flotante .col-md-5 {
  width: 45%;
}
.flex-nuestraAmbicion {
  min-height: 450px;
}
.menu-mobile {
  background: #009B92;
  background: -webkit-linear-gradient(195deg, rgba(0, 155, 146, 1) 9%, rgba(0, 155, 146, 1) 53%, rgba(0, 208, 163, 1) 95%);
  background: -moz-linear-gradient(195deg, rgba(0, 155, 146, 1) 9%, rgba(0, 155, 146, 1) 53%, rgba(0, 208, 163, 1) 95%);
  background: linear-gradient(195deg, rgba(0, 155, 146, 1) 9%, rgba(0, 155, 146, 1) 53%, rgba(0, 208, 163, 1) 95%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#009B92", endColorstr="#00D0A3", GradientType=0);
}
.menu-mobile .logo-mobile-menu {
  width: 150px;
  display: none;
}
.offcanvas.offcanvas-end.menu-mobile {
  width: 100%;
  max-width: 430px;
  border: none;
}
.menu-mobile .offcanvas-header {
  padding: 20px 40px;
  height: 80px;
}
.menu-mobile .offcanvas-body {
  padding: 40px;
  overflow-y: scroll;	
}
.menu-mobile ul {
  margin-top: 0;
  margin-bottom: 1rem;
  margin: 0;
  padding: 0;
  min-width: 100%;
}
.menu-mobile ul li {
  list-style: none;
}
.menu-mobile ul li a {
  color: #FFF;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #FFFFFF50;
  font-size: 18px;
  font-weight: 600;
}
.menu-mobile ul li a span svg {
  width: 15px;
  padding-left: 2px;
  height: auto;
  fill: #FFFFFF75;
  transform: rotate(-45deg);
  transition: all .3s ease-in-out;
}
.menu-mobile .btn-close {
  opacity: 1;
}
.botonCV {
  display: block;
  color: #FFF;
  text-decoration: none;
}
.equipoCV {
  background: #009B92;
  background: -webkit-linear-gradient(320deg, rgba(0, 155, 146, 1) 9%, rgba(0, 155, 146, 1) 53%, rgba(0, 208, 163, 1) 95%);
  background: -moz-linear-gradient(320deg, rgba(0, 155, 146, 1) 9%, rgba(0, 155, 146, 1) 53%, rgba(0, 208, 163, 1) 95%);
  background: linear-gradient(320deg, rgba(0, 155, 146, 1) 9%, rgba(0, 155, 146, 1) 53%, rgba(0, 208, 163, 1) 95%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#009B92", endColorstr="#00D0A3", GradientType=0);
}
.offcanvas.offcanvas-start.equipoCV {
  width: 100%;
  max-width: 920px;
  border: none;
  border-radius: 0 44px 0 0;
}
.equipoCV .offcanvas-header {
  padding: 20px 40px;
  height: 80px;
}
.equipoCV .offcanvas-body {
  padding: 0 40px 40px;
}
.equipoCV .btn-close {
  opacity: 1;
}
.headerCV {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 24px;
}
.headerCV .tituloSegundo {
  font-size: 32px;
  font-family: "Oxanium", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1em;
  margin: 14px 0 0;
}
.headerCV .tituloSegundo span {
  display: block;
  font-family: "Oxygen", sans-serif;
  text-transform: none;
  font-weight: 500;
  font-size: 20px;
  line-height: 1em;
}
.circular-img {
  overflow: hidden;
  border-radius: 25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #FFFFFF;
  width: 120px;
  height: 120px;
}
.circular-img img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
.bodyCV {
  margin: 28px 0 0;
}
.bodyCV p {
  font-size: 15px;
  line-height: 1.4em;
  margin: 14px 0 0;
  color: #FFFFFF;
}
.filtros-offcanvas {
  background: #FFFFFF;
}
.offcanvas.offcanvas-start.filtros-offcanvas {
  width: 100%;
  max-width: 800px;
  border: none;
  border-radius: 0 44px 0 0;
}
.filtros-offcanvas .offcanvas-header {
  padding: 20px 40px;
  height: 80px;
}
.filtros-offcanvas .offcanvas-body {
  padding: 0 40px 40px;
}
.filtros-offcanvas .btn-close {
  opacity: 1;
}
.bodyFiltros {
  margin: 0;
}
.bodyFiltros .cabezal-section {
  margin: 0 0 30px;
}
.opacidad {
  opacity: .75;
}
.flex-breadcrumbs .volver {
  display: none;
}
.check-item {
  padding: 20px 0;
  border-bottom: 1px solid #D9D9D9;
  text-decoration: none;
  color: #000000;
  display: block;
}
.check-item:last-child {
  border-bottom: none;
}
.form-check {
  display: flex;
  min-height: auto;
  padding-left: 0;
  margin-bottom: 0;
  align-items: center;
}
.check {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid #D9D9D9;
  margin-right: 13px;
}
.innerCheck {
  background: #00D0A3;
  border: 4px solid #FFFFFF;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  opacity: 0;
  transition: all ease-in-out .4s;
}
.check-item .labelCheck {
  color: #000000;
  font-size: 16px;
  width: calc(100% - 37px);
  display: flex;
  transition: all ease-in-out .4s;
}
.check-item:hover .labelCheck, .check-item:focus .labelCheck {
  color: #00AEA3;
  transition: all ease-in-out .4s;
}
.check-item.active .labelCheck {
  color: #00AEA3;
}
.check-item.active .check {
  border: 1px solid #00AEA3;
  transition: all ease-in-out .4s;
}
.check-item.active .innerCheck {
  opacity: 1;
  transition: all ease-in-out .4s;
}
.checks-wrappers {
  margin: 0 0 30px;
}
.muestroFiltros {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 0 16px;
}
.filtrosAmplicadosTitulo {
  color: #00AEA3;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1em;
  width: auto;
  font-weight: 600;
  margin: 7px 0;
}
.filtrosAmplicadosBotones {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: auto;
  flex-wrap: wrap;
  max-width: calc(100% - 170px);
}
.filtroButton {
  font-size: 12px;
  color: #01aea3;
  border: 1px solid #01aea3;
  border-radius: 25rem;
  padding: 3px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: auto;
}
.filtroButton span {
  width: 9px;
  height: auto;
  display: flex;
}
.filtroButton span img {
  width: 100%;
  height: auto;
}
.fotoEquipoNosotros {
  display: none;
}
.colImageAmbicion {
  padding: 0 5% 0 0;
}
.colImageAmbicion .img-fluid {
  max-width: auto;
  width: auto;
  height: 100%;
  object-fit: cover;
}
.PAmpliado .hero-principal-wrapper {
  max-width: 100%;
  bottom: 80px;
}
#swiperHeroHome .swiper-slide {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
}
#swiperHeroProyectos .swiper-slide {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
}
.horizontal-scroll {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.horizontal-scroll img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.horizontal-scroll .rowScrollH {
  display: flex;
  width: 100%;
  height: calc(100% / 2);
  overflow: hidden;
}
.horizontal-scroll .direction, .horizontal-scroll .opposite-direction {
  display: flex;
  will-change: transform;
}
.horizontal-scroll .frame {
  flex: 0 0 25%;
  height: 100%;
  padding: 0;
}
.serviciosIni {
  width: 100%;
}
.servicios-container {
  display: flex;
  align-items: flex-start;
  max-width: 1480px;
  width: 90%;
  margin: 0 auto;
  min-height: 100%;
}
.serviciosIni-txtColumn {
  position: sticky;
  top: 74px;
  flex: 0 0 32%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 80px 0 0;
  z-index: 10;
  align-items: flex-start;
}
.serviciosList {
  flex: 1;
  position: relative;
  overflow: hidden;
  padding: 80px 0 80px 5%;
}
.container-servicio {
  position: relative;
  border-radius: 12px;
  box-shadow: none;
  height: auto;
  min-height: auto;
  padding: 0;
}
#espacio-header {
  width: 100%;
  height: 134px;
  /* este es el alto del offset */
  background-color: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  position: fixed;
  top: 134px;
  left: 0;
  z-index: 0;
}
.texturaNosotros {
  background: url("../img/bg2b.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  height: calc(100svh - 134px);
  inset: 0;
  z-index: -1;
  mix-blend-mode: multiply;
}
.texturaNosotros2 {
  background: url("../img/bg2b.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  height: calc(100svh - 134px);
  inset: 0;
  z-index: 3;
  mix-blend-mode: multiply;
}
.mask {
  height: 100%;
  width: 100%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: screen;
  position: relative;
  z-index: 1;
  padding: 15%;
}
#imagenDeMascara {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.imagenEnmascarada {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 74%;
  height: 74%;
  object-fit: cover;
}
/* 1. Define los fotogramas clave */
.imagenEnmascarada {
  position: fixed;
  z-index: -1;
  inset: 0 0 0 50%;
  width: 74%;
  height: 100%;
  object-fit: cover;
  margin: 0 0 0 -37%;
}
@keyframes mover-horizontal {
  from {
    scale: 74%;
    transition: all ease-in-out 1s;
  }
  to {
    scale: 100%;
    transition: all ease-in-out 1s;
  }
}
/* 2. Aplica la animación al elemento */
.imagenEnmascarada {
  animation-name: mover-horizontal;
  /* Nombre de la animación */
  animation-duration: 10s;
  /* Duración de la animación */
  animation-iteration-count: infinite;
  /* Repetir la animación indefinidamente */
  /* animation-direction: alternate; */
  /* Descomenta esto para que vaya y vuelva */
  animation-direction: alternate;
}
.serviciosIniWrapper {
  background: #01aea3;
}
.Ini-section.serviciosIni {
  border-radius: 0 0 0 108px;
  background: #FFFFFF;
  overflow: hidden;
}
.header.fixed.homeHeader {
  top: -100%;
  transition: top .8s ease;
}
.header.fixed.homeHeader.header-visible {
    top: 0;
}
.nosotrosIni .nosotrosIni-txtColumn {
    padding: 80px 0 !important;
  }
/* Responsive Design */
@media (max-width: 1580px) {
  .serviciosIni-txtColumn {
    flex: 0 0 35%;
  }
  .nosotrosIniRow {
    height: auto;
  }
  .nosotrosIniRow {
	  height: auto;
	}	
}
@media (max-width: 1480px) {
  .flex-nuestraAmbicion {
    min-height: auto;
  }
  .badge-circle {
    width: 130px;
    height: 130px;
  }
  .hero-text p {
    font-size: 17px;
  }
  .img-NosotrosIni {
    width: auto;
    height: calc(98vh - 146px);
    object-fit: cover;
    position: relative;
    top: 60px;
  }
  .Ini-section.nosotrosIni p {
    font-size: 18px;
    max-width: 500px;
  }
  .circle-fade {
    width: 60%;
    height: 60%;
    bottom: -30%;
  }
  textarea.form-control {
    min-height: 183px;
  }
  .nuestraAmbicion-section .container {
    width: 100%;
    max-width: 100%;
  }
  .flex-nuestraAmbicion {
    padding-right: 5% !important;
  }
  .datosProyectoAmpliado .stat.clienteName {
    max-width: 195px;
  }
.BGfijo {
        background: url(../img/bg2b.png);
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
        position: fixed;
        z-index: -1;
    }
}
@media (max-width: 1280px) {
  .logo {
    width: 160px;
  }
  .position-sello {
    top: 156px;
  }
  .badge-circle {
    width: 110px;
    height: 110px;
  }
  .nav-menu a {
    font-size: 12px;
  }
  .secondary-btn {
    font-size: 12px;
  }
  .primary-btn {
    font-size: 14px;
  }
  .primary-btn span {
    width: 30px;
    height: 30px;
  }
  .hero-text p {
    font-size: 17px;
  }
  p {
    font-size: 15px;
  }
  .tituloCuarto {
    font-size: 14px;
    padding: 2px 0 0;
  }
  .cabezal-section {
    gap: 10px;
  }
  .cabezal-section .nav-arrow {
    width: 14px;
  }
  .cabezal-section .nav-arrow svg {
    width: 14px;
  }
  .circle-fade {
    width: 50vw;
    height: 50vw;
    bottom: -25vw;
  }
  .stat-number {
    font-size: 3rem;
    margin: 0 0 8px;
  }
  .stat-card {
    padding: 28px;
  }
  .stat-label-exp {
    font-size: 16px;
  }
  .stat-icon img {
    width: 28px;
  }
  .experience-text p {
    font-size: 15px;
  }
  .text-nav-group {
    font-size: 12px;
  }
  #swiperServicios .service-card-wrapper {
    padding: 28px;
  }
  #swiperServicios .service-card-wrapper .numeroCard {
    font-size: 34px;
  }
  #swiperServicios .slider-activo .service-card-wrapper .numeroCard {
    font-size: 50px;
  }
  #swiperServicios .service-card-wrapper h5 {
    font-size: 18px;
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
  }
  #swiperServicios .service-card-wrapper h5 span {
    font-size: 15px;
  }
  .services-header {
    margin: 0 auto 40px;
  }
  .slider-nav-group {
    margin: 4px;
    bottom: -20px;
  }
  .clientes {
    padding: 100px 0;
  }
  .footer-section p.direccion {
    font-size: 16px;
  }
  .footer-section a {
    font-size: 16px;
  }
  .footer-section a.direccion {
    font-size: 14px;
  }
  .footer-section h4 {
    margin-bottom: 12px;
  }
  .footer-main p.titleFooter {
    font-size: 18px;
  }
  .footer-main p {
    font-size: 13px;
  }
  .footer-copyright p {
    font-size: 12px;
  }
  .footer-links {
    gap: 20px;
  }
  .Ini-section.nosotrosIni p strong {
    font-size: 21px;
  }
  .Ini-section.nosotrosIni p {
    font-size: 17px;
    max-width: 490px;
  }
  .nuestrosValores .context {
    padding: 74px 0 0;
  }
  #swiperEquipo .equipo-card-wrapper h4 {
    font-size: 21px;
  }
  #swiperEquipo .equipo-card-wrapper h5 {
    font-size: 17px;
  }
  #swiperEquipo .slider-activo .equipo-card-wrapper .plus {
    right: 26px;
    top: 26px;
  }
  .stats-InfoProyecto .stat-value br {
    display: none;
  }
  .SustentabilidadParrafo {
    margin: 0 0 0;
  }
  #espacio-header {
    height: 114px;
    /* este es el alto del offset */
  }
  #swiperEquipo .slider-activo .equipo-card-wrapper h5 {
    bottom: 24px;
    left: 24px;
    right: 24px;
  }
  #swiperEquipo .slider-activo .equipo-card-wrapper .plus {
    right: 24px;
    top: 24px;
    width: 28px;
    height: 28px;
  }
  .datosProyectoAmpliado .flex-stat {
	display: flex;
	justify-content: space-between;
	gap: 50px;
	flex-wrap: wrap;
  }
  .stat.alcance {
	width: auto;
  }	
  .datosProyectoAmpliado .stat.clienteName {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .rowInfoDestacado .tituloSegundo {
    margin: 0 0 38px !important;
  }
  .primary-btn {
    font-size: 13px;
    padding: 6px 6px 6px 18px;
  }
  .primary-btn span {
    width: 24px;
    height: 24px;
  }
  .secondary-btn {
    padding: 6px 14px 6px 14px;
    font-size: 12px;
  }
  .nav-menu {
    gap: 24px;
  }
  .nav-menu a {
    font-size: 11px;
  }
  .prev-hero span, .next-hero span {
    font-size: 11px;
  }
  .text-nav-group {
    font-size: 11px;
  }
}
@media (max-width: 1024px) {
  .header {
    padding: 30px 0;
  }
  .logo {
    width: 150px;
  }
  .push {
    gap: 8%;
  }
  .hero-info-wrapper {
    padding-bottom: 34px;
  }
  .hero-navigation {
    padding: 30px 0;
  }
  .stat-label-exp {
    font-size: 13px;
  }
  .paddingCard {
    padding: 0 24px 0 0 !important;
  }
  .sustentabilidad-stats {
    border-radius: 48px 34px 12px 48px;
  }
  .stat-card-sustentabilidad {
    border-radius: 24px 24px 0 24px;
  }
  .stat-card {
    padding: 24px;
  }
  #swiperServicios .service-card-wrapper {
    padding: 20px;
  }
  #swiperServicios .service-card-wrapper h5 {
    left: 20px;
    right: 20px;
  }
  #swiperServicios .slider-activo .service-card-wrapper {
    border-radius: 12px 38px 12px 12px;
  }
  #swiperServicios .service-card-wrapper .plus {
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
  }
  #swiperServicios .service-card-wrapper .plus img {
    width: 14px;
  }
  #swiperServicios .slider-activo .service-card-wrapper .plus {
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
  }
  .experience {
    border-radius: 0 78px 0 0;
    padding: 60px 0;
  }
  .services {
    padding: 60px 0;
  }
  .clientes {
    padding: 80px 0;
    border-radius: 0 0 0 78px;
  }
  .clientesBg .textura {
    border-radius: 0 0 0 78px;
  }
  .footer {
    padding: 60px 0 20px;
  }
  .footer-logo img {
    width: 220px;
  }
  .footer-logo {
    margin: 60px 0 0;
  }
  .footer-links {
    gap: 20px;
  }
  .footer-links a {
    font-size: 12px;
  }
  .hero-text p {
    font-size: 16px;
  }
  .hero-text p:last-child {
    margin-bottom: 60px;
  }
  .experience-text p {
    font-size: 14px;
  }
  p {
    font-size: 14px;
  }
  .stat-value {
    font-size: 13px;
  }
  .tituloCuarto {
    font-size: 13px;
    padding: 2px 0 0;
  }
  .cabezal-section .nav-arrow svg {
    width: 13px;
  }
  #swiperServicios .service-card-wrapper h5 {
    font-size: 16px;
    bottom: 20px;
  }
  #swiperServicios .service-card-wrapper h5 br {
    display: none;
  }
  #swiperServicios .service-card-wrapper h5 span {
    font-size: 14px;
  }
  #swiperServicios .service-card-wrapper .numeroCard {
    font-size: 28px;
  }
  #swiperServicios .slider-activo .service-card-wrapper .numeroCard {
    font-size: 42px;
  }
  .stat-number {
    font-size: 46px;
  }
  .footer-section h4 {
    font-size: 12px;
  }
  .footer-main p.titleFooter {
    font-size: 17px;
  }
  .footer-copyright {
    padding: 20px 0 0;
  }
  .footer-section a {
    font-size: 14px;
  }
  .footer-section p.direccion {
    font-size: 14px;
  }
  .footer-section a.direccion {
    font-size: 12px;
  }
  .footer-main p {
    font-size: 11px;
  }
  .footer-copyright p {
    font-size: 11px;
  }
  .footer-social a {
    width: 26px;
  }
  .tituloPrimero {
    margin: 0 0 32px;
  }
  .tituloSegundo {
    margin: 18px 0 28px;
  }
  p {
    margin: 0 0 28px;
  }
  .tituloTercero {
    margin: 18px 0 24px;
  }
  .experience {
    overflow: hidden;
  }
  .footer-logo img {
    width: 190px;
  }
  .Ini-section.nosotrosIni p strong {
    font-size: 18px;
  }
  .Ini-section.nosotrosIni p {
    font-size: 16px;
    max-width: 420px;
  }
  .img-NosotrosIni {
    height: calc(96vh - 146px);
    top: 52px;
  }
  #swiperEquipo .equipo-card-wrapper h4 {
    font-size: 18px;
  }
  #swiperEquipo .equipo-card-wrapper h5 {
    font-size: 15px;
  }
  #swiperEquipo .slider-activo .equipo-card-wrapper .plus {
    right: 26px;
    top: 26px;
  }
  .clienteCategory .categoria {
    font-size: 18px;
  }
  .nuestraAmbicion-section {
    border-radius: 0 78px 0 0;
  }
  .clientesList-section {
    border-radius: 0 0 0 78px;
  }
  .clientesList-section .textura {
    border-radius: 0 0 0 78px;
    overflow: hidden;
  }
  .flex-nuestraAmbicion {
    padding: 60px 0;
  }
  .experience.numerosNosotras {
    padding: 60px 0;
  }
  .nuestrosValores .context {
    padding: 40px 0 0;
  }
  .clientesList-section {
    padding: 60px 0;
  }
  .proyectosList-section {
    border-radius: 0 78px 0 78px;
    padding: 60px 0 70px;
  }
  .Ini-section.serviciosIni {
    border-radius: 0 0 0 78px;
  }
  .heroProyectos.PAmpliado .tituloPrimero {
    margin: 0;
  }
  .heroProyectos .hero-principal-wrapper {
    max-width: 50%;
  }
  .stats-InfoProyecto {
    padding: 60px 0;
  }
  .rowInfoDestacado {
    padding: 0 0 60px;
  }
  .acordionDatosP {
    padding: 60px 0;
  }
  .galeria-card-Image {
    border-radius: 24px;
    overflow: hidden;
  }
  .datosProyectoAmpliado {
    border-radius: 0 78px 0 0;
    background: #FFFFFF;
  }
  /*.serviciosIni-txtColumn {
    padding: 60px 0;
  }*/
  .ServiciosIniRow {
    padding: 60px 0;
  }
  .serviciosList {
    gap: 60px;
  }
  .card-servicios h2 {
    margin-bottom: 24px;
  }
  .SustentabilidadParrafo p {
    font-size: 16px;
  }
  .sustentabilidadIniRow {
    padding: 60px 0 0;
  }
  .sustentabilidadIni .sustentabilidad-stats {
    border-radius: 46px 34px 12px 46px;
  }
  .sustentabilidadIni .paddingCard {
    padding: 0px 12px 18px 0px !important;
  }
  .sustentabilidadIni .container-sus-img {
    height: auto;
    padding: 40px 0 60px;
  }
  .gestionResiduosIni {
    padding: 60px 0;
  }
  .gestionResiduosIni .video {
    border-radius: 24px;
  }
  .pSustentables-card-Image {
    border-radius: 24px 24px 0 0;
  }
  .pSustentables-info {
    padding: 0 36px;
    border-radius: 0 0 24px 24px;
  }
  .sliderProyectosSustentables .container {
    padding: 0 0 70px;
  }
  .texturaBG {
    height: 330px;
  }
  .slider-nav-group.nav-full {
    margin: 0 0 30px;
  }
  .contactoIniRow {
    padding: 60px 0;
  }
  .PAmpliado .hero-principal-wrapper {
    margin: 0 0 40px;
  }
  .acordionDatosP {
    border-radius: 0 0 0 78px;
  }
  .serviciosWrapper-content {
    border-radius: 0 0 0 78px;
  }
  .contactoIni {
    border-radius: 0 0 0 78px;
  }
  .texturaBG {
    border-radius: 0 0 0 78px;
  }
  .serviciosIni-txtColumn {
    top: 80px;
    padding: 60px 0 0;
  }
}
@media (max-width: 1024px) and (orientation:portrait) {
  .overlayHero-left {
    display: none;
  }
  .overlayHero-bottom {
    height: 70vh;
    height: 70svh;
  }
  .hero-principal-wrapper {
    max-width: 70%;
  }
  .hero-text p {
    font-size: 18px;
  }
  .hero-text p:last-child {
    margin-bottom: 60px;
  }
  .position-sello {
    top: 154px;
  }
  .badge-circle {
    width: 130px;
    height: 130px;
  }
  .containerV {
    display: none;
  }
  .containerH {
    display: block;
    min-height: auto;
    height: auto;
  }
  .context {
    padding: 60px 0;
    position: relative;
    height: auto;
  }
  .circle-fade {
    display: none;
  }
  .tituloPrimero {
    margin-bottom: 32px;
  }
  .tituloPrimero {
    margin: 0 0 32px;
  }
  .tituloSegundo {
    margin: 18px 0 28px;
  }
  p {
    margin: 0 0 28px;
  }
  .tituloTercero {
    margin: 18px 0 24px;
  }
  .services-header .tituloSegundo {
    margin: 18px 0 28px !important;
  }
  .flex-separador {
    margin: 0 auto 28px;
  }
  .container-sus-img {
    height: auto;
  }
  .Ini-section .nosotrosIniRow {
    height: auto;
  }
  .Ini-section .img-NosotrosIni {
    height: auto;
    top: 50px;
    position: relative;
    width: 100%;
    padding: 0 0 20px;
  }
  .nuestrosValores .context {
    padding: 80px 0;
  }
  .nuestrosValores .tituloSegundo br {
    display: none;
  }
  .slider-nav-group.nav-full.marB5 {
    margin: 0 0 3px;
  }
  .container-servicio {
    min-height: auto;
  }
  .ServiciosIniRow .col-lg-6 {
    width: 100%;
  }
  .heroProyectos .hero-principal-wrapper {
    max-width: 100%;
  }
  .secondary-btn {
    color: rgba(255, 255, 255, 1);
  }
  .datosProyectoAmpliado .flex-stat {
    flex-wrap: wrap;
  }
  .stat.alcance {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .hero-principal-wrapper {
    max-width: 100%;
  }
  .nav-menu {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .experience-stats {
    display: flex;
    gap: 16px;
    padding: 0 24px 0 0;
  }
  #swiperServicios .service-card-wrapper h5 {
    font-size: 21px;
    bottom: 40px;
    left: 40px;
    right: 40px;
  }
  #swiperServicios .service-card-wrapper h5 br {
    display: block;
  }
  #swiperServicios .service-card-wrapper h5 span {
    font-size: 17px;
  }
  #swiperServicios .service-card-wrapper .numeroCard {
    font-size: 36px;
  }
  #swiperServicios .slider-activo .service-card-wrapper .numeroCard {
    font-size: 50px;
  }
  #swiperServicios .service-card-wrapper {
    padding: 40px;
  }
  #swiperServicios .service-card-wrapper .plus {
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
  }
  #swiperServicios .slider-activo .service-card-wrapper .plus {
    width: 50px;
    height: 50px;
    right: 40px;
    top: 40px;
  }
  #swiperServicios .service-card-wrapper .plus img {
    width: 20px;
  }
  #swiperServicios .slider-activo .service-card-wrapper {
    border-radius: 12px 64px 12px 12px;
  }
  .sustentabilidad-stats {
    border-radius: 48px 34px 12px 48px;
    max-width: 50%;
    padding: 16px;
  }
  .stat-card-sustentabilidad {
    border-radius: 28px 28px 0 28px;
  }
  .tituloSegundo br {
    display: none;
  }
  .tituloTercero br {
    display: none;
  }
  .clientes {
    padding: 60px 0 20px;
  }
  .sClientes {
    height: auto;
    position: relative;
    left: auto;
    right: auto;
    top: 0;
    margin: -30px 0 0;
    display: flex;
    align-items: center;
  }
  .footer-links {
    display: none;
  }
  .stat-card {
    aspect-ratio: 16 / 12;
    padding: 40px;
  }
  .stat-icon img {
    width: 38px;
  }
  .experience .stat-label-exp {
    font-size: 16px;
  }
  .experience .stat-number {
    font-size: 66px;
  }
  .experience-content {
    display: flex;
    align-items: flex-start;
  }
  .nosotrosIni .nosotrosIniRow {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    min-height: auto;
    overflow-y: visible;
    flex-direction: column;
  }
  .nosotrosIni .nosotrosIniRow .col-md-6 {
    width: 100%;
  }
  .nosotrosIni .nosotrosIni-txtColumn {
    padding: 60px 0 30px !important;
  }	
  .nosotrosIni-txtColumn .tituloPrimero br {
    display: none;
  }
  .Ini-section.nosotrosIni p {
    font-size: 16px;
    max-width: 100%;
  }
  .Ini-section .img-NosotrosIni {
    height: auto;
    top: 30px;
    position: relative;
    width: 100%;
    padding: 0 0 10px;
    max-width: 560px;
    text-align: center;
    margin: auto;
  }
  .clientesListRow .col-lg-2 {
    width: 16%;
  }
  .rowInfoDestacado .tituloSegundo {
    margin: 0 0 28px !important;
  }
  .stats-InfoProyecto .stat-value {
    font-size: 14px;
  }
  .container-servicio {
    min-height: auto;
  }
  .gestionResiduosIni .tituloSegundo {
    margin: 18px 0 28px !important;
  }
  .sustentabilidadIniRow .tituloPrimero br {
    display: none;
  }
  .badge-circle {
    width: 110px;
    height: 110px;
  }
  .pSustentables-info {
    height: 370px;
    padding: 0 36px;
  }
  .pSustentable-statInfo {
    padding: 0;
  }
  .pSustentable-parrafo {
    padding: 0;
  }
  .texturaBG {
    height: 440px;
  }
  .pSustentable-statInfo .stat {
    margin: 0 0 24px;
  }
  .pSustentables-card-Image .titularSlider {
    bottom: 36px;
    padding: 0 36px;
  }
  .imago-bg {
    width: 60%;
    height: 54px;
    background: url(../img/Imago-m.svg);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .1;
  }
  .breadcrumbs-text {
    display: none;
  }
  .breadcrumbs-text.activo {
    display: flex;
  }
  .flex-breadcrumbs {
    gap: 10px;
  }
  .flex-breadcrumbs span {
    display: none;
  }
  .flex-breadcrumbs .volver {
    display: flex;
  }
  .flex-breadcrumbs .volver span {
    display: block;
  }
  .flex-breadcrumbs .volver span svg {
    transform: rotate(180deg);
  }
  a.cardProyecto {
    border-radius: 12px 36px 12px 12px;
    transition: all ease-in-out .4s;
  }
  a.cardProyecto .plus {
    right: 24px;
    top: 24px;
    opacity: 1;
    transform: scale(100%);
    transition: all ease-in-out .4s;
  }
  a.cardProyecto h2 {
    bottom: 24px;
    opacity: 1;
    transition: all ease-in-out .4s;
    transition-delay: .2s;
  }
  a.cardProyecto .overlay-bottom-proyecto {
    bottom: 0;
    opacity: 1;
    transition: all ease-in-out .5s;
  }
  a.cardProyecto h2 {
    font-size: 20px;
    left: 24px;
    right: 24px;
  }
  .serviciosIni-txtColumn {
    margin: 0 0 60px;
  }
  .serviciosIni-txtColumn p {
    max-width: 100%;
  }
  .servicios-container {
    flex-direction: column;
    align-items: stretch;
  }
  .serviciosIni-txtColumn {
    position: relative;
    height: auto;
    flex: 1 1 100%;
    box-shadow: none;
  }
  .serviciosList {
    overflow: visible;
  }
  .container-servicio {
    min-height: auto;
    border-radius: 8px;
  }
  .serviciosIni-txtColumn {
    top: 0;
    padding: 60px 0 0;
  }
  .serviciosList {
    padding: 0 0 60px;
  }
  .serviciosIni-txtColumn .tituloPrimero br {
    display: none;
  }
  .nosotrosIni-imgColumn {
    margin: 30px 0;
  }
  .mask {
    padding: 0 0 60px;
  }
  .nosotrosIni-imgColumn {
    max-width: 480px;
  }
  .imagenEnmascarada {
    position: fixed;
    z-index: -1;
    inset: 0 0 0 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 0 0 -50%;
  }
  .secondary-btn {
    color: rgba(255, 255, 255, 1);
  }
}
@media (max-width: 768px) {
  .sustainability-content {
    flex-direction: column;
    gap: 40px;
  }
  .experience-content {
    flex-direction: column;
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card.featured {
    grid-row: span 1;
  }
  .solutions-content {
    flex-direction: column;
    gap: 40px;
  }
  .solutions-stat {
    min-width: auto;
    width: 100%;
  }
  .partners-grid {
    justify-content: center;
    gap: 20px;
  }
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  .footer-info {
    flex-direction: column;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
  .container-sus-img {
    height: auto;
    padding: 0 0 80px;
  }
  .sustentabilidad-stats {
    border-radius: 68px 34px 64px 64px;
    max-width: 100%;
    padding: 24px;
  }
  .experience .stat-label-exp {
    font-size: 16px;
  }
  .experience .stat-number {
    font-size: 54px;
  }
  .stat-card-sustentabilidad {
    border-radius: 44px 44px 0 44px;
  }
  .paddingCard {
    padding: 16px 40px 40px 16px !important;
  }
  .gradient {
    background: #009B92;
    background: -webkit-linear-gradient(180deg, rgba(0, 155, 146, 1) 0%, rgba(0, 174, 163, 1) 74%, rgba(57, 205, 150, 1) 100%);
    background: -moz-linear-gradient(180deg, rgba(0, 155, 146, 1) 0%, rgba(0, 174, 163, 1) 74%, rgba(57, 205, 150, 1) 100%);
    background: linear-gradient(180deg, rgba(0, 155, 146, 1) 0%, rgba(0, 174, 163, 1) 74%, rgba(57, 205, 150, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#009B92", endColorstr="#39CD96", GradientType=0);
  }
  .nuestraAmbicion-section {
    display: flex;
    flex-direction: column-reverse;
  }
  .container-fluid.flotante {
    position: relative;
    min-height: auto;
    height: auto;
    width: 100%;
  }
  .container-fluid.flotante .img-fluid {
    max-width: 100%;
    height: auto;
    min-height: auto;
    width: 100%;
  }
  .container-fluid.flotante .col-md-5 {
    width: 100%;
    height: auto;
  }
  .flex-nuestraAmbicion.col-md-6 {
    width: 100%;
  }
  .equipo .col-md-6 {
    width: 100%;
  }
  .equipo .experience-text.fullV {
    max-width: 100%;
  }
  .equipo .slider-nav-group.nav-full.marB5 {
    margin: 14px 0 0;
  }
  .clientesListRow .col-lg-2 {
    width: 25%;
  }
  .datosProyectoAmpliado .flex-stat  {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .stat.alcance {
    width: 100%;
  }
  .stats-InfoProyecto .stat-value br {
    display: none;
  }
  .wrapperImgServicios {
    border-radius: 12px;
    margin-bottom: 24px;
  }
  .sustentabilidadIni .sustentabilidad-stats {
    border-radius: 48px 34px 12px 48px;
    max-width: 100%;
    float: none;
  }
  .gestionResiduosIni .video .ico-player {
    width: 60px;
    height: auto;
  }
  .row.listadoProyectosRow {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
    margin-right: -8px !important;
    margin-left: -8px !important;
  }
  .muestroFiltros {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 0 16px;
    flex-direction: column;
    gap: 10px;
  }
  .filtrosAmplicadosBotones {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .containerH {
    display: block;
  }
  .colImageAmbicion {
    padding: 0;
  }
  .flex-nuestraAmbicion {
    padding-right: 5% !important;
    padding-left: 5% !important;
  }
  .nuestraAmbicionRow {
    display: flex;
    flex-direction: column-reverse;
  }
  .experience-text.fullV {
    justify-content: flex-start;
    height: auto;
  }
  .colImageAmbicion .img-fluid {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .colImageAmbicion {
    width: 100%;
  }
  #swiperEquipo .slider-activo .equipo-card-wrapper h5 {
    bottom: 36px;
    left: 36px;
    right: 36px;
  }
  #swiperEquipo .slider-activo .equipo-card-wrapper .plus {
    right: 36px;
    top: 36px;
    width: 36px;
    height: 36px;
  }
  .datosProyectoAmpliado .stat.clienteName {
    max-width: inherit;
    width: auto;
  }
}
@media (max-width: 680px) {
  .pSustentables-info {
    height: 440px;
    padding: 0 36px;
  }
  .texturaBG {
    height: 510px;
  }
}
@media (max-width: 580px) {
  .gestionResiduosIni .video video {
    border-radius: 15px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .experience-stats {
    flex-direction: column;
    gap: 20px;
  }
  .solutions-stat {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .hero-text p {
    font-size: 17px;
  }
  .hero-text p:last-child {
    margin-bottom: 30px;
  }
  .fStats {
    gap: 30px;
  }
  .tituloPrimero {
    margin: 0 0 24px;
  }
  .position-sello {
    top: 124px;
  }
  .badge-circle {
    width: 100px;
    height: 100px;
  }
  .hero-info-wrapper {
    padding-bottom: 8px;
  }
  p {
    font-size: 15px;
    margin: 0 0 20px;
  }
  .tituloSegundo {
    margin: 10px 0 20px;
  }
  .tituloTercero {
    margin: 10px 0 20px;
  }
  .experience-text p {
    font-size: 15px;
  }
  .stat-icon img {
    width: 24px;
  }
  .stat-card.borderR1 {
    border-radius: 0 10px 0 24px;
    width: 50%;
    aspect-ratio: 16 / 12;
    padding: 20px;
  }
  .stat-card.borderR2 {
    border-radius: 0 24px 0 10px;
    width: 50%;
    aspect-ratio: 16 / 12;
    padding: 20px;
  }
  .experience .stat-number {
    font-size: 36px;
  }
  .experience .stat-label-exp {
    font-size: 13px;
  }
  .experience-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  .context {
    padding: 40px 0;
    position: relative;
    height: auto;
  }
  .experience {
    padding: 40px 0;
    border-radius: 0 48px 0 0;
  }
  .tituloSegundo br {
    display: block;
  }
  .services-header {
    margin: 0 auto 60px;
  }
  .sustentabilidad .services-header {
    margin: 0 auto;
  }
  .slider-nav-group {
    bottom: -40px;
  }
  .services {
    padding: 40px 0;
  }
  .flex-separador {
    margin: 0 auto 10px;
  }
  .sustentabilidad-stats {
    border-radius: 48px 24px 12px 48px;
    padding: 16px;
    gap: 16px;
  }
  .stat-card-sustentabilidad {
    border-radius: 34px 34px 0 34px;
  }
  .paddingCard {
    padding: 4px 20px 10px 0 !important;
  }
  .container-sus-img {
    padding: 0 0 50px;
    min-height: 60vh;
    min-height: 60svh;
  }
  .clientes {
    padding: 40px 0 0;
    border-radius: 0 0 0 48px;
  }
  .clientesBg .textura {
    border-radius: 0 0 0 48px;
  }
  .footer-section {
    max-width: 310px;
  }
  .footer {
    padding: 40px 0 20px;
  }
  .footer-logo {
    margin: 40px 0 0;
  }
  .footer-main h3 {
    margin: 0 0 28px;
  }
  .footer-logo img {
    width: 190px;
  }
  #swiperServicios .service-card-wrapper {
    padding: 20px;
  }
  #swiperServicios .service-card-wrapper h5 {
    left: 20px;
    right: 20px;
  }
  #swiperServicios .slider-activo .service-card-wrapper {
    border-radius: 12px 38px 12px 12px;
  }
  #swiperServicios .service-card-wrapper .plus {
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
  }
  #swiperServicios .service-card-wrapper .plus img {
    width: 14px;
  }
  #swiperServicios .slider-activo .service-card-wrapper .plus {
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
  }
  #swiperServicios .service-card-wrapper h5 {
    font-size: 16px;
    bottom: 20px;
  }
  #swiperServicios .service-card-wrapper h5 br {
    display: none;
  }
  #swiperServicios .service-card-wrapper h5 span {
    font-size: 14px;
  }
  #swiperServicios .service-card-wrapper .numeroCard {
    font-size: 28px;
  }
  #swiperServicios .slider-activo .service-card-wrapper .numeroCard {
    font-size: 42px;
  }
  .tituloCuarto {
    font-size: 14px;
    padding: 2px 0 0;
  }
  .clientesListRow .col-lg-2 {
    width: 33.333333333%;
  }
  .nosotrosIni .nosotrosIni-txtColumn {
    padding: 40px 0 10px !important;
  }
  .flex-nuestraAmbicion {
    padding: 40px 0;
  }
  .experience.numerosNosotras {
    padding: 40px 0;
  }
  .nuestrosValores .context {
    padding: 40px 0;
  }
  .clientesList-section {
    padding: 40px 0;
  }
  .clientesListRow {
    margin-bottom: 20px;
  }
  .clienteCategory .categoria {
    font-size: 16px;
  }
  .Ini-section .img-NosotrosIni {
    top: 30px;
    padding: 0;
  }
  .nuestraAmbicion-section {
    border-radius: 0 48px 0 0;
  }
  .clientesList-section {
    border-radius: 0 0 0 48px;
  }
  .clientesList-section .textura {
    border-radius: 0 0 0 48px;
  }
  .proyectosList-section {
    border-radius: 0 48px 0 48px;
    padding: 40px 0 50px;
  }
  .Ini-section.serviciosIni {
    border-radius: 0 0 0 48px;
  }
  .filtrosRow {
    padding: 14px 0 24px;
  }
  .stats-InfoProyecto {
    padding: 40px 0;
  }
  .flex-stat {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .stats-InfoProyecto .stat-value br {
    display: none;
  }
  .stat.alcance {
    width: 100%;
  }
  .columnTitulo {
    padding: 0;
  }
  .rowInfoDestacado .tituloSegundo {
    margin: 0 0 24px !important;
  }
  .datosProyectoAmpliado {
    border-radius: 0 48px 0 0;
  }
  .acordionDatosP {
    border-radius: 0 0 0 48px;
  }
  .serviciosWrapper-content {
    border-radius: 0 0 0 48px;
  }
  .contactoIni {
    border-radius: 0 0 0 48px;
  }
  .texturaBG {
    border-radius: 0 0 0 78px;
  }
  .slider-nav-group.nav-full .linea {
    display: none;
  }
  .galeria-img {
    aspect-ratio: 16 / 11;
  }
  .galeria-card-Image {
    border-radius: 18px;
    overflow: hidden;
  }
  .galeria-card-wrapper .titularSliderGaleria {
    bottom: 24px;
  }
  .slider-nav-group.nav-full {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 24px;
    margin: 0 0 24px;
    bottom: 0;
    right: 0;
    width: 100%;
    justify-content: center;
    flex-direction: column;
  }
  .slider-nav-group.nav-full .componenteRight {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
  }
  .acordionDatosP {
    padding: 40px 0;
  }
  .acordionDatosP .accordion-button {
    font-size: 18px;
    font-weight: 600;
  }
  .accordion-button {
    padding: 20px 0;
  }
  .rowInfoDestacado {
    padding: 0 0 40px;
  }
  .ServiciosIniRow {
    padding: 40px 0;
  }
  .serviciosList {
    gap: 40px;
  }
  .card-servicios h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .servicios-container {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100%;
  }
  .serviciosList {
    flex: 1;
    position: relative;
    overflow: hidden;
  }
  .container-servicio {
    position: relative;
    height: auto;
    min-height: auto;
  }
  .gestionResiduosIni .video {
    border-radius: 18px;
  }
  .pSustentables-card-Image {
    border-radius: 18px 18px 0 0;
  }
  .pSustentables-info {
    padding: 0 24px;
    border-radius: 0 0 18px 18px;
    height: 470px;
    padding: 0 24px;
  }
  .gestionResiduosIni .video .ico-player {
    width: 46px;
    height: auto;
  }
  .pSustentable-statInfo {
    margin: 0 0 24px;
    padding: 0;
  }
  .pSustentable-parrafo {
    padding: 0;
  }
  .pSustentable-statInfo .stat br {
    display: none;
  }
  .pSustentable-statInfo .stat {
    width: 100%;
  }
  .texturaBG {
    height: 540px;
  }
  .pSustentables-card-Image .titularSlider {
    bottom: 24px;
    padding: 0 24px;
  }
  .sustentabilidadIniRow {
    padding: 40px 0 0;
  }
  .pSustentables-card-Image .titularSlider {
    display: flex;
    align-items: flex-start;
    justify-items: baseline;
    justify-content: space-between;
    flex-direction: column;
    gap: 16px;
  }
  .pSustentables-img {
    aspect-ratio: 16 / 11;
  }
  .pSustentable-statInfo {
    margin: 0;
  }
  .contactoIniRow {
    padding: 40px 0;
  }
  .imago-bg {
    width: 56%;
    height: 54px;
    background: url(../img/Imago-m.svg);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .1;
  }
  .listContacto .stat-value {
    font-size: 13px;
  }
  .listContacto a.stat-value {
    font-size: 16px;
  }
  .form-control {
    font-size: 17px;
  }
  a.cardProyecto h2 {
    font-size: 18px;
  }
  a.cardProyecto h2 {
    font-size: 16px;
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  a.cardProyecto .plus {
    right: 18px;
    top: 18px;
    width: 22px;
    height: 22px;
  }
  a.cardProyecto .plus img {
    width: 12px;
  }
  a.cardProyecto {
    border-radius: 10px 26px 10px 10px;
  }
  .equipo-card-wrapper h5 {
    bottom: 24px;
    left: 24px;
  }
  #swiperEquipo .slider-activo .equipo-card-wrapper .plus {
    right: 24px;
    top: 24px;
    width: 24px;
    height: 24px;
  }
  .plus img {
    width: 15px;
  }
  #swiperEquipo .slider-activo .equipo-card-wrapper h5 {
    bottom: 24px;
    left: 24px;
  }
  .PAmpliado .hero-principal-wrapper {
    margin: 0 0 20px;
  }
  .horizontal-scroll .frame {
    flex: 0 0 33.3333333333%;
  }
  .serviciosIni-txtColumn {
    padding: 40px 0 0;
  }
  .serviciosIni-txtColumn {
    margin: 0 0 40px;
  }
  .serviciosList {
    padding: 0 0 40px;
  }
  .nosotrosIni-imgColumn {
    margin: 30px 0;
  }
  .mask {
    padding: 0 0 40px;
  }
  .flex-separador .linea {
    display: none;
  }
  .nav {
    width: 100%;
  }
  .breadcrumbs-section {
    top: 60px;
    padding: 0px;
    height: 43px;
    display: flex;
    align-items: center;
  }
  .stat-card-sustentabilidadRight .stat-icon img {
    width: 38px;
  }
  .stat-card-sustentabilidadRight .stat-icon img.img-sello {
    width: auto;
  }
  .fStats {
    display: none;
  }
  .header.fixed {
    padding: 15px 0;
    height: 60px;
  }
  .hero.heroProyectos {
    height: calc(100vh - 42px);
    height: calc(100svh - 42px);
  }
  .flex-breadcrumbs a.breadcrumbs-text.activo {
    font-size: 16px;
  }
  .Ini-section {
    margin: 60px 0 0;
  }
  .header.fixed .logo svg {
    width: auto;
  }
  .header.fixed .logo svg {
    width: 120px;
  }
  .menu-mobile .offcanvas-header {
    padding: 15px 5%;
  }
  .menu-mobile .logo-mobile-menu {
    width: 120px;
    display: block;
  }
  .menu-mobile .offcanvas-header {
    height: 60px;
  }
}
@media (max-width: 460px) {
  .contact-row {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    flex-direction: column;
  }
  .pSustentables-info {
    height: 480px;
  }
  .texturaBG {
    height: 550px;
  }
  .menu-mobile .offcanvas-body {
    padding: 40px 5%;
  }
  .menu-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    min-width: 100%;
    flex-direction: column;
    margin: -40px 0 0;
  }
  .offcanvas.offcanvas-start.equipoCV {
    width: 100%;
    max-width: 100%;
    border-radius: 24px 24px 0 0;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    border-right: none;
    transform: translateY(100%);
    height: auto;
    max-height: 100%;
  }
  .offcanvas.offcanvas-start.equipoCV.show {
    transform: translateY(0);
  }
  .headerCV .tituloSegundo {
    font-size: 20px;
  }
  .headerCV .tituloSegundo span {
    font-size: 15px;
  }
  .headerCV {
    gap: 16px;
  }
  .circular-img {
    width: 90px;
    height: 90px;
  }
  .circular-img img {
    width: 90px;
    height: 90px;
  }
  .equipoCV .offcanvas-body {
    padding: 0 5% 48px;
  }
  .equipoCV .offcanvas-header {
    padding: 20px 5% 0;
    height: auto;
  }
  .bodyCV {
    margin: 20px 0 0;
  }
  .bodyCV p {
    font-size: 14px;
  }
  .hero-text p {
    font-size: 16px;
  }
  .offcanvas.offcanvas-start.filtros-offcanvas {
    width: 100%;
    max-width: 100%;
    border-radius: 24px 24px 0 0;
    top: auto;
    left: 0;
    width: 100%;
    border-right: none;
    transform: translateY(100%);
    height: auto;
    min-height: auto;
    bottom: 0;
  }
  .offcanvas.offcanvas-start.filtros-offcanvas.show {
    transform: translateY(0);
  }
  .filtros-offcanvas .offcanvas-body {
    padding: 0 5% 48px;
  }
  .filtros-offcanvas .offcanvas-header {
    padding: 20px 5% 0;
    height: auto;
  }
  .bodyFiltros .cabezal-section {
    margin: 0 0 20px;
  }
  .bodyFiltros {
    margin: 0;
  }
  .checks-wrappers {
    margin: 0 0 20px;
  }
  .check-item .labelCheck {
    font-size: 14px;
    width: calc(100% - 37px);
    display: flex;
  }
  .check-item {
    padding: 16px 0;
  }
  .check {
    width: 20px;
    height: 20px;
    border-radius: 4px;
  }
  .innerCheck {
    border: 3px solid #FFFFFF;
    border-radius: 4px;
  }
  #espacio-header {
    height: 94px;
    /* este es el alto del offset */
  }
  .logo {
    width: 140px;
  }
  .header {
    padding: 20px 0;
  }
  .position-sello {
    top: 100px;
  }
  .experience .stat-label-exp {
    line-height: 1.3em;
  }
  .clients-logos {
    max-width: 120px;
  }
}
@media (max-width: 390px) {
  .fStats {
    gap: 24px;
  }
  .stat-label {
    font-size: 12px;
  }
  .stat-value {
    font-size: 12px;
  }
  .hero-text p {
    font-size: 16px;
  }
  .hero-text p:last-child {
    margin-bottom: 28px;
  }
  p {
    font-size: 14px;
  }
  .experience-text p {
    font-size: 14px;
  }
  .col-proyectoImg.col-6 {
    width: 100%;
  }
  a.cardProyecto h2 {
    font-size: 20px;
    left: 24px;
    right: 24px;
    bottom: 24px;
  }
  a.cardProyecto .plus {
    right: 24px;
    top: 24px;
    width: 30px;
    height: 30px;
  }
  a.cardProyecto .plus img {
    width: 16px;
  }
  a.cardProyecto {
    border-radius: 12px 36px 12px 12px;
  }
  .prev-hero span, .next-hero span {
    display: none;
  }
  .prev-hero svg, .next-hero svg {
    display: none;
  }
  .hero-text {
    margin: 0 0 50px;
  }
  .hero-navigation {
    padding: 24px 0;
    border: none;
  }
  .stat-value {
    font-size: 11px;
  }
  .stat-icon img {
    width: 24px;
  }
  .experience .stat-label-exp {
    font-size: 11px;
  }
  .stat-label-exp {
    font-size: 11px;
  }
  .stat-label-exp strong {
    padding: 4px 10px 5px;
  }
  .contact-row {
    gap: 30px;
    flex-direction: column;
  }
}
@media (max-width: 375px) {
  .badge-circle {
    width: 80px;
    height: 80px;
  }
  .paddingCard {
    padding: 0px 14px 10px 0 !important;
  }
  .stat-label-exp {
    font-size: 12px;
  }
  .hero-text p {
    font-size: 14px;
  }
  .menu-mobile ul li a {
    padding: 18px 0;
  }
}
@media (max-width: 370px) {
  .stat-label-exp {
    font-size: 12px;
  }
  .stat-number {
    font-size: 40px;
  }
}
@media (max-width: 350px) {
  .stat-card-sustentabilidad {
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .stat-card-sustentabilidad img {
    border-radius: 24px 24px 0 24px;
  }
  .stat-number {
    font-size: 36px;
  }
  .stat-label-exp {
    font-size: 11px;
  }
  .logo {
    width: 120px;
  }
  .header.fixed .logo svg {
    width: 120px;
  }
  .menu-mobile .logo-mobile-menu {
    width: 120px;
  }
  .position-sello {
    top: 90px;
  }
}
@media (max-width: 980px) and (max-height: 460px) and (orientation:landscape) {
  .hero-text p {
    display: none;
  }
  .hero-info-wrapper {
    display: none;
  }
  .hero h1 {
    margin: 0;
    transition-duration: none !important;
    transform: translate3d(0px, 0px, 0px) !important;
    opacity: 1 !important;
    transition-property: none !important;
  }
  .hero-navigation {
    padding: 20px 0;
    border: none;
  }
  .hero-text {
    margin: 0 0 70px;
  }
  .badge-circle {
    width: 80px;
    height: 80px;
  }
  .swiper-pagination-hero {
    gap: 8px;
    display: flex;
    justify-content: center;
    margin: auto;
  }
  .header {
    padding: 20px 0;
  }
  .logo {
    width: 140px;
  }
  .header.fixed .logo svg {
    width: 140px;
  }
  .position-sello {
    top: 100px;
  }
  .containerH {
    display: block;
  }
  .containerV {
    display: none;
  }
  .containerH .context {
    padding: 40px 0;
    height: auto;
  }
  .experience .stat-number {
    font-size: 54px;
  }
  #swiperEquipo .equipo-card-wrapper h4 {
    font-size: 14px;
  }
  .stat-card {
    aspect-ratio: 16 / 10;
  }
  .experience {
    border-radius: 0 48px 0 0;
    padding: 40px 0;
  }
  .services {
    padding: 40px 0;
  }
  #swiperServicios .service-card-wrapper {
    aspect-ratio: 16 / 8;
  }
  .clientes {
    padding: 40px 0 10px;
  }
  .footer {
    padding: 40px 0 20px;
  }
  .nosotrosIni .nosotrosIni-txtColumn {
    padding: 40px 0 20px !important;
  }
  .nosotrosIni-imgColumn {
    margin: 20px 0 0;
  }
  .flex-nuestraAmbicion {
    padding: 40px 0;
  }
  .experience.numerosNosotras {
    padding: 40px 0;
  }
  .experience.numerosNosotras {
    padding: 40px 0;
  }
  .clientesList-section {
    padding: 40px 0;
  }
  .clientesListRow {
    margin-bottom: 20px;
  }
  .proyectosList-section {
    padding: 50px 0 60px;
    border-radius: 0 48px 0 48px;
  }
  .muestroFiltros {
    margin: 0;
  }
  .PAmpliado .hero-principal-wrapper {
    margin: 0 0 20px;
  }
  .stats-InfoProyecto {
    padding: 40px 0;
  }
  .rowInfoDestacado {
    padding: 0 0 40px;
  }
  .slider-nav-group.nav-full {
    margin: 0 0 20px;
  }
  .accordion-button {
    padding: 20px 0;
  }
  .acordionDatosP {
    border-radius: 0 0 0 48px;
  }
  .acordionDatosP {
    padding: 40px 0;
  }
  .serviciosIni-txtColumn {
    top: 0;
    padding: 40px 0 0;
  }
  .serviciosList {
    padding: 0 0 40px;
  }
  .serviciosList {
    gap: 40px;
  }
  .sustentabilidadIniRow {
    padding: 40px 0 0;
  }
  .gestionResiduosIni {
    padding: 40px 0;
  }
  .sliderProyectosSustentables .container {
    padding: 0 0 50px;
  }
  .texturaBG {
    border-radius: 0 0 0 48px;
  }
  .texturaBG {
    height: 420px;
  }
  .contactoIniRow {
    padding: 40px 0;
  }
  .contactoIni {
    border-radius: 0 0 0 48px;
  }
  .nuestraAmbicion-section {
    border-radius: 0 48px 0 0;
  }
  .clientesList-section {
    border-radius: 0 0 0 48px;
  }
  .clientesList-section .textura {
    border-radius: 0 0 0 48px;
  }
  .datosProyectoAmpliado {
    border-radius: 0 48px 0 0;
  }
  .Ini-section.serviciosIni {
    border-radius: 0 0 0 48px;
  }
}