/* ==================================================
   EDMASTERS MAIN NEW
   All styles are scoped to .edm-main-new.
================================================== */

@font-face {
  font-family: 'EDM Montserrat';
  src: url('../fonts/Montserrat-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EDM Montserrat';
  src: url('../fonts/Montserrat-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EDM Montserrat';
  src: url('../fonts/Montserrat-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EDM Montserrat';
  src: url('../fonts/Montserrat-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EDM Montserrat';
  src: url('../fonts/Montserrat-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EDM Onest';
  src: url('../fonts/Onest-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EDM Onest';
  src: url('../fonts/Onest-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EDM Onest';
  src: url('../fonts/Onest-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EDM Onest';
  src: url('../fonts/Onest-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EDM Onest';
  src: url('../fonts/Onest-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.edm-main-new,
.edm-main-new * {
  box-sizing: border-box;
}

.edm-main-new {
  width: 100%;
  overflow-x: hidden;
}

.edm-main-new .edm-container {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
}

.edm-main-new .edm-section {
  position: relative;
  width: 100%;
}

.edm-main-new .desktop-only {
  display: block;
}

.edm-main-new .mobile-only {
  display: none;
}

.edm-main-new img,
.edm-main-new svg {
  max-width: 100%;
}

.edm-main-new h1,
.edm-main-new h2,
.edm-main-new h3,
.edm-main-new p {
  margin: 0;
}

@media (max-width: 767px) {
  .edm-main-new .edm-container {
    width: min(100% - 32px, 430px);
  }

  .edm-main-new .desktop-only {
    display: none;
  }

  .edm-main-new .mobile-only {
    display: block;
  }
}


/* ==================================================
   HERO SECTION
================================================== */

.edm-main-new.is-burger-open {
  overflow: hidden;
}

.edm-main-new .edm-site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  width: 100%;
  height: 90px;
}

.edm-main-new .edm-header-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  width: 166px;
  margin-right: 66px;
}

.edm-main-new .edm-header-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.edm-main-new .edm-header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 auto;
  gap: 28px;
  margin-right: 45px;
}

.edm-main-new .edm-header-nav a,
.edm-main-new .edm-burger-nav a {
  text-decoration: none;
}

.edm-main-new .edm-header-nav .edm-menu-text {
  position: relative;
  white-space: nowrap;
}

.edm-main-new .edm-header-nav .edm-menu-text::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background-color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.edm-main-new .edm-header-nav .edm-menu-text:hover::after {
  opacity: 1;
}

.edm-main-new .edm-site-header .edm-btn-header-profile {
  flex: 0 0 192px;
  width: 192px;
  margin-right: 56px;
}

.edm-main-new .edm-header-burger,
.edm-main-new .edm-burger-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  appearance: none;
}

.edm-main-new .edm-header-burger {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  margin-left: auto;
}

.edm-main-new .edm-header-burger img {
  display: block;
  width: 38px;
  height: auto;
}

.edm-main-new .edm-header-phone {
  display: none;
}

.edm-main-new .edm-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  background-color: rgba(0, 0, 0, 0.16);
}

.edm-main-new.is-burger-open .edm-menu-overlay {
  display: block;
}

.edm-main-new .edm-burger-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(100%, 390px);
  height: 100vh;
  padding: 90px 50px 48px;
  background-color: #FFFFFF;
  box-shadow: -18px 0 50px rgba(0, 0, 0, 0.14);
}

.edm-main-new .edm-burger-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
}

.edm-main-new .edm-burger-close img {
  display: block;
  width: 26px;
  height: 26px;
}

.edm-main-new .edm-burger-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.edm-main-new .edm-burger-nav .edm-burger-menu-text {
  display: inline-flex;
  color: #000000;
  text-decoration: none;
}

.edm-main-new .edm-burger-nav .mobile-only {
  display: none;
}

.edm-main-new .edm-burger-nav .edm-burger-menu-text:hover {
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 4px;
}

.edm-main-new .edm-burger-socials {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 42px;
}

.edm-main-new .edm-burger-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}

.edm-main-new .edm-burger-socials img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.edm-main-new .edm-burger-extra-link.mobile-only,
.edm-main-new .edm-burger-extra-link {
  display: inline-flex;
}

.edm-main-new .edm-burger-panel .edm-btn-burger-profile {
  align-self: center;
  margin-right: auto;
  margin-left: auto;
}

.edm-main-new .edm-hero-section {
  min-height: 848px;
  overflow: hidden;
  color: #FFFFFF;
}

.edm-main-new .edm-hero-section::after {
  content: "";
  position: absolute;
  top: 80px;
  right: 0;
  bottom: 0;
  width: min(60vw, 760px);
  pointer-events: none;
  background: linear-gradient(90deg, rgba(76, 14, 88, 0) 0%, rgba(76, 14, 88, 0.32) 55%, rgba(76, 14, 88, 0.72) 100%);
  z-index: 1;
}

.edm-main-new .edm-hero-bg-image {
  position: absolute;
  top: 138px;
  right: max(0px, calc((100vw - 1240px) / 2));
  z-index: 0;
  width: min(52vw, 689px);
  height: auto;
  pointer-events: none;
  user-select: none;
}

.edm-main-new .edm-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 92px;
  padding-bottom: 140px;
}

.edm-main-new .edm-hero-content .edm-hero-title,
.edm-main-new .edm-hero-content .edm-hero-subtitle {
  width: min(100%, 645px);
}

.edm-main-new .edm-hero-content .edm-hero-subtitle {
  margin-top: 40px;
}

.edm-main-new .edm-hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
  width: min(100%, 1048px);
  margin-top: 32px;
}

.edm-main-new .edm-hero-benefit {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 16px;
}

.edm-main-new .edm-hero-benefit .edm-icon-box-purple {
  flex: 0 0 auto;
}

.edm-main-new .edm-hero-consultation {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-top: 32px;
  padding: 30px;
  gap: 20px;
}

.edm-main-new .edm-hero-consultation .edm-btn {
  flex: 0 0 auto;
}

.edm-main-new .edm-hero-consultation-text {
  min-width: 0;
}

.edm-main-new .edm-hero-consultation .edm-badge-description {
  margin-top: 4px;
}

@media (max-width: 767px) {
  .edm-main-new .edm-hero-section {
    min-height: 0;
  }

  .edm-main-new .edm-hero-section::after {
    top: 80px;
    width: 100%;
    background: linear-gradient(180deg, rgba(76, 14, 88, 0) 0%, rgba(76, 14, 88, 0.78) 100%);
  }

  .edm-main-new .edm-hero-bg-image {
    top: 232px;
    right: 50%;
    width: 520px;
    max-width: none;
    transform: translateX(54%);
    opacity: 0.72;
  }

  .edm-main-new .edm-site-header {
    height: 90px;
  }

  .edm-main-new .edm-header-logo {
    width: 166px;
    margin-right: auto;
  }

  .edm-main-new .edm-header-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    margin-left: auto;
    margin-right: 30px;
  }

  .edm-main-new .edm-header-phone img {
    display: block;
    width: 27px;
    height: 27px;
  }

  .edm-main-new .edm-header-burger {
    width: 38px;
    height: 38px;
    margin-left: 0;
  }

  .edm-main-new .edm-burger-panel {
    width: 100%;
    padding: 60px 32px 40px;
  }

  .edm-main-new .edm-burger-nav {
    align-items: center;
    gap: 32px;
    margin-top: 0;
  }

  .edm-main-new .edm-burger-nav .edm-burger-menu-text {
    text-align: center;
  }

  .edm-main-new .edm-burger-nav .mobile-only {
    display: inline-flex;
  }

  .edm-main-new .edm-burger-socials {
    display: none;
  }

  .edm-main-new .edm-burger-panel .edm-btn-burger-profile {
    margin-top: 42px;
  }

  .edm-main-new .edm-hero-content {
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .edm-main-new .edm-hero-content .edm-hero-title,
  .edm-main-new .edm-hero-content .edm-hero-subtitle {
    width: 100%;
  }

  .edm-main-new .edm-hero-content .edm-hero-subtitle {
    margin-top: 120px;
  }

  .edm-main-new .edm-hero-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    margin-top: 28px;
  }

  .edm-main-new .edm-hero-benefit {
    gap: 14px;
  }

  .edm-main-new .edm-hero-consultation {
    flex-direction: column;
    align-items: center;
    margin-top: 28px;
    text-align: center;
  }

  .edm-main-new .edm-hero-consultation .edm-btn {
    order: 2;
  }

  .edm-main-new .edm-hero-consultation-text {
    order: 1;
  }
}


