/* Styles for the separator component */

.separator {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 40px);
  max-width: 850px;
  position: absolute;
  bottom: 10px;
}

.separator-inline {
  display: flex;
  flex-direction: column;
  width: calc(100% - 40px);
  max-width: 850px;
  align-self: center;
  align-items: center;
}

.separator-line {
  width: 100%;
  height: 1px;
  background: #61615E;
  opacity: 0.40;
  animation: highlight 0.8s;
  animation-fill-mode: forwards;
  animation-delay: 0.6s;
}

.separator-title {
  color: #1f1f1f;
  margin-bottom: 8px;
  font-size: 33px;
  font-family: 'Avenir Next Demi';
  animation: slide-in-bottom;
  animation-duration: 0.5s;
  animation-delay: 1s;
  text-align: center;
  animation-fill-mode: forwards;
  line-height: 42px;
}

.separator-subtitle {
  margin-top: 6px;
  color: #1f1f1f;
  text-align: center;
  font-size: 20px;
  font-family: 'Avenir Next';
  animation: slide-in-top;
  animation-duration: 0.5s;
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
}

/* Animations */

@keyframes slide-in-top {
  from {
    transform: translateY(-110%);
    clip-path: inset(100% 0% 0% 0% round 0%);
  }
  to {
    transform: translateY(0px);
    clip-path: inset(0% 0% 0% 0% round 0%);
  }
}

@keyframes slide-in-bottom {
  from {
    transform: translateY(110%);
    clip-path: inset(0% 0% 100% 0% round 0%);
  }
  to {
    transform: translateY(0px);
    clip-path: inset(0% 0% 0% 0% round 0%);
  }
}

