/* HERO: ABOUT */
#hero__about {
  height: 50vh;
  background-color: var(--secondary-color);
}

#hero__about .hero-content {
  align-items: flex-start;
}

.office__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.section__office .grid__container {
  gap: 2rem;
  justify-content: flex-start;
}

.office__title {
  color: var(--primary-color);
  font-size: 4rem;
}

.office__text {
  line-height: 1.4;
  font-size: 1.6rem;
  text-align: justify;
  font-weight: 300;
}

.office__image {
  height: 100%;
}
.office__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.grid__lightbox {
  margin-top: 2rem;
}

.section__culture {
  color: var(--secondary-color);
  background-color: var(--primary-color);
  padding-bottom: 5rem;
}

.culture__card {
  width: unset;
  height: fit-content;
}

.section__culture .section__header .header__main::after,
.section__culture .section__header .header__main::before {
  background-color: var(--light-color);
}

.culture__card:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.section__tech .grid__container {
  gap: 2rem;
}

.section__tech .office__image {
  height: 315px;
}

.section__tech .grid__container .office__content {
  align-items: flex-start;
  justify-content: flex-start;
}

.office__image {
  position: relative;
  z-index: 1;
  border-radius: 4rem;
}

.section__tech .office__image img {
  border-radius: var(--border-radius);
}
.section__tech .office__image::before {
  content: "";
  position: absolute;
  border-radius: var(--border-radius);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.section__culture .grid__3 {
  max-width: 80rem;
  margin: 0 auto;
}
