@charset "UTF-8";
.a11y-widget-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100000;
  zoom: 1 !important; }

.a11y-toggle-btn {
  position: static;
  margin: 0; }

/* �������� �������� ������ */
.a11y-toggle-btn {
  position: fixed;
  left: 20px;
  z-index: 99999;
  background: linear-gradient(135deg, #20b2aa 0%, #00796b 100%);
  color: #ffffff;
  border: 3px solid #ffffff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 121, 107, 0.4);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, opacity 1s ease, top 0.4s ease-out;
  /* ������ ����������� �� �������� */
  opacity: 1; }
  .a11y-toggle-btn.scrolling {
    opacity: 0.3; }
  .a11y-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 121, 107, 0.6);
    opacity: 1 !important; }
  .a11y-toggle-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 125, 255, 0.5);
    opacity: 1 !important; }

/* ���������� ����� �� ������ ������ */
.a11y-panel {
  position: fixed;
  top: 50%;
  max-height: 80vh;
  overflow-y: auto;
  left: 90px;
  width: 420px;
  background-color: #f4f6f8;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  padding: 20px;
  display: flex;
  flex-direction: column;
  z-index: 99998;
  /* ������� ����� �� Y ��� ����������� (-50%) + ���� �� X ��� ����� ���� */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(-20px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: top left; }
  .a11y-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0); }
  .a11y-panel .a11y-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px; }
    .a11y-panel .a11y-panel-header h3 {
      margin: 0;
      font-size: 18px;
      color: #1a1a1a;
      font-family: 'Open Sans', sans-serif;
      font-weight: 700; }
    .a11y-panel .a11y-panel-header .a11y-close-btn {
      background: #e0e0e0;
      border: none;
      border-radius: 50%;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      cursor: pointer;
      color: #333;
      transition: background 0.2s, color 0.2s; }
      .a11y-panel .a11y-panel-header .a11y-close-btn:hover, .a11y-panel .a11y-panel-header .a11y-close-btn:focus-visible {
        background: #00796b;
        color: #fff;
        outline: none; }
  .a11y-panel .a11y-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px; }
    .a11y-panel .a11y-grid .a11y-grid-item {
      background: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      padding: 12px 5px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02); }
      .a11y-panel .a11y-grid .a11y-grid-item .a11y-icon {
        font-size: 26px;
        margin-bottom: 10px;
        color: #00796b;
        transition: transform 0.2s ease; }
      .a11y-panel .a11y-grid .a11y-grid-item .a11y-label {
        font-size: 11px;
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        color: #333;
        text-align: center; }
      .a11y-panel .a11y-grid .a11y-grid-item:hover, .a11y-panel .a11y-grid .a11y-grid-item:focus-visible {
        border-color: #00cab9;
        box-shadow: 0 4px 12px rgba(0, 202, 185, 0.15);
        transform: translateY(-2px);
        outline: none; }
        .a11y-panel .a11y-grid .a11y-grid-item:hover .a11y-icon, .a11y-panel .a11y-grid .a11y-grid-item:focus-visible .a11y-icon {
          transform: scale(1.1); }

/* ������ */
.a11y-panel {
  padding: 0;
  overflow: hidden; }
  .a11y-panel .a11y-panel-inner {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
    min-height: 0; }

.a11y-divider {
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 20px 0; }

