/*? 1 Hero Section*/
.hero-component {
  width: 100%;
  height: 70svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  padding-bottom: 25rem;
}

.hero-component h1 {
  color: white;
}

.hero-img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.credito-intro {
  color: white;
  text-transform: uppercase;
  position: absolute;
  right: 2rem;
  bottom: 4dvh;
  font-size: var(--fs-4);
  z-index: 10;
}

@media (max-width: 500px) {
  .hero-component {
    height: 50svh;
    padding-bottom: 18rem;
  }
  .credito-intro {
    right: 1rem;
    bottom: 1dvh;
    font-size: var(--fs-2);
  }
}

/*? 2 Introduction Section*/
.introduction_section {
  position: relative;
  width: 100%;
}
.introduction-component {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.introduction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 6em;
  max-width: 900px;
}
.ballenota {
  position: relative;
  width: 100%;
}
.ballenota-wrapp,
.desktop-block,
.mobile-block {
  position: relative;
  width: 100%;
}

.desktop-block img,
.mobile-block img {
  width: 100%;
}

.grafico-img {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
}

.desktop-block {
  display: block;
}
.mobile-block {
  display: none;
}

@media (max-width: 900px) {
  .introduction-grid {
    grid-template-columns: 1fr;
    grid-gap: 4em;
  }
  .desktop-block {
    display: none;
  }
  .mobile-block {
    display: block;
  }
}
@media (max-width: 450px) {
  .introduction-grid {
    grid-gap: 2.5em;
    text-align: center;
  }
}

/*? 3 Golfo Component*/
.golfo-component {
  text-align: center;
}
.golfo-ballena-component {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/*? Licuado Component*/
.licuado-wrapper {
  position: relative;
}
.licuado-grafico {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
  width: 100%;
}

/*? 5 Megasoducto*/
.fabrica-wrapper {
  position: relative;
}
.megasoducto-grafico {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
  width: 100%;
}
.megasoducto-texto {
  position: absolute;
  top: 22%;
  right: 4%;
  z-index: 5;
  text-align: right;
  width: 200px;
}
.megasoducto-texto-left {
  position: absolute;
  top: 22%;
  left: 10%;
  z-index: 5;
  text-align: right;
  width: 240px;
}
.megasoducto-texto img {
  width: 100%;
}

@media (max-width: 1100px) {
  .megasoducto-texto {
    top: 18%;
    right: 0%;
  }
  .megasoducto-texto-left {
    top: 18%;
    left: 7%;
  }
}
@media (max-width: 865px) {
  .megasoducto-texto {
    top: 5%;
    width: 200px;
  }
}

@media (max-width: 560px) {
  .megasoducto-texto {
    top: 10%;
    width: 140px;
  }
  .megasoducto-texto-left {
    top: 17%;
    left: 4%;
    width: 140px;
  }
}

/*? 6 Megaplanta*/
.megaplanta {
  position: relative;
}
.megaplanta-mensaje {
  position: absolute;
  top: 18%;
  right: 4%;
  z-index: 5;
  width: 400px;
}

@media (max-width: 550px) {
  .megaplanta-mensaje {
    top: -10%;
    right: 4%;
    text-align: center;
    width: 50%;
  }
}

/*? 7 MegaBuque */
.mega-buque {
  position: relative;
}
.mega-buque-grafico {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
}

/*?8 Ruta*/
.rutas-grid {
  display: grid;
  grid-template-columns: 1fr 0.35fr;
  grid-template-rows: 1fr;
  width: 100%;
  gap: 2rem;
  margin-top: 5rem;
}
.ruta-capa-wrapper {
  position: relative;
}
.ruta-capa {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 5;
  opacity: 0;
  transition: var(--animTransition);
}
.activa {
  opacity: 1;
}
#ruta1 {
  z-index: 5;
}
#ruta2 {
  z-index: 4;
}
#ruta3 {
  z-index: 1;
}
#ruta4 {
  z-index: 3;
}
#ruta5 {
  z-index: 2;
}
.filtros-ruta {
  column-gap: 3rem;
  row-gap: 2rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.filter-item {
  display: flex;
  column-gap: 0.5rem;
}
.filter-item p {
  width: 200px;
}
.check {
  width: 22px;
  height: 22px;
  border: 2px solid black;
  cursor: pointer;
  transition: var(--animTransition);
}
#check1.active-check {
  background-color: #bc584c;
}
#check2.active-check {
  background-color: #33637e;
}
#check3.active-check {
  background-color: #d8ada9;
}
#check4.active-check {
  background-color: #39523d;
}
#check5.active-check {
  background-color: #9e8867;
}

