* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: #1B1D36;
}

nav {
  width: 100%;
  height: 80px;
  background-color: #1B1D36;
  display: flex;
  align-items: center;
  padding-left: 30px;
}

header video {
  display: block;
  width: 100%;
}

section#about {
  text-align: center;
  padding: 4rem;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
}
section#about img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.5;
}
section#logos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 0;
}
section#logos div.images {
  margin: 4rem 0;
}
section#logos div.images div.grid-3 {
  margin-top: 2rem;
  display: grid;
  justify-items: center;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  section#logos div.images div.grid-3 {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
section#logos img {
  max-width: 250px;
  width: 50%;
}
@media (max-width: 768px) {
  section#logos img {
    width: 75%;
  }
}
section h1 {
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.15;
  max-width: 35ch;
  margin-bottom: 4rem;
}
section p {
  max-width: 75ch;
  font-weight: 500;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  section#about {
    padding: 2rem;
  }
  section#logos {
    padding: 2rem;
  }
  section h1 {
    font-size: max(1.25rem, 5vw);
    margin-bottom: 1rem;
  }
  section p {
    font-size: 0.9rem;
  }
}

footer {
  background: #1B1D36;
  height: 50vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
}
footer a {
  color: white;
  text-decoration: none;
}
footer strong {
  color: inherit;
  font-weight: 600;
}
footer address {
  margin-top: 2rem;
  font-weight: 300;
  color: white;
  font-style: normal;
}/*# sourceMappingURL=style.css.map */