/*Section 1 - Hero*/
.hero-component {
  width: 100%;
  height: 94vh;
  position: relative;
}
.bg-img {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-hero {
  position: absolute;
  right: 0%;
  top: 30%;
  z-index: 1;
  width: 45%;
}
@media (max-width: 768px) {
  .hero-component {
    height: 70vh;
  }
  .logo-hero {
    top: 30%;
    right: 0%;
    width: 60%;
  }
}
/*Section 2 - Intro*/
.home_intro {
  position: relative;
  overflow: hidden;
}
.home_intro p {
  font-size: var(--fs-8);
  position: relative;
  z-index: 2;
}
.intro-img {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 1;
  width: 35%;
}
@media (max-width: 768px) {
  .intro-img {
    right: 0px;
    bottom: 0px;
    top: auto;
    width: 95%;
  }
  .home_intro .padding-section {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
}
/*Section 4 - Experiencia*/
.section_experiencia {
  position: relative;
}
.logo-exp {
  width: 100%;
  max-width: 30rem;
}
.section_experiencia h2 {
  color: white;
}
.section_experiencia .full-row {
  position: relative;
  z-index: 2;
}
.experiencia-img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}
/*Section 5 - Prefooter*/
.section_pre-footer {
  position: relative;
}
.section_pre-footer .padding-section {
  padding-top: 14% !important;
  padding-bottom: 14% !important;
}
.pre-footer_component {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8rem;
  position: relative;
  z-index: 2;
}
.pre-footer_component .col {
  width: auto;
  display: flex;
  flex-direction: column;
}
.pre-footer_component .col a,
.pre-footer_component .col p {
  color: var(--brown);
  text-transform: uppercase;
  transition: var(--animTransition);
}
.pre-footer_component .col:nth-child(1) {
  row-gap: 1.5rem;
}
.pre-footer_component .col:nth-child(1) a {
  font-family: "Bavaria Gates";
  font-size: var(--fs-6);
  text-decoration: underline;
}
.pre-footer_component .col:nth-child(2) p {
  font-family: "Basis";
  font-weight: 300;
  font-size: var(--fs-3);
  line-height: 1.5;
}
.pre-footer_component .col:nth-child(3) a {
  font-family: "Basis";
  font-weight: 400;
  font-size: var(--fs-4);
  line-height: 1.5;
  text-decoration: underline;
}
.pre-footer_component .col a:hover {
  opacity: 0.3 !important;
}
.right-logo {
  position: absolute;
  height: 80%;
  top: 10%;
  right: 0%;
  z-index: 0;
}
.left-logo {
  position: absolute;
  height: 80%;
  top: 0%;
  left: 0%;
  z-index: 0;
}
@media (max-width: 768px) {
  .pre-footer_component {
    flex-direction: column;
    text-align: center;
    row-gap: 4rem;
  }
  .left-logo {
    height: 50%;
  }
  .right-logo {
    height: 40%;
    top: 30%;
  }
}
