/* ============================================================
   EduCam Reusable Front-End System
   Shared component system for the full EduCam website.
   ============================================================ */

:root {
  --educam-blue: #0171dc;
  --educam-yellow: #ffc221;
  --educam-red: #c91635;
  --educam-green: #166b45;
  --educam-navy: #202744;
  --educam-text: #1c1d1f;
  --educam-muted: #64748b;
  --educam-line: #e9e6ef;
  --educam-soft: #f5f4f7;
  --educam-soft-blue: #f2f7ff;
  --educam-white: #fff;
  --educam-radius: 18px;
  --educam-radius-lg: 24px;
  --educam-pill: 999px;
  --educam-shadow: 0 16px 40px rgba(13, 12, 34, 0.07);
  --educam-shadow-md: 0 22px 52px rgba(13, 12, 34, 0.1);
  --educam-ease: 0.18s ease;
  --educam-ease-md: 0.32s ease;
  --educam-ease-lg: 0.48s ease;
  --educam-container: 1340px;
  --ec-blue: var(--educam-blue);
  --ec-yellow: var(--educam-yellow);
  --ec-red: var(--educam-red);
  --ec-green: var(--educam-green);
  --ec-navy: var(--educam-navy);
  --ec-text: var(--educam-text);
  --ec-muted: var(--educam-muted);
  --ec-line: var(--educam-line);
  --ec-soft: var(--educam-soft);
  --ec-white: var(--educam-white);
  --ec-radius: var(--educam-radius);
  --ec-radius-sm: 10px;
  --ec-radius-lg: var(--educam-radius-lg);
  --ec-radius-pill: var(--educam-pill);
  --ec-ease: var(--educam-ease);
  --ec-ease-md: var(--educam-ease-md);
  --ec-ease-lg: var(--educam-ease-lg);
  --ec-container: var(--educam-container);
}

.educam-site,
.educam-section,
.educam-landing,
.educam-header {
  width: 100%;
  color: var(--educam-text);
  background: var(--educam-white);
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.educam-site,
.educam-site *,
.educam-site *::before,
.educam-site *::after,
.educam-section,
.educam-section *,
.educam-section *::before,
.educam-section *::after,
.educam-header,
.educam-header *,
.educam-header *::before,
.educam-header *::after,
.educam-landing *,
.educam-landing *::before,
.educam-landing *::after {
  box-sizing: border-box;
}

.educam-site a,
.educam-section a,
.educam-header a,
.educam-landing a {
  color: inherit;
  text-decoration: none;
}

.educam-site button,
.educam-site input,
.educam-site select,
.educam-section button,
.educam-section input,
.educam-section select,
.educam-header button,
.educam-header input,
.educam-header select,
.educam-landing button,
.educam-landing input,
.educam-landing select {
  font-family: inherit;
}

.educam-site button,
.educam-section button,
.educam-header button,
.educam-landing button {
  cursor: pointer;
}

.educam-site svg,
.educam-site img,
.educam-section svg,
.educam-section img,
.educam-header svg,
.educam-header img,
.educam-landing svg,
.educam-landing img {
  display: block;
}

.educam-site img,
.educam-section img,
.educam-header img,
.educam-landing img {
  max-width: 100%;
}

.educam-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.educam-wrap,
.ec-wrap {
  width: min(100% - 56px, var(--educam-container));
  margin: 0 auto;
}

.educam-section,
.ec-section {
  width: 100%;
}

.educam-kicker,
.ec-kicker {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--educam-pill);
  background: var(--educam-soft-blue);
  color: var(--educam-blue);
  padding: 0 14px;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.educam-title,
.ec-title {
  margin: 0;
  color: var(--educam-navy);
  font-size: 32px;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: 0;
}

.educam-subtitle,
.ec-subtitle {
  margin: 10px 0 0;
  color: var(--educam-muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0;
}

.educam-card-title,
.ec-card-title {
  margin: 0;
  color: var(--educam-text);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0;
}

.educam-card-text,
.ec-card-text {
  margin: 8px 0 0;
  color: var(--educam-muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0;
}

.educam-meta,
.educam-tag,
.ec-meta,
.ec-tag {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0;
}

.educam-btn,
.ec-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--educam-pill);
  background: var(--educam-blue);
  color: #fff;
  padding: 0 22px;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  transition: background var(--educam-ease), color var(--educam-ease), transform var(--educam-ease);
}

.educam-btn:hover {
  background: var(--educam-yellow);
  color: #111;
  transform: translateY(-1px);
}

.educam-btn--primary,
.ec-btn--primary {
  background: var(--educam-blue);
  color: #fff;
}

.educam-btn--primary:hover,
.ec-btn--primary:hover {
  background: var(--educam-yellow);
  color: #111;
}

.educam-btn--outline,
.ec-btn--outline {
  border: 1px solid var(--educam-line);
  background: #fff;
  color: var(--educam-text);
}

.educam-btn--outline:hover,
.ec-btn--outline:hover {
  border-color: #d8d2df;
  background: #fbfafd;
  color: var(--educam-text);
}

.educam-btn--chip,
.ec-btn--chip {
  min-height: 38px;
  background: #eef5ff;
  color: var(--educam-blue);
  padding: 0 16px;
  font-size: 14px;
}

.educam-btn--chip:hover,
.ec-btn--chip:hover {
  background: var(--educam-blue);
  color: #fff;
}

.educam-tag,
.ec-tag {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--educam-pill);
  background: var(--educam-soft-blue);
  color: var(--educam-blue);
  padding: 0 12px;
  white-space: nowrap;
}

.educam-tag--best {
  color: #083c44;
  background: #c9f3f5;
}

.educam-tag--hot {
  color: #7c3d08;
  background: #ffe4bd;
}

.educam-tag--blue,
.ec-tag--blue {
  background: var(--educam-soft-blue);
  color: var(--educam-blue);
}

.educam-tag--green,
.ec-tag--green {
  background: #f0faf5;
  color: var(--educam-green);
}

.educam-head,
.ec-head {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.educam-head .educam-title,
.ec-head h2 {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--educam-navy);
  font-size: 32px;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: 0;
}

.educam-head .educam-subtitle,
.ec-head p {
  max-width: 610px;
  margin: 10px auto 0;
  color: var(--educam-muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0;
}

.educam-grid,
.ec-grid {
  display: grid;
  gap: 30px;
  align-items: start;
}

.educam-grid--2,
.ec-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.educam-grid--3,
.ec-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.educam-card,
.ec-card {
  min-width: 0;
  border-radius: var(--educam-radius-lg);
  background: #fff;
  box-shadow: var(--educam-shadow);
  padding: 28px;
  transition: transform var(--educam-ease), box-shadow var(--educam-ease), background var(--educam-ease);
}

.educam-card:hover,
.ec-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--educam-shadow-md);
}

.educam-card--dark,
.ec-card--dark {
  background: #0f203d;
  color: #fff;
}

.educam-tabs,
.ec-tabs {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
}

.educam-tab,
.ec-tab {
  min-width: 112px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--educam-pill);
  background: transparent;
  color: var(--educam-text);
  padding: 0 19px;
  margin: 0;
  box-shadow: none;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
  transition: background var(--educam-ease), color var(--educam-ease);
}

.educam-tab svg,
.ec-tab svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.educam-tab:not(.is-active):hover,
.ec-tab:not(.is-active):hover {
  background: #f7f6fa;
}

.educam-tab.is-active,
.educam-tab[aria-selected="true"],
.ec-tab.is-active,
.ec-tab[aria-selected="true"] {
  background: var(--educam-navy);
  color: #fff;
}

.educam-search,
.ec-search {
  position: relative;
  width: 100%;
  max-width: 630px;
  height: 58px;
  display: block;
  border: 0;
  border-radius: var(--educam-pill);
  background: var(--educam-soft);
  box-shadow: none;
  overflow: visible;
}

.educam-search:focus-within,
.ec-search:focus-within {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(1, 113, 220, 0.12);
}

.educam-input,
.educam-search__input,
.ec-input,
.ec-search__input {
  width: 100%;
  border: 0;
  outline: 0;
  box-shadow: none;
  background: transparent;
  color: #30303f;
  appearance: none;
  -webkit-appearance: none;
}

.educam-search__input,
.ec-search__input {
  position: absolute;
  inset: 0;
  height: 100%;
  border-radius: var(--educam-pill);
  padding: 0 74px 0 24px;
  margin: 0;
  font-size: 15px;
  line-height: 58px;
  font-weight: 400;
  letter-spacing: 0;
}

.educam-search__input::-webkit-search-decoration,
.educam-search__input::-webkit-search-cancel-button,
.educam-search__input::-webkit-search-results-button,
.educam-search__input::-webkit-search-results-decoration,
.ec-search__input::-webkit-search-decoration,
.ec-search__input::-webkit-search-cancel-button,
.ec-search__input::-webkit-search-results-button,
.ec-search__input::-webkit-search-results-decoration {
  display: none;
}

.educam-search__input::placeholder,
.ec-search__input::placeholder {
  color: #3f3d4c;
  opacity: 1;
}

.educam-search__btn,
.ec-search__btn {
  position: absolute;
  top: 50%;
  right: 7px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: var(--educam-blue);
  color: #fff;
  padding: 0;
  margin: 0;
  box-shadow: none;
  transition: background var(--educam-ease), color var(--educam-ease), transform var(--educam-ease);
}

.educam-search__btn:hover,
.ec-search__btn:hover {
  background: var(--educam-yellow);
  color: #111;
  transform: translateY(-50%) scale(1.03);
}

.educam-search__btn svg,
.educam-search__suggest svg,
.ec-search__btn svg,
.ec-search__suggest svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.educam-search__btn svg,
.ec-search__btn svg {
  width: 22px;
  height: 22px;
}

.educam-search__suggest,
.ec-search__suggest {
  position: absolute;
  z-index: 50;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  padding: 10px 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 42px rgba(13, 12, 34, 0.1);
}

.educam-search:focus-within .educam-search__suggest,
.ec-search:focus-within .ec-search__suggest {
  display: flex;
}

.educam-search__suggest button,
.ec-search__suggest button {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
  background: transparent;
  color: #171627;
  padding: 0 22px;
  text-align: left;
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
}

.educam-search__suggest button:hover,
.ec-search__suggest button:hover {
  background: #faf9fb;
}