/* ==================================================
   STATS SECTION
================================================== */

.edm-main-new .edm-stats-section {
  padding-top: 60px;
  padding-bottom: 120px;
}

.edm-main-new .edm-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px;
  margin-top: 40px;
}

.edm-main-new .edm-stats-card {
  min-width: 0;
}

.edm-main-new .edm-stats-section .edm-achievement-card {
  display: flex;
  flex-direction: column;
  min-height: 218px;
}

.edm-main-new .edm-stats-section .edm-achievement-card-inner {
  flex: 1 1 auto;
  min-height: 0;
  padding: 20px 10px;
  border: 1px dashed #DCDCDC;
  border-radius: 15px;
  background: none;
}

.edm-main-new .edm-stats-card .edm-achievement-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.edm-main-new .edm-stats-card .edm-stat-description,
.edm-main-new .edm-stats-card .edm-stat-label,
.edm-main-new .edm-stats-card .edm-stat-number {
  text-align: center;
}

.edm-main-new .edm-stats-section .edm-stat-number {
  margin-top: 0;
  margin-bottom: 2px;
  line-height: 1;
}

.edm-main-new .edm-stats-card .edm-stats-image {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.edm-main-new .edm-stats-card-1 .edm-achievement-card-inner {
  justify-content: center;
}

.edm-main-new .edm-stats-card-1 .edm-stats-image {
  margin-bottom: 15px;
}

.edm-main-new .edm-stats-card-2 .edm-stat-description {
  margin-top: 0;
}

.edm-main-new .edm-stats-card-2 .edm-stats-image {
  margin-top: 15px;
}

.edm-main-new .edm-stats-card-3 .edm-stats-image {
  margin-top: -10px;
  margin-bottom: 15px;
}

.edm-main-new .edm-stats-card-4 .edm-stats-image {
  margin-top: 6px;
  margin-bottom: 15px;
}

.edm-main-new .edm-stats-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  margin-top: 32px;
}

.edm-main-new .edm-stats-bottom-card .edm-achievement-card-inner {
  display: grid;
  grid-template-columns: max-content minmax(0, max-content);
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}

.edm-main-new .edm-stats-recommend-card .edm-stats-bottom-media {
  padding-left: 36px;
}

.edm-main-new .edm-stats-bottom-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.edm-main-new .edm-stats-nacac-card .edm-stats-bottom-media {
  align-items: center;
}

.edm-main-new .edm-stats-bottom-media img {
  display: block;
  width: auto;
  max-width: 100%;
}

.edm-main-new .edm-stats-bottom-content {
  min-width: 0;
}

.edm-main-new .edm-stats-nacac-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.edm-main-new .edm-stats-nacac-heading .edm-stat-number {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.edm-main-new .edm-stats-inline-note {
  font-family: var(--edm-font-primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: #350041;
  text-align: left;
}

.edm-main-new .edm-stats-nacac-card .edm-stat-description {
  margin-top: 6px;
}

.edm-main-new .edm-stats-recommend-card .edm-stat-description {
  text-align: left;
}

@media (max-width: 767px) {
  .edm-main-new .edm-stats-section {
    padding-top: 40px;
    padding-bottom: 72px;
  }

  .edm-main-new .edm-stats-grid,
  .edm-main-new .edm-stats-bottom-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .edm-main-new .edm-stats-grid {
    margin-top: 25px;
  }

  .edm-main-new .edm-stats-bottom-grid {
    margin-top: 8px;
  }

  .edm-main-new .edm-stats-section .edm-achievement-card {
    min-height: 218px;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .edm-main-new .edm-stats-section .edm-achievement-card-inner {
    padding-right: 15px;
    padding-left: 15px;
  }

  .edm-main-new .edm-stats-bottom-card .edm-achievement-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .edm-main-new .edm-stats-recommend-card .edm-stats-bottom-media {
    padding-left: 0;
  }

  .edm-main-new .edm-stats-nacac-card .edm-achievement-card-inner {
    justify-content: flex-start;
  }

  .edm-main-new .edm-stats-nacac-card .edm-stats-bottom-content {
    order: 1;
    width: 100%;
  }

  .edm-main-new .edm-stats-nacac-heading {
    justify-content: center;
  }

  .edm-main-new .edm-stats-inline-note {
    font-size: 14px;
    line-height: 18px;
  }

  .edm-main-new .edm-stats-nacac-card .edm-stat-description {
    text-align: center;
  }

  .edm-main-new .edm-stats-nacac-card .edm-stats-bottom-media {
    order: 2;
    align-items: flex-end;
    margin-top: 10px;
  }

  .edm-main-new .edm-stats-recommend-card .edm-achievement-card-inner {
    justify-content: center;
  }

  .edm-main-new .edm-stats-recommend-card .edm-stats-bottom-media {
    margin-bottom: 15px;
  }

  .edm-main-new .edm-stats-recommend-card .edm-stat-description {
    text-align: center;
  }
}


/* ==================================================
   CHOICE SECTION
================================================== */

.edm-main-new .edm-choice-section {
  position: relative;
  isolation: isolate;
  height: 1080px;
  overflow: hidden;
  padding-top: 60px;
  background-color: #4C0E58;
  color: #FFFFFF;
}

.edm-main-new .edm-choice-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 2118px;
  height: 1047px;
  pointer-events: none;
  background: url('../img/bg_3scr.png') top center / auto no-repeat;
  transform: translateX(-50%);
}

.edm-main-new .edm-choice-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 200px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(76, 14, 88, 0.5) 0%, rgba(76, 14, 88, 0.18) 100%);
}

.edm-main-new .edm-choice-bottom-gradient {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 90px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(76, 14, 88, 0) 0%, #4C0E58 100%);
}

.edm-main-new .edm-choice-section .edm-container {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1200px);
}

.edm-main-new .edm-choice-cards {
  display: flex;
  flex-direction: column;
  max-height: 806px;
  margin-top: 40px;
  overflow-y: auto;
  padding-top: 26px;
  padding-right: 100px;
  padding-bottom: 96px;
  padding-left: 100px;
  scroll-behavior: auto;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 11%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 11%, #000 82%, transparent 100%);
}

.edm-main-new .edm-choice-cards::-webkit-scrollbar {
  display: none;
}

.edm-main-new .edm-choice-card {
  height: auto;
  min-height: 0;
  width: min(100%, 370px);
  margin-top: 0;
  padding-top: 26px;
  padding-right: 30px;
  padding-bottom: 26px;
  overflow: visible;
}

.edm-main-new .edm-choice-card + .edm-choice-card {
  margin-top: 16px;
}

.edm-main-new .edm-choice-card-left {
  align-self: flex-start;
}

.edm-main-new .edm-choice-card-right {
  align-self: flex-end;
}

.edm-main-new .edm-choice-card .edm-card-text-light {
  position: relative;
  z-index: 1;
}

.edm-main-new .edm-choice-section .edm-choice-card {
  height: auto;
  min-height: max-content;
  overflow: visible;
}

.edm-main-new .edm-choice-section .edm-choice-card::before {
  top: 15%;
  bottom: auto;
  height: 70%;
}

