/* SCROLL STRIP */
.scroll-container {
  overflow-x: auto;
  padding: 20px 10px;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

/* BADGE CARD */
.badge-card {
  flex: 0 0 240px;
  background: var(--plainclr);
  border-radius: 18px 18px 45px 45px;
  padding: 15px;
  height: 100%;
  text-align: center;
  border: 2px solid var(--borderclr);
  position: relative;
  margin-bottom: 35px;
  transition: 0.35s ease;
  scroll-snap-align: center;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1023px) {
  .badge-card {
    height: auto;
    margin-bottom: 35px;
  }
}

.badge-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.12);
  border-color: var(--themeprimaryclr);
}

/* Ribbon */
.badge-card::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--themeprimaryclr);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.badge-card img {
  width: 70px;
  margin-bottom: 30px;
  transition: 0.4s;
}

.badge-card:hover img {
  transform: scale(1.12) rotate(-6deg);
}

.badge-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--themeprimaryclr);
}

.badge-link:hover {
  text-decoration: underline;
}/*# sourceMappingURL=certifications-badges-strip.css.map */