.educam-search__suggest svg,
.ec-search__suggest svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.educam-popular,
.ec-popular {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333142;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.educam-popular strong,
.ec-popular strong {
  flex: 0 0 auto;
  margin-right: 2px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.educam-popular button,
.ec-popular button {
  min-height: 32px;
  border: 1px solid var(--educam-line);
  border-radius: var(--educam-pill);
  background: #fff;
  color: #171627;
  padding: 0 15px;
  margin: 0;
  box-shadow: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.educam-popular button:hover,
.ec-popular button:hover {
  border-color: #d8d2df;
  background: #fbfafd;
}

.educam-icon-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--educam-text);
  padding: 0;
  margin: 0;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.educam-icon-btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.educam-icon-btn:hover,
.educam-icon-btn.is-active {
  background: var(--educam-text);
  color: #fff;
}

/* Hero search */
.educam-hero-search .educam-wrap {
  padding: 40px 0 28px;
}

.educam-hero-search__main {
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 600px);
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.educam-hero-search__content {
  min-width: 0;
}

.educam-hero-title {
  max-width: 590px;
  margin: 0;
  color: var(--educam-text);
  font-size: 58px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0;
}

.educam-hero-search__desc {
  max-width: 470px;
  color: #1f1e2f;
}

.educam-hero-search__tabs-outer {
  margin-top: 20px;
}

.educam-hero-search__search {
  margin: 12px 0 0;
}

.educam-hero-search__popular {
  max-width: 630px;
  margin-top: 22px;
}

.educam-hero-search__visual {
  min-width: 0;
}

.educam-slider {
  position: relative;
  width: 100%;
  height: 365px;
  overflow: hidden;
  border-radius: var(--educam-radius-lg);
  background: #f8f7fb;
}

.educam-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity 0.48s ease, transform 0.48s ease;
  pointer-events: none;
}

.educam-slider__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.educam-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.educam-art--hikers .sky {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 76% 11%, rgba(255, 255, 255, 0.22), transparent 23%),
    linear-gradient(180deg, rgba(131, 117, 231, 0.16), transparent 54%),
    linear-gradient(180deg, #c1bfff 0%, #d7f0f2 49%, #c9f4df 100%);
}

.educam-art--hikers .ridge {
  position: absolute;
  left: -7%;
  right: -7%;
  z-index: 2;
}

.educam-art--hikers .ridge-a {
  bottom: 10%;
  height: 38%;
  background: #ec3b91;
  transform: skewY(-10deg);
}

.educam-art--hikers .ridge-b {
  bottom: -4%;
  height: 35%;
  z-index: 3;
  background: #5a1f62;
  transform: skewY(-13deg);
  clip-path: polygon(0 55%, 18% 12%, 36% 43%, 51% 16%, 70% 51%, 88% 9%, 100% 38%, 100% 100%, 0 100%);
}

.educam-art--hikers .ridge-c {
  bottom: 0;
  height: 28%;
  z-index: 4;
  background: rgba(255, 102, 171, 0.66);
  transform: skewY(-11deg);
  clip-path: polygon(0 44%, 22% 13%, 43% 47%, 63% 19%, 100% 56%, 100% 100%, 0 100%);
}

.educam-art--hikers .hiker {
  position: absolute;
  z-index: 6;
  width: 48px;
  height: 150px;
  transform-origin: center bottom;
}

.educam-art--hikers .hiker.h1 {
  left: 22%;
  bottom: 16%;
  transform: scale(0.72) rotate(7deg);
}

.educam-art--hikers .hiker.h2 {
  left: 51%;
  bottom: 27%;
  transform: scale(0.86) rotate(7deg);
}

.educam-art--hikers .hiker.h3 {
  left: 78%;
  bottom: 39%;
  transform: scale(1) rotate(7deg);
}

.educam-art--hikers .hiker i {
  position: absolute;
  top: 0;
  left: 19px;
  width: 29px;
  height: 38px;
  border-radius: 12px 13px 10px 10px;
  background: #073942;
  transform: skewX(-12deg);
}

.educam-art--hikers .hiker i::before {
  content: "";
  position: absolute;
  top: 8px;
  right: -11px;
  width: 21px;
  height: 16px;
  border-radius: 3px;
  background: #f6b567;
}

.educam-art--hikers .hiker b {
  position: absolute;
  top: 34px;
  left: 9px;
  width: 40px;
  height: 66px;
  border-radius: 10px;
  background: #0b3844;
  transform: skewX(-12deg);
}

.educam-art--hikers .hiker b::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 8px;
  width: 16px;
  height: 18px;
  border: 4px solid #f3b65b;
  border-radius: 3px;
}

.educam-art--hikers .hiker span {
  position: absolute;
  top: 60px;
  left: 32px;
  width: 55px;
  height: 20px;
  border-radius: 4px;
  background: #057d86;
  transform: rotate(11deg);
  box-shadow: 8px 5px 0 rgba(255, 142, 92, 0.5);
}

.educam-art--hikers .hiker em {
  position: absolute;
  top: 95px;
  left: 13px;
  width: 52px;
  height: 68px;
  font-style: normal;
}

.educam-art--hikers .hiker em::before,
.educam-art--hikers .hiker em::after {
  content: "";
  position: absolute;
  top: 0;
  width: 17px;
  height: 67px;
  border-radius: 12px;
  background: #0a2633;
  transform-origin: top center;
}

.educam-art--hikers .hiker em::before {
  left: 0;
  transform: rotate(18deg);
}

.educam-art--hikers .hiker em::after {
  right: 7px;
  transform: rotate(-24deg);
}

.educam-art--coffee {
  background:
    radial-gradient(circle at 64% 23%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(135deg, #27130b 0%, #120805 100%);
}

.educam-art--coffee .coffee-table {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 36%),
    radial-gradient(ellipse at 52% 80%, rgba(255, 255, 255, 0.18), transparent 32%);
}

.educam-art--coffee .coffee-plate {
  position: absolute;
  width: 54%;
  height: 40%;
  left: 21%;
  top: 38%;
  border-radius: 50%;
  background: #f4eee0;
  box-shadow: inset -20px -16px 0 rgba(0, 0, 0, 0.1);
  transform: rotate(2deg);
}

.educam-art--coffee .coffee-cup {
  position: absolute;
  width: 28%;
  height: 28%;
  left: 34%;
  top: 32%;
  border-radius: 50%;
  background: #f8f0df;
  box-shadow: inset -13px -10px 0 rgba(0, 0, 0, 0.1);
}

.educam-art--coffee .coffee-liquid {
  position: absolute;
  width: 20%;
  height: 16%;
  left: 38%;
  top: 36%;
  border-radius: 50%;
  background: #080403;
}

.educam-art--coffee .coffee-spoon {
  position: absolute;
  width: 5%;
  height: 37%;
  left: 31%;
  top: 34%;
  border-radius: 99px;
  background: linear-gradient(90deg, #8f8271, #f3eee5, #5b5048);
  transform: rotate(12deg);
}

.educam-art--coffee .coffee-cookie {
  position: absolute;
  width: 16%;
  height: 12%;
  right: 16%;
  top: 21%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 32%, rgba(0, 0, 0, 0.12) 0 7%, transparent 8%),
    radial-gradient(circle at 62% 58%, rgba(0, 0, 0, 0.13) 0 6%, transparent 7%),
    #c4b994;
}

.educam-art--lumea {
  background: #fff;
}

.educam-art--lumea .lumea-chip {
  position: absolute;
  left: 25%;
  top: 44%;
  border-radius: 10px;
  background: #2d82db;
  color: #fff;
  padding: 6px 10px;
  font-size: 16px;
  line-height: 1;
}

.educam-art--lumea .lumea-chip::before {
  content: "L";
  position: absolute;
  left: -25px;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: #e15173;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.educam-art--lumea .lumea-card {
  position: absolute;
  left: 44%;
  top: 36%;
  width: 210px;
  height: 105px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #050505;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0;
}

.educam-art--lumea .lumea-card::before {
  content: "";
  position: absolute;
  top: 24px;
  width: 32px;
  height: 13px;
  border-radius: 99px;
  background: #fff;
  filter: blur(3px);
}

.educam-art--lumea .lumea-files {
  position: absolute;
  right: 7%;
  top: 39%;
  display: grid;
  gap: 7px;
}

.educam-art--lumea .lumea-files span {
  position: relative;
  display: block;
  border-radius: 8px;
  background: #2d82db;
  color: #fff;
  padding: 4px 10px 5px 30px;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

.educam-art--lumea .lumea-files span::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  border-radius: 3px;
  background: linear-gradient(135deg, #f1486f, #fff);
}

.educam-slider__author {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 20;
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--educam-pill);
  background: rgba(255, 255, 255, 0.94);
  color: #121122;
  padding: 6px 16px 6px 7px;
  font-size: 14px;
  font-weight: 700;
}

.educam-slider__avatar {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 59% 40%, #ffd2b8 0 18%, transparent 19%),
    radial-gradient(circle at 48% 38%, #6d3cff 0 35%, transparent 36%),
    linear-gradient(135deg, #ff4ca0, #3478ff);
  box-shadow: 0 0 0 4px #884aff;
}

.educam-slider__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}

.educam-slider__dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: var(--educam-pill);
  background: #ddd8e6;
  padding: 0;
  margin: 0;
  transition: width var(--educam-ease), background var(--educam-ease);
}

.educam-slider__dots button.is-active,
.educam-slider__dots button[aria-current="true"] {
  width: 22px;
  background: var(--educam-blue);
}

.educam-cta-bar {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  border-radius: var(--educam-radius);
  background: #f8f7fa;
  padding: 13px 18px 13px 12px;
}

.educam-cta-bar__btn {
  position: relative;
  min-width: 206px;
  height: 48px;
  border: 1px solid #eee6f8;
  background: #fff;
  color: var(--educam-text);
  font-size: 14px;
}

.educam-cta-bar__btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--educam-blue);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.educam-cta-bar__badge {
  position: absolute;
  top: -7px;
  right: -4px;
  display: grid;
  place-items: center;
  min-height: 19px;
  border-radius: var(--educam-pill);
  background: var(--educam-blue);
  color: #fff;
  padding: 0 8px;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}

.educam-cta-bar p {
  margin: 0;
  color: #343241;
  font-size: 15.5px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0;
}

/* Course picker */
.educam-course-picker {
  --educam-course-active: var(--educam-blue);
}

.educam-course-picker .educam-wrap {
  position: relative;
  padding-top: 40px;
  padding-bottom: 56px;
}

.educam-course-picker__toolbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  padding: 10px 0 16px;
  margin: -10px 0 20px;
  backdrop-filter: blur(18px);
}

.educam-course-picker__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.educam-course-picker__tabs {
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.educam-course-picker__tabs::-webkit-scrollbar {
  display: none;
}

.educam-course-picker__tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.educam-tool-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--educam-soft);
  color: var(--educam-text);
  padding: 0;
  margin: 0;
  box-shadow: none;
}

.educam-tool-btn:hover,
.educam-tool-btn.is-active {
  background: var(--educam-text);
  color: #fff;
}

.educam-tool-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.educam-filter {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  display: grid;
  grid-template-columns: 0.85fr 0.85fr 0.85fr 0.75fr 1fr;
  gap: 10px;
  margin-bottom: 0;
  padding: 0 10px;
  border-radius: 22px;
  background: var(--educam-soft);
  transition: max-height var(--educam-ease-md), opacity var(--educam-ease), transform var(--educam-ease), padding var(--educam-ease);
}