/* ������ �������� */
.a11y-reset-btn {
  width: 100%;
  background-color: #79c05b;
  color: #000;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  border: none;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.2s; }
  .a11y-reset-btn:hover {
    background-color: #68a84d; }

/* ��������� */
.a11y-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0; }
  .a11y-toggle-row .a11y-toggle-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: #1a1a1a; }
    .a11y-toggle-row .a11y-toggle-info .a11y-toggle-icon {
      font-size: 18px;
      color: #555; }

.a11y-switch {
  width: 50px;
  height: 26px;
  background-color: #ccc;
  border-radius: 30px;
  border: none;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s; }
  .a11y-switch .a11y-switch-handle {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b4252;
    font-size: 14px;
    font-weight: bold; }
  .a11y-switch.active {
    background-color: #3b4252; }
    .a11y-switch.active .a11y-switch-handle {
      transform: translateX(24px); }

/* ���������� */
.a11y-position-control {
  background: #f4f6f8;
  border-radius: 8px; }
  .a11y-position-control .a11y-position-header {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px; }
  .a11y-position-control .a11y-position-list {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden; }
  .a11y-position-control .a11y-radio-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s; }
    .a11y-position-control .a11y-radio-label:last-child {
      border-bottom: none; }
    .a11y-position-control .a11y-radio-label:hover {
      background-color: #f9f9f9; }
    .a11y-position-control .a11y-radio-label input {
      display: none; }
    .a11y-position-control .a11y-radio-label .a11y-radio-custom {
      width: 20px;
      height: 20px;
      border: 2px solid #ccc;
      border-radius: 50%;
      position: relative; }
    .a11y-position-control .a11y-radio-label input:checked + .a11y-radio-custom {
      border-color: #000; }
      .a11y-position-control .a11y-radio-label input:checked + .a11y-radio-custom::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 10px;
        height: 10px;
        background-color: #000;
        border-radius: 50%; }

/* ���� ��� ������������� ������� */
.a11y-grid-item.not-implemented {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: #f9f9f9;
  /* ��������� �� ������ ��� �������� */ }
  .a11y-grid-item.not-implemented:hover, .a11y-grid-item.not-implemented:focus-visible {
    border-color: #e0e0e0;
    box-shadow: none;
    transform: none;
    outline: none; }
    .a11y-grid-item.not-implemented:hover .a11y-icon, .a11y-grid-item.not-implemented:focus-visible .a11y-icon {
      transform: none; }

/* ����� ���� �������� ������ */
.a11y-level-indicator {
  display: flex;
  gap: 3px;
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  padding: 0 10px; }
  .a11y-level-indicator .a11y-level-bar {
    height: 3px;
    flex: 1;
    background-color: #d0d0d0;
    border-radius: 2px;
    transition: background-color 0.2s; }
    .a11y-level-indicator .a11y-level-bar.filled {
      background-color: #00796b; }

/* ������� ��������� */
.a11y-grid-item {
  position: relative; }
  .a11y-grid-item .a11y-active-check {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #00cab9;
    color: white;
    font-size: 9px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center; }

/* �������� */
#__next.a11y-mode-contrast-1 {
  filter: contrast(120%) saturate(120%); }

#__next.a11y-mode-contrast-2 {
  filter: contrast(150%) saturate(150%); }

#__next.a11y-mode-contrast-3 {
  filter: grayscale(100%) contrast(150%);
  background-color: #000 !important;
  color: #fff !important; }

#__next.a11y-mode-bigger-text-1 {
  zoom: 1.05; }

#__next.a11y-mode-bigger-text-2 {
  zoom: 1.15; }

#__next.a11y-mode-bigger-text-3 {
  zoom: 1.25; }

#__next.a11y-mode-bigger-text-4 {
  zoom: 1.40; }

/* ������ */
#__next.a11y-mode-cursor-1 {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M4 2 L4 32 L12 25 L17 37 L23 34 L18 22 L28 22 Z' fill='%23000000' stroke='%23ffffff' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E") 4 2, auto !important; }

/* �������� ��� ��� ������� */
.a11y-reading-guide-line {
  position: fixed;
  top: -100px;
  left: 0;
  width: 30vw;
  height: 4px;
  background: linear-gradient(90deg, #ff5722, #ffca28, #ff5722);
  box-shadow: 0 0 14px 3px rgba(255, 87, 34, 0.7);
  z-index: 99997;
  pointer-events: none;
  transform: translateY(-50%); }
  .a11y-reading-guide-line::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 12px solid #ff5722;
    filter: drop-shadow(0 -1px 2px rgba(0, 0, 0, 0.3)); }

