.fp-top-image {
  max-width: 70%;
  width: 380px;
  height: auto;
  margin-bottom: 3rem;
}

.full-page-hero {
  position: relative;
}

img.fp-bottom-image {
  position: absolute;
  z-index: 2;
  bottom: 5rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

#scroll-down {
  animation: bounce 1s infinite;
  position: absolute;
  width: 70px;
  background: none;
  border: none;
  outline: none;
  left: 50%;
  bottom: 20%;
  transform: translateX(-50%);
  cursor: pointer;
}

.full-page-hero-inner {
  position: relative;
  padding: 10% 0 22%;
  box-sizing: border-box;
}

.full-page-hero.autoheight .full-page-hero-inner {
  padding: 6% 0 5rem;
}

.full-page-hero .fph-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.full-page-hero .fph-background.has-video:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.2;
}

.fph-background:after {
  content: "";
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, #005D69 2%, transparent 25%);
}

.full-page-hero .fph-background img {
  width: 100%;
  height: 100%!important;
  object-fit: cover;
  object-position: top center;
}

.fph-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Mobile default */
.fph-content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;          /* center on mobile */
  box-sizing: border-box;
}

/* Desktop (≥ 992px) */
@media only screen and (min-width: 992px) {
  .fph-content {
    max-width: 60%;
    margin-left: 5rem;     /* keep your desktop left offset */
    margin-right: 0;
  }



.fph-content h1 {
  color: #FFED00;
}

.fph-content .fph-content-inner {
  max-width: 60%;
}

.fph-content h2 {
  color: #B2CDD0;
  font-family: "Proxima N W01 Bold";
  font-size: 68px;
}

.fph-content h2 span {
  color: #FFED00;
}

/* Ajuste de íconos con bordes */
.fph-icons {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  margin: 5rem auto; /* Centrado */
  padding: 20px 40px;
  display: flex;
  flex-wrap: wrap; /* Ajusta a filas cuando no hay espacio */
  justify-content: space-between; /* Espacio uniforme entre elementos */
  border: 1px solid #B2CDD0;
  gap: 2rem;
  max-width: 1000px; /* Ancho máximo */
  box-sizing: border-box;
}

.fph-icon-item {
  display: flex;
  flex-direction: column; /* Coloca el texto e íconos en columnas */
  align-items: center;
  gap: 10px;
  flex: 1 1 calc(25% - 2rem); /* Mantiene 4 columnas en escritorio */
  text-align: center;
  box-sizing: border-box;
  border-right: 1px solid #707070; /* Línea divisoria */
}

.fph-icon-item:last-child {
  border-right: none; /* Elimina el borde en la última columna */
}

.fph-icon-item img {
  max-width: 40px;
  height: auto;
}

.fph-icon-item-text {
  font-size: 18px;
  line-height: 1.4;
}

/* Ajuste para pantallas medianas (tablets) */
@media only screen and (max-width: 992px) {
  .fph-icons {
    flex-wrap: wrap;
    margin: 2rem auto; /* Ajusta margen */
  }

  .fph-icon-item {
    flex: 1 1 calc(50% - 2rem); /* Dos columnas en pantallas medianas */
    border-right: 1px solid #707070;
  }

  .fph-icon-item:nth-child(2n) {
    border-right: none; /* Elimina borde en la última columna de cada fila */
  }
}

/* Ajuste para pantallas pequeñas (móviles) */
@media only screen and (max-width: 576px) {
  .fph-icon-item {
    flex: 1 1 100%; /* Una columna en pantallas pequeñas */
    border-right: none; /* Elimina bordes derechos */
    border-bottom: 1px solid #707070; /* Agrega borde inferior */
    padding: 10px 0;
  }

  .fph-icon-item:last-child {
    border-bottom: none; /* Elimina el borde inferior de la última fila */
  }
}


