.prefooter_banner {
  position: relative;
  width: 100%;
  margin: 70px 0;
  padding: 0 16px;
  overflow: hidden;
  box-sizing: border-box;
}

.prefooter_banner *,
.prefooter_banner *::before,
.prefooter_banner *::after {
  box-sizing: border-box;
}

.prefooter_banner_aside {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid rgba(20, 24, 35, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(255, 211, 100, 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f8f7f3 100%);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
  overflow: hidden;
}

.prefooter_banner_aside::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 211, 100, 0.24);
  border-radius: 24px;
  pointer-events: none;
}

.prefooter_banner_container {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-width: 0;
}

.prefooter_banner_header_container {
  margin-bottom: 22px;
}

.prefooter_banner_header {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 211, 100, 0.14);
  border: 1px solid rgba(255, 211, 100, 0.35);
}

.prefooter_banner_header svg {
  flex: 0 0 34px;
  width: 34px;
  height: auto;
}

.prefooter_banner_title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #2f2a1f;
  letter-spacing: -0.02em;
}

.prefooter_banner_line {
  width: 100%;
  height: 1px;
  margin: 0 0 28px;
  border: none;
  background: linear-gradient(
    90deg,
    rgba(255, 211, 100, 0.65),
    rgba(20, 24, 35, 0.08),
    transparent
  );
}

.prefooter_banner_content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.prefooter_banner_content_item {
  min-width: 0;
}

.prefooter_banner_desc_container {
  padding: 0;
}

.prefooter_banner_desc_title {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: #171717;
  letter-spacing: -0.03em;
}

.prefooter_banner_desc_items {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.prefooter_banner_desc_item {
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  line-height: 1.55;
  color: #4b5563;
}

.prefooter_banner_desc_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff4cf;
  border: 1px solid rgba(255, 211, 100, 0.65);
}

.prefooter_banner_desc_item::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  width: 6px;
  height: 9px;
  border-right: 2px solid #a77912;
  border-bottom: 2px solid #a77912;
  transform: rotate(45deg);
}

.prefooter_banner_right {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 24, 35, 0.07);
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.05);
}

.prefooter_banner_subtitle {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

.personal_banner_subscription {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  color: #2d230e;
  background: linear-gradient(135deg, #ffd364 0%, #f4b942 100%);
  box-shadow: 0 12px 28px rgba(244, 185, 66, 0.28);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.personal_banner_subscription:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(244, 185, 66, 0.36);
}

.personal_banner_subscription:active {
  transform: translateY(0);
}

.prefooter_banner_img_block {
  position: relative;
  z-index: 1;
  flex: 0 0 240px;
  max-width: 240px;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.prefooter_banner_img_block::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255, 211, 100, 0.18);
  filter: blur(4px);
  bottom: 12px;
  right: 0;
  z-index: -1;
}

.prefooter_banner_img {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
}

/* Tablet */

@media (max-width: 1024px) {
  .prefooter_banner_aside {
    gap: 28px;
    padding: 34px;
  }

  .prefooter_banner_content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .prefooter_banner_img_block {
    flex: 0 0 200px;
    max-width: 200px;
  }

  .prefooter_banner_img {
    max-width: 200px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .prefooter_banner {
    margin: 48px 0;
    padding: 0 14px;
  }

  .prefooter_banner_aside {
    flex-direction: column;
    align-items: stretch;
    padding: 28px 22px;
    border-radius: 26px;
  }

  .prefooter_banner_aside::before {
    inset: 10px;
    border-radius: 20px;
  }

  .prefooter_banner_header {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
  }

  .prefooter_banner_title {
    font-size: 17px;
  }

  .prefooter_banner_desc_title {
    font-size: 21px;
    text-align: center;
  }

  .prefooter_banner_desc_items {
    gap: 10px;
  }

  .prefooter_banner_desc_item {
    font-size: 15px;
    line-height: 1.5;
  }

  .prefooter_banner_right {
    padding: 22px;
    text-align: center;
  }

  .prefooter_banner_subtitle {
    font-size: 15px;
    line-height: 1.6;
  }

  .personal_banner_subscription {
    width: 100%;
    min-height: 48px;
  }

  .prefooter_banner_img_block {
    order: -1;
    max-width: 170px;
    flex: none;
    margin: 0 auto 6px;
  }

  .prefooter_banner_img {
    max-width: 170px;
  }

  .prefooter_banner_img_block::before {
    width: 160px;
    height: 160px;
    right: 50%;
    transform: translateX(50%);
  }
}

/* Small mobile */

@media (max-width: 480px) {
  .prefooter_banner_aside {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .prefooter_banner_header svg {
    width: 30px;
    flex-basis: 30px;
  }

  .prefooter_banner_title {
    font-size: 16px;
  }

  .prefooter_banner_desc_title {
    font-size: 19px;
  }

  .prefooter_banner_desc_item {
    padding-left: 30px;
    font-size: 14px;
  }

  .prefooter_banner_desc_item::before {
    width: 18px;
    height: 18px;
  }

  .prefooter_banner_desc_item::after {
    left: 6px;
    top: 11px;
  }

  .prefooter_banner_right {
    padding: 18px;
    border-radius: 20px;
  }

  .prefooter_banner_subtitle {
    font-size: 14px;
  }
}















.b-exam-section {
    padding: 48px 0;
    background: var(--white2);
    color: var(--black2);
  }

  .b-exam-section * {
    box-sizing: border-box;
  }

  .b-exam-wrap {
    position: relative;
  }

  .b-exam-hero {
    padding: 34px;
    border: 1px solid var(--light-blueviolet6);
    border-radius: 28px;
    background:
      radial-gradient(circle at top right, var(--light-blueviolet3), transparent 34%),
      linear-gradient(135deg, var(--white2), var(--white4));
    overflow: hidden;
  }

  .b-exam-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--light-blueviolet);
    color: var(--light-black2);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
  }

  .b-exam-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blueviolet);
  }

  .b-exam-title {
    margin: 0 0 16px;
    max-width: 820px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--black2);
  }

  .b-exam-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray);
  }

  .b-exam-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
    margin-top: 24px;
  }

  .b-exam-card {
    padding: 24px;
    border: 1px solid var(--white5);
    border-radius: 24px;
    background: var(--white2);
    box-shadow: 0 18px 45px var(--light-black);
  }

  .b-exam-card-title {
    margin:  16px 0;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
    text-align: center;
    color: var(--black2);
  }
