.Page-top {
  background-color: var(--custom-blue);
  padding: 2rem 0px;
}

.Page-top .container .col-12 {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 0.3px;
}

.Page-top .container .col-12 h2 {
  color: #fff;
}

.Page-top .container .col-12 h2,
.Page-top .container .col-12 ul {
  opacity: 0;
}

/* H2: Fade in from left */
.Page-top .container .col-12 h2 {
  transform: translateX(-400px);
  animation: fadeInLeft 1.2s ease forwards;
}

/* UL: Fade in from right */
.Page-top .container .col-12 ul {
  transform: translateX(400px);
  animation: fadeInRight 1.2s ease forwards;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-400px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(400px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.Page-top .container .col-12 ul li {
  font-weight: 600;
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
}

.Page-top .container .col-12 ul li:last-child {
  color: var(--primary-color-one);
}

.Page-top .container .col-12 ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0;
}