/* ����� ��� ������� */
.a11y-reading-mask {
  position: fixed;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 99996;
  pointer-events: none; }

.a11y-reading-mask-top {
  top: 0;
  height: 0;
  border-bottom: 2px solid #2962ff; }

.a11y-reading-mask-bottom {
  top: 100%;
  bottom: 0;
  border-top: 2px solid #00c853; }

/* ������ ���������� */
#__next.a11y-mode-low-saturation-1 {
  filter: saturate(70%); }

#__next.a11y-mode-low-saturation-2 {
  filter: saturate(40%); }

#__next.a11y-mode-low-saturation-3 {
  filter: saturate(10%); }

/* ³������ �� ������� */
#__next.a11y-mode-text-spacing-1 {
  letter-spacing: 1px;
  word-spacing: 2px; }

#__next.a11y-mode-text-spacing-2 {
  letter-spacing: 2px;
  word-spacing: 4px; }

#__next.a11y-mode-text-spacing-3 {
  letter-spacing: 3px;
  word-spacing: 6px; }

/* ������� ��������� */
#__next.a11y-mode-highlight-links-1 a {
  background-color: #fff176 !important;
  color: #000 !important;
  text-decoration: underline !important;
  outline: 2px solid #000 !important; }

/* ������� ���������� */
#__next.a11y-mode-hide-images-1 img {
  visibility: hidden !important; }

#__next.a11y-mode-hide-images-1 .header__back-image {
  visibility: hidden !important; }

/* ������ �� ������� */
#__next.a11y-mode-line-height-1 {
  line-height: 1.5; }

#__next.a11y-mode-line-height-2 {
  line-height: 1.8; }

#__next.a11y-mode-line-height-3 {
  line-height: 2.2; }

/* XL-����� ������ */
.a11y-widget-container.oversized .a11y-toggle-btn {
  width: 80px;
  height: 80px; }
  .a11y-widget-container.oversized .a11y-toggle-btn svg {
    width: 40px;
    height: 40px; }

.a11y-widget-container.oversized .a11y-panel {
  left: 110px;
  width: 500px; }
  .a11y-widget-container.oversized .a11y-panel .a11y-icon {
    font-size: 32px; }
  .a11y-widget-container.oversized .a11y-panel .a11y-label {
    font-size: 13px; }
  .a11y-widget-container.oversized .a11y-panel .a11y-panel-header h3 {
    font-size: 22px; }

/* ������������ ������ */
.a11y-widget-container.position-right .a11y-toggle-btn {
  left: auto;
  right: 20px; }

.a11y-widget-container.position-right .a11y-panel {
  left: auto;
  right: 90px;
  transform-origin: top right;
  transform: translateY(-50%) translateX(20px); }
  .a11y-widget-container.position-right .a11y-panel.open {
    transform: translateY(-50%) translateX(0); }

.a11y-widget-container.position-right.oversized .a11y-panel {
  right: 110px; }

body {
  margin: 0; }