.educam-filter.is-open {
  max-height: 136px;
  opacity: 1;
  transform: translateY(0);
  padding: 10px;
}

.educam-field {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.educam-field > span {
  color: var(--educam-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.educam-field select,
.educam-filter-search > div {
  width: 100%;
  height: 46px;
  border: 0;
  outline: 0;
  border-radius: 15px;
  background: #fff;
  color: var(--educam-text);
  padding: 0 14px;
  margin: 0;
  box-shadow: none;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0;
}

.educam-field select:disabled {
  cursor: not-allowed;
  color: #aaa7b1;
  background: #fbfbfc;
  opacity: 1;
}

.educam-field.is-disabled > span {
  color: #aaa7b1;
}

.educam-filter-search > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.educam-filter-search svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: #a2a2ad;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.educam-filter-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--educam-text);
  padding: 0;
  margin: 0;
  box-shadow: none;
  font-size: 14.5px;
  font-weight: 500;
}

.educam-filter-search input::placeholder {
  color: #9a98a5;
}

.educam-course-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 20px;
  align-items: stretch;
}

.educam-course-grid.is-hidden {
  display: none;
}

.educam-course-card {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  content-visibility: auto;
  contain-intrinsic-size: 360px;
}

.educam-course-card.is-entering {
  opacity: 0;
  transform: translateY(10px);
  animation: educamCourseCardIn 0.28s ease forwards;
}

@keyframes educamCourseCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.educam-course-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.52 / 1;
  overflow: hidden;
  border-radius: var(--educam-radius);
  background: #f3f3f4;
  isolation: isolate;
}

.educam-course-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform var(--educam-ease-md);
}

.educam-course-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.18)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 58%);
  pointer-events: none;
}

.educam-course-card:hover .educam-course-card__image img {
  transform: scale(1.035);
}

.educam-course-card__badges {
  position: absolute;
  z-index: 3;
  left: 12px;
  top: 12px;
  right: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.educam-course-card__badges:empty {
  display: none;
}

.educam-course-card__badge {
  background: rgba(255, 255, 255, 0.92);
  color: var(--educam-text);
  backdrop-filter: blur(10px);
}

.educam-course-card__actions {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--educam-ease), transform var(--educam-ease);
}

.educam-course-card:hover .educam-course-card__actions,
.educam-course-card:focus-within .educam-course-card__actions {
  opacity: 1;
  transform: translateY(0);
}

.educam-course-card__cart {
  background: var(--educam-text);
  color: #fff;
}

.educam-course-card__cart:hover {
  background: var(--educam-yellow);
  color: #111;
}

.educam-course-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 13px 1px 0;
}

.educam-course-card__title {
  display: block;
  font-size: 17.5px;
  line-height: 1.28;
}

.educam-course-card__text {
  display: -webkit-box;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.educam-course-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--educam-muted);
  font-weight: 600;
  line-height: 1;
}

.educam-course-card__meta b {
  color: #b66f00;
  font-weight: 600;
}

.educam-course-card__meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c7c4cc;
}

.educam-course-card__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.educam-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.educam-price span {
  color: var(--educam-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: line-through;
}

.educam-price b {
  color: var(--educam-blue);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.educam-category-ielts .educam-price b {
  color: var(--educam-red);
}

.educam-category-sat .educam-price b {
  color: var(--educam-green);
}

.educam-category-vinschool .educam-price b {
  color: var(--educam-navy);
}

.educam-empty {
  display: none;
  border-radius: var(--educam-radius-lg);
  background: var(--educam-soft);
  padding: 34px 20px;
  text-align: center;
}

.educam-empty.is-visible {
  display: block;
}

.educam-empty strong {
  display: block;
  color: var(--educam-text);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
}

.educam-empty p {
  margin: 9px 0 0;
  color: var(--educam-muted);
  font-size: 15px;
  line-height: 1.45;
}

.educam-load {
  display: none;
  justify-content: center;
  margin-top: 32px;
}

.educam-load.is-visible {
  display: flex;
}

.educam-load button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: var(--educam-pill);
  background: var(--educam-soft);
  color: var(--educam-text);
  padding: 0 19px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.educam-load button:hover {
  background: var(--educam-text);
  color: #fff;
}

.educam-load button.is-loading {
  pointer-events: none;
  opacity: 0.68;
}

.educam-load svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.educam-toast {
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 14px);
  display: none;
  border-radius: var(--educam-pill);
  background: var(--educam-text);
  color: #fff;
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 600;
  opacity: 0;
}

.educam-toast.is-visible {
  display: block;
  animation: educamToast 0.2s ease forwards;
}

@keyframes educamToast {
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.ec-visual-slider {
  min-width: 0;
}

.ec-visual-slider__stage {
  position: relative;
  width: 100%;
  height: 365px;
  overflow: hidden;
  border-radius: var(--ec-radius-lg);
  background: #f8f7fb;
}

.ec-visual-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity var(--ec-ease-lg), transform var(--ec-ease-lg);
  pointer-events: none;
}

.ec-visual-slider__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.ec-visual-slider__art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ec-visual-slider__author {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 20;
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--ec-radius-pill);
  background: rgba(255, 255, 255, 0.94);
  color: #121122;
  padding: 6px 16px 6px 7px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(13, 12, 34, 0.08);
}

.ec-visual-slider__avatar {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 59% 40%, #ffd2b8 0 18%, transparent 19%),
    radial-gradient(circle at 48% 38%, #6d3cff 0 35%, transparent 36%),
    linear-gradient(135deg, #ff4ca0, #3478ff);
  box-shadow: 0 0 0 4px #884aff;
}

.ec-visual-slider__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}

.ec-visual-slider__dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: var(--ec-radius-pill);
  background: #ddd8e6;
  padding: 0;
  margin: 0;
  transition: width var(--ec-ease), background var(--ec-ease);
}

.ec-visual-slider__dots button.is-active {
  width: 22px;
  background: var(--ec-blue);
}

.ec-art-mountain .ec-art-sky {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 76% 11%, rgba(255, 255, 255, 0.22), transparent 23%),
    linear-gradient(180deg, rgba(131, 117, 231, 0.16), transparent 54%),
    linear-gradient(180deg, #c1bfff 0%, #d7f0f2 49%, #c9f4df 100%);
}

.ec-art-mountain .ec-art-ridge {
  position: absolute;
  left: -7%;
  right: -7%;
  z-index: 2;
}

.ec-art-mountain .ec-art-ridge--a {
  bottom: 10%;
  height: 38%;
  background: #ec3b91;
  transform: skewY(-10deg);
}

.ec-art-mountain .ec-art-ridge--b {
  bottom: -4%;
  height: 35%;
  z-index: 3;
  background: #5a1f62;
  transform: skewY(-13deg);
  clip-path: polygon(0 55%, 18% 12%, 36% 43%, 51% 16%, 70% 51%, 88% 9%, 100% 38%, 100% 100%, 0 100%);
}

.ec-art-mountain .ec-art-ridge--c {
  bottom: 0;
  height: 28%;
  z-index: 4;
  background: rgba(255, 102, 171, 0.66);
  transform: skewY(-11deg);
  clip-path: polygon(0 44%, 22% 13%, 43% 47%, 63% 19%, 100% 56%, 100% 100%, 0 100%);
}

.ec-art-hiker {
  position: absolute;
  z-index: 6;
  width: 48px;
  height: 150px;
  transform-origin: center bottom;
}

.ec-art-hiker--one {
  left: 22%;
  bottom: 16%;
  transform: scale(0.72) rotate(7deg);
}

.ec-art-hiker--two {
  left: 51%;
  bottom: 27%;
  transform: scale(0.86) rotate(7deg);
}

.ec-art-hiker--three {
  left: 78%;
  bottom: 39%;
  transform: scale(1) rotate(7deg);
}

.ec-art-hiker i {
  position: absolute;
  top: 0;
  left: 19px;
  width: 29px;
  height: 38px;
  border-radius: 12px 13px 10px 10px;
  background: #073942;
  transform: skewX(-12deg);
}

.ec-art-hiker i::before {
  content: "";
  position: absolute;
  top: 8px;
  right: -11px;
  width: 21px;
  height: 16px;
  border-radius: 3px;
  background: #f6b567;
}

.ec-art-hiker b {
  position: absolute;
  top: 34px;
  left: 9px;
  width: 40px;
  height: 66px;
  border-radius: 10px;
  background: #0b3844;
  transform: skewX(-12deg);
}

.ec-art-hiker b::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 8px;
  width: 16px;
  height: 18px;
  border: 4px solid #f3b65b;
  border-radius: 3px;
}

.ec-art-hiker span {
  position: absolute;
  top: 60px;
  left: 32px;
  width: 55px;
  height: 20px;
  border-radius: 4px;
  background: #057d86;
  transform: rotate(11deg);
  box-shadow: 8px 5px 0 rgba(255, 142, 92, 0.5);
}

.ec-art-hiker em {
  position: absolute;
  top: 95px;
  left: 13px;
  width: 52px;
  height: 68px;
  font-style: normal;
}

.ec-art-hiker em::before,
.ec-art-hiker em::after {
  content: "";
  position: absolute;
  top: 0;
  width: 17px;
  height: 67px;
  border-radius: 12px;
  background: #0a2633;
  transform-origin: top center;
}

.ec-art-hiker em::before {
  left: 0;
  transform: rotate(18deg);
}

.ec-art-hiker em::after {
  right: 7px;
  transform: rotate(-24deg);
}