.grammar-items-top-unset {
  margin: 0 !important;
}
  .b-exam-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .b-exam-list li {
    position: relative;
    padding: 13px 14px 13px 42px;
    border-radius: 16px;
    background: var(--white3);
    font-size: 16px;
    line-height: 1.45;
    color: var(--black2);
  }

  .b-exam-list li::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 18px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--blueviolet);
  }

  .b-exam-stats {
    display: grid;
    gap: 12px;
  }

  .b-exam-stat {
    padding: 18px;
    border-radius: 20px;
    background: var(--light-blueviolet2);
  }

  .b-exam-stat-value {
    display: block;
    margin-bottom: 5px;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--light-black2);
  }

  .b-exam-stat-text {
    display: block;
    font-size: 14px;
    line-height: 1.45;
    color: var(--gray);
  }

  .b-exam-content {
    display: grid;
    gap: 18px;
    margin-top: 24px;
  }

  .b-exam-info {
    padding: 26px;
    border: 1px solid var(--light-blueviolet6);
    border-radius: 24px;
    background: var(--white);
  }

  .b-exam-sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
  }

  .b-exam-section-item {
    padding: 18px;
    border-radius: 20px;
    background: var(--white2);
    border: 1px solid var(--white5);
  }

  .b-exam-section-name {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
    color: var(--black2);
  }

  .b-exam-section-desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--gray);
  }

  .b-exam-note {
    margin: 18px 0 0;
    padding: 16px 18px;
    border-left: 4px solid var(--blueviolet);
    border-radius: 16px;
    background: var(--light-blueviolet3);
    font-size: 15px;
    line-height: 1.65;
    color: var(--gray);
  }

  .b-exam-table-box {
    margin-top: 28px;
    padding: 22px;
    border-radius: 28px;
    border: 1px solid var(--light-blueviolet6);
    background: var(--white2);
    box-shadow: 0 18px 45px var(--light-black);
  }

  .b-exam-table-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
  }

  .b-exam-table-title {
    margin: 0;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 800;
    color: var(--black2);
  }

  .b-exam-table-subtitle {
    margin: 6px 0 0;
    max-width: 720px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray);
  }

  .b-exam-table-scroll {
    width: 100%;
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid var(--white5);
  }

  .b-exam-table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
    background: var(--white2);
  }

  .b-exam-table th,
  .b-exam-table td {
    padding: 15px 16px;
    border-bottom: 1px solid var(--white5);
    text-align: left;
    vertical-align: top;
    font-size: 15px;
    line-height: 1.55;
    color: var(--gray);
  }

  .b-exam-table th {
    background: var(--light-blueviolet2);
    color: var(--black2);
    font-weight: 800;
  }

  .b-exam-table tr:last-child td {
    border-bottom: none;
  }

  .b-exam-table td:first-child,
  .b-exam-table th:first-child {
    width: 48%;
  }

  .b-exam-table td:nth-child(2),
  .b-exam-table td:nth-child(3),
  .b-exam-table td:nth-child(4),
  .b-exam-table th:nth-child(2),
  .b-exam-table th:nth-child(3),
  .b-exam-table th:nth-child(4) {
    text-align: center;
  }

  .b-exam-task {
    color: var(--black2);
    font-weight: 800;
  }

  .b-exam-level {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 34px;
    padding: 6px 9px;
    border-radius: 12px;
    background: var(--light-blueviolet);
    color: var(--light-black2);
    font-weight: 800;
  }

  .b-exam-number {
    font-weight: 800;
    color: var(--black2);
  }

  @media (max-width: 992px) {
    .b-exam-section {
      padding: 38px 0;
    }

    .b-exam-hero {
      padding: 28px;
      border-radius: 24px;
    }

    .b-exam-title {
      font-size: 26px;
    }

    .b-exam-intro-grid {
      grid-template-columns: 1fr;
    }

    .b-exam-sections {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .b-exam-section {
      padding: 30px 0;
    }

    .b-exam-hero {
      padding: 22px;
      border-radius: 22px;
    }

    .b-exam-title {
      font-size: 24px;
    }

    .b-exam-card,
    .b-exam-info,
    .b-exam-table-box {
      padding: 18px;
      border-radius: 20px;
    }

    .b-exam-table-head {
      display: block;
    }

    .b-exam-table-title {
      font-size: 20px;
    }

    .b-exam-table th,
    .b-exam-table td {
      padding: 13px 14px;
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .b-exam-section {
      padding: 24px 0;
    }

    .b-exam-hero {
      padding: 18px;
    }

    .b-exam-title {
      font-size: 22px;
    }

    .b-exam-text,
    .b-exam-list li {
      font-size: 15px;
    }

    .b-exam-list li {
      padding-left: 38px;
    }

    .b-exam-table-box {
      padding: 14px;
    }
  }



.dz-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.dz-text {
  margin: 0;
  line-height: 1.7;
  color: #222;
}
.dz-text u{
  text-align: center;
  display: block;
}
.dz-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.3;
  color: #111;
}
.dz-subtitle {
  margin: 0;
  font-size: 22px;
  line-height: 1.4;
  color: #111;
  text-align: center;
}
.dz-subtitle u{
  text-decoration: unset;
}
.dz-note {
  padding: 18px 20px;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  background: #fafafa;
}
.dz-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dz-card {
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  padding: 16px;
  background: #fff;
}
.dz-table-box {
  overflow-x: auto;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  background: #fff;
}
.dz-table {
  width: 100%;
  border-collapse: collapse;
}
.dz-table th,
.dz-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #ececec;
  text-align: left;
  vertical-align: top;
  color: #222;
}
.dz-table th {
  font-weight: 700;
  background: #f8f8f8;
  color: #111;
}
.dz-table tr:last-child td {
  border-bottom: none;
}
.dz-examples {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dz-audio-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 767px) {
  .dz-title {
    font-size: 24px;
  }
  .dz-subtitle {
    font-size: 20px;
  }
  .dz-table th,
  .dz-table td {
    padding: 12px;
  }
}

.de-alphabet-section {
  width: 100%;
  margin: 40px 0;
}

.de-alphabet-intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.de-alphabet-intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

.de-alphabet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.de-alphabet-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.de-alphabet-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.de-alphabet-card-number {
  min-width: 42px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f3f4f6;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.de-alphabet-card-main {
  flex: 1;
}

.de-alphabet-letter {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
}

.de-alphabet-transcription {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.de-alphabet-transcription span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  line-height: 1.4;
  color: #475569;
}

.de-alphabet-example {
  padding-top: 14px;
  border-top: 1px solid #eef2f7;
}

.de-alphabet-example-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
}

.de-alphabet-example-word {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
  color: #1f2937;
}

.de-alphabet-example-translate {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
}

.de-alphabet-back {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.de-alphabet-back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid #dbe1e8;
  border-radius: 999px;
  background: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #1f2937;
  transition: all 0.25s ease;
}

@media (max-width: 991px) {
  .de-alphabet-grid {
    grid-template-columns: 1fr;
  }

  .de-alphabet-letter {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .de-alphabet-section {
    margin: 30px 0;
  }

  .de-alphabet-card {
    padding: 16px;
    border-radius: 16px;
  }

  .de-alphabet-card-top {
    gap: 12px;
  }

  .de-alphabet-card-number {
    min-width: 38px;
    width: 38px;
    height: 38px;
    font-size: 14px;
    border-radius: 10px;
  }

  .de-alphabet-letter {
    font-size: 22px;
  }

  .de-alphabet-transcription span {
    font-size: 13px;
    padding: 6px 10px;
  }

  .de-alphabet-example-word {
    font-size: 16px;
  }

  .de-alphabet-example-translate {
    font-size: 14px;
  }

  .de-alphabet-back a {
    width: 100%;
    padding: 12px 18px;
    text-align: center;
    border-radius: 16px;
  }
}

.ege-eng-content {
  padding: 40px 0;
  color: #1f2937;
}

.ege-eng-content__container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.ege-eng-content__inner {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.ege-eng-content__title {
  margin: 40px 0 20px;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  color: #111827;
}

.ege-eng-content__text {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.8;
  color: #374151;
}

.ege-eng-content__text:last-child {
  margin-bottom: 0;
}

.ege-eng-content__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.ege-eng-content__list-item {
  position: relative;
  margin-bottom: 14px;
  padding-left: 24px;
  font-size: 18px;
  line-height: 1.8;
  color: #374151;
}

.ege-eng-content__list-item:last-child {
  margin-bottom: 0;
}

.ege-eng-content__list-item::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
}

.ege-eng-content__table-wrap {
  margin: 24px 0 32px;
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
}

.ege-eng-content__table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.5;
  background: #ffffff;
}