@media (max-width: 767px) {
  .edm-main-new .edm-choice-section {
    height: 820px;
    min-height: 820px;
    overflow: hidden;
    padding-top: 24px;
    padding-bottom: 56px;
  }

  .edm-main-new .edm-choice-section::before {
    width: 2118px;
    height: 1047px;
    transform: translateX(-50%) scale(0.72);
    transform-origin: top center;
  }

  .edm-main-new .edm-choice-section::after {
    height: 160px;
  }

  .edm-main-new .edm-choice-bottom-gradient {
    display: none;
  }

  .edm-main-new .edm-choice-section .edm-container {
    width: min(100% - 32px, 430px);
  }

  .edm-main-new .edm-choice-cards {
    max-height: 610px;
    margin-top: 28px;
    overflow-y: auto;
    padding-top: 22px;
    padding-right: 0;
    padding-bottom: 18px;
    padding-left: 0;
    gap: 10px;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 84%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 84%, transparent 100%);
  }

  .edm-main-new .edm-choice-card {
    width: 100%;
    align-self: stretch;
    margin-top: 0;
    padding-top: 22px;
    padding-right: 22px;
    padding-bottom: 22px;
  }

  .edm-main-new .edm-choice-card + .edm-choice-card {
    margin-top: 0;
  }
}


/* ==================================================
   SUPPORT SECTION
================================================== */

.edm-main-new .edm-support-section {
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 96px;
  color: #FFFFFF;
}

.edm-main-new .edm-support-section .edm-container {
  position: relative;
  z-index: 1;
}

.edm-main-new .edm-support-circle {
  position: relative;
  width: min(100%, 723px);
  margin: 40px auto 0;
}

.edm-main-new .edm-support-circle img {
  display: block;
  width: 100%;
  height: auto;
}

.edm-main-new .edm-support-circle .edm-circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, 328px);
  transform: translate(-50%, -50%);
}

.edm-main-new .edm-support-ksenia {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: min(100%, 635px);
  margin: 20px auto 0;
}

.edm-main-new .edm-support-ksenia img {
  flex: 0 0 auto;
  width: 86px;
  height: 86px;
}

.edm-main-new .edm-support-ksenia .edm-ksenia-caption {
  max-width: 529px;
}

.edm-main-new .edm-btn.edm-support-button {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin: 25px auto 0;
}

@media (max-width: 767px) {
  .edm-main-new .edm-support-section {
    padding-top: 0;
    padding-bottom: 70px;
  }

  .edm-main-new .edm-support-mobile-flow {
    display: grid;
    gap: 22px;
    margin-top: 30px;
  }

  .edm-main-new .edm-support-mobile-row {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    align-items: stretch;
  }

  .edm-main-new .edm-support-mobile-line {
    display: flex;
    justify-content: center;
  }

  .edm-main-new .edm-support-mobile-line img {
    display: block;
    width: 108px;
    height: auto;
  }

  .edm-main-new .edm-support-mobile-content {
    display: grid;
    grid-template-rows: 80% 20%;
    padding-left: 15px;
  }

  .edm-main-new .edm-support-mobile-content .edm-circle-text {
    display: flex;
    align-items: center;
    text-align: left;
  }

  .edm-main-new .edm-support-mobile-percent {
    align-self: end;
  }

  .edm-main-new .edm-support-mobile-percent .edm-percent-title {
    font-size: 38px;
  }

  .edm-main-new .edm-support-mobile-content .edm-percent-title,
  .edm-main-new .edm-support-mobile-content .edm-percent-subtitle {
    text-align: left;
  }

  .edm-main-new .edm-support-ksenia {
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
    text-align: center;
  }

  .edm-main-new .edm-support-ksenia .edm-ksenia-caption {
    max-width: 100%;
  }

  .edm-main-new .edm-support-button {
    margin-top: 20px;
  }
}

/* ==================================================
   STORIES SECTION
================================================== */

.edm-main-new .edm-stories-section {
  padding-top: 70px;
  padding-bottom: 48px;
  overflow: hidden;
}

.edm-main-new .edm-stories-section .edm-block-subtitle-dark {
  margin-top: 16px;
}

.edm-main-new .edm-reviews-slider {
  --edm-reviews-side-pad: 56px;
  --edm-reviews-shadow-pad: 26px;
  margin-top: 30px;
}

.edm-main-new .edm-reviews-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 44px, #000 calc(100% - 44px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 44px, #000 calc(100% - 44px), transparent 100%);
}

.edm-main-new .edm-reviews-track {
  display: flex;
  gap: 30px;
  box-sizing: border-box;
  padding: var(--edm-reviews-shadow-pad) var(--edm-reviews-side-pad);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-padding-left: var(--edm-reviews-side-pad);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.edm-main-new .edm-reviews-track::-webkit-scrollbar {
  display: none;
}

.edm-main-new .edm-stories-section .edm-review-card-box {
  flex: 0 0 calc((100% - 30px - (var(--edm-reviews-side-pad) * 2)) / 2);
  min-height: 218px;
  scroll-snap-align: start;
}

.edm-main-new .edm-stories-section .edm-review-card-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px 150px;
  align-items: center;
  min-height: calc(100% - 28px);
  margin: 14px;
  padding: 20px;
  border: 1px dashed #DCDCDC;
  border-radius: 15px;
}

.edm-main-new .edm-review-card-copy {
  padding-right: 24px;
}

.edm-main-new .edm-review-card-copy .edm-review-card-description {
  margin-top: 14px;
}

.edm-main-new .edm-review-card-divider {
  width: 1px;
  height: 70%;
  background-color: #EEEEEE;
}

.edm-main-new .edm-review-card-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 24px;
}

.edm-main-new .edm-review-photo {
  position: relative;
  width: 85px;
  height: 85px;
  overflow: visible;
}

.edm-main-new .edm-review-photo > img:first-child {
  display: block;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
}

.edm-main-new .edm-review-more-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 26px;
  height: 26px;
}

.edm-main-new .edm-review-card-person .edm-review-card-name {
  margin-top: 5px;
}

.edm-main-new .edm-review-bullets {
  display: grid;
  gap: 2px;
  width: max-content;
  margin: 5px auto 0;
  padding: 0;
  list-style: none;
}

