.certifications-wrap {
  padding: 70px 20px 92px;
  box-sizing: border-box;
}

.certifications-tabs {
  display: flex;
  justify-content: center;
  gap: 54px;
  margin-bottom: 70px;
}

.certifications-tab {
  border: 1px solid #9b9b9b;
  border-radius: 7px;
  background: #d0d0d0;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 30px;
  font-family: inherit;
  cursor: pointer;
  padding: 5px 20px;
  box-sizing: border-box;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.certifications-tab.active,
.certifications-tab:hover {
  border-color: #3e86c5;
  background: #3e86c5;
  color: #fff;
}
.certifications-tab.active .certifications-tab-icon .default-show,
.certifications-tab:hover .certifications-tab-icon .default-show {
  display: none;
}
.certifications-tab.active .certifications-tab-icon .hover-show,
.certifications-tab:hover .certifications-tab-icon .hover-show {
  display: flex;
}

.certifications-tab-icon {
  position: relative;
  flex: 0 0 auto;
}
.certifications-tab-icon .default-show {
  display: flex;
}
.certifications-tab-icon .hover-show {
  display: none;
}

.certifications-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 44px;
}

.certifications-item {
  text-align: center;
}

.certifications-frame {
  width: 286px;
  height: 386px;
  margin: 0 auto;
  padding: 16px;
  box-sizing: border-box;
  background: #3e86c5;
  box-shadow: 8px 9px 12px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.certifications-frame--landscape {
  height: 198px;
}

.certifications-paper {
  width: 100%;
  height: 100%;
  background: #fff;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  color: #222;
}

.certifications-paper--portrait {
  padding: 18px 18px 22px;
}

.certifications-paper--landscape {
  padding: 24px 24px 18px;
}

.cert-paper-brand {
  font-size: 27px;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}

.cert-paper-title {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
}

.cert-paper-lines {
  margin-top: 20px;
  height: 190px;
  background: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.16) 0, rgba(0, 0, 0, 0.16) 1px, transparent 1px, transparent 13px);
  opacity: 0.55;
}

.certifications-paper--landscape .cert-paper-lines {
  height: 68px;
}

.certifications-paper--bsi:after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border: 2px solid #8a8a8a;
  border-radius: 50%;
  opacity: 0.28;
}

.certifications-paper--register {
  background: linear-gradient(135deg, rgba(62, 134, 197, 0.08) 25%, transparent 25%) 0 0/38px 38px, #fbfbfb;
}

.cert-table-head {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.cert-table-grid {
  height: 254px;
  border: 1px solid #b7c2cc;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 29px, #cbd3db 30px), repeating-linear-gradient(to right, transparent 0, transparent 88px, #cbd3db 89px);
}

.cert-stamp {
  position: absolute;
  right: 25px;
  bottom: 28px;
  width: 54px;
  height: 54px;
  border: 4px solid #d71920;
  border-radius: 50%;
  opacity: 0.78;
}

.certifications-paper--patent {
  border: 6px solid #dcebd6;
  background: #fbfff8;
}

.certifications-paper--honor {
  border: 4px solid #f3d77b;
  color: #d6a21a;
}

.certifications-paper--award {
  background: #d8d8d8;
}
.certifications-paper--award .cert-paper-title {
  color: #c22;
  font-size: 32px;
  margin-top: 34px;
}

.certifications-paper--license {
  border: 4px solid #b9d8e8;
  background: #f5fcff;
}

.certifications-title {
  margin-top: 18px;
  color: #333;
  font-size: 26px;
  line-height: 1.2;
}

.certifications-wrap > .certifications-grid {
  display: none;
}

.certifications-panels {
  max-width: 980px;
  margin: 0 auto;
}

.certifications-panel {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 44px;
}
.certifications-panel.is-active {
  display: grid;
}

.certifications-image-card {
  text-align: center;
}

.certifications-image-card img {
  width: 286px;
  height: 386px;
  padding: 16px;
  box-sizing: border-box;
  background: #3e86c5;
  box-shadow: 8px 9px 12px rgba(0, 0, 0, 0.18);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.certifications-image-card--landscape img {
  height: 198px;
}

@media (max-width: 1100px) {
  .certifications-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 28px;
  }
}
@media (max-width: 720px) {
  .certifications-panel {
    grid-template-columns: 1fr;
  }
  .certifications-image-card img {
    width: min(100%, 286px);
  }
}

/*# sourceMappingURL=certifications.css.map */