.ec-art-coffee {
  background:
    radial-gradient(circle at 64% 23%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(135deg, #27130b 0%, #120805 100%);
}

.ec-art-coffee__table {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 36%),
    radial-gradient(ellipse at 52% 80%, rgba(255, 255, 255, 0.18), transparent 32%);
}

.ec-art-coffee__plate {
  position: absolute;
  width: 54%;
  height: 40%;
  left: 21%;
  top: 38%;
  border-radius: 50%;
  background: #f4eee0;
  box-shadow: inset -20px -16px 0 rgba(0, 0, 0, 0.1);
  transform: rotate(2deg);
}

.ec-art-coffee__cup {
  position: absolute;
  width: 28%;
  height: 28%;
  left: 34%;
  top: 32%;
  border-radius: 50%;
  background: #f8f0df;
  box-shadow: inset -13px -10px 0 rgba(0, 0, 0, 0.1);
}

.ec-art-coffee__liquid {
  position: absolute;
  width: 20%;
  height: 16%;
  left: 38%;
  top: 36%;
  border-radius: 50%;
  background: #080403;
}

.ec-art-coffee__spoon {
  position: absolute;
  width: 5%;
  height: 37%;
  left: 31%;
  top: 34%;
  border-radius: var(--ec-radius-pill);
  background: linear-gradient(90deg, #8f8271, #f3eee5, #5b5048);
  transform: rotate(12deg);
}

.ec-art-coffee__cookie {
  position: absolute;
  width: 16%;
  height: 12%;
  right: 16%;
  top: 21%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 32%, rgba(0, 0, 0, 0.12) 0 7%, transparent 8%),
    radial-gradient(circle at 62% 58%, rgba(0, 0, 0, 0.13) 0 6%, transparent 7%),
    #c4b994;
}

.ec-art-ui {
  background: #fff;
}

.ec-art-ui__chip {
  position: absolute;
  left: 25%;
  top: 44%;
  border-radius: var(--ec-radius-sm);
  background: var(--ec-blue);
  color: #fff;
  padding: 6px 10px;
  font-size: 16px;
  line-height: 1;
}

.ec-art-ui__chip::before {
  content: "E";
  position: absolute;
  left: -25px;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: var(--ec-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.ec-art-ui__card {
  position: absolute;
  left: 44%;
  top: 36%;
  width: 210px;
  height: 105px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #050505;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0;
}

.ec-art-ui__card::before {
  content: "";
  position: absolute;
  top: 24px;
  width: 32px;
  height: 13px;
  border-radius: var(--ec-radius-pill);
  background: #fff;
  filter: blur(3px);
}

.ec-art-ui__files {
  position: absolute;
  right: 7%;
  top: 39%;
  display: grid;
  gap: 7px;
}

.ec-art-ui__files span {
  position: relative;
  display: block;
  border-radius: 8px;
  background: var(--ec-blue);
  color: #fff;
  padding: 4px 10px 5px 30px;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

.ec-art-ui__files span::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  border-radius: 3px;
  background: linear-gradient(135deg, var(--ec-red), #fff);
}

@media (max-width: 1180px) {
  .educam-wrap {
    width: min(100% - 32px, 1080px);
  }

  .ec-wrap {
    width: min(100% - 32px, 1080px);
  }

  .educam-title {
    font-size: 30px;
  }

  .ec-title {
    font-size: 30px;
  }

  .educam-head .educam-title,
  .ec-head h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .educam-grid--3,
  .ec-grid-3 {
    gap: 28px 24px;
  }

  .educam-hero-search .educam-wrap {
    padding: 30px 0 24px;
  }

  .educam-hero-search__main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 455px);
    gap: 34px;
  }

  .educam-hero-title {
    font-size: 50px;
  }

  .educam-hero-search__desc {
    max-width: 430px;
  }

  .educam-tab {
    min-width: 102px;
    min-height: 42px;
    padding: 0 16px;
  }

  .ec-tab {
    min-width: 102px;
    min-height: 42px;
    padding: 0 16px;
  }

  .educam-search {
    height: 54px;
  }

  .ec-search {
    height: 54px;
  }

  .educam-search__input {
    line-height: 54px;
  }

  .ec-search__input {
    line-height: 54px;
  }

  .educam-search__btn {
    width: 42px;
    height: 42px;
  }

  .ec-search__btn {
    width: 42px;
    height: 42px;
  }

  .educam-slider {
    height: 305px;
  }

  .ec-visual-slider__stage {
    height: 305px;
  }

  .educam-course-picker .educam-wrap {
    padding-top: 30px;
    padding-bottom: 44px;
  }

  .educam-filter {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .educam-filter.is-open {
    max-height: 230px;
  }

  .educam-course-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 18px;
  }
}

@media (max-width: 920px) {
  .educam-wrap {
    width: min(100% - 24px, 820px);
  }

  .ec-wrap {
    width: min(100% - 24px, 820px);
  }

  .educam-title {
    font-size: 28px;
  }

  .ec-title {
    font-size: 28px;
  }

  .educam-subtitle {
    font-size: 15.5px;
  }

  .ec-subtitle {
    font-size: 15.5px;
  }

  .educam-head .educam-title,
  .ec-head h2 {
    font-size: 28px;
  }

  .educam-grid--3,
  .ec-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .educam-hero-search .educam-wrap {
    padding: 24px 0 22px;
  }

  .educam-hero-search__main {
    display: block;
  }

  .educam-hero-search__content {
    text-align: center;
  }

  .educam-hero-title {
    max-width: 610px;
    margin: 0 auto;
    font-size: 44px;
    line-height: 1.08;
  }

  .educam-hero-search__desc {
    max-width: 610px;
    margin: 14px auto 0;
    line-height: 1.5;
  }

  .educam-hero-search__tabs-outer {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 28px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .educam-hero-search__tabs-outer::-webkit-scrollbar {
    display: none;
  }

  .educam-hero-search__tabs {
    justify-content: center;
    gap: 10px;
    min-width: max-content;
    margin: 0 auto;
  }

  .educam-tab {
    min-width: 132px;
    min-height: 44px;
    padding: 0 18px;
  }

  .ec-tab {
    min-width: 132px;
    min-height: 44px;
    padding: 0 18px;
  }

  .educam-hero-search__search {
    max-width: 720px;
    margin: 10px auto 0;
  }

  .educam-hero-search__popular {
    max-width: 720px;
    margin: 20px auto 0;
    padding: 0 0 8px;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .educam-hero-search__popular::-webkit-scrollbar {
    display: none;
  }

  .educam-hero-search__visual {
    display: none;
  }

  .ec-visual-slider {
    display: none;
  }

  .educam-cta-bar {
    max-width: 720px;
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin: 30px auto 0;
    padding: 28px 36px 31px;
    border-radius: 20px;
    text-align: left;
  }

  .educam-cta-bar__btn {
    min-width: 280px;
    height: 52px;
    padding: 0 28px;
    font-size: 15px;
  }

  .educam-cta-bar p {
    max-width: 560px;
    font-size: 16px;
  }

  .educam-course-picker .educam-wrap {
    padding-top: 24px;
    padding-bottom: 38px;
  }

  .educam-filter.is-open {
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    padding: 0 10px;
  }

  .educam-filter.is-open.is-manual-open {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
    padding: 10px;
  }

  .educam-course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }

  .educam-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .educam-course-picker__tabs .educam-tab {
    min-height: 40px;
    padding: 0 16px;
  }
}

@media (max-width: 640px) {
  .educam-wrap {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .ec-wrap {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .educam-title {
    font-size: 25px;
    line-height: 1.22;
  }

  .ec-title {
    font-size: 25px;
    line-height: 1.22;
  }

  .educam-subtitle {
    font-size: 15px;
  }

  .ec-subtitle {
    font-size: 15px;
  }

  .educam-card-title {
    font-size: 17px;
  }

  .ec-card-title {
    font-size: 17px;
  }

  .educam-card-text {
    font-size: 14.5px;
  }

  .ec-card-text {
    font-size: 14.5px;
  }

  .educam-btn {
    min-height: 44px;
    font-size: 14.5px;
  }

  .ec-btn {
    min-height: 44px;
    font-size: 14.5px;
  }

  .educam-head,
  .ec-head {
    margin-bottom: 28px;
  }

  .educam-head .educam-title,
  .ec-head h2 {
    max-width: 400px;
    margin-top: 14px;
    font-size: 25px;
    line-height: 1.22;
  }

  .educam-head .educam-subtitle,
  .ec-head p {
    max-width: 390px;
    margin-top: 12px;
    font-size: 15px;
  }

  .educam-grid--2,
  .educam-grid--3,
  .ec-grid-2,
  .ec-grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .educam-hero-search .educam-wrap {
    padding: 24px 14px 22px;
    overflow: hidden;
  }

  .educam-hero-title {
    max-width: 420px;
    font-size: clamp(31px, 8.5vw, 38px);
    line-height: 1.3;
  }

  .educam-hero-search__desc {
    max-width: 420px;
    margin-top: 14px;
    font-size: 14.5px;
  }

  .educam-hero-search__tabs-outer {
    margin-top: 24px;
  }

  .educam-hero-search__tabs {
    gap: 8px;
  }

  .educam-tab {
    min-width: 112px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 13.5px;
    gap: 7px;
  }

  .ec-tab {
    min-width: 112px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 13.5px;
    gap: 7px;
  }

  .educam-tab svg {
    width: 18px;
    height: 18px;
  }

  .ec-tab svg {
    width: 18px;
    height: 18px;
  }

  .educam-search {
    max-width: none;
    height: 52px;
  }

  .ec-search {
    max-width: none;
    height: 52px;
  }

  .educam-search__input {
    padding: 0 62px 0 18px;
    font-size: 14px;
    line-height: 52px;
  }

  .ec-search__input {
    padding: 0 62px 0 18px;
    font-size: 14px;
    line-height: 52px;
  }

  .educam-search__btn {
    width: 40px;
    height: 40px;
    right: 6px;
  }

  .ec-search__btn {
    width: 40px;
    height: 40px;
    right: 6px;
  }

  .educam-search__btn svg {
    width: 20px;
    height: 20px;
  }

  .educam-search__suggest {
    top: calc(100% + 9px);
    border-radius: 18px;
    padding: 9px 0;
  }

  .educam-search__suggest button {
    min-height: 46px;
    padding: 0 19px;
    font-size: 15px;
  }

  .educam-hero-search__popular {
    width: 100%;
    max-width: none;
    gap: 7px;
    margin-top: 17px;
    padding-bottom: 9px;
  }

  .educam-popular strong,
  .educam-popular button {
    flex: 0 0 auto;
  }

  .educam-popular strong {
    font-size: 13px;
  }

  .ec-popular strong {
    font-size: 13px;
  }

  .educam-popular button {
    min-height: 32px;
    padding: 0 15px;
    font-size: 13px;
  }

  .ec-popular button {
    min-height: 32px;
    padding: 0 15px;
    font-size: 13px;
  }

  .educam-cta-bar {
    max-width: none;
    margin-top: 26px;
    padding: 22px 20px 25px;
    border-radius: var(--educam-radius);
    gap: 16px;
  }

  .educam-cta-bar__btn {
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 0 18px;
    font-size: 14px;
  }

  .educam-cta-bar__badge {
    right: 12px;
    top: -8px;
    min-height: 20px;
  }

  .educam-cta-bar p {
    font-size: 14.5px;
  }

  .educam-course-picker .educam-wrap {
    padding-top: 24px;
    padding-bottom: 36px;
    overflow: hidden;
  }

  .educam-course-picker__toolbar {
    padding: 10px 0 12px;
    margin: -10px 0 16px;
  }

  .educam-course-picker__bar {
    gap: 10px;
  }

  .educam-course-picker__tabs {
    margin-left: -14px;
    padding-left: 14px;
    gap: 8px;
  }

  .educam-course-picker__tabs .educam-tab {
    min-height: 40px;
    padding: 0 15px;
    font-size: 14.5px;
  }

  .educam-tool-btn {
    width: 38px;
    height: 38px;
  }

  .educam-filter {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .educam-filter.is-open.is-manual-open {
    max-height: 560px;
    padding: 12px;
  }

  .educam-field > span {
    font-size: 12.8px;
  }

  .educam-field select,
  .educam-filter-search > div,
  .educam-filter-search input {
    font-size: 14px;
  }

  .educam-course-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .educam-course-card__actions {
    opacity: 1;
    transform: none;
  }

  .educam-course-card__title {
    font-size: 17px;
  }

  .educam-btn--chip,
  .ec-btn--chip {
    min-height: 34px;
    padding: 0 13px;
    font-size: 13.5px;
  }
}

@media (max-width: 380px) {
  .educam-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }

  .ec-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }

  .educam-hero-search .educam-wrap {
    padding: 22px 12px 20px;
  }

  .educam-hero-title {
    max-width: 340px;
    font-size: 30px;
  }

  .educam-hero-search__desc {
    font-size: 14px;
  }

  .educam-head .educam-title,
  .ec-head h2 {
    max-width: 340px;
    font-size: 23.5px;
  }

  .educam-head .educam-subtitle,
  .ec-head p {
    font-size: 14.5px;
  }

  .educam-tab {
    min-width: 104px;
    min-height: 39px;
    padding: 0 12px;
    font-size: 13px;
  }

  .ec-tab {
    min-width: 104px;
    min-height: 39px;
    padding: 0 12px;
    font-size: 13px;
  }

  .educam-search {
    height: 50px;
  }

  .ec-search {
    height: 50px;
  }

  .educam-search__input {
    padding-left: 17px;
    padding-right: 60px;
    font-size: 13.5px;
    line-height: 50px;
  }

  .ec-search__input {
    padding-left: 17px;
    padding-right: 60px;
    font-size: 13.5px;
    line-height: 50px;
  }

  .educam-search__btn {
    width: 38px;
    height: 38px;
  }

  .ec-search__btn {
    width: 38px;
    height: 38px;
  }

  .educam-cta-bar {
    padding: 20px 18px 23px;
  }

  .educam-cta-bar p,
  .educam-course-card__text {
    font-size: 14px;
  }

  .educam-course-picker .educam-wrap {
    padding-top: 22px;
    padding-bottom: 34px;
  }

  .educam-course-picker__tabs {
    margin-left: -12px;
    padding-left: 12px;
  }

  .educam-course-card__title {
    font-size: 16.5px;
  }
}

.educam-proof-suite {
  background: #fff;
}

.educam-proof__wrap {
  padding-top: 40px;
  padding-bottom: 60px;
}

.educam-proof__header,
.educam-proof__section-head {
  max-width: 820px;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.educam-proof__header .educam-kicker {
  background: var(--educam-soft);
  color: var(--educam-muted);
  text-transform: none;
  font-size: 14px;
}

.educam-proof__header .educam-title,
.educam-proof__section-head .educam-title {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--educam-text);
  font-size: 32px;
  line-height: 1.16;
}

.educam-proof__section-head .educam-title {
  margin-top: 0;
}

.educam-proof__header .educam-subtitle,
.educam-proof__section-head .educam-subtitle {
  max-width: 760px;
  margin: 10px 0 0;
}

.educam-proof__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-bottom: 48px;
}

.educam-proof-card {
  --proof-main: var(--educam-blue);
  --proof-tint: #edf6ff;
  min-width: 0;
  min-height: 420px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--educam-radius-lg);
  background: #f8f7fa;
  isolation: isolate;
  transition: transform var(--educam-ease), background var(--educam-ease);
}

.educam-proof-card:hover,
.educam-proof-card:focus {
  transform: translateY(-2px);
  outline: 0;
}

.educam-proof-card--blue {
  --proof-main: var(--educam-blue);
  --proof-tint: #edf6ff;
}

.educam-proof-card--red {
  --proof-main: var(--educam-red);
  --proof-tint: #fff2f5;
}

.educam-proof-card--green {
  --proof-main: var(--educam-green);
  --proof-tint: #eff8f2;
}

.educam-proof-card--navy {
  --proof-main: var(--educam-navy);
  --proof-tint: #f2f4f8;
}

.educam-proof-card__mock {
  min-height: 240px;
  margin: 18px 18px 0;
  border-radius: 20px;
  background: #fff;
  padding: 14px;
}

.educam-proof-card__mock-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
}

.educam-proof-card__mock-head strong {
  display: block;
  color: var(--educam-text);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.2;
}

.educam-proof-card__mock-head span {
  display: block;
  margin-top: 4px;
  color: var(--educam-muted);
  font-size: 11px;
  line-height: 1.2;
}

.educam-proof-card__mock-head em {
  flex: 0 0 auto;
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--educam-pill);
  background: var(--proof-tint);
  color: var(--proof-main);
  padding: 0 10px;
  font-size: 11px;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
}