.ege-eng-content__table--large {
  min-width: 980px;
}

.ege-eng-content__table thead th {
  padding: 16px 14px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  color: #111827;
  background: #eff6ff;
  vertical-align: middle;
}

.ege-eng-content__table tbody td {
  padding: 14px 12px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  line-height: 1.5;
  color: #374151;
  text-align: center;
  vertical-align: middle;
}

.ege-eng-content__table tbody tr:nth-child(even) td {
  background: #f9fafb;
}

.ege-eng-content__table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: #1f2937;
}

.ege-eng-content__table a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.25s ease;
}

.ege-eng-content__table a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.ege-eng-content a {
  color: #2563eb;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.25s ease;
}

.ege-eng-content a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.ege-eng-content strong {
  font-weight: 700;
  color: #111827;
}

@media (max-width: 991px) {
  .ege-eng-content {
    padding: 32px 0;
  }

  .ege-eng-content__inner {
    padding: 30px 24px;
    border-radius: 20px;
  }

  .ege-eng-content__title {
    margin: 32px 0 18px;
    font-size: 28px;
  }

  .ege-eng-content__text,
  .ege-eng-content__list-item {
    font-size: 17px;
    line-height: 1.75;
  }

  .ege-eng-content__table {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .ege-eng-content {
    padding: 24px 0;
  }

  .ege-eng-content__container {
    padding: 0 14px;
  }

  .ege-eng-content__inner {
    padding: 22px 16px;
    border-radius: 16px;
  }

  .ege-eng-content__title {
    margin: 28px 0 16px;
    font-size: 24px;
    line-height: 1.3;
  }

  .ege-eng-content__text,
  .ege-eng-content__list-item {
    font-size: 16px;
    line-height: 1.7;
  }

  .ege-eng-content__list-item {
    padding-left: 20px;
  }

  .ege-eng-content__list-item::before {
    top: 11px;
    width: 7px;
    height: 7px;
  }

  .ege-eng-content__table-wrap {
    margin: 20px 0 28px;
    border-radius: 14px;
  }

  .ege-eng-content__table thead th,
  .ege-eng-content__table tbody td {
    padding: 12px 10px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .ege-eng-content__inner {
    padding: 18px 14px;
  }

  .ege-eng-content__title {
    font-size: 21px;
  }

  .ege-eng-content__text,
  .ege-eng-content__list-item {
    font-size: 15px;
    line-height: 1.65;
  }

  .ege-eng-content__table thead th,
  .ege-eng-content__table tbody td {
    padding: 10px 8px;
    font-size: 13px;
  }
}

.page_level_texts {
  padding: 60px 0;
}

.lesson-page-iner-wrp {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page_course_m2_container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(31, 45, 61, 0.08);
  border: 1px solid rgba(120, 145, 180, 0.15);
}

.page_course_m2_content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 30px;
}

.h2-lesson-title {
  margin: 0;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  color: #1f2a44;
  text-align: center;
}

.lesson_word_course_m2 {
  display: flex;
  justify-content: center;
}

.lesson_card_word_course_m2 {
  margin: 0;
  padding: 18px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #4f7cff 0%, #6d5dfc 100%);
  color: #ffffff;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 12px 30px rgba(79, 124, 255, 0.22);
}

.lesson_card_word_course_m2_span {
  font-weight: 800;
  color: #ffe082;
}

.page_course_m2_lesson_content {
  width: 100%;
}

.lesson_card_items_course_m2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.lesson_card_item_course_m2 {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(96, 122, 160, 0.14);
  box-shadow: 0 10px 30px rgba(38, 50, 77, 0.08);
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  min-height: 100%;
}

.lesson_card_item_course_m2:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(38, 50, 77, 0.14);
  border-color: rgba(79, 124, 255, 0.35);
}

.lesson_card_item_course_m2:active {
  transform: translateY(-3px) scale(0.99);
}

.lesson_card_bg_course_m2 {
  position: relative;
  padding: 18px;
  background: linear-gradient(180deg, #f7faff 0%, #edf3ff 100%);
}

.main_language_card_img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(130, 150, 180, 0.12);
}

.card_img_m2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lesson_card_description_course_m2 {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.lesson_card_title_course_m2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  color: #1b2437;
}

.lesson_card_subtitle_course_m2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
  color: #6a7487;
}

.check_alert_course_m2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}

.check-button {
  min-width: 240px;
  min-height: 56px;
  border: none;
  outline: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #4f7cff 0%, #6d5dfc 100%);
  box-shadow: 0 14px 30px rgba(79, 124, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
  padding: 12px 20px;
}

.check-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(79, 124, 255, 0.3);
}

.check-button:active {
  transform: translateY(0);
}

.check-button_test {
  margin: 0;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
}

.alert-message {
  min-height: 28px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  color: #22304d;
}

#repeat_button_course_m2 {
  background: linear-gradient(135deg, #edf3ff 0%, #dfe8ff 100%);
  box-shadow: none;
  border: 1px solid rgba(79, 124, 255, 0.2);
}

#repeat_button_course_m2 .check-button_test {
  color: #3f63db;
}

/* Если скрипт добавляет классы выбора/успеха/ошибки */
.lesson_card_item_course_m2.active,
.lesson_card_item_course_m2.selected {
  border-color: #4f7cff;
  box-shadow:
    0 0 0 3px rgba(79, 124, 255, 0.15),
    0 14px 35px rgba(38, 50, 77, 0.12);
}

.lesson_card_item_course_m2.success {
  border-color: #22b573;
  box-shadow:
    0 0 0 3px rgba(34, 181, 115, 0.14),
    0 14px 35px rgba(38, 50, 77, 0.12);
}

.lesson_card_item_course_m2.error {
  border-color: #ff5f6d;
  box-shadow:
    0 0 0 3px rgba(255, 95, 109, 0.14),
    0 14px 35px rgba(38, 50, 77, 0.12);
}

.block_pagination_couse_2 {
  width: 100%;
  margin-bottom: 32px;
}