.certeficate-header {
  background-color: #212121;
  color: #ffffff;
  height: 191px;
  padding-top: 163px;
  padding-bottom: 0;
  position: relative;
  z-index: 0; }
  .certeficate-header__back-image {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url("/static/top_img.jpg");
    background-repeat: no-repeat;
    background-size: 1927px;
    background-position: center 96%; }
    .certeficate-header__back-image:after {
      content: '';
      position: absolute;
      background-color: rgba(0, 0, 0, 0.6);
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  .certeficate-header__logo {
    position: absolute;
    top: 32px;
    left: 64px;
    width: 219px; }
    @media screen and (max-width: 1024px) {
      .certeficate-header__logo {
        left: 24px; } }
    @media screen and (max-width: 440px) {
      .certeficate-header__logo {
        top: 42px;
        left: 16px;
        width: 146px; } }
  .certeficate-header__courses-link a {
    text-decoration: none;
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    position: absolute;
    top: 33px;
    left: 350px;
    width: 219px; }
    @media screen and (max-width: 1024px) {
      .certeficate-header__courses-link a {
        left: 324px; } }
    @media screen and (max-width: 440px) {
      .certeficate-header__courses-link a {
        top: 92px;
        left: 19px;
        font-size: 16px; } }
  .certeficate-header__certificate-link a {
    text-decoration: none;
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    position: absolute;
    top: 33px;
    left: 550px;
    width: 219px; }
    @media screen and (max-width: 1024px) {
      .certeficate-header__certificate-link a {
        left: 524px; } }
    @media screen and (max-width: 440px) {
      .certeficate-header__certificate-link a {
        top: 192px;
        left: 19px;
        font-size: 16px; } }

.certeficate-header__name {
  font-family: "Open Sans", sans-serif;
  font-size: 96px;
  width: 720px;
  font-weight: 800;
  margin: auto;
  line-height: 96px;
  word-wrap: break-word;
  text-align: center; }
  @media screen and (max-width: 1024px) {
    .certeficate-header__name {
      margin: 0 auto; } }
  @media screen and (max-width: 767px) {
    .certeficate-header__name {
      margin: 0 auto;
      font-size: 38px;
      width: 288px;
      line-height: 40px; } }

@keyframes copyMessage {
  0% {
    opacity: 0; }
  10%,
  90% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.social-media-share {
  display: flex;
  justify-content: space-between;
  width: 220px;
  max-width: 100%;
  margin: 30px 0; }
  .social-media-share button {
    position: relative;
    margin: 0;
    padding: 0;
    cursor: pointer;
    background-color: transparent;
    outline: none;
    border: none; }
  .social-media-share img,
  .social-media-share a {
    display: block; }
  .social-media-share .copy-link-share.show::before {
    content: 'Copied!';
    display: block;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: 1s ease copyMessage;
    animation-iteration-count: 1; }

.certificates {
  margin: 80px auto; }
  .certificates__container {
    max-width: 1170px;
    box-sizing: content-box;
    padding: 0 15px;
    margin: auto; }
  .certificates__content {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 1px 0px 21px 0px rgba(34, 60, 80, 0.2); }
  .certificates__image {
    flex-basis: 100%; }
    @media (min-width: 768px) {
      .certificates__image {
        flex-basis: 60%; } }
    .certificates__image img {
      width: 100%;
      display: block; }
  .certificates__search {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 300px; }
    @media (min-width: 768px) {
      .certificates__search {
        width: 40%; } }
  .certificates__field {
    position: relative;
    display: flex; }
  .certificates__input {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    height: 22px;
    border: none;
    border-bottom: 1px solid #757575;
    background-color: #fff;
    transition: border-bottom-color 0.2s ease;
    outline: none;
    margin: 25px 0;
    padding: 5px 20px 5px 0;
    width: 200px;
    max-width: 100%; }
    .certificates__input:focus {
      border-bottom-color: #212121; }
    .certificates__input:focus + label,
    .certificates__input:not(:placeholder-shown) + label {
      transform: translateY(-200%);
      font-size: 12px; }
  .certificates__submit {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    border: none;
    outline: none;
    background-color: transparent;
    background-image: url("/static/search.png");
    background-size: cover;
    padding: 0;
    cursor: pointer; }
  .certificates__placeholder {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    transition: 0.2s transform ease, 0.2s font-size ease;
    color: #757575;
    pointer-events: none;
    cursor: text;
    margin: 0; }
  .certificates__error {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    margin: 0;
    position: absolute;
    bottom: 0;
    color: #dc3545; }
  .certificates__share-buttons {
    width: 220px;
    max-width: 100%; }

