@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap");

body {
  font-family: "Poppins", sans-serif;
}

:root {
  --primary: #ae152d;
  --secondary: #005885;
}

.textprimary {
  color: var(--primary);
}

.textsecondary {
  color: var(--secondary);
}

.bgprimary {
  background-color: var(--primary);
}

.bgsecondary {
  background-color: var(--secondary);
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.ranked-img {
  width: 120px;
}

.topRanked .item {
  height: 160px;
}

.step_main_card {
  width: calc(100% / 4);
}

.step_main_card h6 {
  border-bottom: 2px solid var(--primary);
}
.point_animation {
  width: 18px;
  height: 18px;
  border: 2px solid var(--primary);
  top: 8%;
  left: 0;
  right: 0;
}

.point_animation:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 25px;
  height: 25px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-border 1100ms ease-out infinite;
}

.point_animation:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  transition: all 200ms;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.step_border {
  border-bottom: 2px solid var(--primary);
  top: 75px;
}

footer .accordion-button {
  color: var(--secondary) !important;
}

footer .accordion-collapse {
  height: 300px;
  overflow-y: auto;
  background: #1b1b1b;
  padding: 10px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--secondary);
}

.nav-pills .nav-link {
  color: var(--secondary);
  border: 1px solid;
}

.ourLearner .item {
  height: 85px;
}

.ourLearner .item img {
  height: 100%;
  object-fit: contain;
}

label.error {
  font-size: 12px;
  color: var(--primary);
  position: absolute;
  top: 35px;
  left: 20px;
}