.pagination_items.pagination_items_couse_2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination_link_couse_2 {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(108, 130, 170, 0.16);
  box-shadow: 0 10px 25px rgba(31, 45, 61, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.pagination_link_couse_2:hover {
  transform: translateY(-4px);
}

.pagination_link_couse_2:active {
  transform: translateY(-1px);
}

.pagination_item {
  list-style: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: #22304d;
  transition: color 0.3s ease;
}

.pagination_link_couse_2:hover .pagination_item {
  color: #a580e0;
}

.pagination_link_couse_2.active,
.pagination_link_couse_2.current,
.pagination_link_couse_2[aria-current="page"] {
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(79, 124, 255, 0.22);
}

.pagination_link_couse_2.active .pagination_item,
.pagination_link_couse_2.current .pagination_item,
.pagination_link_couse_2[aria-current="page"] .pagination_item {
  color: #ffffff;
}

.pagination_items.pagination_items_couse_2 .pagination_link_couse_2 {
  flex-shrink: 0;
}

/* Tablet */
@media (max-width: 992px) {
  .block_pagination_couse_2 {
    margin-bottom: 26px;
  }

  .pagination_items.pagination_items_couse_2 {
    gap: 10px;
  }

  .pagination_link_couse_2 {
    min-width: 48px;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
  }

  .pagination_item {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .block_pagination_couse_2 {
    margin-bottom: 22px;
  }

  .pagination_items.pagination_items_couse_2 {
    gap: 8px;
    justify-content: center;
  }

  .pagination_link_couse_2 {
    min-width: 42px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 12px;
  }

  .pagination_item {
    font-size: 14px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .page_level_texts {
    padding: 50px 0;
  }

  .page_course_m2_container {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .h2-lesson-title {
    font-size: 32px;
  }

  .lesson_card_word_course_m2 {
    font-size: 18px;
    padding: 16px 20px;
  }

  .lesson_card_items_course_m2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .lesson_card_title_course_m2 {
    font-size: 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .page_level_texts {
    padding: 36px 0;
  }

  .page_course_m2_container {
    padding: 20px 14px;
    border-radius: 20px;
  }

  .page_course_m2_content {
    gap: 22px;
  }

  .h2-lesson-title {
    font-size: 26px;
    line-height: 1.25;
  }

  .lesson_card_word_course_m2 {
    width: 100%;
    font-size: 16px;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .lesson_card_items_course_m2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lesson_card_bg_course_m2 {
    padding: 14px;
  }

  .main_language_card_img {
    border-radius: 16px;
  }

  .lesson_card_description_course_m2 {
    padding: 16px 14px 18px;
  }

  .lesson_card_title_course_m2 {
    font-size: 18px;
  }

  .lesson_card_subtitle_course_m2 {
    font-size: 15px;
  }

  .check-button {
    width: 100%;
    min-width: 100%;
    min-height: 52px;
    border-radius: 14px;
  }

  .check-button_test {
    font-size: 16px;
  }
}

.bread-crumbs-section {
  margin-top: 119px;
}

.bread-crumbs-back {
  position: absolute;
  left: 0;
  width: 36px;
  height: 36px;
  background: var(--white2);
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.category-project-cnt {
  margin: 40px auto 0;
}
.main_language_card_bg {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.bread-crumbs-back:hover {
  background: var(--blueviolet);
}

.bread-crumbs-back:hover i {
  background: var(--white);
}

.bread-icon-back {
  font-size: 10px;
  background: var(--blueviolet);
  transform: rotate(-135deg);
}

.bread-crumbs-body {
  justify-content: center;
  width: 100%;
  gap: 20px;
  position: relative;
}
.bread-crumbs-menu {
  max-width: 1100px;
  margin: 0 auto;
}

.bread-crumbs-menu ul {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.bread-crumbs-menu ul li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: var(--gray);
  transition: 0.3s;
}

.bread-crumbs-menu ul li a:hover {
  text-decoration: underline;
  opacity: 0.7;
  text-underline-offset: 5px;
  color: var(--gray);
}

.bread-crumbs-menu ul li a.active {
  color: var(--gray2);
}

.bread-crumbs-menu ul li i {
  font-size: 10px;
  background: var(--black2);
}

.category-info-section {
  margin-top: 35px;
}

.rlg-lesson-house-section {
  margin-top: 40px;
}

.rlg-lesson-house-shell {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.rlg-lesson-house-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e5eef8;
  box-shadow: 0 20px 60px rgba(31, 71, 136, 0.08);
  padding: 20px;
}

.rlg-lesson-house-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(75, 145, 255, 0.16) 0%,
    rgba(75, 145, 255, 0) 72%
  );
  pointer-events: none;
}

.rlg-lesson-house-card::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(73, 203, 155, 0.14) 0%,
    rgba(73, 203, 155, 0) 72%
  );
  pointer-events: none;
}

.rlg-lesson-house-top {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e8eef5;
}

.rlg-lesson-house-title {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  color: #183b56;
  letter-spacing: -0.02em;
}

.rlg-lesson-house-audio {
  padding: 16px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #dfeaf6;
  box-shadow: 0 10px 30px rgba(39, 76, 119, 0.06);
}

.rlg-lesson-house-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.rlg-lesson-house-item {
  padding: 15px;
  border-radius: 15px;
  background: #ffffff;
  border: 1px solid #e8eef5;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.rlg-lesson-house-en {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.45;
  color: #102a43;
}

.rlg-lesson-house-en strong {
  font-weight: 700;
}

.rlg-lesson-house-ru {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #5b7083;
}

@media (max-width: 768px) {
  .rlg-lesson-house-section {
    padding: 28px 0;
  }

  .rlg-lesson-house-shell {
    padding: 0;
  }

  .rlg-lesson-house-card {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .rlg-lesson-house-title {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .rlg-lesson-house-top {
    margin-bottom: 22px;
    padding-bottom: 18px;
  }

  .rlg-lesson-house-audio {
    padding: 14px;
    border-radius: 16px;
  }

  .rlg-lesson-house-item {
    padding: 16px 14px;
    border-radius: 16px;
  }

  .rlg-lesson-house-en {
    font-size: 14px;
  }

  .rlg-lesson-house-ru {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .rlg-lesson-house-title {
    font-size: 24px;
  }

  .rlg-lesson-house-en {
    font-size: 17px;
    line-height: 1.4;
  }

  .rlg-lesson-house-ru {
    font-size: 14px;
    line-height: 1.5;
  }

  .rlg-lesson-house-content {
    gap: 12px;
  }
}

.mx-764 {
  max-width: 764px;
  margin: 0 auto;
}

.mx-914 {
  max-width: 914px;
  margin: 0 auto;
}

.mx-718 {
  max-width: 718px;
  margin: 0 auto;
}

.mx-1025 {
  max-width: 1025px;
  margin: 0 auto;
}

.module-back {
  margin-top: 40px;
}

.module-back a {
  gap: 9px;
}

.module-back a span {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: var(--blueviolet);
  transition: 0.3s;
}

.module-back .module-icon-arrow {
  background: var(--blueviolet);
  font-size: 10px;
  transform: rotate(45deg);
  transition: 0.3s;
}

.module-back:hover a span {
  color: var(--black2);
}

.module-back:hover .module-icon-arrow {
  background: var(--black2);
}

.category-null-section {
  margin-top: 40px;
}

.category-null-body {
  width: 100%;
  background: var(--light-blueviolet);
  border-radius: 40px;
  min-height: 420px;
  gap: 20px;
}

.category-null-body p {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: var(--gray);
}

.category-null-img {
  max-width: 320px;
  width: 100%;
  height: 226px;
}

.category-null-body button {
  font-size: 18px;
  padding: 13px 28px;
  font-weight: 400;
}

.beginner-level-section {
  margin-top: 40px;
}

.beginner-link-icon {
  font-size: 10px;
  background: var(--black2);
  margin-top: 3px;
  flex: 0 0 10px;
}

.beginner-item-icon {
  max-width: 24px;
  width: 100%;
  height: 24px;
}

.beginner-level-items {
  gap: 20px;
}

.beginner-level-item {
  padding: 24px;
  background: var(--white);
  box-shadow: 0px 0px 16px 0px var(--light-black);
  border-radius: 12px;
}

.beginner-level-item h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--blueviolet);
  margin-top: 12px;
}

.beginner-links {
  margin-top: 24px;
  gap: 12px;
}

.beginner-links a {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 14px;
  gap: 8px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--black2);
  transition: 0.3s;
}

.beginner-links a::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blueviolet);
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
}

.beginner-links a:hover {
  color: var(--blueviolet);
}

.beginner-links a:hover i {
  background: var(--blueviolet);
}

.details-title {
  padding: 12px 24px;
  border-radius: 1000px;
  background: var(--light-blueviolet);
  margin: 20px auto;
  max-width: max-content;
}

.details-title span {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: var(--blueviolet);
}

.words-table {
  max-width: 732px;
  width: 100%;
  margin: 40px auto 0;
  gap: 6px;
  align-items: center;
}

.words-row {
  gap: 6px;
  width: 100%;
}

.words-table-titles {
  gap: 6px;
  width: 100%;
}

.words-table-title {
  padding: 7.5px 20px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: var(--black2);
  background: var(--light-blueviolet);
  border-radius: 4px;
  min-width: 240px;
  width: 100%;
}

.word-item {
  border: 1px solid var(--gray2);
  border-radius: 4px;
  padding: 7.5px 20px;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  flex-direction: column;
  flex: 1 1 50%;
}

.word-bold-item {
  font-weight: 600;
  border: 1px solid var(--gray2);
  border-radius: 4px;
  padding: 7.5px 20px;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  min-width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 50%;
}

.words-next {
  margin-top: 24px;
}

.words-next i {
  display: flex;
  margin-top: 2px;
  transition: 0.3s;
}

.words-next a {
  gap: 9px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: var(--blueviolet);
  transition: 0.3s;
}
.words-next a br {
  display: none !important;
}

.words-next a span {
  transition: 0.3s;
}

.words-next:hover a span {
  color: var(--black2);
}

.words-next:hover i {
  background: var(--black2);
}

.riddle-btn i {
  display: flex;
  margin-top: 2px;
}

.riddle-btn button {
  gap: 9px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: var(--blueviolet);
  background: transparent;
}

.articles-next i {
  display: flex;
  margin-top: 2px;
  transition: 0.3s;
}

.articles-next a {
  gap: 9px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: var(--blueviolet);
  transition: 0.3s;
}

.articles-next:hover a span {
  color: var(--black2);
}

.articles-next:hover i {
  background: var(--black2);
}

.grammar-items {
  gap: 20px;
  margin-top: 40px;
}
.margnTop-unset{
  margin-top: unset !important;
}
.grammar-item {
  padding: 24px;
  background: var(--white);
  box-shadow: 0px 0px 16px 0px var(--light-black);
  border-radius: 12px;
}

.grammar-link {
  gap: 7px;
}

.grammar-link span {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--blueviolet);
  transition: 0.3s;
}

.grammar-link i {
  margin-top: 8px;
  transition: 0.3s;
  flex: 0 0 10px;
}

.grammar-links {
  margin-top: 24px;
  gap: 12px;
}

.grammar-link:hover span {
  color: var(--black2);
}

.grammar-link:hover i {
  background: var(--black2);
}

.grammar-first-link {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-left: 14px;
  gap: 8px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--black2);
  transition: 0.3s;
}

.grammar-first-link i {
  transition: 0.3s;
  margin-top: 8px;
}

.grammar-first-link:hover {
  color: var(--blueviolet);
}

.grammar-first-link:hover i {
  background: var(--blueviolet);
}

.grammar-first-link::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blueviolet);
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
}

