@import url(../menu.css);
.header2 {
  width: 100%;
  height: 700px !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.clip {
  position: absolute;
  bottom: 0px;
  clip-path: polygon(100% 1%, 0% 100%, 100% 100%);
  background-color: var(--color-tercero);
  width: 100%;
  height: 120px;
  z-index: 2;
}
.contenido-sobre {
  top: 35%;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
  align-items: center;
  animation: opacity 1s ease;
  max-width: 850px;
  margin: 0 auto;
}
.contenido-sobre h2 {
  font-size: 20px;
  text-align: center;
  color: var(--color-tercero);
  line-height: 1.5;
}
.contenido-sobre p {
  font-size: 16px;
  line-height: 30px;
  color: var(--color-tercero) !important;
}
@media (min-width: 850px) {
  .contenido-sobre h2 {
    font-size: 36px;
  }
  .contenido-sobre p {
    text-align: center;
    font-size: 16px;
  }
}
