:root {
  --ink: #1f1b2e;
  --muted: #6b6780;
  --accent: #6c63ff;
  --accent-2: #7c5cff;
  --border: #e6e2f0;
  --soft: #f7f6ff;
  --soft-2: #f4f2ff;
}

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

.courses-hero {
  max-width: 880px;
  margin: 28px auto 40px;
  padding: 0 20px;
  text-align: center;
}

.courses-hero__title {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--ink);
  margin: 6px 0 10px;
}

/* .courses-hero__title span {
  color: #051220;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.courses-hero__subtitle {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

*/
/* ================= COURSES WRAP ================= */

.courses-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 32px;
  display: grid;
  gap: 28px;
}

/* ================= COURSE CARD ================= */

.course-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(28, 24, 66, 0.08);
  overflow: hidden;
  align-items: stretch;
}

/* ================= LEFT ================= */

.course-main {
  padding: 34px 40px;
}

.course-card__head {
  text-align: center;
  margin-bottom: 26px;
}

.course-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 12px;
  background: #8478e0;
  border-radius: 22px;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 34px rgba(132, 120, 224, 0.35);
}


.course-title {
  font-size: 26px;
  font-weight: 800;
  margin: 0;
  color: var(--ink);
}

.course-tagline {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  margin-top: 4px;
}

.course-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 10px auto 0;
  max-width: 520px;
}

/* ================= SECTIONS ================= */

.course-section {
  margin-top: 22px;
}

.section-title {
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ================= CURRICULUM ================= */

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

.curriculum-item {
  border: 1px solid #c7c2ff;
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.curriculum-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.curriculum-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.curriculum-duration {
  font-size: 11px;
  color: #8a85a1;
  margin-top: 2px;
}

/* ================= TECHNOLOGIES ================= */

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-pill {
  border: 1px solid #c7c2ff;
  color: var(--accent);
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* ================= PROJECTS ================= */

.project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  transform: translateY(-1px);
}

/* ================= RIGHT ================= */

.course-meta {
  padding: 30px 28px;
  background: #f8f7ff;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: stretch;
}

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

.meta-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 14px 16px;
}

.salary-amount {
  font-size: 20px;
  color: var(--accent);
  font-weight: 800;
}

.salary-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.batch-card {
  background: #3b82f6;
  color: #fff;
  border: none;
  box-shadow: 0 16px 32px rgba(59, 130, 246, 0.35);
}

.batch-date {
  font-size: 16px;
  font-weight: 700;
}

.batch-note {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}

.certificate-title {
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
}

.certificate-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* ================= CAREERS ================= */

.career-section {
  margin-top: 6px;
}

.career-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.career-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

.career-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
}

/* ================= CTA ================= */