.grammar-sub-link {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-left: 40px;
  gap: 8px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--black2);
  margin-top: 12px;
}

.grammar-sub-link::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blueviolet);
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
}

.grammar-sub-link::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blueviolet);
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
}

.grammar-arrow {
  font-size: 10px;
  background: var(--blueviolet);
}

.grammar-details-cnt {
  /* max-width: 940px; */
  width: 100%;
  margin: 40px auto 0;
}

.grammar-description {
  gap: 24px;
}

.grammar-modal-verbs {
  margin-bottom: 20px;
}
.grammar-description-ul ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.grammar-description-ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--black2);
}

.grammar-description p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--black2);
}

.grammar-description b {
  color: var(--black2);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}

.grammar-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.grammar-row {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.grammar-col {
  padding: 16px 18px;
}

.grammar-row .grammar-col:first-child {
  background: #f7f7f7;
  border-right: 1px solid #d9d9d9;
  font-weight: 600;
}

.grammar-row .grammar-col:last-child {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.grammar-en {
  display: inline;
  font-weight: 600;
}

.grammar-ru {
  display: inline;
  color: #4b5563;
  margin-left: 6px;
}

.grammar-ru em {
  color: inherit;
}

@media (max-width: 768px) {
  .grammar-row {
    grid-template-columns: 1fr;
  }

  .grammar-row .grammar-col:first-child {
    border-right: none;
    border-bottom: 1px solid #d9d9d9;
  }

  .grammar-col {
    padding: 14px;
  }
  .grammar-description p {
    font-size: 16px;
    line-height: 22px;
  }
}

.alphabet-table {
  gap: 6px;
  width: 100%;
  justify-content: center;
  align-items: center;
  max-width: 480px;
  margin: 44px auto 0;
  margin-bottom: 20px;
}

.alphabet-table-row {
  width: 100%;
  gap: 6px;
  display: flex;
}

.articles-links {
  margin-top: 40px;
  gap: 12px;
}

.table-words {
  padding: 4px 2px;
  border: 1px solid var(--gray2);
  border-radius: 4px;
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
}

.table-words p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: var(--black2);
}

.table-words b {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: var(--black2);
}

.table-number {
  padding: 4px 8px;
  border: 1px solid var(--gray2);
  border-radius: 4px;
  flex: 0 0 35px;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: var(--black2);
  justify-content: center;
}

.words-prev {
  margin-top: 40px;
}

.words-prev i {
  display: flex;
  transform: rotate(225deg);
}

.words-prev a {
  gap: 9px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: var(--blueviolet);
}

.words-prev a span {
  transition: 0.3s;
}

.words-prev:hover a span {
  color: var(--black2);
}

.words-prev:hover i {
  background: var(--black2);
}

.articles-prev a span {
  transition: 0.3s;
}

.articles-prev i {
  display: flex;
  margin-top: 2px;
  transform: rotate(225deg);
  transition: 0.3s;
}

.articles-prev a {
  gap: 9px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: var(--blueviolet);
}

.articles-prev:hover a span {
  color: var(--black2);
}

.articles-prev:hover i {
  background: var(--black2);
}

.modal-verbs {
  margin-top: 40px;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.modal-verb {
  padding: 24px;
  border-radius: 12px;
  background: var(--white2);
  box-shadow: 0px 0px 16px 0px var(--light-black);
  max-width: 285px;
  width: 100%;
  gap: 5px;
  transition: 0.3s;
}

.modal-verb:hover {
  background: var(--blueviolet);
}

.modal-verb:hover p {
  color: var(--black);
}

.modal-verb:hover .grammar-arrow {
  background: var(--black);
}

.modal-verb p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--blueviolet);
  width: 100%;
  max-width: 209px;
  transition: 0.3s;
}

.modal-verb .grammar-arrow {
  margin-top: 5px;
  margin-left: auto;
  transition: 0.3s;
}

.articles-list {
  margin-top: 40px;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.articles-item {
  padding: 24px;
  border-radius: 12px;
  background: var(--white2);
  box-shadow: 0px 0px 16px 0px var(--light-black);
  flex: 1 1 49%;
  width: 100%;
  gap: 5px;
  transition: 0.3s;
}

.articles-item p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--blueviolet);
  width: 100%;
  transition: 0.3s;
}

.articles-item:hover {
  background: var(--blueviolet);
}

.articles-item:hover p {
  color: var(--black);
}

.articles-item:hover .grammar-arrow {
  background: var(--black);
}

.articles-item-mobile {
  display: none;
}

.articles-item .grammar-arrow {
  margin-top: 5px;
  margin-left: auto;
}

.articles-description {
  gap: 24px;
  max-width: 940px;
  margin: 40px auto 0;
}

.articles-description p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--black2);
}

.articles-description p span {
  margin-left: 20px;
  display: block;
  position: relative;
}

.articles-description p span::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--black2);
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
}

