/* ABOUT HERO */
/* 
#about-hero-section {
} */

#about-hero-section{
	height:60rem;
}

#about-hero-section .hero-text {
  align-items: center;
  gap: 10rem;
}

#about-hero_text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 90rem;
  margin: auto;
  gap: 4rem;
  font-size: 1.8rem;
}

#about-hero-section h1 {
  color: var(--darkerblue);
  text-align: center;
  max-width: 80rem;
}

/* END ABOUT HERO */

/* TEAM */

#about-team-section__container {
  width: 100%;
  max-width: 150rem;
  position: relative;
  margin: auto;
  background-color: var(--light);
  border-radius: 2rem;
  overflow: hidden;
}

/* #about-team-section {
} */

#about-team-section .container {
  display: flex;
  gap: 8rem;
  padding: clamp(2rem, 7vw, 10rem);
}

#about-team__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#about-team__description {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

#about-team__image {
  flex: 1;
  border-radius: 1.6rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

#about-team__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#team-brand-element-1 {
  position: absolute;
  top: 0;
  right: 0;
  filter: blur(40px);
  z-index: 0;
}

#team-brand-element-2 {
  position: absolute;
  top: 0;
  left: 0;
  /* filter: blur(40px); */
  z-index: 0;
}
/* END TEAM */

@media all and (max-width: 1000px) {
  #about-team-section .container {
    flex-direction: column;
    max-width: 60rem;
  }
}

@media all and (max-width: 700px) {
  #about-hero_text {
    grid-template-columns: 1fr;
    max-width: 50rem;
    margin: auto;
    padding: 0rem 2rem;
  }

  #about-hero-section .hero-text {
    gap: 8rem;
  }

  #about-team-section {
    padding-bottom: 0;
  }

  #about-team-section .container {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  #about-team-section__container {
    border-radius: 0;
  }
}