.edm-main-new .edm-review-bullets li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.edm-main-new .edm-review-bullets li::before {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 9px;
  background-image: url("../img/yes_icon_green.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.edm-main-new .edm-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.edm-main-new .edm-slider-arrows {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.edm-main-new .edm-stories-section .edm-slider-arrow {
  position: relative;
  height: 37px;
}

.edm-main-new .edm-stories-section .edm-slider-arrow:hover {
  background: linear-gradient(44deg, #FFFFFF 0%, #E9E9E9 100%);
}

.edm-main-new .edm-stories-section .edm-slider-arrow::before {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 2px solid #541F60;
  border-right: 2px solid #541F60;
}

.edm-main-new .edm-slider-arrow-prev::before {
  transform: rotate(-135deg);
}

.edm-main-new .edm-slider-arrow-next::before {
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  .edm-main-new .edm-reviews-slider {
    --edm-reviews-side-pad: 18px;
    --edm-reviews-shadow-pad: 22px;
  }

  .edm-main-new .edm-stories-section {
    padding-top: 42px;
    padding-bottom: 36px;
  }

  .edm-main-new .edm-stories-section .edm-block-subtitle-dark {
    margin-top: 0;
  }

  .edm-main-new .edm-stories-section .edm-review-card-box {
    flex-basis: calc(100% - (var(--edm-reviews-side-pad) * 2));
  }

  .edm-main-new .edm-stories-section .edm-review-card-inner {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 20px 15px;
  }

  .edm-main-new .edm-review-card-copy {
    display: contents;
  }

  .edm-main-new .edm-review-card-person {
    display: contents;
    padding-left: 0;
  }

  .edm-main-new .edm-review-photo {
    justify-self: center;
    order: 1;
  }

  .edm-main-new .edm-review-card-person .edm-review-card-name {
    order: 2;
    margin-top: 5px;
  }

  .edm-main-new .edm-review-bullets {
    order: 3;
    justify-items: center;
  }

  .edm-main-new .edm-review-card-divider {
    order: 4;
    width: 70%;
    height: 1px;
    margin: 18px auto;
  }

  .edm-main-new .edm-review-card-copy .edm-review-card-title {
    order: 5;
  }

  .edm-main-new .edm-review-card-copy .edm-review-card-description {
    order: 6;
    margin-top: 12px;
  }
}

/* ==================================================
   PROFILE SECTION
================================================== */

.edm-main-new .edm-profile-section {
  --edm-bg-image: url("../img/bg_6scr.png");
  padding-top: 70px;
  padding-bottom: 110px;
}

.edm-main-new .edm-profile-section .edm-block-subtitle-dark {
  margin-top: 16px;
}

.edm-main-new .edm-profile-section .edm-profile-card-white {
  width: min(100%, 934px);
  min-height: 0;
  margin: 34px auto 0;
  padding: 44px 54px 46px;
}

.edm-main-new .edm-profile-card-content {
  display: grid;
  grid-template-columns: 25% minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.edm-main-new .edm-profile-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.edm-main-new .edm-profile-question-circle {
  width: 140px;
  height: 140px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(180deg, #EACCF1 0%, #CB52E4 100%);
}

.edm-main-new .edm-profile-question-circle img {
  display: block;
  width: 140px;
  height: auto;
}

.edm-main-new .edm-profile-lines {
  display: grid;
  gap: 15px;
  width: 100%;
  margin-top: 30px;
}

.edm-main-new .edm-profile-lines span {
  display: block;
  width: 100%;
  height: 6px;
  border-radius: 25px;
  background-color: #F0E8F2;
}

.edm-main-new .edm-profile-squares {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  width: 100%;
  margin-top: 20px;
}

.edm-main-new .edm-profile-square {
  aspect-ratio: 1;
  padding: 4px;
  border: 1px dashed #DCDCDC;
  border-radius: 10px;
  background-color: #FFFFFF;
}

.edm-main-new .edm-profile-square img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 7px;
}

.edm-main-new .edm-profile-copy {
  display: grid;
  gap: 14px;
}

.edm-main-new .edm-profile-section .edm-profile-description {
  line-height: 22px;
}

.edm-main-new .edm-profile-section .edm-profile-description strong {
  font-weight: 700;
}

.edm-main-new .edm-profile-section .edm-profile-card-white .edm-profile-button {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin: 34px auto 0;
}

@media (max-width: 767px) {
  .edm-main-new .edm-profile-section {
    padding-top: 42px;
    padding-bottom: 78px;
  }

  .edm-main-new .edm-profile-section .edm-block-subtitle-dark {
    margin-top: 4px;
  }

  .edm-main-new .edm-profile-section .edm-profile-card-white {
    margin-top: 28px;
    padding: 38px 28px 44px;
  }

  .edm-main-new .edm-profile-card-content {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .edm-main-new .edm-profile-question-circle {
    width: 196px;
    height: 196px;
  }

  .edm-main-new .edm-profile-question-circle img {
    width: 196px;
  }

  .edm-main-new .edm-profile-lines {
    display: none;
  }

  .edm-main-new .edm-profile-squares {
    max-width: 100%;
    margin-top: 18px;
  }

  .edm-main-new .edm-profile-square {
    padding: 10px;
    border-radius: 8px;
  }

  .edm-main-new .edm-profile-copy {
    gap: 12px;
  }

  .edm-main-new .edm-profile-section .edm-profile-description {
    line-height: 22px;
    text-align: left;
  }

  .edm-main-new .edm-profile-button {
    margin-top: 28px;
  }
}

/* ==================================================
   EVALUATION SECTION
================================================== */

.edm-main-new .edm-evaluation-section {
  padding-top: 70px;
  padding-bottom: 104px;
}

.edm-main-new .edm-evaluation-tool-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  height: 218px;
  margin-top: 50px;
  overflow: hidden;
  box-shadow: 0 4px 19.9px 10px rgba(0, 0, 0, 0.05);
}

.edm-main-new .edm-evaluation-tool-image {
  align-self: stretch;
  overflow: hidden;
}

.edm-main-new .edm-evaluation-tool-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.edm-main-new .edm-evaluation-tool-copy {
  padding-left: 20px;
  padding-right: 38px;
}

.edm-main-new .edm-evaluation-tool-copy .edm-evaluation-card-subtitle,
.edm-main-new .edm-evaluation-mobile-intro .edm-evaluation-card-subtitle {
  margin-top: 8px;
  color: #4F2658;
}

.edm-main-new .edm-evaluation-tool-copy .edm-evaluation-card-subtitle strong,
.edm-main-new .edm-evaluation-mobile-intro .edm-evaluation-card-subtitle strong {
  font-weight: 600;
}

.edm-main-new .edm-evaluation-mobile-intro {
  display: none;
}

.edm-main-new .edm-evaluation-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  margin-top: 60px;
}

.edm-main-new .edm-evaluation-checklist-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.edm-main-new .edm-evaluation-checklist-head .edm-icon-box-purple img {
  width: 32px;
  max-width: 32px;
  height: auto;
}

.edm-main-new .edm-evaluation-checklist .edm-list-purple {
  gap: 30px;
  margin-top: 40px;
}

.edm-main-new .edm-evaluation-result-column {
  display: grid;
  gap: 30px;
}

.edm-main-new .edm-evaluation-result-card {
  height: 100%;
  min-height: 0;
}

.edm-main-new .edm-evaluation-result-card .edm-achievement-card-inner {
  height: calc(100% - 28px);
  padding: 30px 40px;
}

.edm-main-new .edm-evaluation-result-card .edm-list-green {
  gap: 22px;
  margin-top: 26px;
}

.edm-main-new .edm-evaluation-note {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: center;
  margin-top: 32px;
}

.edm-main-new .edm-evaluation-note-visual {
  position: relative;
  min-height: 140px;
}

.edm-main-new .edm-evaluation-note-visual span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 30px;
  border-radius: 100px;
  background: linear-gradient(90deg, #9319B0 0%, #B950D0 100%);
}

.edm-main-new .edm-evaluation-note-visual img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 78px;
  height: auto;
  transform: translateY(-50%);
}

.edm-main-new .edm-evaluation-note .edm-profile-description {
  padding-left: 20px;
  line-height: 26px;
}

.edm-main-new .edm-evaluation-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  margin-top: 64px;
}

.edm-main-new .edm-evaluation-quote-card {
  width: 100%;
  border-radius: 15px;
}

.edm-main-new .edm-evaluation-quote-card .edm-dashed-text-card-media {
  width: 23px;
  height: auto;
}

.edm-main-new .edm-evaluation-quote-card .edm-dotted-text-purple {
  margin-top: 22px;
}

.edm-main-new .edm-evaluation-report-card {
  display: grid;
  grid-template-columns: 30% minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  gap: 20px;
}

