/* ***************************** */
/* HERO SECTION */
/* ***************************** */

.section-hero {
  width: 100vw;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/landing/eindhoven.png");
  background-size: cover;
}

.hero-article {
  height: 95vh;
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.hero-desc {
  color: #fff;
  margin: 0;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-btn-box {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.hero-btn {
  color: var(--dark-color);
  background-color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
}

.heading-hero {
  font-size: var(--font-small);
  color: var(--light-color);
}

/* ***************************** */
/* ABOUT US SECTION */
/* ***************************** */

.section-about {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.yt-vid-box {
  width: 100%;
  display: flex;
  margin-bottom: 5rem;
}

.yt-vid {
  border: none;
  width: 700px;
  height: 500px;
  border-radius: 1.2rem;
  overflow: hidden;
}

.team-box {
  display: flex;
  justify-content: space-around;
  margin-bottom: 5rem;
}

.team-figure {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.team-img {
  height: 8rem;
  width: auto;
  border-radius: 50%;
}

.contact-box {
  display: flex;
  gap: 4rem;
  align-items: center;
  padding: 0 3rem;
}

.contact-box ul {
  list-style-type: disc;
}

.contact-btn {
  color: var(--light-color);
  background-color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
}

.team-desc h3 {
  font-size: var(--font-small);
}