.educam-proof-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.educam-proof-card__stats div {
  min-width: 0;
  border-radius: 13px;
  background: var(--proof-tint);
  padding: 10px 8px;
}

.educam-proof-card__stats b {
  display: block;
  color: var(--proof-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.educam-proof-card__stats span {
  display: block;
  margin-top: 5px;
  color: var(--educam-muted);
  font-size: 9.5px;
  line-height: 1.15;
}

.educam-proof-roadmap,
.educam-proof-timeline,
.educam-proof-table,
.educam-proof-bars {
  display: grid;
  gap: 7px;
}

.educam-proof-roadmap div,
.educam-proof-timeline div,
.educam-proof-table div,
.educam-proof-bars div {
  min-width: 0;
  min-height: 34px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  border-radius: 12px;
  background: #f8fafc;
  padding: 7px 8px;
}

.educam-proof-table div {
  grid-template-columns: minmax(0, 1fr) auto;
}

.educam-proof-bars div {
  grid-template-columns: 82px minmax(0, 1fr) 32px;
}

.educam-proof-roadmap i,
.educam-proof-timeline i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: var(--educam-pill);
  background: #e8edf4;
  color: var(--educam-muted);
  font-size: 8px;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
}

.educam-proof-roadmap .is-done i,
.educam-proof-roadmap .is-current i,
.educam-proof-timeline i {
  background: var(--proof-main);
  color: #fff;
}

.educam-proof-roadmap span,
.educam-proof-timeline span,
.educam-proof-table span,
.educam-proof-bars span {
  min-width: 0;
  overflow: hidden;
  color: #475569;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.15;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.educam-proof-roadmap b,
.educam-proof-timeline b,
.educam-proof-table b,
.educam-proof-bars b {
  color: var(--proof-main);
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.educam-proof-bars i {
  position: relative;
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: var(--educam-pill);
  background: #e8edf4;
}

.educam-proof-bar {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  border-radius: inherit;
  background: var(--proof-main);
}

.educam-proof-bar--82 {
  width: 82%;
}

.educam-proof-bar--64 {
  width: 64%;
}

.educam-proof-bar--46 {
  width: 46%;
}

.educam-proof-thinking {
  min-height: 112px;
  position: relative;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--proof-tint);
}

.educam-proof-thinking__main {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--educam-pill);
  background: var(--proof-main);
  color: #fff;
  padding: 0 14px;
  font-size: 10px;
  font-weight: 600;
}

.educam-proof-thinking__grid {
  position: absolute;
  inset: 58px 12px 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.educam-proof-thinking__grid span {
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff;
  color: var(--proof-main);
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
}

.educam-proof-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.educam-proof-card__content .educam-tag {
  width: max-content;
  background: #fff;
  color: var(--proof-main);
}

.educam-proof-card__content .educam-card-title {
  margin-top: 18px;
  font-size: 21px;
  line-height: 1.2;
}

.educam-proof-card__content .educam-card-text {
  font-size: 15px;
}

.educam-proof-reviews,
.educam-honor-roll {
  margin-top: 44px;
}

.educam-proof-review-area {
  position: relative;
  max-height: 520px;
  overflow: hidden;
  transition: max-height var(--educam-ease-md);
}

.educam-proof-suite.is-expanded .educam-proof-review-area {
  max-height: 940px;
}

.educam-proof-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.educam-proof-review {
  --proof-main: var(--educam-blue);
  --proof-tint: #edf6ff;
  min-width: 0;
  min-height: 252px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--educam-radius-lg);
  background: #f8f7fa;
  padding: 20px;
}

.educam-category-ielts {
  --proof-main: var(--educam-red);
  --proof-tint: #fff2f5;
}

.educam-category-sat {
  --proof-main: var(--educam-green);
  --proof-tint: #eff8f2;
}

.educam-category-cambridge {
  --proof-main: var(--educam-blue);
  --proof-tint: #edf6ff;
}

.educam-category-vinschool {
  --proof-main: var(--educam-navy);
  --proof-tint: #f2f4f8;
}

.educam-category-alevel {
  --proof-main: #6d5bd0;
  --proof-tint: #f4f1ff;
}

.educam-proof-review::before {
  content: "EduCam";
  position: absolute;
  top: 20px;
  right: 20px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--educam-pill);
  background: #fff;
  color: var(--proof-main);
  padding: 0 10px;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1;
}

.educam-proof-person {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding-right: 82px;
  margin-bottom: 16px;
}