.edm-main-new .edm-evaluation-report-card .edm-ksenia-oval-card {
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.edm-main-new .edm-evaluation-report-card .edm-ksenia-oval-card img {
  display: block;
  width: 98px;
  height: 98px;
  object-fit: cover;
  border-radius: 50%;
}

.edm-main-new .edm-evaluation-report-card .edm-ksenia-oval-card .edm-circle-name-title {
  margin-top: 8px;
  color: #601670;
}

.edm-main-new .edm-evaluation-report-card .edm-ksenia-oval-card > span {
  display: block;
  width: 50%;
  height: 2px;
  margin: 8px auto;
  background-color: #B5DE6D;
}

.edm-main-new .edm-evaluation-report-copy {
  padding-left: 0;
}

.edm-main-new .edm-evaluation-report-copy .edm-profile-description {
  line-height: 26px;
}

.edm-main-new .edm-evaluation-report-copy .edm-profile-button {
  margin: 26px 0 0;
}

@media (max-width: 767px) {
  .edm-main-new .edm-evaluation-section {
    padding-top: 42px;
    padding-bottom: 74px;
  }

  .edm-main-new .edm-evaluation-tool-card {
    display: none;
  }

  .edm-main-new .edm-evaluation-section .edm-section-title-dark {
    line-height: 36px;
  }

  .edm-main-new .edm-evaluation-mobile-intro {
    display: block;
    margin-top: 28px;
  }

  .edm-main-new .edm-evaluation-mobile-intro img {
    display: block;
    width: 100%;
    height: auto;
  }

  .edm-main-new .edm-evaluation-mobile-intro .edm-evaluation-card-title {
    margin-top: 24px;
  }

  .edm-main-new .edm-evaluation-details {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 34px;
  }

  .edm-main-new .edm-evaluation-checklist-head {
    justify-content: flex-start;
  }

  .edm-main-new .edm-evaluation-checklist-head .edm-evaluation-card-title {
    text-align: left;
  }

  .edm-main-new .edm-evaluation-checklist-head .edm-icon-box-purple img {
    width: 22px;
    max-width: 22px;
  }

  .edm-main-new .edm-evaluation-checklist .edm-list-purple {
    gap: 22px;
    margin-top: 28px;
  }

  .edm-main-new .edm-evaluation-result-card .edm-achievement-card-inner {
    height: auto;
    padding: 30px 24px 42px;
  }

  .edm-main-new .edm-evaluation-result-card .edm-list-green {
    gap: 20px;
  }

  .edm-main-new .edm-evaluation-note {
    grid-template-columns: 72px minmax(0, 1fr);
    margin-top: 28px;
  }

  .edm-main-new .edm-evaluation-note-visual {
    min-height: 118px;
  }

  .edm-main-new .edm-evaluation-note-visual img {
    width: 78px;
  }

  .edm-main-new .edm-evaluation-note .edm-profile-description {
    padding-left: 14px;
    line-height: 24px;
  }

  .edm-main-new .edm-evaluation-cta-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 38px;
  }

  .edm-main-new .edm-dashed-text-card.edm-evaluation-quote-card {
    min-height: 0;
    padding: 36px 36px;
  }

  .edm-main-new .edm-evaluation-report-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .edm-main-new .edm-evaluation-report-card .edm-ksenia-oval-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 10px;
    align-items: center;
    justify-self: center;
    width: 100%;
    min-height: 0;
    padding: 18px;
    border-radius: 25px;
  }

  .edm-main-new .edm-evaluation-report-card .edm-ksenia-oval-card img {
    grid-row: 1 / 4;
    justify-self: end;
    width: 98px;
    height: 98px;
  }

  .edm-main-new .edm-evaluation-report-card .edm-ksenia-oval-card .edm-circle-name-title {
    margin-top: 0;
    max-width: 120px;
    line-height: 17px;
    text-align: left;
  }

  .edm-main-new .edm-evaluation-report-card .edm-ksenia-oval-card > span {
    width: 75%;
    margin: 8px 0;
  }

  .edm-main-new .edm-evaluation-report-card .edm-ksenia-oval-card .edm-circle-name-subtitle {
    line-height: 17px;
    text-align: left;
  }

  .edm-main-new .edm-evaluation-report-copy {
    padding-left: 0;
    text-align: center;
  }

  .edm-main-new .edm-evaluation-report-copy .edm-profile-description {
    text-align: center;
  }

  .edm-main-new .edm-evaluation-report-copy .edm-profile-button {
    margin: 24px auto 0;
  }
}

.edm-main-new {
  --edm-font-heading: 'EDM Onest', sans-serif;
  --edm-font-primary: 'EDM Montserrat', sans-serif;
}

/* ==================================================
   TYPOGRAPHY
================================================== */

.edm-main-new .edm-menu-text {
  font-family: var(--edm-font-primary);
  font-size: 12px;
  font-weight: 400;
  color: #FFFFFF;
}

.edm-main-new .edm-burger-menu-text {
  font-family: var(--edm-font-primary);
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  text-align: center;
  text-decoration: underline;
}

