/* ----------AboutPage CSS---------- */
header {
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.about-banner-text {
  width: 100%;
  height: 40vh;
  padding: 0rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.about-banner-text h1 {
  font-size: 7rem;
}
.about-banner-text h4 {
  font-size: 4rem;
  font-weight: 300;
}

.about-banner-profile {
  position: absolute;
}

.about-profile {
  width: 100%;
  height: 100vh;
  margin: 10vh 0rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-profile-img {
  position: relative;
  width: 90%;
  height: 90%;
}
.about-profile-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.805));
}
.about-profile-text {
  position: absolute;
  left: 5%;
  bottom: 0%;
  width: 40%;
  font-size: 1.5rem;
}
.about-profile-text h1 {
  font-size: 2.5rem;
  text-decoration: underline;
}
.about-profile-img img {
  width: 100%;
  height: 100%;
  border-radius: 5rem;
}

.why-us {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-us-text {
  width: 70%;
  font-size: 2rem;
  text-align: center;
}
.why-us-text h2 {
  font-size: 3rem;
}

.mission-profile {
  width: 100%;
  height: 100vh;
  margin: 10vh 0rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-profile-img {
  position: relative;
  width: 90%;
  height: 90%;
}
.mission-profile-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.8)
  );
}
.mission-profile-text {
  position: absolute;
  right: 5%;
  bottom: 0%;
  width: 40%;
  font-size: 1.5rem;
  text-align: right;
}
.mission-profile-img img {
  border-radius: 5rem;
  width: 100%;
  height: 100%;
}
.mission-profile-text h1 {
  font-size: 2.5rem;
  text-decoration: underline;
}
.vr-tech {
  padding: 4rem 0rem;
  flex-direction: column;
}

.vr-tech-heading {
  width: 80%;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 5vh;
}
.vr-tech-heading h1 {
  font-size: 3rem;
}
.vr-tech-content {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 5rem;
  align-items: center;
  justify-content: center;
}

.vr-tech-video {
  width: auto !important;
  height: 80%;
  position: relative;
}
.vr-tech-video img {
  width: auto;
  height: 100%;
  border-radius: 1rem;
  z-index: 20;
}
.vr-tech-video video {
  width: auto;
  height: 100%;
  border-radius: 1rem;
  position: absolute;
  left: 0;
  z-index: -10;
}
.vr-tech-video:hover video {
  z-index: 30;
}
.video-text {
  position: absolute;
  z-index: 40;
  width: 100%;
  bottom: 5%;
  padding: 0.5rem;
  text-align: center;
  font-size: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
}
.video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  z-index: 40;
}

.name {
  position: relative;
}

.name video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.name h1 {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background-color: var(--background);
  color: #fff;
  mix-blend-mode: multiply;
}
.brand-name {
  font-size: 35vh;
  font-weight: 900;
}

/* Responsive CSS  */
@media (max-width: 768px) {
  header {
    height: 40vh;
    margin-top: 10vh;
  }
  .about-profile,
  .mission-profile {
    height: 50vh;
  }
  .about-profile-text,
  .mission-profile-text {
    width: 80%;
  }
  .about-profile-img,
  .mission-profile-img {
    width: 100%;
  }
  .about-profile-img img,
  .mission-profile-img img {
    border-radius: 0;
  }

  .why-us {
    height: max-content;
  }
  .vr-tech-content{
    gap: 4rem;
    overflow-x: auto;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem;
  }
  .vr-tech-content img{opacity: 0;}
  .vr-tech-video video{z-index: 30;}
  .name {
    height: 40vh;
  }
  .brand-name {
    font-size: 9rem;
  }
}