.practice-items {
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 20px;
  justify-content: center;
}

.practice-item {
  padding: 12px 36px;
  max-width: 285px;
  width: 100%;
  min-height: 100px;
  border-radius: 12px;
  box-shadow: 0px 0px 16px 0px var(--light-black);
  background: var(--white2);
  gap: 4px;
  transition: 0.3s;
}

.practice-small-item {
  max-width: 224px;
}

.practice-icon {
  max-width: 24px;
  width: 100%;
  height: 24px;
}

.practice-item p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: var(--black2);
  transition: 0.3s;
}

.practice-item b {
  font-weight: 700;
}

.practice-item:hover {
  background: var(--blueviolet);
  color: var(--white2);
}

.practice-item:hover p {
  color: var(--white2);
}

.topic-items {
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 20px;
  justify-content: center;
}

.topic-item {
  padding: 12px 36px;
  max-width: 285px;
  width: 100%;
  min-height: 100px;
  border-radius: 12px;
  box-shadow: 0px 0px 16px 0px var(--light-black);
  background: var(--white2);
  gap: 4px;
  transition: 0.3s;
}

.topic-icon {
  max-width: 24px;
  width: 100%;
  height: 24px;
}

.topic-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: var(--black2);
}

.topic-item b {
  font-weight: 700;
}

.topic-item:hover {
  background: var(--blueviolet);
}

.dictionary-letters {
  padding: 24px 141px 24px 24px;
  border-radius: 12px;
  background: var(--white2);
  box-shadow: 0px 0px 16px 0px var(--light-black);
  margin-bottom: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 16px;
}

.dictionary-details-letters {
  padding: 24px 40px 24px 24px;
  border-radius: 12px;
  background: var(--white2);
  box-shadow: 0px 0px 16px 0px var(--light-black);
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 16px;
  max-width: 940px;
  margin: 40px auto 40px auto;
}

.dictionary-letter {
  gap: 6px;
}

.dictionary-letter span {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--black2);
  transition: 0.3s;
}

.dictionary-letter.active span {
  color: var(--gray2);
}

.dictionary-letter i {
  transition: 0.3s;
}

.dictionary-letter.active i {
  background: var(--gray2);
}

.dictionary-letter:hover span {
  color: var(--blueviolet);
}

.dictionary-letter:hover i {
  background: var(--blueviolet);
}

.black-arrow {
  font-size: 10px;
  background: var(--black2);
  flex: 0 0 10px;
}

.dictionary-table {
  max-width: 940px;
  width: 100%;
  margin: 40px auto 0;
  gap: 6px;
  align-items: center;
}

.dictionary-table-titles {
  gap: 6px;
  width: 100%;
}

.dictionary-table-title {
  padding: 10px 20px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: var(--black2);
  background: var(--light-blueviolet);
  border-radius: 4px;
  max-width: 300px;
  width: 100%;
}

.dictionary-big-title {
  padding: 10px 20px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: var(--black2);
  background: var(--light-blueviolet);
  border-radius: 4px;
  max-width: 634px;
  width: 100%;
}

.dictionary-row {
  gap: 6px;
  width: 100%;
}

.dictionary-bold-item {
  font-weight: 600;
  border: 1px solid var(--gray2);
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  max-width: 300px;
  width: 100%;
  justify-content: center;
}

.dictionary-word-item {
  border: 1px solid var(--gray2);
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 634px;
  width: 100%;
}

.tests-categories-items {
  margin-top: 40px;
}

.tests-result-info {
  max-width: 940px;
  margin: 40px auto 0;
}

.tests-cnt > :not(:last-child) {
  margin: 0 0 20px 0;
}

.tests-cnt-info > :not(:last-child) {
  margin: 0 0 20px 0;
}

.tests-cnt {
  max-width: 940px;
  margin: 40px auto 0;
}

.test-item {
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0px 0px 16px 0px var(--light-black);
  background: var(--white2);
  width: 100%;
}

.good-request {
  background: var(--light-green);
}

.bad-request {
  background: var(--light-red);
}

.test-item h3 {
  font-weight: 600;
  font-size: 20px;
  color: var(--black2);
  line-height: 24px;
}

.test-questions {
  margin-top: 24px;
}

.test-questions > :not(:last-child) {
  margin: 0 0 17px 0;
}

.test-question {
  gap: 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.question-icon {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 2px solid var(--gray);
  flex: 0 0 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.question-icon i {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.test-question.active .question-icon {
  background: var(--blueviolet);
  border: 2px solid transparent;
}

.test-question:hover .question-icon {
  background: var(--blueviolet);
  border: 2px solid transparent;
}

.test-question.active .question-icon i {
  opacity: 1;
  visibility: visible;
  font-size: 11px;
}

.test-question p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--gray);
}

.tests-btn {
  margin-top: 40px;
}

.test-result {
  padding: 24px;
  background: var(--white2);
  margin-top: 20px;
  border-radius: 12px;
}

.test-result h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--black2);
  margin-top: 24px;
  padding: 0 0 12px 0;
}

.test-result h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--black2);
  padding: 0 0 8px 0;
}

.test-result > p {
  gap: 4px;
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.test-result p > span {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: var(--blueviolet);
}

.test-result p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--black2);
}

.test-result b {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--black2);
  margin-top: 12px;
  display: block;
}

.close-results {
  margin-top: 24px;
}

.topic-information-items {
  max-width: 940px;
  margin: 40px auto 0;
}

.topic-information-items > :not(:last-child) {
  margin: 0 0 40px 0;
}

.topic-information-item > :not(:last-child) {
  margin: 0 0 20px 0;
}

.topic-information-item h3 {
  font-weight: 700;
  font-size: 18px;
  color: var(--black2);
  line-height: 24px;
}

.topic-information-item p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--black2);
}

.idioms-next {
  margin-top: 40px;
}

.idioms-ifo-items {
  gap: 20px;
  max-width: 940px;
  margin: 40px auto 0;
}

.idioms-ifo-item {
  gap: 24px;
  padding: 24px;
  background: var(--white2);
  border-radius: 12px;
  box-shadow: 0px 0px 16px 0px var(--light-black);
}

.idioms-ifo-item h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--blueviolet);
}

.idioms-ifo-item p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--black2);
}

.expressions-table {
  max-width: 732px;
  width: 100%;
  margin: 40px auto 0;
  gap: 6px;
  align-items: center;
}

.exam-links-list {
  margin-top: 40px;
  gap: 20px;
}

.exam-links-item {
  padding: 24px;
  background: var(--white2);
  border-radius: 12px;
  box-shadow: 0px 0px 16px 0px var(--light-black);
}

.audio-player-item {
  padding: 24px;
  background: var(--white2);
  border-radius: 12px;
  box-shadow: 0px 0px 16px 0px var(--light-black);
}

.exam-links-item h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--black2);
}

.audio-player-item h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--black2);
}
.lesson-card-play {
  cursor: pointer;
}
.course_teksts_audio {
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 10px;
}
.exam-links {
  margin-top: 20px;
  column-gap: 24px;
  row-gap: 12px;
  flex-wrap: wrap;
}

.exam-links a {
  gap: 6px;
  display: flex;
  align-items: start;
}

.exam-links a:hover span {
  color: var(--blueviolet);
}

.exam-links a:hover i {
  background: var(--blueviolet);
}

.exam-links a i {
  margin-top: 7px;
  transition: 0.3s;
}

.exam-links a span {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--black2);
  transition: 0.3s;
}

.p-24 {
  padding: 24px 36px;
}

.exam-dots-text {
  margin-top: 24px;
}

