.certificates {
  position: relative;
  z-index: 5;
  isolation: isolate;
  overflow: hidden;
  padding: 62px 0;
  margin: 90px 0;
  background: #f5f7fb;
}
@media (max-width: 900px) {
  .certificates {
    padding: 48px 0;
    margin: 60px 0;
  }
}
.certificates:last-child {
  margin-bottom: 0;
}
.certificates__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.certificates__bg--fallback {
  background: #f5f7fb;
}
.certificates__container {
  position: relative;
}
.certificates__slider {
  position: relative;
  padding: 0 56px;
}
@media (max-width: 600px) {
  .certificates__slider {
    padding: 0;
  }
}
.certificates__swiper {
  overflow: hidden;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  padding: 24px 20px;
  background: #ffffff;
  border: 1px solid #eef1f6;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.cert-item:hover, .cert-item:focus-visible {
  border-color: rgba(255, 140, 0, 0.5);
  box-shadow: 0 14px 34px rgba(15, 27, 61, 0.12);
  transform: translateY(-4px);
}
.cert-item__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 160px;
}
.cert-item__media img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.cert-item__year {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #ff8c00;
}

.cert-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e6e9f0;
  border-radius: 50%;
  background: #ffffff;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}
.cert-nav:hover {
  background: #ff8c00;
  border-color: #ff8c00;
  color: #ffffff;
}
.cert-nav--prev {
  left: 0;
}
.cert-nav--next {
  right: 0;
}
.cert-nav.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}
@media (max-width: 600px) {
  .cert-nav {
    display: none;
  }
}

.cert-tooltip {
  position: fixed;
  z-index: 10001;
  max-width: 260px;
  padding: 12px 14px;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 27, 61, 0.25);
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.cert-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cert-tooltip__title {
  display: block;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 4px;
}
.cert-tooltip__text {
  display: block;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}
.cert-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #1a1a1a;
}

.cert-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cert-modal[hidden] {
  display: none;
}
.cert-modal__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(15, 27, 61, 0.55);
}
.cert-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(15, 27, 61, 0.3);
  padding: 36px;
  text-align: center;
}
@media (max-width: 600px) {
  .cert-modal__dialog {
    padding: 24px;
  }
}
.cert-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #6b7280;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.cert-modal__close:hover {
  color: #ff8c00;
}
.cert-modal__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  margin-bottom: 20px;
}
.cert-modal__media img {
  max-width: 100%;
  max-height: 220px;
  -o-object-fit: contain;
     object-fit: contain;
}
.cert-modal__year {
  display: inline-block;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ff8c00;
}
.cert-modal__year:empty {
  display: none;
}
.cert-modal__title {
  margin: 6px 0 14px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  color: #1a1a1a;
}
.cert-modal__desc {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #4a5673;
  white-space: pre-line;
}
.cert-modal__desc:empty {
  display: none;
}
.cert-modal__cta {
  margin-top: 22px;
}
.cert-modal__cta[hidden] {
  display: none;
}

body.cert-modal-open {
  overflow: hidden;
}

body.cert-modal-open .cert-nav {
  visibility: hidden;
}
/*# sourceMappingURL=styles.css.map */