.educam-proof-person img {
  width: 44px;
  height: 44px;
  border-radius: var(--educam-pill);
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.educam-proof-person .educam-card-title {
  overflow: hidden;
  font-size: 15.5px;
  line-height: 1.22;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.educam-proof-person .educam-meta {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: var(--educam-muted);
  font-size: 12.5px;
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.educam-proof-scan {
  display: grid;
  gap: 10px;
}

.educam-proof-state {
  min-height: 76px;
  border-radius: var(--educam-radius);
  background: #fff;
  padding: 13px 14px;
}

.educam-proof-state.is-after {
  background: var(--proof-tint);
}

.educam-proof-state span {
  display: block;
  margin-bottom: 5px;
  color: var(--educam-muted);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.educam-proof-state.is-after span {
  color: var(--proof-main);
}

.educam-proof-state p {
  margin: 0;
  color: var(--educam-muted);
  font-size: 14.8px;
  line-height: 1.5;
}

.educam-proof-state.is-after p {
  color: var(--educam-text);
  font-weight: 500;
}

.educam-proof-review--extra {
  opacity: 0.24;
  transition: opacity var(--educam-ease);
}

.educam-proof-suite.is-expanded .educam-proof-review--extra {
  opacity: 1;
}

.educam-proof-review-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 78%);
  pointer-events: none;
  transition: opacity var(--educam-ease);
}

.educam-proof-suite.is-expanded .educam-proof-review-fade {
  opacity: 0;
}

.educam-proof-review-actions {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: -58px;
  pointer-events: none;
}

.educam-proof-suite.is-expanded .educam-proof-review-actions {
  margin-top: 18px;
}

.educam-proof-more {
  pointer-events: auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 0;
  border-radius: var(--educam-pill);
  background: var(--educam-text);
  color: #fff;
  padding: 6px 8px 6px 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.educam-proof-more:hover {
  background: var(--educam-yellow);
  color: #111;
}

.educam-proof-more__avatars {
  display: inline-flex;
  align-items: center;
}

.educam-proof-more__avatars img {
  width: 28px;
  height: 28px;
  margin-left: -8px;
  border-radius: var(--educam-pill);
  object-fit: cover;
}

.educam-proof-more__avatars img:first-child {
  margin-left: 0;
}

.educam-honor-roll__viewport {
  width: 100%;
  overflow: hidden;
  cursor: grab;
}

.educam-honor-roll__viewport.is-dragging {
  cursor: grabbing;
}

.educam-honor-roll__track {
  display: flex;
  gap: 16px;
  align-items: stretch;
  transition: transform var(--educam-ease-md);
  will-change: transform;
  user-select: none;
}

.educam-honor-roll__track.is-page-0 {
  transform: translateX(0);
}

.educam-honor-roll__track.is-page-1 {
  transform: translateX(calc(-100% - 16px));
}

.educam-honor-roll__track.is-page-2 {
  transform: translateX(calc(-200% - 32px));
}

.educam-honor-roll__track.is-page-3 {
  transform: translateX(calc(-300% - 48px));
}

.educam-honor-card {
  --proof-main: var(--educam-blue);
  --proof-tint: #edf6ff;
  flex: 0 0 calc((100% - 48px) / 4);
  min-height: 218px;
  position: relative;
  border-radius: var(--educam-radius-lg);
  background: #f8f7fa;
  padding: 20px;
}

.educam-honor-card::before {
  content: "Track";
  position: absolute;
  top: 20px;
  right: 20px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--educam-pill);
  background: #fff;
  color: var(--proof-main);
  padding: 0 10px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.educam-honor-card.educam-category-ielts::before {
  content: "IELTS";
}

.educam-honor-card.educam-category-sat::before {
  content: "SAT";
}

.educam-honor-card.educam-category-cambridge::before {
  content: "Cambridge";
}

.educam-honor-card.educam-category-alevel::before {
  content: "A Level";
}

.educam-honor-card.educam-category-vinschool::before {
  content: "ToÃ¡n Vin";
}

.educam-honor-card .educam-proof-person {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 11px;
  padding-right: 86px;
  margin-bottom: 18px;
}

.educam-honor-card .educam-proof-person img {
  width: 42px;
  height: 42px;
}

.educam-honor-card > strong {
  display: block;
  margin: 0 0 10px;
  color: var(--proof-main);
  font-size: 40px;
  font-weight: 600;
  line-height: 0.95;
}

.educam-honor-card p {
  margin: 0;
  color: var(--educam-muted);
  font-size: 15px;
  line-height: 1.52;
}

.educam-honor-roll__controls {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.educam-honor-roll__dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.educam-honor-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: var(--educam-pill);
  background: rgba(13, 12, 34, 0.18);
  padding: 0;
}

.educam-honor-dot.is-active {
  width: 24px;
  background: var(--educam-blue);
}

@media (max-width: 1180px) {
  .educam-proof__wrap {
    padding-top: 34px;
    padding-bottom: 48px;
  }

  .educam-proof__header .educam-title,
  .educam-proof__section-head .educam-title {
    font-size: 31px;
  }

  .educam-proof__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .educam-proof-card {
    min-height: 390px;
  }

  .educam-honor-card {
    flex-basis: calc((100% - 32px) / 3);
  }
}

@media (max-width: 920px) {
  .educam-proof__wrap {
    padding-top: 30px;
    padding-bottom: 42px;
  }

  .educam-proof__header .educam-title,
  .educam-proof__section-head .educam-title {
    font-size: 28px;
  }

  .educam-proof-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .educam-proof-review-area {
    max-height: 780px;
  }

  .educam-proof-suite.is-expanded .educam-proof-review-area {
    max-height: 1280px;
  }

  .educam-honor-card {
    flex-basis: calc((100% - 16px) / 2);
  }
}

@media (max-width: 640px) {
  .educam-proof__wrap {
    padding: 28px 14px 38px;
    overflow: hidden;
  }

  .educam-proof__header .educam-kicker {
    min-height: 32px;
    font-size: 13px;
  }

  .educam-proof__header .educam-title,
  .educam-proof__section-head .educam-title {
    font-size: 25px;
    line-height: 1.16;
  }

  .educam-proof__header .educam-subtitle,
  .educam-proof__section-head .educam-subtitle {
    font-size: 15px;
    line-height: 1.54;
  }

  .educam-proof__track,
  .educam-proof-review-grid,
  .educam-honor-roll__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    touch-action: auto;
  }

  .educam-proof__track::-webkit-scrollbar,
  .educam-proof-review-grid::-webkit-scrollbar,
  .educam-honor-roll__track::-webkit-scrollbar {
    display: none;
  }

  .educam-proof-card {
    flex: 0 0 86%;
    min-height: 392px;
    scroll-snap-align: start;
  }

  .educam-proof-card__mock {
    min-height: 220px;
    margin: 16px 16px 0;
  }

  .educam-proof-card__content {
    padding: 18px;
  }

  .educam-proof-card__content .educam-card-title {
    font-size: 19px;
  }

  .educam-proof-card__content .educam-card-text {
    font-size: 14.5px;
    line-height: 1.52;
  }

  .educam-proof-reviews,
  .educam-honor-roll {
    margin-top: 38px;
  }

  .educam-proof-review-area {
    max-height: none;
    overflow: visible;
  }

  .educam-proof-review,
  .educam-proof-review--extra {
    flex: 0 0 90%;
    min-height: 270px;
    opacity: 1;
    scroll-snap-align: start;
  }

  .educam-proof-review-fade,
  .educam-proof-review-actions,
  .educam-honor-roll__controls {
    display: none;
  }

  .educam-honor-roll__viewport {
    overflow: visible;
  }

  .educam-honor-roll__track {
    transform: none;
    transition: none;
  }

  .educam-honor-card {
    flex: 0 0 88%;
    min-height: 218px;
    scroll-snap-align: start;
  }

  .educam-honor-card > strong {
    font-size: 42px;
  }
}

@media (max-width: 380px) {
  .educam-proof__wrap {
    padding: 26px 12px 36px;
  }

  .educam-proof__header .educam-title,
  .educam-proof__section-head .educam-title {
    font-size: 23.5px;
  }

  .educam-proof-card,
  .educam-proof-review,
  .educam-proof-review--extra,
  .educam-honor-card {
    flex-basis: 91%;
  }

  .educam-proof-card__mock {
    padding: 12px;
  }

  .educam-proof-bars div {
    grid-template-columns: 72px minmax(0, 1fr) 30px;
  }
}

.educam-header {
  --educam-blue: #0171dc;
  --educam-yellow: #ffc221;
  --educam-text: #1c1d1f;
  --educam-muted: #64748b;
  --educam-line: #e9e6ef;
  --educam-soft: #f5f4f7;
  --educam-white: #fff;
  --educam-radius: 18px;
  --educam-pill: 999px;
  --educam-header-ease: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  z-index: 9999;
  width: 100%;
  overflow-x: clip;
  background: var(--educam-white);
  color: var(--educam-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.educam-header a {
  color: inherit;
  text-decoration: none;
}

.educam-header button {
  font-family: inherit;
}

.educam-header svg,
.educam-header img {
  display: block;
}

.educam-header__inner {
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
  background: #fff;
  padding: 0 38px;
}

.educam-header__logo {
  width: 128px;
  min-width: 128px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.educam-header__logo img {
  width: 100%;
  height: auto;
  max-height: 35px;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
  transition: filter 0.24s var(--educam-header-ease), transform 0.24s var(--educam-header-ease);
}

.educam-header__logo:hover img {
  filter: none;
  transform: translateY(-1px);
}

.educam-header__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.educam-header__item {
  position: relative;
}

.educam-header__item::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 18px;
}

.educam-header__link {
  height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--educam-text);
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.educam-header__link:hover,
.educam-header__link[aria-expanded="true"],
.educam-header__signup:hover,
.educam-mobile__signup:hover {
  color: var(--educam-blue);
}

.educam-header__link svg {
  width: 12px;
  height: 12px;
  transition: transform 0.24s var(--educam-header-ease);
}

.educam-header__link path,
.educam-menu svg path,
.educam-menu-card svg path,
.educam-community-socials svg path,
.educam-mobile-menu svg path,
.educam-mobile-card svg path,
.educam-mobile-socials svg path,
.educam-header__login-icon svg path,
.educam-mobile__login-icon svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.educam-header__item:hover > .educam-header__link svg,
.educam-header__item.is-active > .educam-header__link svg {
  transform: rotate(180deg);
}

.educam-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -22px;
  width: 288px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(13, 12, 34, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 12px, 0) scale(0.985);
  transform-origin: 50% 0;
  transition: opacity 0.24s var(--educam-header-ease), transform 0.24s var(--educam-header-ease), visibility 0s linear 0.28s;
}

.educam-header__item:hover > .educam-menu,
.educam-header__item.is-active > .educam-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0s;
}

.educam-menu__link,
.educam-mobile-menu__link {
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 9px;
  background: transparent;
  color: var(--educam-text);
  padding: 6px 8px;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  transition: background 0.2s var(--educam-header-ease), color 0.2s var(--educam-header-ease), transform 0.2s var(--educam-header-ease);
}

.educam-menu__link:hover,
.educam-menu-card:hover,
.educam-menu__side a:hover,
.educam-menu__bottom:hover,
.educam-mobile-card:hover,
.educam-mobile-side a:hover,
.educam-mobile-bottom:hover {
  background: #f7f7f9;
  color: var(--educam-blue);
}

.educam-menu__link:hover,
.educam-menu-card:hover,
.educam-mobile-menu__link:hover,
.educam-mobile-card:hover {
  transform: translateX(2px);
}

.educam-menu__link--strong,
.educam-mobile-menu__link--strong {
  font-weight: 600;
}

.educam-menu__link svg,
.educam-mobile-menu__link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.educam-menu__divider,
.educam-mobile-menu__divider {
  display: block;
  height: 1px;
  margin: 9px 8px 10px;
  background: #dedee4;
}

.educam-menu--mega {
  width: 640px;
  max-width: calc(100vw - 40px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 228px;
  gap: 8px 22px;
  padding: 18px;
}

.educam-header__item:nth-child(2) > .educam-menu--mega,
.educam-header__item:nth-child(3) > .educam-menu--mega {
  left: 50%;
  transform: translateX(-50%) translateY(12px) scale(0.985);
}

.educam-header__item:nth-child(2):hover > .educam-menu--mega,
.educam-header__item:nth-child(2).is-active > .educam-menu--mega,
.educam-header__item:nth-child(3):hover > .educam-menu--mega,
.educam-header__item:nth-child(3).is-active > .educam-menu--mega {
  transform: translateX(-50%) translateY(0) scale(1);
}

.educam-menu__main {
  display: grid;
  gap: 7px;
}

.educam-menu-card,
.educam-mobile-card {
  min-height: 44px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  border-radius: 10px;
  color: var(--educam-text);
  padding: 7px;
  transition: background 0.2s var(--educam-header-ease), color 0.2s var(--educam-header-ease), transform 0.2s var(--educam-header-ease);
}

.educam-menu-card svg,
.educam-mobile-card svg {
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

.educam-menu-card span,
.educam-mobile-card span {
  display: grid;
  gap: 3px;
}

.educam-menu-card strong,
.educam-mobile-card strong {
  color: inherit;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.2;
}

.educam-menu-card em,
.educam-mobile-card em {
  color: var(--educam-muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
}

.educam-menu__side,
.educam-mobile-side {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 6px 0;
}

.educam-menu__side a,
.educam-mobile-side a {
  width: fit-content;
  max-width: 100%;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--educam-pill);
  color: var(--educam-text);
  padding: 7px 10px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 0.2s var(--educam-header-ease), color 0.2s var(--educam-header-ease), transform 0.2s var(--educam-header-ease);
}

.educam-menu__side a:hover,
.educam-mobile-side a:hover {
  transform: translateX(2px);
}

.educam-menu__bottom,
.educam-mobile-bottom {
  grid-column: 1 / -1;
  margin-top: 4px;
  border-top: 1px solid #dedee4;
  color: var(--educam-muted);
  padding: 13px 8px 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  transition: color 0.2s var(--educam-header-ease);
}

.educam-menu--community {
  width: 368px;
  left: -56px;
  display: grid;
  gap: 7px;
}

.educam-community-follow,
.educam-mobile-follow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 7px;
  border-top: 1px solid #dedee4;
  padding: 14px 6px 2px;
}

.educam-community-follow span,
.educam-mobile-follow span {
  color: var(--educam-muted);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.educam-community-socials,
.educam-mobile-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.educam-community-socials a,
.educam-mobile-socials a {
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--educam-text);
  transition: color 0.2s var(--educam-header-ease), transform 0.2s var(--educam-header-ease);
}

.educam-community-socials a:hover,
.educam-mobile-socials a:hover {
  color: var(--educam-blue);
  transform: translateY(-1px);
}

.educam-community-socials svg,
.educam-mobile-socials svg {
  width: 19px;
  height: 19px;
}

.educam-community-socials a:nth-child(3) svg path,
.educam-mobile-socials a:nth-child(3) svg path {
  fill: currentColor;
  stroke: none;
}

.educam-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.educam-header__signup,
.educam-mobile__signup {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--educam-pill);
  color: var(--educam-text);
  padding: 0 12px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s var(--educam-header-ease), color 0.2s var(--educam-header-ease);
}

.educam-header__signup:hover,
.educam-mobile__signup:hover {
  background: #f6f6f8;
}

.educam-header__login-icon,
.educam-mobile__login-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: var(--educam-pill);
  background: transparent;
  color: var(--educam-text);
  transition: color 0.2s var(--educam-header-ease), transform 0.2s var(--educam-header-ease), background 0.2s var(--educam-header-ease);
}

.educam-header__login-icon:hover,
.educam-mobile__login-icon:hover {
  color: var(--educam-blue);
  transform: translateY(-1px);
}

.educam-header__login-icon svg,
.educam-mobile__login-icon svg {
  width: 20px;
  height: 20px;
}

.educam-header .educam-icon-account,
.educam-header.is-user-logged-in .educam-icon-login {
  display: none;
}

.educam-header.is-user-logged-in .educam-icon-account {
  display: block;
}

.educam-header.is-user-logged-in .educam-header__signup,
.educam-header.is-user-logged-in .educam-mobile__signup {
  display: none;
}

.educam-header__burger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 0;
  border-radius: var(--educam-pill);
  background: transparent;
  color: var(--educam-text);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s var(--educam-header-ease);
}