.exam-dots-text span {
  display: block;
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin-left: 14px;
  color: var(--black2);
}

.exam-dots-text span::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--black2);
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
}

.exam-links-item p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--black2);
  /* margin-top: 24px; */
}

.audio-player {
  margin-top: 24px;
  background: var(--wheat);
  border-radius: 1000px;
  width: 100%;
  height: 48px;
}

.audio-player-results {
  margin-top: 24px;
}

.audio-player-results > :not(:last-child) {
  margin: 0 0 30px 0;
}

.audio-player-result h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: var(--black2);
}

.text-blueviolet {
  color: var(--blueviolet);
}

.audio-player-result p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--black2);
}

.answers {
  margin-top: 24px;
  gap: 24px;
  flex-wrap: wrap;
}

.answers p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--black2);
  cursor: pointer;
}

.exam-tools {
  margin-top: 24px;
  gap: 12px;
}

.crosswords-cnt {
  margin-top: 40px;
}

.crosswords-cnt h3 {
  font-weight: 600;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  color: var(--black2);
}

.crosswords-items {
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

.crosswords-item {
  max-width: 182px;
  width: 100%;
  min-height: 100px;
  border-radius: 12px;
  padding: 12px 36px;
  background: var(--white2);
  box-shadow: 0px 0px 16px 0px var(--light-black);
  gap: 4px;
  transition: 0.3s;
}

.crosswords-item p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: var(--black2);
}

.crosswords-item:hover {
  background: var(--blueviolet);
}

.crossword-icon {
  max-width: 24px;
  height: 24px;
  width: 100%;
}

.poems-player {
  margin-top: 40px;
}

.poems-items {
  border-radius: 12px;
  background: var(--white2);
  box-shadow: 0px 0px 16px 0px var(--light-black);
  padding: 24px;
  display: flex;
  max-width: 940px;
  margin: 40px auto 0;
  gap: 124px;
}

.poems-item {
}

.poems-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--blueviolet);
}

.poem-texts {
  margin-top: 10px;
}

.poem-texts > :not(:last-child) {
  margin: 0 0 20px 0;
}

.poem-texts p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--black2);
  max-width: 300px;
}

.riddles-items {
  margin-top: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.riddles-item {
  padding: 24px;
  border-radius: 12px;
  background: var(--white2);
  max-width: 590px;
  width: 100%;
  gap: 24px;
  min-height: 288px;
  display: flex;
  flex-direction: column;
}

.riddles-item-texts {
  gap: 24px;
  justify-content: space-between;
  flex: 1 1 auto;
}

.riddles-item-texts b {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--black2);
  max-width: 190px;
}

.riddles-item-texts p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--black2);
  max-width: 220px;
}

.riddles-item-texts span {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin-top: 20px;
  color: var(--gray);
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transition: 0.3s;
  display: block;
}

.riddles-item-texts.active span {
  opacity: 1;
  visibility: visible;
  max-height: 200px;
}

.video-cnt {
  max-width: 732px;
  margin: 40px auto 40px auto;
  min-height: 420px;
  width: 100%;
  box-shadow: 0px 0px 16px 0px var(--light-black);
  background: var(--white2);
  border-radius: 12px;
}

.proverbs-items {
  max-width: 940px;
  margin: 40px auto 0;
}

.proverbs-items > :not(:last-child) {
  margin: 0 0 20px 0;
}

.proverbs-item {
  padding: 24px;
  background: var(--white2);
  border-radius: 12px;
  box-shadow: 0px 0px 16px 0px var(--light-black);
  width: 100%;
}

.proverbs-item h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--blueviolet);
}

.proverbs-item-texts {
  margin-top: 24px;
}

.proverbs-item-texts > :not(:last-child) {
  margin: 0 0 12px 0;
}

.proverbs-item-texts p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--black2);
}

.proverbs-item-texts b {
  font-weight: 700;
}

.category-header p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--gray);
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 1400px) {
}