@media (max-width: 900px) {
  .rutas-grid {
    grid-template-columns: 1fr;
    margin-top: 0rem;
  }
  .filtros-ruta {
    row-gap: 2rem;
    justify-content: center;
    align-items: center;
  }
}

.buttons-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 1.5rem;
  column-gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.buttons-row a {
  display: flex;
  column-gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border: 2px solid black;
  align-items: center;
  border-radius: 0.5rem;
  transition: all ease-in-out 0.2s;
  text-align: center;
}
.buttons-row svg {
  width: 1.5rem;
  height: 1.5rem;
}
.buttons-row a:hover {
  border-color: white;
  background-color: white;
}

/*? 9 el proyecto*/
.proyecto-row {
  gap: 2rem;
}
.proyecto-row img {
  width: 8%;
  min-width: 50px;
  max-width: 90px;
}
.proyecto-row .center {
  max-width: 30rem;
}
@media (max-width: 550px) {
  .proyecto-row {
    gap: 0rem;
  }
}

/*? 10 Organizate*/
.organizate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  width: 100%;
  gap: 2rem;
}
.organizate-item {
  width: 100%;
  position: relative;
  padding: 20% 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 1rem;
}
.organizate-item p {
  color: white !important;
  text-align: center;
  font-family: "KievitOT";
}
.organizate-item .btn {
  padding: 0.5rem 2rem;
  border-radius: 1.5rem;
  font-weight: normal;
  font-family: "KievitOT";
  width: auto;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-4);
  display: inline-block;
  color: white;
  border: 2px solid white;
}
.organizate-item .btn:hover {
  background-color: var(--aqua);
  color: black;
  border: 2px solid var(--aqua);
}
.organizate-item p,
.organizate-item .btn {
  position: relative;
  z-index: 2;
}
.organizate-overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.organizate-bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
}
.organizate-item-cover {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 3;
}
.organizate-item-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.organizate-slider-container {
  width: 100%;
}
@media (max-width: 768px) {
  .organizate-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    width: 100%;
    gap: 2rem;
  }
  .organizate-item-cover {
    position: relative;
    border-radius: 2rem;
    width: 100%;
    max-width: 14rem;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .organizate-item {
    padding: 2rem 1.5rem;
  }
}

/*? Impacto Component*/
.impacto-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.5rem 1fr;
  column-gap: 2rem;
  width: 100%;
}
.divisor-impacto {
  width: 0.5rem;
  height: 100%;
}
.divisor-impacto img {
  width: 100%;
  height: 100%;
}
.impacto-item {
  width: 100%;
  padding: 2rem;
  text-align: center;
  display: flex;
  justify-content: space-between;
  row-gap: 1.5rem;
  flex-direction: column;
  align-items: center;
}
.impacto-item img {
  width: 100%;
  max-width: 18rem;
  height: 100%;
  object-fit: contain;
}
.impacto-tiem-top-row {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.impacto-item .btn-acccion {
  background-color: #6eb5e5;
}
.impacto-item .btn-acccion:hover {
  background-color: var(--azul-3-escuelas) !important;
  color: white !important;
}

@media (max-width: 768px) {
  .impacto-wrapper {
    grid-template-columns: 1fr;
    column-gap: 1.5rem;
  }
  .divisor-impacto {
    width: 100%;
    height: 1.5px;
  }
}

/*? Ballenas component*/
@media (max-width: 900px) {
  .descargas-component .btn-acccion {
    width: 100% !important;
    margin-bottom: 20px !important;
    max-width: 500px;
  }
  .organizate-swiper img {
    height: 30vh;
  }
}

/*contacto-component*/
.contacto-component p {
  max-width: 40rem;
}
.contacto-component .btn-acccion {
  background-color: #aad7b8;
}
.contacto-component .btn-acccion:hover {
  background-color: #55a46d !important;
  color: white !important;
}