.educam-header__burger:hover {
  background: #f6f6f8;
}

.educam-header__burger span {
  width: 24px;
  height: 2.6px;
  border-radius: var(--educam-pill);
  background: currentColor;
  transition: transform 0.24s var(--educam-header-ease), opacity 0.2s var(--educam-header-ease);
}

.educam-header.is-mobile-open .educam-header__burger span:nth-child(1) {
  transform: translateY(8.6px) rotate(45deg);
}

.educam-header.is-mobile-open .educam-header__burger span:nth-child(2) {
  opacity: 0;
}

.educam-header.is-mobile-open .educam-header__burger span:nth-child(3) {
  transform: translateY(-8.6px) rotate(-45deg);
}

.educam-mobile {
  display: none;
}

@media (max-width: 1180px) {
  .educam-header__inner {
    min-height: 64px;
    padding: 0 20px;
    gap: 22px;
  }

  .educam-header__logo {
    width: 116px;
    min-width: 116px;
  }

  .educam-header__list {
    gap: 18px;
  }

  .educam-header__link,
  .educam-header__signup {
    font-size: 14.5px;
  }

  .educam-header__login-icon {
    width: 34px;
    height: 34px;
  }

  .educam-header__login-icon svg {
    width: 19px;
    height: 19px;
  }
}

@media (max-width: 960px) {
  .educam-header__inner {
    min-height: 60px;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 0 14px;
  }

  .educam-header__burger {
    display: inline-flex;
    justify-self: start;
    width: 36px;
    height: 36px;
  }

  .educam-header__burger span {
    width: 21px;
    height: 2.4px;
  }

  .educam-header__logo {
    width: 116px;
    min-width: 0;
    height: 31px;
    justify-self: start;
  }

  .educam-header__nav,
  .educam-header__signup {
    display: none;
  }

  .educam-header__actions {
    justify-self: end;
    gap: 0;
  }

  .educam-header__login-icon,
  .educam-mobile__login-icon {
    width: 34px;
    height: 34px;
  }

  .educam-header__login-icon svg,
  .educam-mobile__login-icon svg {
    width: 18px;
    height: 18px;
  }

  .educam-mobile {
    display: none;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    border-bottom: 1px solid var(--educam-line);
    background: #fff;
  }

  .educam-header.is-mobile-open .educam-mobile {
    display: block;
  }

  .educam-mobile__panel {
    display: grid;
    gap: 8px;
    padding: 16px 34px 24px;
  }

  .educam-mobile__item {
    border-bottom: 1px solid #f0f0f3;
  }

  .educam-mobile__trigger {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 0;
    background: transparent;
    color: var(--educam-text);
    padding: 0;
    cursor: pointer;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0;
  }

  .educam-mobile__trigger span {
    font-size: 16px;
    line-height: 1;
  }

  .educam-mobile__submenu {
    display: none;
    overflow: visible;
    height: auto;
    opacity: 1;
    padding: 0;
  }

  .educam-mobile__item.is-open .educam-mobile__submenu {
    display: block;
  }

  .educam-mobile__submenu > .educam-mobile-menu {
    display: grid;
    gap: 10px;
    min-height: 0;
    overflow: visible;
    padding: 8px 0 20px;
  }

  .educam-mobile-menu__link {
    min-height: 32px;
    border-radius: 0;
    background: transparent;
    padding: 5px 0;
    font-size: 15.5px;
  }

  .educam-mobile-menu__link:hover {
    background: transparent;
    color: var(--educam-blue);
  }

  .educam-mobile-menu__link svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }

  .educam-mobile-card {
    min-height: 66px;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    border-radius: 14px;
    margin: 0 -12px;
    padding: 9px 12px;
  }

  .educam-mobile-card svg {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 9px;
    background: #f7f7f9;
    padding: 5px;
    margin-top: 0;
  }

  .educam-mobile-card:hover svg {
    background: #eef5ff;
    color: var(--educam-blue);
  }

  .educam-mobile-card strong {
    font-size: 17px;
    line-height: 1.2;
  }

  .educam-mobile-card em {
    font-size: 14.5px;
    line-height: 1.42;
  }

  .educam-mobile-side {
    gap: 10px;
    padding: 6px 0 2px;
  }

  .educam-mobile-side a {
    min-height: 26px;
    border-radius: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.25;
  }

  .educam-mobile-bottom {
    margin-top: 10px;
    padding: 18px 0 0;
    font-size: 14.5px;
  }

  .educam-mobile-follow {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 8px;
    padding: 18px 0 0;
  }

  .educam-mobile-follow span {
    font-size: 14.5px;
  }

  .educam-mobile-socials {
    gap: 16px;
  }

  .educam-mobile-socials a,
  .educam-mobile-socials svg {
    width: 20px;
    height: 20px;
  }

  .educam-mobile__auth {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
  }
}

