.certificates {
  background: #000000;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 80px 20px;
  border-top: 1px solid rgba(78, 201, 176, 0.2);
}
.certificates--header {
  width: 100%;
  max-width: 800px;
  text-align: center;
  margin-bottom: 60px;
}
.certificates--header h2 {
  color: white;
  font-size: clamp(32px, 5vw, 40px);
  font-weight: 900;
  margin: 0 0 20px 0;
  color: #4ec9b0;
}
.certificates--header h2::after {
  content: "";
  display: block;
  width: 200px;
  height: 3px;
  background: #4ec9b0;
  margin: 15px auto 0;
  border-radius: 2px;
}
.certificates--header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(16px, 2vw, 18px);
  max-width: 600px;
  margin: 20px auto 0;
  line-height: 1.6;
}

.certificates--grid {
  width: 100%;
  max-width: 1200px;
  display: grid;
  gap: 30px;
}
@media (max-width: 768px) {
  .certificates--grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  .certificates--grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (min-width: 1200px) {
  .certificates--grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.certificate--item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(78, 201, 176, 0.4);
  background: rgba(30, 30, 30, 0.9);
  transition: all 0.3s ease;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.certificate--item:hover {
  border-color: rgba(78, 201, 176, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(78, 201, 176, 0.3);
}
.certificate--item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.certificate--item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.certificate--item img:hover {
  transform: scale(1.05);
}

@media (min-width: 769px) {
  .certificate--item:nth-child(7) {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (min-width: 769px) and (min-width: 1200px) {
  .certificate--item:nth-child(7) {
    grid-column: 2/3;
    max-width: none;
  }
}
.certificate--item:nth-child(1) {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 0.1s;
}

.certificate--item:nth-child(2) {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 0.2s;
}

.certificate--item:nth-child(3) {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 0.3s;
}

.certificate--item:nth-child(4) {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 0.4s;
}

.certificate--item:nth-child(5) {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 0.5s;
}

.certificate--item:nth-child(6) {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 0.6s;
}

.certificate--item:nth-child(7) {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 0.7s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 480px) {
  .certificates {
    padding: 60px 15px;
  }
  .certificates--grid {
    gap: 20px;
  }
  .certificate--item {
    aspect-ratio: 3/4;
  }
}/*# sourceMappingURL=cert.css.map */