
#about-us {
  padding-top:100px;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin:auto;
  font-family: var(--font-family-inter) !important;
  font-weight: 300;
}

#about-us header {
  font-size: 52px;
    margin: 0 0 18px;

}

#about-us p {
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
  margin-top:20px;
  justify-content: center;
  align-items: center;
}

#about-us article {
  max-width: 900px;
  margin: 30px auto 0;
  text-align: left;
  padding: 22px 22px;
  border-radius: 14px;
  line-height: 1.8;
  position: relative;
}

#about-us article::after {

}

#about-us h2 {
  font-size: 27.6px;
}

.brandText {
  font-weight: bold;
}

#benefits {
  font-size: 18px;
}

.benefit-item {
  opacity: 0;
  transform: translateY(10px);
  list-style: none;
  margin: 12px 0;
  display: block;
}

.benefit-title {
  font-weight: bold;
}

.benefit-text {
  display: block;
  margin-left: 40px;
}

.benefit-item svg {
  width: 35px;
  color: greenyellow;
  vertical-align: -10px;
}

.check {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(0, 180, 0, 0.15);
  position: relative;
  flex: 0 0 18px;
  margin-top: 3px;
}

.check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 6px;
  height: 10px;
  border-right: 2px solid rgba(0, 140, 0, 0.9);
  border-bottom: 2px solid rgba(0, 140, 0, 0.9);
  transform: rotate(45deg);
}


/* Mobile */
@media (max-width: 768px) {
    #about-us {
      margin-top: 300px;
      padding:15px;
    }
    #about-us article h2 {
      font-size: 1.5em;
    }
}