@media (max-width: 640px) {
  .educam-mobile__panel {
    padding: 15px 24px 22px;
  }

  .educam-mobile__trigger {
    font-size: 18px;
  }

  .educam-mobile-card {
    grid-template-columns: 32px minmax(0, 1fr);
    border-radius: 13px;
    margin: 0 -10px;
    padding: 8px 10px;
  }

  .educam-mobile-card svg {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .educam-mobile-card strong {
    font-size: 16.5px;
  }

  .educam-mobile-card em,
  .educam-mobile-bottom,
  .educam-mobile-follow span {
    font-size: 14px;
  }

  .educam-mobile-side a {
    font-size: 15.5px;
  }
}

@media (max-width: 560px) {
  .educam-header__inner {
    min-height: 58px;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 0 12px;
  }

  .educam-header__burger {
    width: 34px;
    height: 34px;
  }

  .educam-header__burger span {
    width: 20px;
    height: 2.3px;
  }

  .educam-header__logo {
    width: 110px;
    height: 30px;
  }

  .educam-header__login-icon {
    width: 32px;
    height: 32px;
  }

  .educam-header__login-icon svg {
    width: 17px;
    height: 17px;
  }

  .educam-mobile__panel {
    padding: 14px 18px 22px;
  }

  .educam-mobile__trigger {
    min-height: 46px;
    font-size: 17.5px;
  }

  .educam-mobile-menu__link svg {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .educam-mobile-card {
    min-height: 60px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 14px;
  }

  .educam-mobile-card svg {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .educam-mobile-card strong {
    font-size: 16px;
  }

  .educam-mobile-card em,
  .educam-mobile-bottom {
    font-size: 13.5px;
  }

  .educam-mobile-side a {
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  .educam-header__inner {
    padding: 0 10px;
  }

  .educam-header__logo {
    width: 102px;
  }

  .educam-mobile__panel {
    padding: 13px 16px 22px;
  }

  .educam-mobile__trigger {
    font-size: 17px;
  }

  .educam-mobile-menu__link svg {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
  }

  .educam-mobile-card {
    border-radius: 12px;
    margin: 0 -9px;
    padding: 7px 9px;
  }

  .educam-mobile-card svg {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    padding: 4px;
  }

  .educam-mobile-card strong {
    font-size: 15.5px;
  }

  .educam-mobile-card em {
    font-size: 13px;
  }

  .educam-mobile-side a {
    font-size: 14.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .educam-site *,
  .educam-site *::before,
  .educam-site *::after,
  .educam-section *,
  .educam-section *::before,
  .educam-section *::after,
  .educam-header *,
  .educam-header *::before,
  .educam-header *::after,
  .educam-landing *,
  .educam-landing *::before,
  .educam-landing *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }

  .educam-slider__slide,
  .ec-visual-slider__slide,
  .educam-course-card.is-entering {
    transform: none;
  }
}

.toc_educam_all_post,
.toc_educam_all_post * {
  box-sizing: border-box !important;
}

.toc_educam_all_post {
  --toc-blue: #0171dc;
  --toc-navy: #202744;
  --toc-text: #1c1d1f;
  --toc-muted: #64748b;
  --toc-line: #e9eef5;
  --toc-soft: #f7faff;
  --toc-hover: #eef6ff;
  --toc-radius: 16px;

  margin: 0 0 28px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-family: Inter, Roboto, Arial, sans-serif !important;
}

.toc_educam_all_post .tocer-toc {
  overflow: hidden !important;
  border: 0 !important;
  border-radius: var(--toc-radius) !important;
  background: var(--toc-soft) !important;
  box-shadow: none !important;
}

.toc_educam_all_post .tocer-header {
  min-height: 48px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 13px 16px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(233, 238, 245, 0.8) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.toc_educam_all_post .tocer-title-icon {
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 20px !important;
  margin: 0 !important;
  color: var(--toc-blue) !important;
  fill: currentColor !important;
}

.toc_educam_all_post .tocer-title-icon path {
  fill: currentColor !important;
}

.toc_educam_all_post .tocer-title {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--toc-navy) !important;
  font-size: 16px !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
  letter-spacing: -0.2px !important;
}

.toc_educam_all_post .tocer-toolbar {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  margin-left: auto !important;
}

.toc_educam_all_post button {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  min-height: 30px !important;
  display: inline-grid !important;
  place-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: transparent !important;
  color: var(--toc-muted) !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

.toc_educam_all_post button:hover {
  background: var(--toc-hover) !important;
  color: var(--toc-blue) !important;
}

.toc_educam_all_post button svg {
  width: 21px !important;
  height: 21px !important;
  fill: currentColor !important;
}

.toc_educam_all_post button svg path {
  fill: currentColor !important;
}

.toc_educam_all_post .tocer-list {
  max-height: 380px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  margin: 0 !important;
  padding: 8px 8px 10px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  list-style: none !important;
  scrollbar-width: thin;
  scrollbar-color: #c7d7ea transparent;
}

.toc_educam_all_post .tocer-list::-webkit-scrollbar {
  width: 5px;
}

.toc_educam_all_post .tocer-list::-webkit-scrollbar-track {
  background: transparent;
}

.toc_educam_all_post .tocer-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #c7d7ea;
}

.toc_educam_all_post .tocer-list li,
.toc_educam_all_post .tocer-list li > div {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  list-style: none !important;
}

.toc_educam_all_post .tocer-list li + li {
  margin-top: 2px !important;
}

.toc_educam_all_post .tocer-list a {
  position: relative !important;
  display: block !important;
  margin: 0 !important;
  padding: 8px 10px 8px 26px !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: transparent !important;
  color: var(--toc-text) !important;
  box-shadow: none !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
}

.toc_educam_all_post .tocer-list a::before {
  content: "" !important;
  position: absolute !important;
  left: 12px !important;
  top: 17px !important;
  width: 4px !important;
  height: 4px !important;
  border-radius: 999px !important;
  background: #b8c7da !important;
}

.toc_educam_all_post .tocer-list a:hover {
  background: transparent !important;
  color: var(--toc-blue) !important;
  font-weight: 500 !important;
}

.toc_educam_all_post .tocer-list a:hover::before {
  background: var(--toc-blue) !important;
}

.toc_educam_all_post .tocer-list a.tocer-active,
.toc_educam_all_post .tocer-list .active > div > a,
.toc_educam_all_post .tocer-list .current > div > a {
  background: transparent !important;
  color: var(--toc-blue) !important;
  font-weight: 600 !important;
}

.toc_educam_all_post .tocer-list a.tocer-active::before,
.toc_educam_all_post .tocer-list .active > div > a::before,
.toc_educam_all_post .tocer-list .current > div > a::before {
  left: 10px !important;
  top: 10px !important;
  width: 3px !important;
  height: calc(100% - 20px) !important;
  min-height: 14px !important;
  background: var(--toc-blue) !important;
}

.toc_educam_all_post [class*="tocer-ct"] a::after,
.toc_educam_all_post [class*="tocer-ct"] a.tocer-active::after,
.tocer [class*="tocer-ct"] a::after,
.tocer [class*="tocer-ct"] a.tocer-active::after {
  display: none !important;
  opacity: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.toc_educam_all_post .tocer-hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .toc_educam_all_post {
    margin-bottom: 24px !important;
  }

  .toc_educam_all_post .tocer-toc {
    border-radius: 14px !important;
  }

  .toc_educam_all_post .tocer-header {
    min-height: 46px !important;
    padding: 12px 14px !important;
  }

  .toc_educam_all_post .tocer-title-icon {
    width: 19px !important;
    height: 19px !important;
    flex-basis: 19px !important;
  }

  .toc_educam_all_post .tocer-title {
    font-size: 15px !important;
  }

  .toc_educam_all_post .tocer-list {
    max-height: 340px !important;
    padding: 7px 7px 9px !important;
  }

  .toc_educam_all_post .tocer-list a {
    padding: 7px 9px 7px 24px !important;
    font-size: 13.5px !important;
    line-height: 1.45 !important;
  }

  .toc_educam_all_post .tocer-list a::before {
    left: 11px !important;
    top: 15px !important;
  }
}

@media (max-width: 420px) {
  .toc_educam_all_post .tocer-header {
    padding: 11px 12px !important;
  }

  .toc_educam_all_post .tocer-title {
    font-size: 14.5px !important;
  }

  .toc_educam_all_post button {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
  }

  .toc_educam_all_post .tocer-list a {
    font-size: 13px !important;
  }
}


.jeg_breadcrumb_container {
  width: 100% !important;
 
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.jeg_breadcrumb_container #breadcrumbs {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #64748b !important;
  font-size: 13.5px !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
}

.jeg_breadcrumb_container #breadcrumbs span {
  display: inline-flex !important;
  align-items: center !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.jeg_breadcrumb_container #breadcrumbs a {
  display: inline-flex !important;
  align-items: center !important;
  max-width: 240px !important;
  color: #64748b !important;
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  transition: color 0.18s ease !important;
}

.jeg_breadcrumb_container #breadcrumbs a:hover {
  color: #0171dc !important;
}

.jeg_breadcrumb_container #breadcrumbs i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 14px !important;
  height: 14px !important;
  margin: 0 1px !important;
  padding: 0 !important;
  color: #94a3b8 !important;
  font-size: 11px !important;
  line-height: 1 !important;
}

.jeg_breadcrumb_container #breadcrumbs .breadcrumb_last_link a {
  color: #1c1d1f !important;
  font-weight: 600 !important;
  pointer-events: none !important;
}

@media (max-width: 768px) {
  .jeg_breadcrumb_container {
    margin-bottom: 18px !important;
  }

  .jeg_breadcrumb_container #breadcrumbs {
    flex-wrap: nowrap !important;
    gap: 6px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-bottom: 2px !important;
    font-size: 13px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .jeg_breadcrumb_container #breadcrumbs::-webkit-scrollbar {
    display: none !important;
  }

  .jeg_breadcrumb_container #breadcrumbs a {
    max-width: 180px !important;
  }
}

@media (max-width: 420px) {
  .jeg_breadcrumb_container {
    margin-bottom: 16px !important;
  }

  .jeg_breadcrumb_container #breadcrumbs {
    font-size: 12.5px !important;
  }

  .jeg_breadcrumb_container #breadcrumbs a {
    max-width: 145px !important;
  }

  .jeg_breadcrumb_container #breadcrumbs i {
    width: 12px !important;
    height: 12px !important;
    font-size: 10px !important;
  }
}

.jeg_block_navigation,
.jeg_block_navigation * {
  box-sizing: border-box !important;
}

.jeg_block_navigation {
  width: 100% !important;
  margin: 32px 0 0 !important;
  padding: 0 !important;
  position: relative !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.jeg_block_navigation .navigation_overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(247, 250, 255, 0.72) !important;
  backdrop-filter: blur(6px) !important;
}

.jeg_block_navigation.loading .navigation_overlay,
.jeg_block_navigation.is-loading .navigation_overlay {
  display: flex !important;
}

.jeg_block_navigation .jeg_block_nav {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.jeg_block_navigation .jeg_block_nav a {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #1c1d1f !important;
  background: #f7faff !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  text-decoration: none !important;
  line-height: 1 !important;
  cursor: pointer !important;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease !important;
}

.jeg_block_navigation .jeg_block_nav a i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: inherit !important;
  font-size: 17px !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.jeg_block_navigation .jeg_block_nav a:hover,
.jeg_block_navigation .jeg_block_nav a:focus-visible {
  color: #ffffff !important;
  background: #0171dc !important;
  transform: translateY(-1px) !important;
  outline: none !important;
}

.jeg_block_navigation .jeg_block_nav a:active {
  transform: translateY(0) !important;
}

.jeg_block_navigation .jeg_block_nav a.disabled,
.jeg_block_navigation .jeg_block_nav a.jeg_disabled,
.jeg_block_navigation .jeg_block_nav a[aria-disabled="true"] {
  opacity: 0.42 !important;
  pointer-events: none !important;
  cursor: default !important;
}

.jeg_block_navigation .module-preloader,
.jeg_block_navigation .jeg_preloader {
  width: 48px !important;
  height: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.jeg_block_navigation .module-preloader span,
.jeg_block_navigation .jeg_preloader span {
  width: 6px !important;
  height: 6px !important;
  display: block !important;
  border-radius: 50% !important;
  background: #0171dc !important;
  opacity: 0.35 !important;
  animation: educamNavLoader 0.9s infinite ease-in-out !important;
}

.jeg_block_navigation .module-preloader span:nth-child(2),
.jeg_block_navigation .jeg_preloader span:nth-child(2) {
  animation-delay: 0.12s !important;
}

.jeg_block_navigation .module-preloader span:nth-child(3),
.jeg_block_navigation .jeg_preloader span:nth-child(3) {
  animation-delay: 0.24s !important;
}

@keyframes educamNavLoader {
  0%,
  80%,
  100% {
    transform: scale(0.72);
    opacity: 0.35;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .jeg_block_navigation {
    margin-top: 28px !important;
  }

  .jeg_block_navigation .jeg_block_nav {
    gap: 10px !important;
  }

  .jeg_block_navigation .jeg_block_nav a {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
  }

  .jeg_block_navigation .jeg_block_nav a i {
    font-size: 16px !important;
  }
}

@media (max-width: 420px) {
  .jeg_block_navigation {
    margin-top: 24px !important;
  }

  .jeg_block_navigation .jeg_block_nav a {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
  }

  .jeg_block_navigation .jeg_block_nav a i {
    font-size: 15px !important;
  }
}