* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #000;
  font-family: "Poppins", sans-serif;
}
nav {
  position: absolute;
  width: 100%;
  display: flex;
  padding: 2rem 6rem;
  justify-content: space-between;
}

.container-parallax {
  height: 110vh;
}
.container-parallax img {
  width: 100%;
  position: absolute;
  height: 110vh;
  object-fit: cover;
  z-index: -1;
}
.main-title {
  position: absolute;
  top: 20%;
  left: 50%;
  font-size: 2.5rem;
  transform: translate(-50%, -20%);
}

.content {
  width: 100%;
  background: #ffffff;
  min-height: 100vh;
  z-index: 2;
  position: absolute;

}
.content-images {
  display: flex;
  justify-content: space-around;
  align-items: center;
  /*min-height: 60vh;*/
  text-align: center;
  background: #ffffff;
}

.text {
  padding: .5rem 5%;
  font-size: 1.1rem;
}
h2 {
  padding: .5rem 5%;
  font-size: 1.5rem;
}

p {
color: #000;
}

.white {
color: white;
}