.edm-main-new .edm-hero-title {
  font-family: var(--edm-font-heading);
  font-size: 62px;
  font-weight: 700;
  line-height: 62px;
  text-align: left;
  background: linear-gradient(-74deg, #FFFFFF 0%, #EACEF0 37%, #FFFFFF 54%, #F6CEFF 70%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* Hero */

.edm-main-new .edm-hero-subtitle {
  font-family: var(--edm-font-primary);
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  color: #FFFFFF;
  text-align: left;
}

.edm-main-new .edm-hero-bullet {
  font-family: var(--edm-font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #FFFFFF;
  text-align: left;
}

.edm-main-new .edm-badge-title-light {
  font-family: var(--edm-font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  background: linear-gradient(90deg, #FFFFFF 0%, #E574FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.edm-main-new .edm-badge-description {
  font-family: var(--edm-font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #FFFFFF;
}


/* Section Titles */

.edm-main-new .edm-section-title-dark {
  font-family: var(--edm-font-heading);
  font-size: 62px;
  font-weight: 700;
  line-height: 66px;
  text-align: center;
  background: linear-gradient(90deg, #541F60 0%, #9949AB 50%, #541F60 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.edm-main-new .edm-section-title-light {
  font-family: var(--edm-font-heading);
  font-size: 62px;
  font-weight: 700;
  line-height: 62px;
  text-align: center;
  background: linear-gradient(-74deg, #FFFFFF 0%, #EACEF0 37%, #FFFFFF 54%, #F6CEFF 70%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.edm-main-new .edm-section-title-white {
  font-family: var(--edm-font-heading);
  font-size: 62px;
  font-weight: 700;
  line-height: 62px;
  color: #FFFFFF;
  text-align: center;
}


/* Stats */

.edm-main-new .edm-stat-number {
  font-family: var(--edm-font-heading);
  font-size: 48px;
  font-weight: 700;
  color: #541F60;
  text-align: center;
}

.edm-main-new .edm-stat-label {
  font-family: var(--edm-font-primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: #541F60;
  text-align: left;
}

.edm-main-new .edm-stat-description {
  font-family: var(--edm-font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: #350041;
  text-align: left;
}


/* Cards / Common Text */

.edm-main-new .edm-card-text-light {
  font-family: var(--edm-font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #FADAFF;
}

.edm-main-new .edm-circle-text {
  font-family: var(--edm-font-primary);
  font-size: 26px;
  font-weight: 400;
  line-height: 34px;
  color: #FADAFF;
  text-align: center;
}

.edm-main-new .edm-percent-title {
  font-family: var(--edm-font-primary);
  font-size: 50px;
  font-weight: 400;
  color: #FADAFF;
  text-align: left;
}

.edm-main-new .edm-percent-subtitle {
  font-family: var(--edm-font-primary);
  font-size: 16px;
  font-weight: 400;
  color: #FADAFF;
  text-align: left;
}

.edm-main-new .edm-ksenia-caption {
  font-family: var(--edm-font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #FADAFF;
  text-align: left;
}


/* Student Stories */

.edm-main-new .edm-block-subtitle-dark {
  font-family: var(--edm-font-primary);
  font-size: 18px;
  font-weight: 500;
  color: #2D1233;
  text-align: center;
}

.edm-main-new .edm-review-card-title {
  font-family: var(--edm-font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #391143;
  text-align: left;
}

.edm-main-new .edm-review-card-description {
  font-family: var(--edm-font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #75477F;
  text-align: left;
}

.edm-main-new .edm-review-card-name {
  font-family: var(--edm-font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #2D1233;
  text-align: center;
}

.edm-main-new .edm-review-card-bullet {
  font-family: var(--edm-font-primary);
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  color: #B6A2BA;
}


/* Profile */

.edm-main-new .edm-profile-description {
  font-family: var(--edm-font-primary);
  font-size: 16px;
  font-weight: 400;
  color: #4F2658;
  text-align: left;
}


/* Profile Evaluation */

.edm-main-new .edm-evaluation-card-title {
  font-family: var(--edm-font-primary);
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  color: #541F60;
}

.edm-main-new .edm-evaluation-card-subtitle {
  font-family: var(--edm-font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.edm-main-new .edm-dotted-text-black {
  font-family: var(--edm-font-primary);
  font-size: 24px;
  font-weight: 400;
  color: #000000;
}

.edm-main-new .edm-dotted-text-purple {
  font-family: var(--edm-font-primary);
  font-size: 24px;
  font-weight: 600;
  color: #770093;
  text-align: left;
}

.edm-main-new .edm-circle-name-title {
  font-family: var(--edm-font-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 13px;
  text-align: center;
}

.edm-main-new .edm-circle-name-subtitle {
  font-family: var(--edm-font-primary);
  font-size: 10px;
  font-weight: 400;
  line-height: 11px;
  color: #797979;
  text-align: center;
}


/* Student Journey */

.edm-main-new .edm-journey-subtitle {
  font-family: var(--edm-font-primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: #D8BEDD;
  text-align: center;
}

.edm-main-new .edm-journey-title-small {
  font-family: var(--edm-font-heading);
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, #FFFFFF 0%, #EACEF0 37%, #FFFFFF 54%, #F6CEFF 70%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.edm-main-new .edm-journey-card-title {
  font-family: var(--edm-font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
  background: linear-gradient(90deg, #FFFFFF 0%, #E574FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.edm-main-new .edm-journey-card-text-purple {
  font-family: var(--edm-font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  color: #F2B7FF;
  text-align: left;
}

.edm-main-new .edm-journey-card-text-white {
  font-family: var(--edm-font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  color: #FFFFFF;
  text-align: left;
}


/* Student Results */

.edm-main-new .edm-results-text {
  font-family: var(--edm-font-primary);
  font-size: 18px;
  font-weight: 400;
  color: #4F2658;
  text-align: left;
}

.edm-main-new .edm-result-card-title {
  font-family: var(--edm-font-primary);
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
}

.edm-main-new .edm-result-card-description {
  font-family: var(--edm-font-primary);
  font-size: 10px;
  font-weight: 400;
  color: #D8BEDD;
  text-align: center;
}


/* Strategy */

.edm-main-new .edm-strategy-text {
  font-family: var(--edm-font-primary);
  font-size: 16px;
  font-weight: 400;
  color: #75477F;
  text-align: left;
}

.edm-main-new .edm-strategy-name {
  font-family: var(--edm-font-primary);
  font-size: 20px;
  font-weight: 700;
  color: #601670;
  text-align: left;
}

.edm-main-new .edm-strategy-badge-title {
  font-family: var(--edm-font-heading);
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  background: linear-gradient(90deg, #FFFFFF 0%, #E574FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.edm-main-new .edm-strategy-badge-description {
  font-family: var(--edm-font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #FFFFFF;
  text-align: left;
}


/* Mentors */

.edm-main-new .edm-mentor-name {
  font-family: var(--edm-font-heading);
  font-size: 24px;
  font-weight: 300;
  text-align: center;
}

.edm-main-new .edm-mentor-role {
  font-family: var(--edm-font-heading);
  font-size: 14px;
  font-weight: 300;
  color: #BCB6BE;
  text-align: center;
}

.edm-main-new .edm-mentors-center-text {
  font-family: var(--edm-font-primary);
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  text-align: left;
}


/* First Step */

.edm-main-new .edm-icon-title {
  font-family: var(--edm-font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #FADAFF;
  text-align: left;
}

.edm-main-new .edm-regular-text {
  font-family: var(--edm-font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
}


/* Blog */

.edm-main-new .edm-blog-title {
  font-family: var(--edm-font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #350041;
  text-align: center;
}

.edm-main-new .edm-blog-link {
  font-family: var(--edm-font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #350041;
  text-align: center;
  text-decoration: underline;
}


/* ==================================================
   MOBILE TYPOGRAPHY
   Base design: 390px screen / 358px container
================================================== */

@media (max-width: 767px) {
  .edm-main-new .edm-menu-text {
    display: none;
  }

  .edm-main-new .edm-burger-menu-text {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: underline;
  }

  .edm-main-new .edm-hero-title {
    font-size: 38px;
    line-height: normal;
    text-align: center;
  }

  .edm-main-new .edm-hero-subtitle {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
  }

  .edm-main-new .edm-hero-bullet {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
  }

  .edm-main-new .edm-badge-title-light {
    font-size: 24px;
    line-height: normal;
    text-align: center;
  }

  .edm-main-new .edm-badge-description {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
  }

  .edm-main-new .edm-section-title-dark {
    font-size: 32px;
    line-height: 62px;
    text-align: center;
  }

  .edm-main-new .edm-section-title-light {
    font-size: 32px;
    line-height: 42px;
    text-align: center;
  }

  .edm-main-new .edm-section-title-white {
    font-size: 32px;
    line-height: 42px;
    text-align: center;
  }

  .edm-main-new .edm-stat-number {
    font-size: 48px;
    text-align: center;
  }

  .edm-main-new .edm-stat-description {
    font-size: 16px;
    line-height: normal;
    text-align: center;
  }

  .edm-main-new .edm-card-text-light {
    font-size: 16px;
    line-height: 22px;
    text-align: left;
  }

  .edm-main-new .edm-circle-text {
    font-size: 18px;
    line-height: 34px;
    text-align: left;
  }

  .edm-main-new .edm-percent-title {
    font-size: 18px;
    text-align: left;
  }

  .edm-main-new .edm-percent-subtitle {
    font-size: 16px;
    text-align: left;
  }

  .edm-main-new .edm-ksenia-caption {
    font-size: 16px;
    line-height: normal;
    text-align: center;
  }

  .edm-main-new .edm-block-subtitle-dark {
    font-size: 16px;
    text-align: center;
  }

  .edm-main-new .edm-review-card-title {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
  }

  .edm-main-new .edm-review-card-description {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
  }

  .edm-main-new .edm-review-card-name {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
  }

  .edm-main-new .edm-review-card-bullet {
    font-size: 10px;
    line-height: 18px;
    text-align: center;
  }

  .edm-main-new .edm-profile-description {
    font-size: 16px;
    line-height: 20px;
    text-align: left;
  }

  .edm-main-new .edm-evaluation-card-title {
    font-size: 20px;
    line-height: normal;
    text-align: center;
  }

  .edm-main-new .edm-evaluation-card-subtitle {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .edm-main-new .edm-dotted-text-black {
    font-size: 20px;
    text-align: left;
  }

  .edm-main-new .edm-dotted-text-purple {
    font-size: 20px;
    text-align: left;
  }

  .edm-main-new .edm-circle-name-title {
    font-size: 16px;
    line-height: 20px;
    text-align: left;
  }

  .edm-main-new .edm-circle-name-subtitle {
    font-size: 14px;
    text-align: left;
  }

  .edm-main-new .edm-journey-subtitle {
    font-size: 18px;
    line-height: 22px;
    text-align: center;
  }

  .edm-main-new .edm-journey-title-small {
    font-size: 22px;
    text-align: center;
  }

  .edm-main-new .edm-journey-card-title {
    font-size: 22px;
    line-height: 28px;
    text-align: left;
  }

  .edm-main-new .edm-journey-card-text-purple {
    font-size: 16px;
    line-height: 20px;
    text-align: left;
  }

  .edm-main-new .edm-journey-card-text-white {
    font-size: 16px;
    line-height: 20px;
    text-align: left;
  }

  .edm-main-new .edm-results-text {
    font-size: 16px;
    text-align: left;
  }

  .edm-main-new .edm-result-card-title {
    font-size: 18px;
    text-align: center;
  }

  .edm-main-new .edm-result-card-description {
    font-size: 10px;
    text-align: center;
  }

  .edm-main-new .edm-strategy-text {
    font-size: 16px;
    text-align: left;
  }

  .edm-main-new .edm-strategy-name {
    font-family: var(--edm-font-heading);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
  }

  .edm-main-new .edm-strategy-badge-title {
    font-size: 28px;
    text-align: center;
  }

  .edm-main-new .edm-strategy-badge-description {
    font-size: 16px;
    line-height: normal;
    text-align: center;
  }

  .edm-main-new .edm-mentor-name {
    font-size: 24px;
    text-align: center;
  }

  .edm-main-new .edm-mentor-role {
    font-size: 14px;
    text-align: center;
  }

  .edm-main-new .edm-mentors-center-text {
    font-size: 16px;
    text-align: left;
  }

  .edm-main-new .edm-icon-title {
    font-size: 20px;
    line-height: normal;
    text-align: left;
  }

  .edm-main-new .edm-regular-text {
    font-size: 16px;
    line-height: 18px;
    text-align: left;
  }

  .edm-main-new .edm-blog-title {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
  }

  .edm-main-new .edm-blog-link {
    font-size: 16px;
    line-height: 17px;
    text-align: center;
  }
}


/* ==================================================
   BACKGROUNDS
================================================== */

.edm-main-new .edm-bg-purple-grid {
  background-color: #4C0E58;
  background-image:
    linear-gradient(#551A60 1px, transparent 1px),
    linear-gradient(90deg, #551A60 1px, transparent 1px);
  background-size: 23px 23px;
  background-position: 0 0;
}

.edm-main-new .edm-bg-white-dots {
  background-color: #FFFFFF;
  background-image: radial-gradient(circle, #D9D9D9 1px, transparent 1px);
  background-size: 25px 25px;
  background-position: 0 0;
}

.edm-main-new .edm-bg-parallax-image {
  background-color: #4C0E58;
  background-image: var(--edm-bg-image);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-attachment: fixed;
}

.edm-main-new .edm-bg-green-gradient-image {
  background:
    var(--edm-bg-image) bottom center / 100% auto no-repeat,
    linear-gradient(180deg, #FFFFFF 0%, #79B019 100%);
}

@media (max-width: 767px) {
  .edm-main-new .edm-bg-parallax-image {
    background-attachment: scroll;
  }
}


/* ==================================================
   BUTTONS
================================================== */

.edm-main-new .edm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 14px 32px;
  border: 0;
  border-radius: 100px;
  font-family: var(--edm-font-primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
  appearance: none;
}

.edm-main-new .edm-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.edm-main-new .edm-btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.edm-main-new .edm-btn-lime {
  color: #2E3600;
  border: 1px solid transparent;
  background:
    linear-gradient(-83deg, #F2FF95 0%, #F5FFB3 62%, #A0B045 100%) padding-box,
    linear-gradient(-90deg, #FAFFCF 0%, #D0FF6B 100%) border-box;
  box-shadow: 0 4px 26.9px 10px rgba(246, 255, 195, 0.2);
}

.edm-main-new .edm-btn-lime:hover {
  background:
    linear-gradient(-83deg, #F2FF95 0%, #F5FFB3 20%, #A0B045 100%) padding-box,
    linear-gradient(-90deg, #FAFFCF 0%, #D0FF6B 100%) border-box;
}

.edm-main-new .edm-btn-purple {
  color: #FFFFFF;
  border: 1px solid transparent;
  background:
    linear-gradient(-83deg, #B950D0 0%, #EC8EFF 62%, #9319B0 100%) padding-box,
    linear-gradient(-90deg, #F4C5FF 0%, #B642F0 100%) border-box;
  box-shadow: 0 3px 12.9px 10px rgba(147, 25, 176, 0.1);
}

.edm-main-new .edm-btn-purple:hover {
  background:
    linear-gradient(-83deg, #9319B0 0%, #E5A5F3 50%, #9319B0 100%) padding-box,
    linear-gradient(-90deg, #F4C5FF 0%, #B642F0 100%) border-box;
}

.edm-main-new .edm-btn-white {
  color: #480158;
  background-color: #FFFFFF;
}

.edm-main-new .edm-btn-white:hover {
  background-color: #FFD9FF;
}

.edm-main-new .edm-btn-outline {
  color: #2E3600;
  border: 1px solid #9319B0;
  background-color: #FFFFFF;
}

.edm-main-new .edm-btn-outline:hover {
  color: #2E3600;
  background-color: #FFFFFF;
}

.edm-main-new .edm-btn-service-white {
  min-height: 52px;
  padding: 12px 22px;
  color: #2D1233;
  background-color: #FFFFFF;
  font-weight: 600;
}

.edm-main-new .edm-btn-service-white:hover {
  background-color: #FFD9FF;
}

.edm-main-new .edm-btn-header-profile {
  min-height: 44px;
  padding: 10px 16px;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
  font-size: 12px;
  font-weight: 500;
}

.edm-main-new .edm-btn-header-profile:hover {
  color: #4C0E58;
  border-color: #FFFFFF;
  background-color: #FFFFFF;
}

.edm-main-new .edm-btn-burger-profile {
  display: none;
  min-height: 52px;
  padding: 12px 16px;
  color: #4C0E58;
  border: 1px solid #4C0E58;
  background-color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
}

.edm-main-new .edm-btn-burger-profile:hover {
  color: #FFFFFF;
  border-color: #9319B0;
  background-color: #9319B0;
}

.edm-main-new .edm-btn-ksenia-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 5px;
  border: 0;
  border-radius: 100px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 20px 10px rgba(84, 31, 96, 0.1);
  cursor: pointer;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
  appearance: none;
}

.edm-main-new .edm-btn-ksenia-social:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px 10px rgba(84, 31, 96, 0.16);
}

.edm-main-new .edm-btn-ksenia-social img,
.edm-main-new .edm-btn-ksenia-social svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  .edm-main-new .edm-btn {
    width: 300px;
    max-width: 100%;
  }

  .edm-main-new .edm-btn-header-profile {
    display: none;
  }

  .edm-main-new .edm-btn-burger-profile {
    display: inline-flex;
  }

  .edm-main-new .edm-btn-ksenia-social {
    width: 62px;
    height: 62px;
    padding: 10px;
  }
}


/* ==================================================
   CARDS / BADGES / SLIDER UI
================================================== */

.edm-main-new .edm-icon-box-purple {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  overflow: hidden;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(43deg, #8A21A1 0%, #B950D0 51%, #8A21A1 100%);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
}

.edm-main-new .edm-icon-box-purple::after,
.edm-main-new .edm-pill-purple::after,
.edm-main-new .edm-journey-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.25) 0.5px, transparent 0.5px);
  background-size: 2px 2px;
  mix-blend-mode: overlay;
}

.edm-main-new .edm-icon-box-purple img,
.edm-main-new .edm-icon-box-purple svg {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 70%;
  max-height: 70%;
}

.edm-main-new .edm-pill-purple {
  position: relative;
  width: min(100%, 1100px);
  min-height: 122px;
  overflow: hidden;
  padding: 30px;
  border-radius: 150px;
  background: linear-gradient(83deg, rgba(117, 51, 131, 0.83) 0%, rgba(130, 39, 150, 0.83) 26%, rgba(139, 47, 160, 0.83) 47%, rgba(150, 51, 171, 0.83) 70%, rgba(121, 35, 140, 0.83) 91%);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
}

.edm-main-new .edm-achievement-card {
  width: 100%;
  min-height: 218px;
  border-radius: 25px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 19.9px 10px rgba(0, 0, 0, 0.05);
}

.edm-main-new .edm-achievement-card-inner {
  margin: 14px;
  padding: 20px 10px;
  border: 1px dashed #DCDCDC;
  border-radius: 15px;
  background: none;
}

.edm-main-new .edm-review-card-inner {
  margin: 14px;
  padding: 10px;
  border: 1px dashed #DCDCDC;
}

.edm-main-new .edm-feature-purple-card {
  position: relative;
  width: min(100%, 370px);
  min-height: 120px;
  overflow: hidden;
  padding: 24px 24px 24px 54px;
  border-radius: 25px;
  background-color: #600673;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.edm-main-new .edm-feature-purple-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 16px;
  border-radius: 0 15px 15px 0;
  background-color: #CBDA68;
}

.edm-main-new .edm-review-card-box {
  width: min(100%, 460px);
  min-height: 218px;
  border-radius: 25px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 19.9px 10px rgba(0, 0, 0, 0.05);
}

.edm-main-new .edm-slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 44px;
  border: 0;
  border-radius: 100px;
  background: linear-gradient(44deg, #FFFFFF 0%, #F3F3F3 100%);
  box-shadow: 0 2px 5.2px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.edm-main-new .edm-slider-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #828282;
}

.edm-main-new .edm-slider-dot-active {
  background-color: #D9D9D9;
}

.edm-main-new .edm-profile-card-white {
  width: min(100%, 934px);
  min-height: 530px;
  padding: 50px 80px 62px;
  border-radius: 25px;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 10.3px -6px rgba(56, 70, 32, 0.1);
}

.edm-main-new .edm-evaluation-tool-card {
  width: 100%;
  min-height: 218px;
  border-radius: 25px;
  background-color: #FFFFFF;
}

.edm-main-new .edm-list-purple,
.edm-main-new .edm-list-green {
  display: grid;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.edm-main-new .edm-list-purple li,
.edm-main-new .edm-list-green li {
  position: relative;
  min-height: 21px;
  padding-left: 45px;
}

.edm-main-new .edm-list-purple li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #B561C9 0 4.5px, #FBE8FF 5px 100%);
}

.edm-main-new .edm-list-green li::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -2px;
  width: 27px;
  height: 27px;
  background-image: url("data:image/svg+xml,%3Csvg width='27' height='27' viewBox='0 0 27 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 1.5C15.1 1.5 15.75 4.05 17.05 4.55C18.4 5.05 20.6 3.65 21.7 4.75C22.8 5.85 21.4 8.05 21.95 9.35C22.5 10.65 25.5 11.2 25.5 13.5C25.5 15.8 22.5 16.35 21.95 17.65C21.4 18.95 22.8 21.15 21.7 22.25C20.6 23.35 18.4 21.95 17.05 22.45C15.75 22.95 15.1 25.5 13.5 25.5C11.9 25.5 11.25 22.95 9.95 22.45C8.6 21.95 6.4 23.35 5.3 22.25C4.2 21.15 5.6 18.95 5.05 17.65C4.5 16.35 1.5 15.8 1.5 13.5C1.5 11.2 4.5 10.65 5.05 9.35C5.6 8.05 4.2 5.85 5.3 4.75C6.4 3.65 8.6 5.05 9.95 4.55C11.25 4.05 11.9 1.5 13.5 1.5Z' fill='url(%23g)'/%3E%3Cdefs%3E%3ClinearGradient id='g' x1='13.5' y1='1.5' x2='13.5' y2='25.5' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%237DC400'/%3E%3Cstop offset='0.45' stop-color='%237DC400'/%3E%3Cstop offset='1' stop-color='%23659B18'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.edm-main-new .edm-list-green li::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 6px;
  width: 12px;
  height: 11px;
  background-image: url("../img/yes_icon_green.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.edm-main-new .edm-dashed-text-card {
  position: relative;
  width: min(100%, 568px);
  min-height: 302px;
  padding: 53px 70px;
  border: 1px dashed #C2C2C2;
  background-color: transparent;
}

.edm-main-new .edm-dashed-text-card-media {
  position: absolute;
  top: 16px;
  right: 16px;
}

.edm-main-new .edm-ksenia-oval-card {
  width: 125px;
  min-height: 208px;
  padding: 12px;
  border-radius: 100px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 20px 10px rgba(0, 0, 0, 0.05);
}

.edm-main-new .edm-journey-card {
  position: relative;
  width: min(100%, 520px);
  min-height: 322px;
  overflow: hidden;
  padding: 36px 32px;
  background: linear-gradient(30deg, rgba(117, 51, 131, 0.84) 0%, rgba(130, 39, 150, 0.84) 31%, rgba(150, 51, 171, 0.84) 61%, rgba(121, 35, 140, 0.84) 91%);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
}

.edm-main-new .edm-journey-card-left {
  border-radius: 25px 0 25px 25px;
}

.edm-main-new .edm-journey-card-right {
  border-radius: 0 25px 25px 25px;
}

.edm-main-new .edm-progress-track {
  position: relative;
  width: 31px;
  min-height: 100%;
  overflow: hidden;
  border-radius: 25px;
  background-color: #752884;
}

.edm-main-new .edm-progress-bar {
  width: 7px;
  height: 100%;
  margin: 0 auto;
  border-radius: 25px;
  background: linear-gradient(180deg, #9C12B6 0%, #DE4DF7 47%, #ECFF79 100%);
}

.edm-main-new .edm-university-logo-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 105px;
  height: 105px;
  margin-right: 10px;
  margin-left: 10px;
  border-radius: 150px;
  background: linear-gradient(180deg, #5E186C 0%, #4C0E58 100%);
}

.edm-main-new .edm-student-result-photo {
  width: 227px;
  height: 276px;
  overflow: hidden;
  border-radius: 40px;
  background-color: #FFFFFF;
  background-image: var(--edm-card-image);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.edm-main-new .edm-mentor-card-panel {
  width: 230px;
  min-height: 310px;
  border-radius: 0 0 25px 25px;
  background: linear-gradient(180deg, rgba(147, 25, 176, 0) 0%, #1D0622 59%, #1D0622 100%);
  box-shadow: 0 24px 26.1px 3px rgba(255, 255, 255, 0.25);
}

.edm-main-new .edm-blog-post-card {
  width: 360px;
  height: 368px;
  padding: 20px;
  border-radius: 25px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 19.9px 10px rgba(0, 0, 0, 0.05);
}

.edm-main-new .edm-blog-post-inner {
  width: 100%;
  height: calc(100% - 5px);
  margin-top: 5px;
  border: 1px dashed #DCDCDC;
  border-radius: 0 0 25px 25px;
}

@media (max-width: 767px) {
  .edm-main-new .edm-icon-box-purple {
    width: 54px;
    height: 54px;
  }

  .edm-main-new .edm-pill-purple {
    width: 100%;
    min-height: 0;
    padding: 30px;
    border-radius: 60px;
    text-align: center;
  }

  .edm-main-new .edm-achievement-card {
    width: 100%;
    min-height: 218px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .edm-main-new .edm-feature-purple-card {
    width: 100%;
    min-height: 120px;
    padding: 22px 22px 22px 41px;
  }

  .edm-main-new .edm-review-card-box {
    width: 100%;
    min-height: 0;
  }

  .edm-main-new .edm-profile-card-white {
    width: 100%;
    min-height: 0;
    padding: 36px 24px;
  }

  .edm-main-new .edm-dashed-text-card {
    width: 100%;
    min-height: 270px;
    padding: 44px 36px;
  }

  .edm-main-new .edm-ksenia-oval-card {
    width: 100%;
    min-height: 150px;
    border-radius: 25px;
  }

  .edm-main-new .edm-journey-card {
    width: min(100%, 314px);
    min-height: 0;
    padding: 26px 20px;
  }

  .edm-main-new .edm-journey-card-left,
  .edm-main-new .edm-journey-card-right {
    border-radius: 0 25px 25px 25px;
  }

  .edm-main-new .edm-student-result-photo {
    width: 175px;
    height: 276px;
    margin: 4px;
  }

  .edm-main-new .edm-mentor-card-panel {
    width: 254px;
    min-height: 336px;
  }

  .edm-main-new .edm-blog-post-card {
    width: 100%;
    height: 368px;
  }
}

@media (max-width: 767px) {
  .edm-main-new .edm-burger-panel .edm-btn-burger-profile {
    display: flex;
    width: 300px;
    max-width: 100%;
    margin: 42px auto 0;
  }
}