.course-cta {
  margin-top: auto;
  width: 100%;
  border-radius: 14px;
  padding: 12px 16px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  background: linear-gradient(90deg, #6c63ff, #7a55ff);
  box-shadow: 0 16px 28px rgba(108, 99, 255, 0.35);
  text-align: center;
  text-decoration: none;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .course-card {
    grid-template-columns: 1fr;
  }

  .course-meta {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .curriculum-grid,
  .project-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .courses-hero__title {
    font-size: 28px;
  }

  .course-main {
    padding: 26px 24px;
  }
}

/* ================= INTERACTION STATES ================= */

/* Card hover */
.course-card {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.course-card:hover {
  box-shadow: 0 28px 56px rgba(28, 24, 66, 0.14);
  transform: translateY(-2px);
}

/* Tech pills */
.tech-pill,
.course-chip {
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tech-pill:hover,
.course-chip:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Curriculum items */
.curriculum-item {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.curriculum-item:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 18px rgba(108, 99, 255, 0.15);
}

/* Meta cards hover */
.meta-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.meta-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(28, 24, 66, 0.12);
}

/* ================= Figma Design CSS ================= */

/* Courses/Explore courses  */

position: relative;
width: 1280px;
height: 4933px;

/* Card & BG/Pure White */
background: #FFFFFF;

/* Frame 2609862 */

/* Auto layout */
display: flex;
flex-direction: column;
align-items: center;
padding: 0px;
gap: 30px;

position: absolute;
width: 1058px;
height: 2064px;
left: 111px;
top: 178px;

/* Frame 2609804 */

/* Auto layout */
display: flex;
flex-direction: column;
align-items: center;
padding: 0px;
gap: 20px;

width: 1010px;
height: 220px;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Group 13 */

width: 274px;
height: 60px;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Glow */

position: absolute;
width: 274px;
height: 60px;
left: 368px;
top: 0px;

/* Brand/Secondary Purple */
background: #8067F6;
opacity: 0.3;
filter: blur(10px);
backdrop-filter: blur(20px);
/* Note: backdrop-filter has minimal browser support */
border-radius: 30px;

/* Fill */

position: absolute;
width: 254px;
height: 40px;
left: 378px;
top: 10px;

/* Background/White */
background: #FFFFFF;
border-radius: 30px;

/* Frame 2609802 */

/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
padding: 0px;
gap: 5px;

position: absolute;
width: 214px;
height: 20px;
left: 20px;
top: 10px;

/* library */

width: 20px;
height: 20px;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Vector */

position: absolute;
left: 16.67%;
right: 16.66%;
top: 16.67%;
bottom: 16.66%;

/* Brand/Secondary Purple */
border: 1.5px solid #8067F6;

/* INDUSTRY - READY PROGRAM */

width: 189px;
height: 20px;

/* Caption/Caption */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
text-align: center;
letter-spacing: 0.002em;

/* Brand/Primary Purple */
color: #200060;

/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 0;

/* Frame 2609803 */

/* Auto layout */
display: flex;
flex-direction: column;
align-items: center;
padding: 0px;
gap: 20px;

width: 1010px;
height: 140px;

/* Inside auto layout */
flex: none;
order: 1;
align-self: stretch;
flex-grow: 0;

/* Master In-Demand Tech Skills */

width: 1010px;
height: 64px;

font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 56px;
line-height: 64px;
/* identical to box height, or 114% */
text-align: center;
letter-spacing: -0.01em;

/* Text/Primary */
color: #1E0A5F;

/* Inside auto layout */
flex: none;
order: 0;
align-self: stretch;
flex-grow: 0;

/* Comprehensive programs designed by industry experts. Learn by building real projects, get certified, and launch your tech career in months. */

width: 1010px;
height: 56px;

/* Body/Large */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 28px;
/* or 156% */
text-align: center;

/* Text/Secondary */
color: #3A3A66;

/* Inside auto layout */
flex: none;
order: 1;
align-self: stretch;
flex-grow: 0;

/* Frame 2609706 */

box-sizing: border-box;

width: 1058px;
height: 892px;

/* Gradient/background */
background: linear-gradient(180deg, #F4F2FF 0%, #FAF9F6 100%);
/* Border/Default */
border: 2px solid #E2E8F0;
border-radius: 8px;

/* Inside auto layout */
flex: none;
order: 1;
align-self: stretch;
flex-grow: 0;

/* Master the complete data science pipeline—from data collection and cleaning to building production ready machine learning models and deploying AI systems. */

position: absolute;
width: 608px;
height: 84px;
left: calc(50% - 608px/2 - 195px);
top: calc(50% - 84px/2 - 150px);

/* Body/Large */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 28px;
/* or 156% */

/* Text/Primary */
color: #1E0A5F;

/* Frame 48 */

position: absolute;
width: 390px;
height: 892px;
left: 668px;
top: 0px;

/* Card & BG/Pure White */
background: #FFFFFF;
border-radius: 0px 8px 8px 0px;

/* Frame 64 */

/* Auto layout */
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 14px 16px;
gap: 5px;

position: absolute;
width: 330px;
height: 48px;
left: calc(50% - 330px/2);
top: 814px;

/* Brand/Secondary Purple */
background: #8067F6;
/* Brand/Secondary Purple */
border: 1px solid #8067F6;
border-radius: 30px;

/* Enroll Course Now */

width: 140px;
height: 20px;

/* Button/Primary */
font-family: 'Manrope';
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 20px;
/* identical to box height, or 125% */
text-align: center;
letter-spacing: 0.005em;

/* Card & BG/Pure White */
color: #FFFFFF;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* arrow-left (2) 1 */

width: 20px;
height: 20px;

transform: matrix(-1, 0, 0, 1, 0, 0);

/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 0;

/* Vector */

position: absolute;
left: 20.83%;
right: 20.83%;
top: 20.84%;
bottom: 20.83%;

/* Card & BG/Pure White */
border: 2px solid #FFFFFF;

/* Frame 66 */

/* Auto layout */
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 14px 16px;
gap: 5px;

position: absolute;
width: 330px;
height: 48px;
left: calc(50% - 330px/2);
top: 758px;

/* Card & BG/Pure White */
background: #FFFFFF;
/* Brand/Secondary Purple */
border: 1px solid #8067F6;
border-radius: 30px;

/* View Details */

width: 94px;
height: 20px;

/* Button/Primary */
font-family: 'Manrope';
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 20px;
/* identical to box height, or 125% */
text-align: center;
letter-spacing: 0.005em;

/* Brand/Secondary Purple */
color: #8067F6;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Frame 62 */

box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 14px 16px;
gap: 5px;

position: absolute;
width: 330px;
height: 182px;
left: 30px;
top: 55px;

/* Gradient/background */
background: linear-gradient(180deg, #F4F2FF 0%, #FAF9F6 100%);
/* Border/Default */
border: 1px solid #E2E8F0;
border-radius: 8px;

/* Upcoming Batch */

position: absolute;
left: 13.64%;
right: 42.73%;
top: 10.99%;
bottom: 73.63%;

/* Body/Large */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 18px;
line-height: 28px;
/* identical to box height, or 156% */

/* Text/Primary */
color: #1E0A5F;

/* Start Date: Feb 15, 2025 */

position: absolute;
width: 178px;
height: 20px;
left: 45px;
top: 58px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Brand/Secondary Purple */
color: #8067F6;

/* Duration: 16 weeks */

position: absolute;
width: 147px;
height: 20px;
left: 45px;
top: 86px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Brand/Secondary Purple */
color: #8067F6;

/* Schedule: Mon-Fri, 7-9 PM */

position: absolute;
width: 195px;
height: 20px;
left: 45px;
top: 114px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Brand/Secondary Purple */
color: #8067F6;

/* Mode: Offline */

position: absolute;
width: 110px;
height: 20px;
left: 45px;
top: 142px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Brand/Secondary Purple */
color: #8067F6;

/* layers (1) 1 */

position: absolute;
width: 20px;
height: 20px;
left: 20px;
top: 24px;

/* Vector */

position: absolute;
left: 8.33%;
right: 8.26%;
top: 8.33%;
bottom: 8.34%;

/* Brand/Secondary Purple */
border: 1.5px solid #8067F6;

/* Frame 65 */

box-sizing: border-box;

position: absolute;
width: 330px;
height: 210px;
left: 30px;
top: 395px;

/* Gradient/background */
background: linear-gradient(180deg, #F4F2FF 0%, #FAF9F6 100%);
/* Border/Default */
border: 1px solid #E2E8F0;
border-radius: 8px;

/* Career Opportunities */

position: absolute;
left: 13.64%;
right: 30%;
top: 9.52%;
bottom: 77.14%;

/* Body/Large */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 18px;
line-height: 28px;
/* identical to box height, or 156% */

/* Text/Primary */
color: #1E0A5F;

/* Data Scientist */

position: absolute;
width: 118px;
height: 20px;
left: 45px;
top: 58px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Brand/Secondary Purple */
color: #8067F6;

/* Machine Learning Engineer */

position: absolute;
width: 206px;
height: 20px;
left: 45px;
top: 86px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Brand/Secondary Purple */
color: #8067F6;

/* Data Analyst */

position: absolute;
width: 108px;
height: 20px;
left: 45px;
top: 114px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Brand/Secondary Purple */
color: #8067F6;

/* AI Engineer */

position: absolute;
width: 98px;
height: 20px;
left: 45px;
top: 142px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Brand/Secondary Purple */
color: #8067F6;

/* NLP Engineer */

position: absolute;
width: 112px;
height: 20px;
left: 45px;
top: 170px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Brand/Secondary Purple */
color: #8067F6;

/* briefcase */

position: absolute;
width: 20px;
height: 20px;
left: 20px;
top: 24px;

/* Vector */

position: absolute;
left: 8.33%;
right: 8.33%;
top: 8.34%;
bottom: 16.66%;

/* Brand/Secondary Purple */
border: 1.5px solid #8067F6;

/* Frame 63 */

box-sizing: border-box;

position: absolute;
width: 330px;
height: 118px;
left: 30px;
top: 257px;

/* Brand/Secondary Purple */
background: #8067F6;
border-radius: 8px;

/* Industry-Recognized Data Science Certificate. */

position: absolute;
left: 13.64%;
right: 4.24%;
top: 49.15%;
bottom: 16.95%;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* or 143% */
letter-spacing: 0.002em;

/* Background/White */
color: #FFFFFF;

/* Certificate Included */

position: absolute;
left: 13.64%;
right: 33.33%;
top: 16.95%;
bottom: 59.32%;

/* Body/Large */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 18px;
line-height: 28px;
/* identical to box height, or 156% */
text-align: center;

/* Background/White */
color: #FFFFFF;

/* award (1) */

position: absolute;
height: 20px;
left: 6.06%;
right: 87.88%;
top: 24px;

/* Vector */

position: absolute;
left: 25%;
right: 25%;
top: 8.34%;
bottom: 8.33%;

/* Background/White */
border: 1.5px solid #FFFFFF;

/* Course Curriculum */

position: absolute;
width: 177px;
height: 28px;
left: 68px;
top: 368px;

font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 28px;
/* identical to box height, or 140% */

/* Brand/Primary Purple */
color: #200060;

/* Technologies You'll Master */

position: absolute;
width: 249px;
height: 28px;
left: 68px;
top: 616px;

/* Heading/H5 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 28px;
/* identical to box height, or 140% */

/* Text/Primary */
color: #1E0A5F;

/* Portfolio Projects */

position: absolute;
width: 164px;
height: 28px;
left: 68px;
top: 774px;

/* Heading/H5 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 28px;
/* identical to box height, or 140% */

/* Text/Primary */
color: #1E0A5F;

/* Customer Churn Prediction Model */

position: absolute;
width: 241px;
height: 20px;
left: 30px;
top: 812px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Primary */
color: #1E0A5F;

/* Sales Forecasting Dashboard */

position: absolute;
width: 241px;
height: 20px;
left: 30px;
top: 842px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Primary */
color: #1E0A5F;

/* Sentiment Analysis Engine */

position: absolute;
width: 204px;
height: 20px;
left: 331px;
top: 812px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Primary */
color: #1E0A5F;

/* Fraud Detection System */

position: absolute;
width: 204px;
height: 20px;
left: 331px;
top: 842px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Primary */
color: #1E0A5F;

/* Frame 70 */

box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 10px;
gap: 10px;

position: absolute;
width: 68px;
height: 40px;
left: 30px;
top: 654px;

/* Card & BG/Pure White */
background: #FFFFFF;
/* Brand/Accent Orange */
border: 1px solid #FF8A00;
border-radius: 8px;

/* Python */

width: 48px;
height: 20px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Secondary */
color: #3A3A66;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Frame 71 */

box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 10px;
gap: 10px;

position: absolute;
width: 46px;
height: 40px;
left: 108px;
top: 654px;

/* Card & BG/Pure White */
background: #FFFFFF;
/* Brand/Accent Orange */
border: 1px solid #FF8A00;
border-radius: 8px;

/* SQL */

width: 26px;
height: 20px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Secondary */
color: #3A3A66;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Frame 72 */

box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 10px;
gap: 10px;

position: absolute;
width: 94px;
height: 40px;
left: 164px;
top: 654px;

/* Card & BG/Pure White */
background: #FFFFFF;
/* Brand/Accent Orange */
border: 1px solid #FF8A00;
border-radius: 8px;

/* TensorFlow */

width: 74px;
height: 20px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Secondary */
color: #3A3A66;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Frame 73 */

box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 10px;
gap: 10px;

position: absolute;
width: 125px;
height: 40px;
left: 268px;
top: 654px;

/* Card & BG/Pure White */
background: #FFFFFF;
/* Brand/Accent Orange */
border: 1px solid #FF8A00;
border-radius: 8px;

/* AWS SageMaker */

width: 105px;
height: 20px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Secondary */
color: #3A3A66;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Frame 74 */

box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 10px;
gap: 10px;

position: absolute;
width: 68px;
height: 40px;
left: 403px;
top: 654px;

/* Card & BG/Pure White */
background: #FFFFFF;
/* Brand/Accent Orange */
border: 1px solid #FF8A00;
border-radius: 8px;

/* Python */

width: 48px;
height: 20px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Secondary */
color: #3A3A66;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Frame 75 */

box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 10px;
gap: 10px;

position: absolute;
width: 46px;
height: 40px;
left: 481px;
top: 654px;

/* Card & BG/Pure White */
background: #FFFFFF;
/* Brand/Accent Orange */
border: 1px solid #FF8A00;
border-radius: 8px;

/* SQL */

width: 26px;
height: 20px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Secondary */
color: #3A3A66;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Frame 76 */

box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 10px;
gap: 10px;

position: absolute;
width: 94px;
height: 40px;
left: 537px;
top: 654px;

/* Card & BG/Pure White */
background: #FFFFFF;
/* Brand/Accent Orange */
border: 1px solid #FF8A00;
border-radius: 8px;

/* TensorFlow */

width: 74px;
height: 20px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Secondary */
color: #3A3A66;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Frame 77 */

box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 10px;
gap: 10px;

position: absolute;
width: 125px;
height: 40px;
left: 30px;
top: 704px;

/* Card & BG/Pure White */
background: #FFFFFF;
/* Brand/Accent Orange */
border: 1px solid #FF8A00;
border-radius: 8px;

/* AWS SageMaker */

width: 105px;
height: 20px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Secondary */
color: #3A3A66;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* library */

position: absolute;
width: 28px;
height: 28px;
left: 30px;
top: 368px;

/* Vector */

position: absolute;
left: 16.67%;
right: 16.67%;
top: 16.67%;
bottom: 16.66%;

/* Brand/Secondary Purple */
border: 2px solid #8067F6;

/* target (2) */

position: absolute;
width: 28px;
height: 28px;
left: 30px;
top: 774px;

/* Vector */

position: absolute;
left: 8.33%;
right: 8.33%;
top: 8.33%;
bottom: 8.34%;

/* Brand/Secondary Purple */
border: 2px solid #8067F6;

/* chevrons-up */

position: absolute;
width: 28px;
height: 28px;
left: 30px;
top: 616px;

/* Vector */

position: absolute;
left: 29.17%;
right: 29.17%;
top: 25%;
bottom: 25%;

/* Brand/Secondary Purple */
border: 2px solid #8067F6;

/* Ellipse 9 */

position: absolute;
width: 6px;
height: 6px;
left: 37px;
top: 819px;

/* Brand/Accent Orange */
background: #FF8A00;

/* Ellipse 11 */

position: absolute;
width: 6px;
height: 6px;
left: 338px;
top: 819px;

/* Brand/Accent Orange */
background: #FF8A00;

/* Ellipse 10 */

position: absolute;
width: 6px;
height: 6px;
left: 37px;
top: 849px;

/* Brand/Accent Orange */
background: #FF8A00;

/* Ellipse 12 */

position: absolute;
width: 6px;
height: 6px;
left: 338px;
top: 849px;

/* Brand/Accent Orange */
background: #FF8A00;

/* Icon bg */

position: absolute;
width: 150px;
height: 150px;
left: calc(50% - 150px/2 - 424px);
top: 20px;

/* Fill */

position: absolute;
width: 150px;
height: 150px;
left: 30px;
top: 20px;

/* Glow */

position: absolute;
width: 100px;
height: 100px;
left: 25px;
top: 25px;

/* Brand/Accent  Orange */
background: #FF8A00;
opacity: 0.3;
filter: blur(10px);
backdrop-filter: blur(20px);
/* Note: backdrop-filter has minimal browser support */
border-radius: 34px;

/* Fill */

position: absolute;
width: 80px;
height: 80px;
left: 35px;
top: 35px;

/* Brand/Accent  Orange */
background: #FF8A00;
border-radius: 20px;

/* database */

position: absolute;
width: 40px;
height: 40px;
left: calc(50% - 40px/2);
top: calc(50% - 40px/2);

/* Vector */

position: absolute;
left: 12.5%;
right: 12.5%;
top: 8.33%;
bottom: 8.34%;

/* Background/White */
border: 2px solid #FFFFFF;

/* Data Science & AI */

position: absolute;
width: 231px;
height: 36px;
left: calc(50% - 231px/2 - 383.5px);
top: calc(50% - 36px/2 - 258px);

/* Heading/H3 SemiBold */
font-family: 'Manrope';
font-style: normal;
font-weight: 600;
font-size: 28px;
line-height: 36px;
/* identical to box height, or 129% */
text-align: center;

/* Text/Primary */
color: #1E0A5F;

/* Transform Data Into Intelligence */

position: absolute;
width: 280px;
height: 28px;
left: calc(50% - 280px/2 - 359px);
top: calc(50% - 28px/2 - 216px);

/* Body/Large */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 18px;
line-height: 28px;
/* identical to box height, or 156% */
text-align: center;

/* Brand/Secondary Purple */
color: #8067F6;

/* Frame 44 */

position: absolute;
width: 110px;
height: 30px;
left: 281px;
top: 173px;

/* Brand/Secondary Purple */
background: #8067F6;
border-radius: 16px;

/* Most Popular */

width: 90px;
height: 20px;

/* Caption/Caption */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
text-align: center;
letter-spacing: 0.002em;

/* Background/White */
color: #FFFFFF;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Frame 2609805 */

/* Auto layout */
display: flex;
flex-direction: column;
align-items: center;
padding: 0px;
gap: 20px;

width: 1058px;
height: 892px;

/* Gradient/background */
background: linear-gradient(180deg, #F4F2FF 0%, #FAF9F6 100%);
/* Border/Default */
border: 2px solid #E2E8F0;
border-radius: 8px;

/* Inside auto layout */
flex: none;
order: 2;
align-self: stretch;
flex-grow: 0;

/* Master the complete data science pipeline—from data collection and cleaning to building production ready machine learning models and deploying AI systems. */

position: absolute;
width: 608px;
height: 84px;
left: calc(50% - 608px/2 - 195px);
top: calc(50% - 84px/2 - 150px);

/* Body/Large */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 28px;
/* or 156% */

/* Text/Primary */
color: #1E0A5F;

/* Frame 48 */

position: absolute;
width: 390px;
height: 892px;
left: 668px;
top: 0px;

/* Card & BG/Pure White */
background: #FFFFFF;
border-radius: 0px 8px 8px 0px;

/* Frame 64 */

/* Auto layout */
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 14px 16px;
gap: 5px;

position: absolute;
width: 330px;
height: 48px;
left: calc(50% - 330px/2);
top: 814px;

/* Brand/Secondary Purple */
background: #8067F6;
border-radius: 30px;

/* Enroll Course Now */

width: 140px;
height: 20px;

/* Button/Primary */
font-family: 'Manrope';
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 20px;
/* identical to box height, or 125% */
text-align: center;
letter-spacing: 0.005em;

/* Card & BG/Pure White */
color: #FFFFFF;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* arrow-left (2) 1 */

width: 20px;
height: 20px;

transform: matrix(-1, 0, 0, 1, 0, 0);

/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 0;

/* Vector */

position: absolute;
left: 20.83%;
right: 20.83%;
top: 20.84%;
bottom: 20.83%;

/* Card & BG/Pure White */
border: 2px solid #FFFFFF;

/* Frame 62 */

position: absolute;
width: 330px;
height: 182px;
left: 30px;
top: 55px;

/* Gradient/background */
background: linear-gradient(180deg, #F4F2FF 0%, #FAF9F6 100%);
border-radius: 8px;

/* Upcoming Batch */

position: absolute;
left: 13.64%;
right: 42.73%;
top: 10.99%;
bottom: 73.63%;

/* Body/Large */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 18px;
line-height: 28px;
/* identical to box height, or 156% */

/* Text/Primary */
color: #1E0A5F;

/* Start Date: Feb 15, 2025 */

position: absolute;
width: 178px;
height: 20px;
left: 45px;
top: 58px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Brand/Secondary Purple */
color: #8067F6;

/* Duration: 16 weeks */

position: absolute;
width: 147px;
height: 20px;
left: 45px;
top: 86px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Brand/Secondary Purple */
color: #8067F6;

/* Schedule: Mon-Fri, 7-9 PM */

position: absolute;
width: 195px;
height: 20px;
left: 45px;
top: 114px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Brand/Secondary Purple */
color: #8067F6;

/* Mode: Offline */

position: absolute;
width: 110px;
height: 20px;
left: 45px;
top: 142px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Brand/Secondary Purple */
color: #8067F6;

/* layers (1) 1 */

position: absolute;
width: 20px;
height: 20px;
left: 20px;
top: 24px;

/* Vector */

position: absolute;
left: 8.33%;
right: 8.26%;
top: 8.33%;
bottom: 8.34%;

/* Brand/Secondary Purple */
border: 1.5px solid #8067F6;

/* Frame 65 */

position: absolute;
width: 330px;
height: 210px;
left: 30px;
top: 395px;

/* Gradient/background */
background: linear-gradient(180deg, #F4F2FF 0%, #FAF9F6 100%);
border-radius: 8px;

/* Career Opportunities */

position: absolute;
left: 13.64%;
right: 30%;
top: 9.52%;
bottom: 77.14%;

/* Body/Large */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 18px;
line-height: 28px;
/* identical to box height, or 156% */

/* Text/Primary */
color: #1E0A5F;

/* Data Scientist */

position: absolute;
width: 118px;
height: 20px;
left: 45px;
top: 58px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Brand/Secondary Purple */
color: #8067F6;

/* Machine Learning Engineer */

position: absolute;
width: 206px;
height: 20px;
left: 45px;
top: 86px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Brand/Secondary Purple */
color: #8067F6;

/* Data Analyst */

position: absolute;
width: 108px;
height: 20px;
left: 45px;
top: 114px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Brand/Secondary Purple */
color: #8067F6;

/* AI Engineer */

position: absolute;
width: 98px;
height: 20px;
left: 45px;
top: 142px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Brand/Secondary Purple */
color: #8067F6;

/* NLP Engineer */

position: absolute;
width: 112px;
height: 20px;
left: 45px;
top: 170px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Brand/Secondary Purple */
color: #8067F6;

/* briefcase */

position: absolute;
width: 20px;
height: 20px;
left: 20px;
top: 24px;

/* Vector */

position: absolute;
left: 8.33%;
right: 8.33%;
top: 8.34%;
bottom: 16.66%;

/* Brand/Secondary Purple */
border: 1.5px solid #8067F6;

/* Frame 63 */

position: absolute;
width: 330px;
height: 118px;
left: 30px;
top: 257px;

/* Brand/Secondary Purple */
background: #8067F6;
border-radius: 8px;

/* Industry-Recognized Data Science Certificate. */

position: absolute;
left: 13.64%;
right: 4.24%;
top: 49.15%;
bottom: 16.95%;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* or 143% */
letter-spacing: 0.002em;

/* Background/White */
color: #FFFFFF;

/* Certificate Included */

position: absolute;
left: 13.64%;
right: 33.33%;
top: 16.95%;
bottom: 59.32%;

/* Body/Large */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 18px;
line-height: 28px;
/* identical to box height, or 156% */
text-align: center;

/* Background/White */
color: #FFFFFF;

/* award (1) */

position: absolute;
height: 20px;
left: 6.06%;
right: 87.88%;
top: 24px;

/* Vector */

position: absolute;
left: 25%;
right: 25%;
top: 8.34%;
bottom: 8.33%;

/* Background/White */
border: 1.5px solid #FFFFFF;

/* Course Curriculum */

position: absolute;
width: 177px;
height: 28px;
left: 68px;
top: 368px;

font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 28px;
/* identical to box height, or 140% */

/* Text/Primary */
color: #1E0A5F;

/* Technologies You'll Master */

position: absolute;
width: 249px;
height: 28px;
left: 68px;
top: 616px;

/* Heading/H5 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 28px;
/* identical to box height, or 140% */

/* Text/Primary */
color: #1E0A5F;

/* Portfolio Projects */

position: absolute;
width: 164px;
height: 28px;
left: 68px;
top: 774px;

/* Heading/H5 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 28px;
/* identical to box height, or 140% */

/* Text/Primary */
color: #1E0A5F;

/* Customer Churn Prediction Model */

position: absolute;
width: 241px;
height: 20px;
left: 30px;
top: 812px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Primary */
color: #1E0A5F;

/* Sales Forecasting Dashboard */

position: absolute;
width: 241px;
height: 20px;
left: 30px;
top: 842px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Primary */
color: #1E0A5F;

/* Sentiment Analysis Engine */

position: absolute;
width: 204px;
height: 20px;
left: 331px;
top: 812px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Primary */
color: #1E0A5F;

/* Fraud Detection System */

position: absolute;
width: 204px;
height: 20px;
left: 331px;
top: 842px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Primary */
color: #1E0A5F;

/* Frame 70 */

box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 10px;
gap: 10px;

position: absolute;
width: 68px;
height: 40px;
left: 30px;
top: 654px;

/* Card & BG/Pure White */
background: #FFFFFF;
/* Brand/Accent Orange */
border: 1px solid #FF8A00;
border-radius: 8px;

/* Python */

width: 48px;
height: 20px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Secondary */
color: #3A3A66;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Frame 71 */

box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 10px;
gap: 10px;

position: absolute;
width: 46px;
height: 40px;
left: 108px;
top: 654px;

/* Card & BG/Pure White */
background: #FFFFFF;
/* Brand/Accent Orange */
border: 1px solid #FF8A00;
border-radius: 8px;

/* SQL */

width: 26px;
height: 20px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Secondary */
color: #3A3A66;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Frame 72 */

box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 10px;
gap: 10px;

position: absolute;
width: 94px;
height: 40px;
left: 164px;
top: 654px;

/* Card & BG/Pure White */
background: #FFFFFF;
/* Brand/Accent Orange */
border: 1px solid #FF8A00;
border-radius: 8px;

/* TensorFlow */

width: 74px;
height: 20px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Secondary */
color: #3A3A66;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Frame 73 */

box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 10px;
gap: 10px;

position: absolute;
width: 125px;
height: 40px;
left: 268px;
top: 654px;

/* Card & BG/Pure White */
background: #FFFFFF;
/* Brand/Accent Orange */
border: 1px solid #FF8A00;
border-radius: 8px;

/* AWS SageMaker */

width: 105px;
height: 20px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Secondary */
color: #3A3A66;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Frame 74 */

box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 10px;
gap: 10px;

position: absolute;
width: 68px;
height: 40px;
left: 403px;
top: 654px;

/* Card & BG/Pure White */
background: #FFFFFF;
/* Brand/Accent Orange */
border: 1px solid #FF8A00;
border-radius: 8px;

/* Python */

width: 48px;
height: 20px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Secondary */
color: #3A3A66;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Frame 75 */

box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 10px;
gap: 10px;

position: absolute;
width: 46px;
height: 40px;
left: 481px;
top: 654px;

/* Card & BG/Pure White */
background: #FFFFFF;
/* Brand/Accent Orange */
border: 1px solid #FF8A00;
border-radius: 8px;

/* SQL */

width: 26px;
height: 20px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Secondary */
color: #3A3A66;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Frame 76 */

box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 10px;
gap: 10px;

position: absolute;
width: 94px;
height: 40px;
left: 537px;
top: 654px;

/* Card & BG/Pure White */
background: #FFFFFF;
/* Brand/Accent Orange */
border: 1px solid #FF8A00;
border-radius: 8px;

/* TensorFlow */

width: 74px;
height: 20px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Secondary */
color: #3A3A66;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Frame 77 */

box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 10px;
gap: 10px;

position: absolute;
width: 125px;
height: 40px;
left: 30px;
top: 704px;

/* Card & BG/Pure White */
background: #FFFFFF;
/* Brand/Accent Orange */
border: 1px solid #FF8A00;
border-radius: 8px;

/* AWS SageMaker */

width: 105px;
height: 20px;

/* Body/Small */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
letter-spacing: 0.002em;

/* Text/Secondary */
color: #3A3A66;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* library */

position: absolute;
width: 28px;
height: 28px;
left: 30px;
top: 368px;

/* Vector */

position: absolute;
left: 16.67%;
right: 16.67%;
top: 16.67%;
bottom: 16.66%;

/* Brand/Secondary Purple */
border: 2px solid #8067F6;

/* target (2) */

position: absolute;
width: 28px;
height: 28px;
left: 30px;
top: 774px;

/* Vector */

position: absolute;
left: 8.33%;
right: 8.33%;
top: 8.33%;
bottom: 8.34%;

/* Brand/Secondary Purple */
border: 2px solid #8067F6;

/* chevrons-up */

position: absolute;
width: 28px;
height: 28px;
left: 30px;
top: 616px;

/* Vector */

position: absolute;
left: 29.17%;
right: 29.17%;
top: 25%;
bottom: 25%;

/* Brand/Secondary Purple */
border: 2px solid #8067F6;

/* Ellipse 9 */

position: absolute;
width: 6px;
height: 6px;
left: 37px;
top: 819px;

/* Brand/Accent Orange */
background: #FF8A00;

/* Ellipse 11 */

position: absolute;
width: 6px;
height: 6px;
left: 338px;
top: 819px;

/* Brand/Accent Orange */
background: #FF8A00;

/* Ellipse 10 */

position: absolute;
width: 6px;
height: 6px;
left: 37px;
top: 849px;

/* Brand/Accent Orange */
background: #FF8A00;

/* Ellipse 12 */

position: absolute;
width: 6px;
height: 6px;
left: 338px;
top: 849px;

/* Brand/Accent Orange */
background: #FF8A00;

/* Build The Future of Web */

position: absolute;
width: 206px;
height: 28px;
left: calc(50% - 206px/2 - 396px);
top: calc(50% - 28px/2 - 216px);

/* Body/Large */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 18px;
line-height: 28px;
/* identical to box height, or 156% */
text-align: center;

/* Brand/Secondary Purple */
color: #8067F6;

/* Frame 44 */

position: absolute;
width: 111px;
height: 30px;
left: 363px;
top: 173px;

/* Boffins/Vibrant Orange Accent */
background: #FF8A00;
border-radius: 16px;

/* High Demand */

width: 91px;
height: 20px;

/* Caption/Caption */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
text-align: center;
letter-spacing: 0.002em;

/* Background/White */
color: #FFFFFF;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Frame 2609783 */

position: absolute;
width: 1216px;
height: 379px;
left: calc(50% - 1216px/2);
top: 2920px;

/* Gradient/Dark */
background: linear-gradient(180deg, #2B0A6F 0%, #4C2FBF 100%);
border-radius: 50px;

/* Line 4 */

position: absolute;
width: 1216px;
height: 0px;
left: calc(50% - 1216px/2);
top: 26px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;

/* Line 33 */

position: absolute;
width: 1280px;
height: 0px;
left: calc(50% - 1280px/2);
top: -34px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;

/* Line 8 */

position: absolute;
width: 1216px;
height: 0px;
left: calc(50% - 1216px/2);
top: 206px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;

/* Line 5 */

position: absolute;
width: 1216px;
height: 0px;
left: calc(50% - 1216px/2);
top: 86px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;

/* Line 9 */

position: absolute;
width: 1216px;
height: 0px;
left: calc(50% - 1216px/2);
top: 266px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;

/* Line 7 */

position: absolute;
width: 1216px;
height: 0px;
left: calc(50% - 1216px/2);
top: 146px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;

/* Line 6 */

position: absolute;
width: 388px;
height: 0px;
left: calc(50% - 388px/2 - 377px);
top: -9px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;
transform: rotate(-90deg);

/* Line 22 */

position: absolute;
width: 388px;
height: 0px;
left: calc(50% - 388px/2 + 164px);
top: -9px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;
transform: rotate(90deg);

/* Line 14 */

position: absolute;
width: 388px;
height: 0px;
left: calc(50% - 388px/2 - 316px);
top: -9px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;
transform: rotate(90deg);

/* Line 23 */

position: absolute;
width: 388px;
height: 0px;
left: calc(50% - 388px/2 + 224px);
top: -9px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;
transform: rotate(90deg);

/* Line 15 */

position: absolute;
width: 388px;
height: 0px;
left: calc(50% - 388px/2 - 256px);
top: -9px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;
transform: rotate(90deg);

/* Line 24 */

position: absolute;
width: 388px;
height: 0px;
left: calc(50% - 388px/2 + 284px);
top: -9px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;
transform: rotate(90deg);

/* Line 16 */

position: absolute;
width: 388px;
height: 0px;
left: calc(50% - 388px/2 - 196px);
top: -9px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;
transform: rotate(90deg);

/* Line 25 */

position: absolute;
width: 388px;
height: 0px;
left: calc(50% - 388px/2 + 344px);
top: -9px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;
transform: rotate(90deg);

/* Line 17 */

position: absolute;
width: 388px;
height: 0px;
left: calc(50% - 388px/2 - 136px);
top: -9px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;
transform: rotate(90deg);

/* Line 26 */

position: absolute;
width: 388px;
height: 0px;
left: calc(50% - 388px/2 + 404px);
top: -9px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;
transform: rotate(90deg);

/* Line 18 */

position: absolute;
width: 388px;
height: 0px;
left: calc(50% - 388px/2 - 76px);
top: -9px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;
transform: rotate(90deg);

/* Line 27 */

position: absolute;
width: 388px;
height: 0px;
left: calc(50% - 388px/2 + 464px);
top: -9px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;
transform: rotate(90deg);

/* Line 19 */

position: absolute;
width: 388px;
height: 0px;
left: calc(50% - 388px/2 - 16px);
top: -9px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;
transform: rotate(90deg);

/* Line 28 */

position: absolute;
width: 388px;
height: 0px;
left: calc(50% - 388px/2 + 524px);
top: -9px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;
transform: rotate(90deg);

/* Line 20 */

position: absolute;
width: 388px;
height: 0px;
left: calc(50% - 388px/2 + 44px);
top: -9px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;
transform: rotate(90deg);

/* Line 29 */

position: absolute;
width: 388px;
height: 0px;
left: calc(50% - 388px/2 + 584px);
top: -9px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;
transform: rotate(90deg);

/* Line 31 */

position: absolute;
width: 388px;
height: 0px;
left: calc(50% - 388px/2 + 704px);
top: -9px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;
transform: rotate(90deg);

/* Line 21 */

position: absolute;
width: 388px;
height: 0px;
left: calc(50% - 388px/2 + 104px);
top: -9px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;
transform: rotate(90deg);

/* Line 30 */

position: absolute;
width: 388px;
height: 0px;
left: calc(50% - 388px/2 + 644px);
top: -9px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;
transform: rotate(90deg);

/* Line 32 */

position: absolute;
width: 388px;
height: 0px;
left: calc(50% - 388px/2 + 764px);
top: -9px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;
transform: rotate(90deg);

/* Line 10 */

position: absolute;
width: 1216px;
height: 0px;
left: calc(50% - 1216px/2);
top: 326px;

opacity: 0.1;
/* Background/White */
border: 1px solid #FFFFFF;

/* Frame 2609860 */

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0px;
gap: 15px;

position: absolute;
width: 759px;
height: 319px;
left: 229px;
top: 30px;

/* Frame 2609859 */

/* Auto layout */
display: flex;
flex-direction: column;
align-items: center;
padding: 0px;
gap: 30px;

width: 759px;
height: 170px;

/* Inside auto layout */
flex: none;
order: 0;
align-self: stretch;
flex-grow: 0;

/* Group 27 */

width: 100px;
height: 100px;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Glow */

position: absolute;
width: 100px;
height: 100px;
left: 329.5px;
top: 0px;

/* Background/White */
background: #FFFFFF;
opacity: 0.3;
filter: blur(10px);
backdrop-filter: blur(20px);
/* Note: backdrop-filter has minimal browser support */
border-radius: 34px;

/* Fill */

position: absolute;
width: 80px;
height: 80px;
left: 339.5px;
top: 10px;

/* Background/White */
background: #FFFFFF;
border-radius: 20px;

/* sparkles (1) 2 */

position: absolute;
width: 50px;
height: 50px;
left: calc(50% - 50px/2);
top: calc(50% - 50px/2);

/* Vector */

position: absolute;
left: 8.32%;
right: 8.32%;
top: 8.32%;
bottom: 8.32%;

/* Brand/Primary Purple */
border: 2px solid #200060;

/* Can’t Decide Which Course? */

width: 759px;
height: 40px;

/* Heading/H2 SemiBold */
font-family: 'Manrope';
font-style: normal;
font-weight: 600;
font-size: 32px;
line-height: 40px;
/* identical to box height, or 125% */
text-align: center;

/* Card & BG/Pure White */
color: #FFFFFF;

/* Inside auto layout */
flex: none;
order: 0;
align-self: stretch;
flex-grow: 0;

/* Frame 2609786 */

/* Auto layout */
display: flex;
flex-direction: column;
align-items: center;
padding: 0px;
gap: 30px;

width: 759px;
height: 134px;

/* Inside auto layout */
flex: none;
order: 1;
align-self: stretch;
flex-grow: 0;

/* Join 15,000+ successful tech professionals. Get personalized career guidance and a custom learning roadmap completely free. */

width: 759px;
height: 56px;

/* Body/Large */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 28px;
/* or 156% */
text-align: center;

/* Card & BG/Pure White */
color: #FFFFFF;

/* Inside auto layout */
flex: none;
order: 0;
align-self: stretch;
flex-grow: 0;

/* Frame 2609785 */

/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
padding: 0px;
gap: 30px;

width: 249px;
height: 48px;

/* Inside auto layout */
flex: none;
order: 1;
align-self: stretch;
flex-grow: 0;

/* Frame 34 */

/* Auto layout */
display: flex;
flex-direction: row;
align-items: flex-start;
padding: 14px 16px;
gap: 5px;

width: 249px;
height: 48px;

/* Card & BG/Pure White */
background: #FFFFFF;
border-radius: 30px;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Get Free Career Counselling */

width: 217px;
height: 20px;

/* Button/Primary */
font-family: 'Manrope';
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 20px;
/* identical to box height, or 125% */
text-align: center;
letter-spacing: 0.005em;

/* Text/Primary */
color: #1E0A5F;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Frame 2609861 */

/* Auto layout */
display: flex;
flex-direction: column;
align-items: center;
padding: 0px;
gap: 30px;

position: absolute;
width: 1015px;
height: 930px;
left: 133px;
top: 3399px;

/* Frame 2609836 */

/* Auto layout */
display: flex;
flex-direction: column;
align-items: center;
padding: 0px;
gap: 20px;

width: 537px;
height: 168px;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Group 13 */

width: 119px;
height: 60px;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Glow */

position: absolute;
width: 119px;
height: 60px;
left: 209px;
top: 0px;

/* Brand/Secondary Purple */
background: #8067F6;
opacity: 0.3;
filter: blur(10px);
backdrop-filter: blur(20px);
/* Note: backdrop-filter has minimal browser support */
border-radius: 30px;

/* Fill */

position: absolute;
width: 99px;
height: 40px;
left: 219px;
top: 10px;

/* Card & BG/Pure White */
background: #FFFFFF;
border-radius: 30px;

/* Frame 2609738 */

/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
padding: 0px;
gap: 5px;

position: absolute;
width: 59px;
height: 20px;
left: calc(50% - 59px/2);
top: 10px;

/* circle-question-mark (2) 1 */

width: 20px;
height: 20px;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Vector */

position: absolute;
left: 8.33%;
right: 8.34%;
top: 8.34%;
bottom: 8.33%;

/* Brand/Secondary Purple */
border: 1px solid #8067F6;

/* FAQs */

width: 34px;
height: 20px;

/* Caption/Caption */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
/* identical to box height, or 143% */
text-align: center;
letter-spacing: 0.002em;

/* Brand/Primary Purple */
color: #200060;

/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 0;

/* Frame 2609781 */

/* Auto layout */
display: flex;
flex-direction: column;
align-items: center;
padding: 0px;
gap: 20px;

width: 537px;
height: 88px;

/* Inside auto layout */
flex: none;
order: 1;
align-self: stretch;
flex-grow: 0;

/* Frequently Asked Questions */

width: 537px;
height: 40px;

/* Heading/H2 SemiBold */
font-family: 'Manrope';
font-style: normal;
font-weight: 600;
font-size: 32px;
line-height: 40px;
/* identical to box height, or 125% */
text-align: center;
letter-spacing: 0.005em;

/* Text/Primary */
color: #1E0A5F;

/* Inside auto layout */
flex: none;
order: 1;
align-self: stretch;
flex-grow: 0;

/* Everything you need to know about our programs */

width: 537px;
height: 28px;

/* Body/Large */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 28px;
/* identical to box height, or 156% */
text-align: center;

/* Text/Secondary */
color: #3A3A66;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Frame 2609795 */

/* Auto layout */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 0px;
gap: 20px;

width: 1015px;
height: 732px;

/* Inside auto layout */
flex: none;
order: 1;
align-self: stretch;
flex-grow: 0;

/* Frame 2609789 */

box-sizing: border-box;

width: 1015px;
height: 172px;

/* Gradient Brand/Liner BG */
background: linear-gradient(180deg, #F4F2FF 0%, #FAF9F6 100%);
/* Border/Default */
border: 2px solid #E2E8F0;
border-radius: 8px;

/* Inside auto layout */
flex: none;
order: 0;
align-self: stretch;
flex-grow: 0;

/* Do I need prior coding experience to join? */

position: absolute;
width: 461px;
height: 32px;
left: 30px;
top: 30px;

/* Heading/H4 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 32px;
/* identical to box height, or 133% */
text-align: center;

/* Text/Primary */
color: #1E0A5F;

/* Text */

position: absolute;
width: 0px;
height: 2656px;
left: 260px;
top: 73px;

/* Heading/H4 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 32px;
/* or 133% */
text-align: center;

/* Text/Primary */
color: #0F172A;

/* No prior experience required! Our programs are designed for complete beginners. We start with fundamentals and gradually build up to advanced concepts with hands-on practice. */

position: absolute;
width: 950px;
height: 60px;
left: 30px;
top: 82px;

font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 30px;
/* or 150% */

/* Text/Secondary */
color: #3A3A66;

/* Ellipse 39 */

position: absolute;
width: 50px;
height: 50px;
left: 930px;
top: 21px;

/* Icon/Accent */
background: #FF8A00;

/* minus 1 */

position: absolute;
width: 30px;
height: 30px;
left: 940px;
top: 31px;

/* Vector */

position: absolute;
left: 20.83%;
right: 20.83%;
top: 50%;
bottom: 50%;

/* Background/White */
border: 3px solid #FFFFFF;

/* Frame 2609790 */

box-sizing: border-box;

width: 1015px;
height: 92px;

/* Gradient Brand/Liner BG */
background: linear-gradient(180deg, #F4F2FF 0%, #FAF9F6 100%);
/* Border/Default */
border: 2px solid #E2E8F0;
border-radius: 8px;

/* Inside auto layout */
flex: none;
order: 1;
align-self: stretch;
flex-grow: 0;

/* Will I get placement assistance? */

position: absolute;
width: 360px;
height: 32px;
left: 30px;
top: 30px;

/* Heading/H4 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 32px;
/* identical to box height, or 133% */
text-align: center;

/* Text/Primary */
color: #1E0A5F;

/* Text */

position: absolute;
width: 0px;
height: 2656px;
left: 260px;
top: 73px;

/* Heading/H4 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 32px;
/* or 133% */
text-align: center;

/* Text/Primary */
color: #0F172A;

/* Ellipse 39 */

position: absolute;
width: 50px;
height: 50px;
left: 930px;
top: 21px;

/* Card & BG/Purple Light 3 */
background: #E5EBFF;

/* plus 1 */

position: absolute;
width: 30px;
height: 30px;
left: 940px;
top: 31px;

/* Vector */

position: absolute;
left: 20.83%;
right: 20.83%;
top: 20.83%;
bottom: 20.83%;

/* Text/Primary */
border: 3px solid #1E0A5F;

/* Frame 2609791 */

box-sizing: border-box;

width: 1015px;
height: 92px;

/* Gradient Brand/Liner BG */
background: linear-gradient(180deg, #F4F2FF 0%, #FAF9F6 100%);
/* Border/Default */
border: 2px solid #E2E8F0;
border-radius: 8px;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* What is the duration and schedule of the courses? */

position: absolute;
width: 563px;
height: 32px;
left: 30px;
top: 30px;

/* Heading/H4 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 32px;
/* identical to box height, or 133% */
text-align: center;

/* Text/Primary */
color: #1E0A5F;

/* Text */

position: absolute;
width: 0px;
height: 2656px;
left: 260px;
top: 73px;

/* Heading/H4 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 32px;
/* or 133% */
text-align: center;

/* Text/Primary */
color: #0F172A;

/* Ellipse 39 */

position: absolute;
width: 50px;
height: 50px;
left: 930px;
top: 21px;

/* Card & BG/Purple Light 3 */
background: #E5EBFF;

/* plus 1 */

position: absolute;
width: 30px;
height: 30px;
left: 940px;
top: 31px;

/* Vector */

position: absolute;
left: 20.83%;
right: 20.83%;
top: 20.83%;
bottom: 20.83%;

/* Text/Primary */
border: 3px solid #1E0A5F;

/* Frame 2609792 */

box-sizing: border-box;

width: 1015px;
height: 92px;

/* Gradient Brand/Liner BG */
background: linear-gradient(180deg, #F4F2FF 0%, #FAF9F6 100%);
/* Border/Default */
border: 2px solid #E2E8F0;
border-radius: 8px;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* What kind of projects will I work on? */

position: absolute;
width: 397px;
height: 32px;
left: 30px;
top: 30px;

/* Heading/H4 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 32px;
/* identical to box height, or 133% */
text-align: center;

/* Text/Primary */
color: #1E0A5F;

/* Text */

position: absolute;
width: 0px;
height: 2656px;
left: 260px;
top: 73px;

/* Heading/H4 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 32px;
/* or 133% */
text-align: center;

/* Text/Primary */
color: #0F172A;

/* Ellipse 39 */

position: absolute;
width: 50px;
height: 50px;
left: 930px;
top: 21px;

/* Card & BG/Purple Light 3 */
background: #E5EBFF;

/* plus 1 */

position: absolute;
width: 30px;
height: 30px;
left: 940px;
top: 31px;

/* Vector */

position: absolute;
left: 20.83%;
right: 20.83%;
top: 20.83%;
bottom: 20.83%;

/* Text/Primary */
border: 3px solid #1E0A5F;

/* Frame 2609793 */

box-sizing: border-box;

width: 1015px;
height: 92px;

/* Gradient Brand/Liner BG */
background: linear-gradient(180deg, #F4F2FF 0%, #FAF9F6 100%);
/* Border/Default */
border: 2px solid #E2E8F0;
border-radius: 8px;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Are the instructors industry professionals? */

position: absolute;
width: 480px;
height: 32px;
left: 30px;
top: 30px;

/* Heading/H4 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 32px;
/* identical to box height, or 133% */
text-align: center;

/* Text/Primary */
color: #1E0A5F;

/* Text */

position: absolute;
width: 0px;
height: 2656px;
left: 260px;
top: 73px;

/* Heading/H4 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 32px;
/* or 133% */
text-align: center;

/* Text/Primary */
color: #0F172A;

/* Ellipse 39 */

position: absolute;
width: 50px;
height: 50px;
left: 930px;
top: 21px;

/* Card & BG/Purple Light 3 */
background: #E5EBFF;

/* plus 1 */

position: absolute;
width: 30px;
height: 30px;
left: 940px;
top: 31px;

/* Vector */

position: absolute;
left: 20.83%;
right: 20.83%;
top: 20.83%;
bottom: 20.83%;

/* Text/Primary */
border: 3px solid #1E0A5F;

/* Frame 2609794 */

box-sizing: border-box;

width: 1015px;
height: 92px;

/* Gradient Brand/Liner BG */
background: linear-gradient(180deg, #F4F2FF 0%, #FAF9F6 100%);
/* Border/Default */
border: 2px solid #E2E8F0;
border-radius: 8px;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* What certifications will I receive? */

position: absolute;
width: 370px;
height: 32px;
left: 30px;
top: 30px;

/* Heading/H4 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 32px;
/* identical to box height, or 133% */
text-align: center;

/* Text/Primary */
color: #1E0A5F;

/* Text */

position: absolute;
width: 0px;
height: 2656px;
left: 260px;
top: 73px;

/* Heading/H4 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 32px;
/* or 133% */
text-align: center;

/* Text/Primary */
color: #0F172A;

/* Ellipse 39 */

position: absolute;
width: 50px;
height: 50px;
left: 930px;
top: 21px;

/* Card & BG/Purple Light 3 */
background: #E5EBFF;

/* plus 1 */

position: absolute;
width: 30px;
height: 30px;
left: 940px;
top: 31px;

/* Vector */

position: absolute;
left: 20.83%;
right: 20.83%;
top: 20.83%;
bottom: 20.83%;

/* Text/Primary */
border: 3px solid #1E0A5F;

/* Frame 2609914 */

/* Auto layout */
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 0px;
gap: 605px;

position: absolute;
width: 1140px;
height: 48px;
left: 70px;
top: 30px;

/* Group 32 */

width: 220px;
height: 48px;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Boffins */

position: absolute;
width: 152px;
height: 48px;
left: 0px;
top: 0px;

font-family: 'Bona Nova SC';
font-style: normal;
font-weight: 400;
font-size: 40px;
line-height: 48px;
/* identical to box height */

/* Gradient/Dark */
background: linear-gradient(180deg, #2B0A6F 0%, #4C2FBF 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;

/* Academy */

position: absolute;
width: 67px;
height: 19px;
left: 153px;
top: 22px;

font-family: 'Bona Nova SC';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 19px;

/* Brand/Accent Orange */
color: #FF8A00;

/* Frame 2609841 */

/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
padding: 0px;
gap: 20px;
isolation: isolate;

width: 315px;
height: 40px;

/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 0;

/* Courses */

width: 79px;
height: 28px;

/* Heading/H5 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 28px;
/* identical to box height, or 140% */
text-align: center;

/* Brand/Secondary Purple */
color: #8067F6;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;
z-index: 0;

/* About */

width: 58px;
height: 28px;

/* Heading/H5 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 28px;
/* identical to box height, or 140% */
text-align: center;

/* Text/Secondary */
color: #3A3A66;

/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 0;
z-index: 1;

/* Contact */

width: 78px;
height: 28px;

/* Heading/H5 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 28px;
/* identical to box height, or 140% */
text-align: center;

/* Text/Secondary */
color: #3A3A66;

/* Inside auto layout */
flex: none;
order: 2;
flex-grow: 0;
z-index: 2;

/* Ellipse 41 */

box-sizing: border-box;

width: 40px;
height: 40px;

/* Card & BG/Pure White */
background: #FFFFFF;
/* Text/Secondary */
border: 2px solid #3A3A66;

/* Inside auto layout */
flex: none;
order: 3;
flex-grow: 0;
z-index: 3;

/* menu (1) 1 */

position: absolute;
width: 20px;
height: 20px;
left: 285px;
top: 10px;

/* Inside auto layout */
flex: none;
order: 4;
flex-grow: 0;
z-index: 4;

/* Vector */

position: absolute;
left: 16.67%;
right: 16.66%;
top: 20.83%;
bottom: 20.84%;

/* Text/Secondary */
border: 2px solid #3A3A66;

/* Line 43 */

position: absolute;
width: 69px;
height: 0px;
left: 5px;
top: 35px;

/* Brand/Secondary Purple */
border: 1.5px solid #8067F6;

/* Inside auto layout */
flex: none;
order: 5;
flex-grow: 0;
z-index: 5;

/* Group 34 */

position: absolute;
width: 1280px;
height: 504px;
left: calc(50% - 1280px/2);
bottom: 0px;

/* Footer */

position: absolute;
width: 1280px;
height: 455px;
left: 0px;
top: 4478px;

/* Brand/Secondary Purple */
background: #8067F6;

/* Home */

position: absolute;
width: 55px;
height: 28px;
left: 862px;
top: 224px;

/* Heading/H5 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 28px;
/* identical to box height, or 140% */
text-decoration-line: underline;

/* Card & BG/Pure White */
color: #FFFFFF;

/* Back to top */

position: absolute;
width: 108px;
height: 28px;
left: 1124px;
top: 73px;

/* Heading/H5 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 20px;
line-height: 28px;
/* identical to box height, or 140% */

/* Card & BG/Pure White */
color: #FFFFFF;

/* Courses */

position: absolute;
width: 79px;
height: 28px;
left: 851px;
top: 292px;

/* Heading/H5 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 28px;
/* identical to box height, or 140% */
text-align: center;
text-decoration-line: underline;

/* Card & BG/Pure White */
color: #FFFFFF;

/* About */

position: absolute;
width: 58px;
height: 28px;
left: 1013px;
top: 224px;

/* Heading/H5 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 28px;
/* identical to box height, or 140% */
text-align: center;
text-decoration-line: underline;

/* Card & BG/Pure White */
color: #FFFFFF;

/* Placements */

position: absolute;
width: 115px;
height: 28px;
left: 985px;
top: 292px;

/* Heading/H5 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 28px;
/* identical to box height, or 140% */
text-align: center;
text-decoration-line: underline;

/* Card & BG/Pure White */
color: #FFFFFF;

/* Contact */

position: absolute;
width: 78px;
height: 28px;
left: 1154px;
top: 224px;

/* Heading/H5 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 28px;
/* identical to box height, or 140% */
text-decoration-line: underline;

/* Card & BG/Pure White */
color: #FFFFFF;

/* Instructors */

position: absolute;
width: 109px;
height: 28px;
left: 1139px;
top: 292px;

/* Heading/H5 Medium */
font-family: 'Manrope';
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 28px;
/* identical to box height, or 140% */
text-align: center;
text-decoration-line: underline;

/* Card & BG/Pure White */
color: #FFFFFF;

/* © 2026 Boffins Academy. All rights reserved. */

position: absolute;
width: 323px;
height: 24px;
left: 32px;
top: 381px;

font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 24px;
/* identical to box height, or 150% */

/* Card & BG/Pure White */
color: #FFFFFF;

/* Let’s get in touch */

position: absolute;
width: 457px;
height: 74px;
left: calc(50% - 457px/2 - 379.5px);
top: calc(50% - 74px/2 - 140.5px);

font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 56px;
line-height: 74px;
/* identical to box height, or 132% */
letter-spacing: -0.01em;

/* Card & BG/Pure White */
color: #FFFFFF;

/* info@boffinsacademy.com */

position: absolute;
width: 330px;
height: 36px;
left: calc(50% - 330px/2 - 443px);
top: calc(50% - 36px/2 - 85.5px);

font-family: 'Manrope';
font-style: normal;
font-weight: 200;
font-size: 28px;
line-height: 36px;
/* identical to box height, or 129% */

/* Card & BG/Pure White */
color: #FFFFFF;

/* Frame 2609855 */

/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
padding: 0px;
gap: 15px;

position: absolute;
width: 245px;
height: 50px;
left: 32px;
top: 281px;

/* Group 20 */

width: 50px;
height: 50px;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Ellipse 42 */

position: absolute;
width: 50px;
height: 50px;
left: 0px;
top: 0px;

/* Brand/Primary Purple */
background: #200060;
opacity: 0.3;
filter: blur(15px);
backdrop-filter: blur(20px);
/* Note: backdrop-filter has minimal browser support */

/* Ellipse 41 */

position: absolute;
width: 42.86px;
height: 42.86px;
left: 3.57px;
top: 3.57px;

/* Card & BG/Pure White */
background: #FFFFFF;

/* x (2) */

position: absolute;
width: 24px;
height: 24px;
left: calc(50% - 24px/2 - 97.5px);
top: calc(50% - 24px/2);

/* Vector */

position: absolute;
left: 25%;
right: 25%;
top: 25%;
bottom: 25%;

/* Brand/Secondary Purple */
border: 1.5px solid #8067F6;

/* Group 21 */

width: 50px;
height: 50px;

/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 0;

/* Ellipse 42 */

position: absolute;
width: 50px;
height: 50px;
left: 65px;
top: 0px;

/* Brand/Primary Purple */
background: #200060;
opacity: 0.3;
filter: blur(15px);
backdrop-filter: blur(20px);
/* Note: backdrop-filter has minimal browser support */

/* Ellipse 41 */

position: absolute;
width: 42.86px;
height: 42.86px;
left: 68.57px;
top: 3.57px;

/* Card & BG/Pure White */
background: #FFFFFF;

/* facebook */

position: absolute;
width: 24px;
height: 24px;
left: calc(50% - 24px/2 - 32.5px);
top: calc(50% - 24px/2);

/* Vector */

position: absolute;
left: 29.17%;
right: 25%;
top: 8.33%;
bottom: 8.33%;

/* Brand/Secondary Purple */
border: 1.5px solid #8067F6;

/* Group 22 */

width: 50px;
height: 50px;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Ellipse 42 */

position: absolute;
width: 50px;
height: 50px;
left: 130px;
top: 0px;

/* Brand/Primary Purple */
background: #200060;
opacity: 0.3;
filter: blur(15px);
backdrop-filter: blur(20px);
/* Note: backdrop-filter has minimal browser support */

/* Ellipse 41 */

position: absolute;
width: 42.86px;
height: 42.86px;
left: 133.57px;
top: 3.57px;

/* Card & BG/Pure White */
background: #FFFFFF;

/* instagram */

position: absolute;
width: 24px;
height: 24px;
left: calc(50% - 24px/2 + 32.5px);
top: calc(50% - 24px/2);

/* Vector */

position: absolute;
left: 8.33%;
right: 8.33%;
top: 8.33%;
bottom: 8.33%;

/* Brand/Secondary Purple */
border: 1.5px solid #8067F6;

/* Group 23 */

width: 50px;
height: 50px;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Ellipse 42 */

position: absolute;
width: 50px;
height: 50px;
left: 195px;
top: 0px;

/* Brand/Primary Purple */
background: #200060;
opacity: 0.3;
filter: blur(15px);
backdrop-filter: blur(20px);
/* Note: backdrop-filter has minimal browser support */

/* Ellipse 41 */

position: absolute;
width: 42.86px;
height: 42.86px;
left: 198.57px;
top: 3.57px;

/* Card & BG/Pure White */
background: #FFFFFF;

/* linkedin */

position: absolute;
width: 24px;
height: 24px;
left: calc(50% - 24px/2 + 97.5px);
top: calc(50% - 24px/2);

/* Vector */

position: absolute;
left: 8.33%;
right: 8.33%;
top: 8.33%;
bottom: 12.5%;

/* Brand/Secondary Purple */
border: 1.5px solid #8067F6;

/* Frame 2609856 */

/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
padding: 0px;
gap: 15px;

position: absolute;
width: 425px;
height: 24px;
left: 823px;
top: 381px;

/* Privacy Policy */

width: 100px;
height: 24px;

/* Body/Regular */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 24px;
/* identical to box height, or 150% */
text-decoration-line: underline;

/* Card & BG/Pure White */
color: #FFFFFF;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Terms of Service */

width: 122px;
height: 24px;

/* Body/Regular */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 24px;
/* identical to box height, or 150% */
text-decoration-line: underline;

/* Card & BG/Pure White */
color: #FFFFFF;

/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 0;

/* Refund & Cancellations */

width: 173px;
height: 24px;

/* Body/Regular */
font-family: 'Manrope';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 24px;
/* identical to box height, or 150% */
text-decoration-line: underline;

/* Card & BG/Pure White */
color: #FFFFFF;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

/* Line 11 */

position: absolute;
width: 1216px;
height: 0px;
left: calc(50% - 1216px/2);
top: 356px;

/* Card & BG/Pure White */
border: 0.5px solid #FFFFFF;

/* Line 50 */

position: absolute;
width: 24px;
height: 0px;
left: 1109px;
top: 75px;

/* Card & BG/Pure White */
background: #FFFFFF;
/* Card & BG/Pure White */
border: 2px solid #FFFFFF;
transform: rotate(-90deg);

/* Boffins */

position: absolute;
width: 190px;
height: 60px;
left: 32px;
top: 211px;

font-family: 'Bona Nova SC';
font-style: normal;
font-weight: 400;
font-size: 50px;
line-height: 60px;
/* identical to box height */

/* Card & BG/Pure White */
color: #FFFFFF;

/* Academy */

position: absolute;
width: 84px;
height: 24px;
left: 222px;
top: 234px;

font-family: 'Bona Nova SC';
font-style: normal;
font-weight: 400;
font-size: 20px;
line-height: 24px;
/* identical to box height */

/* Card & BG/Pure White */
color: #FFFFFF;

/* Vector */

position: absolute;
width: 1280px;
height: 50px;
left: 0px;
top: 4429px;

/* Brand/Secondary Purple */
background: #8067F6;
/* CTA hover + focus */
.course-cta {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(108, 99, 255, 0.45);
}

.course-cta:focus-visible {
  outline: 3px solid rgba(108, 99, 255, 0.4);
  outline-offset: 3px;
}


/* ================= SVG SIZING ================= */

.course-icon {
  overflow: hidden;
}

.course-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

.icon-slot {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.icon-slot svg {
  width: 100%;
  height: 100%;
  display: block;
}

.career-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.career-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.meta-card svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