@media (max-width: 1250px) {
  .riddles-items {
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 1200px) {
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
  .bread-crumbs-back {
    position: initial;
  }

  .practice-item {
    padding: 12px;
    max-width: 100%;
    min-height: 107px;
    flex: 1 1 48.1%;
    gap: 8px;
  }

  .practice-big-item {
    max-width: 100%;
    flex: 1 1 auto;
  }

  .practice-small-item {
    max-width: 160px;
  }

  .practice-item p {
    font-size: 14px;
    line-height: 120%;
    text-align: center;
  }

  .topic-item {
    padding: 12px;
    max-width: 160px;
    min-height: 107px;
    gap: 8px;
  }

  .topic-item p {
    font-size: 14px;
    line-height: 120%;
    text-align: center;
  }

  .practice-items {
    margin-top: 24px;
    gap: 12px;
  }

  .topic-items {
    margin-top: 24px;
    gap: 12px;
  }

  .bread-crumbs-body {
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
  }

  .bread-crumbs-section {
    margin-top: 98px;
  }

  .word-item {
    font-size: 14px;
    line-height: 120%;
    text-align: center;
    padding: 7px 10px;
    min-width: 108px;
    width: 100%;
  }

  .dictionary-word-item {
    font-size: 14px;
    line-height: 120%;
    text-align: center;
    padding: 7px 10px;
    min-width: 108px;
    width: 100%;
  }

  .word-bold-item {
    min-width: 108px;
    font-size: 14px;
    line-height: 120%;
    text-align: center;
    padding: 7px 10px;
    width: 100%;
  }

  .dictionary-bold-item {
    font-size: 14px;
    line-height: 120%;
    text-align: center;
    padding: 7px 10px;
    width: 100%;
  }

  .words-table-title {
    font-size: 12px;
    line-height: 120%;
    text-align: center;
    min-width: 108px;
    padding: 7px 10px;
    width: 100%;
  }

  .dictionary-table-title {
    font-size: 12px;
    line-height: 120%;
    text-align: center;
    width: 100%;
  }

  .dictionary-big-title {
    font-size: 12px;
    line-height: 120%;
    text-align: center;
    width: 100%;
  }

  .words-table-titles {
    width: 100%;
  }

  .words-row {
    width: 100%;
  }

  .dictionary-letters {
    padding: 24px 12px;
  }

  .poems-items {
    margin: 20px auto 0;
    gap: 24px;
    flex-direction: column;
  }

  .poem-texts p {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .category-titles .section-title {
    text-align: start;
  }

  .category-header .section-title {
    text-align: start;
  }

  .category-null-body {
    min-height: 440px;
  }

  .beginner-level-item {
    padding: 24px 12px;
  }

  .beginner-links a {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
  }

  .beginner-links {
    margin-top: 12px;
  }

  .beginner-level-item h2 {
    font-size: 16px;
    line-height: 22px;
  }

  .bread-crumbs-menu ul {
    gap: 7px;
  }

  .bread-crumbs-menu ul li a {
    font-size: 14px;
    line-height: 120%;
  }

  .bread-crumbs-menu ul li i {
    font-size: 7px;
  }

  .bread-crumbs-back {
    width: 24px;
    height: 24px;
    border-radius: 2px;
  }

  .bread-icon-back {
    font-size: 8px;
  }

  .module-back {
    justify-content: stretch;
  }

  .module-back a {
    width: 100%;
  }

  .modal-verb {
    max-width: 100%;
    flex: 1 1 auto;
  }

  .module-back a span {
    font-size: 14px;
    line-height: 120%;
  }

  .module-back a i {
    margin-left: auto;
  }

  .words-table-title {
    padding: 10px 4px;
  }

  .dictionary-table {
    margin: 24px auto 0;
  }

  .tests-categories-items {
    margin-top: 24px;
  }

  .expressions-table {
    margin: 24px auto 0;
  }

  .words-next {
    align-items: stretch;
    justify-content: stretch;
  }

  .articles-next {
    align-items: stretch;
    justify-content: stretch;
  }

  .articles-next a {
    width: 100%;
    font-size: 14px;
    line-height: 120%;
  }

  .articles-next a span {
    display: block;
    text-align: start;
  }

  .words-next a {
    width: 100%;
    font-size: 14px;
    line-height: 120%;
    text-align: start;
  }

  .articles-next i {
    margin-left: auto;
  }

  .words-next i {
    margin-left: auto;
  }

  .words-prev a {
    font-size: 14px;
    line-height: 120%;
  }

  .articles-prev a {
    font-size: 14px;
    line-height: 120%;
  }

  .grammar-titles p {
    font-size: 18px;
    line-height: 24px;
  }

  .grammar-item {
    padding: 24px 12px;
  }

  .grammar-link span {
    font-size: 14px;
    line-height: 120%;
  }

  .grammar-link i {
    margin-top: 5px;
    margin-left: auto;
  }

  .grammar-items {
    margin-top: 24px;
  }

  .grammar-first-link {
    font-size: 14px;
    line-height: 120%;
  }

  .beginner-link-icon {
    margin-top: 5px;
  }

  .grammar-links {
    margin-top: 12px;
  }

  .grammar-description {
    gap: 12px;
  }

  .grammar-details-cnt {
    margin: 24px auto 0;
  }

  .alphabet-table {
    margin: 36px auto 0;
  }

  .table-words p {
    font-size: 14px;
    line-height: 120%;
  }

  .table-words b {
    font-size: 14px;
    line-height: 120%;
  }

  .table-number {
    font-size: 14px;
  }

  .words-prev {
    margin-top: 24px;
  }

  .modal-verbs-titles p {
    margin-top: 24px;
  }

  .modal-verbs {
    margin-top: 24px;
    gap: 12px;
  }

  .articles-list {
    margin-top: 24px;
    gap: 12px;
  }

  .modal-verb p {
    font-size: 14px;
    line-height: 120%;
  }

  .articles-item {
    font-size: 14px;
    line-height: 120%;
  }

  .grammar-sub-link {
    font-size: 14px;
    line-height: 120%;
  }

  .grammar-sub-link {
    margin-left: 24px;
  }

  .grammar-sub-link::after {
    left: -14px;
  }

  .grammar-sub-link::before {
    left: -24px;
  }

  .articles-description {
    margin: 24px auto 0;
  }

  .articles-description p {
    font-size: 16px;
    line-height: 22px;
  }

  .articles-item p {
    font-size: 14px;
    line-height: 120%;
  }

  .articles-item-mobile {
    display: flex;
    align-items: center;
  }

  .articles-item-mobile .read-more-icon {
    transform: rotate(0);
  }

  .dictionary-letter span {
    font-size: 14px;
    line-height: 120%;
  }

  .dictionary-letters {
    margin-bottom: 24px;
    margin-top: 24px;
  }

  .category-info-section {
    margin-top: 27px;
  }

  .dictionary-details-letters {
    padding: 24px 12px;
    margin: 24px auto 24px auto;
  }

  .dictionary-prev {
    justify-content: flex-start;
  }

  .dictionary-prev span {
    text-align: start;
    display: block;
  }

  .tests-cnt > :not(:last-child) {
    margin: 0 0 12px 0;
  }

  .tests-cnt-info > :not(:last-child) {
    margin: 0 0 12px 0;
  }

  .tests-btn {
    margin-top: 24px;
  }

  .test-result p {
    font-size: 16px;
    line-height: 22px;
  }

  .test-result b {
    font-size: 16px;
    line-height: 22px;
  }

  .close-results {
    justify-content: start;
  }

  .tests-result-info {
    margin: 24px auto 0;
  }

  .topic-information-items {
    margin: 24px auto 0;
  }

  .topic-information-items > :not(:last-child) {
    margin: 0 0 24px 0;
  }

  .idioms-next {
    margin-top: 24px;
  }

  .idioms-ifo-item {
    gap: 12px;
  }

  .idioms-ifo-item p {
    margin-top: 8px;
  }

  .idioms-ifo-item p {
    font-size: 16px;
    line-height: 22px;
  }

  .idioms-ifo-items {
    margin: 24px auto 0;
  }

  .words-prev span {
    text-align: start;
  }

  .exam-links-item {
    padding: 24px 12px;
  }

  .exam-links {
    margin-top: 12px;
    gap: 12px;
  }

  .exam-links a {
    width: 100%;
  }

  .exam-links a span {
    width: 100%;
    font-size: 14px;
    line-height: 120%;
  }

  .black-arrow {
    font-size: 8px;
  }

  .exam-links-list {
    margin-top: 20px;
    gap: 12px;
  }

  .exam-dots-text span {
    font-size: 16px;
    line-height: 22px;
    margin-left: 24px;
  }

  .exam-dots-text span::before {
    top: 9px;
    transform: none;
  }

  .exam-links-item p {
    font-size: 16px;
    line-height: 22px;
  }

  .audio-player-item {
    padding: 24px 12px;
  }

  .audio-player-result h3 {
    font-size: 16px;
    line-height: 22px;
  }

  .audio-player-result p {
    font-size: 16px;
    line-height: 22px;
  }

  .answers {
    gap: 12px;
  }

  .answers p {
    font-size: 16px;
    line-height: 22px;
  }

  .exam-tools .articles-prev {
    justify-content: flex-start;
  }

  .crosswords-item p {
    font-size: 14px;
    line-height: 120%;
  }

  .crosswords-item {
    max-width: 160px;
    min-height: 107px;
    padding: 12px;
    gap: 8px;
  }

  .crosswords-items {
    gap: 12px;
    margin-top: 24px;
  }

  .crosswords-cnt h3 {
    font-size: 26px;
    line-height: 30px;
  }

  .category-header p {
    text-align: start;
    margin-top: 12px;
    font-size: 16px;
    line-height: 22px;
  }

  .audio-player {
    margin-top: 20px;
  }

  .riddles-item-texts {
    gap: 12px;
    flex-direction: column;
  }

  .riddles-item-texts span {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px;
  }

  .riddles-item-texts b {
    font-size: 16px;
    line-height: 22px;
  }

  .riddles-item-texts p {
    font-size: 16px;
    line-height: 22px;
  }

  .riddle-btn button {
    font-size: 14px;
    line-height: 120%;
  }

  .riddle-btn i {
    font-size: 8px;
  }

  .video-cnt {
    max-width: 732px;
    margin: 20px auto 24px auto;
    min-height: 200px;
  }

  .proverbs-item-texts p {
    font-size: 16px;
    line-height: 22px;
  }

  .sayings-items {
    margin-top: 40px;
  }

  .sayings-items .practice-item {
    min-height: 73px;
  }

  .details-title {
    padding: 10px 16px;
    margin: 24px 0 16px 0;
  }

  .details-title span {
    font-size: 14px;
    line-height: 120%;
  }

  .words-table {
    margin: 24px auto 0;
  }

  .grammar-first-link i {
    margin-top: 4px;
  }

  .beginner-link-icon {
    flex: unset;
  }

  .desktop-links {
    display: none;
  }

  .grammar-first-link span {
    width: 100%;
  }
}

.video-cnt {
  margin: 0 auto !important;
  text-align: center;
}
