.aboutus {
  min-height: 85vh;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 0 15px;
  margin-top: 75px;
}

.aboutus-bg {
  position: absolute;
  width: 75%;
  height: 80vh;
  border-radius: 15px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white),
    url("../images/aboutus/1.jpg");
  background-position: center;
  background-size: cover;
  transition: all 0.6s ease-in-out;
  z-index: 1;
  overflow: hidden;
}

.slide-enter {
  transform: translateY(-10%);
  opacity: 0;
}

.slide-active {
  transform: translateY(0);
  opacity: 1;
}

.aboutus-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  width: 100%;
}

.aboutus-heading {
  text-align: center;
  max-width: 75%;
  font-size: 1.3em;
  color: #333;
}

.title-aboutus {
  font-size: 10em;
  color: #ffffffe0;
  z-index: 3;
}

@media only screen and (max-width: 1200px) {
  .title-aboutus {
    font-size: 5em;
  }
}

@media only screen and (max-width: 767px) {
  .aboutus {
    padding: 15px;
  }

  .aboutus-bg {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .aboutus-container {
    padding: 10px 0;
  }

  .title-aboutus {
    font-size: 3em;
    position: static;
    transform: none;
    margin-top: 0;
  }

  .aboutus-heading {
    max-width: 95%;
    width: auto;
    font-size: 1em;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    word-wrap: break-word;
  }
}

@media only screen and (max-width: 425px) {
  .title-aboutus {
    font-size: 2.5em;
  }

  .aboutus-heading {
    font-size: 1em;
  }
}
