.section5 {
  padding: 0 2rem;
  position: relative;
  background-color: #dbc7c7;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* .section5::before {
  content: "";
  width: 100%;
  height: 100px;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(50% 100%, 50% 100%, 0 0, 100% 0);
} */

.se__inner {
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 90%;
  margin: 0 auto;
  padding-top: 1rem;

}

.se__inner.flex {
  justify-content: center;
  text-align: center;
}

p,
h3 {
  color: #000;
}

.section5 > .registry {
  width: 60%;
}
.registry > h3,
.section5 > .se__inner > form > h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.section5 > .se__inner > .registry {
  margin: 0 auto;
  width: calc(100%);
}

.contact-us {
  width: calc(100% / 2);
}

.scroller > .scroller__inner img {
  width: 7rem;
}

.scroller {
  margin: 0 auto;
  max-width: 600px;
  padding: 1rem 0;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  --webkit-mask: linear-gradient(
    90deg,
    transparent,
    #fff 20%,
    #fff 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
}

.scroller > .scroller__inner {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

@media (max-width: 48em) {
  .section5::before {
    height: 40px;
    clip-path: polygon(100% 100%, 0 0, 0 0, 100% 0);
    background-color: #7fd1ae;
  }

  .se__inner {
    flex-direction: column;
    gap: 0;
    padding-top: 80px;
    
  }

  .section5 > .registry {
    width: 100%;
  }
}
