@font-face {
  font-family: "Gilmer";
  src: url("../font/Gilmer-Regular-Trial.woff2") format("woff2"),
    url("../font/Gilmer-Regular-Trial.woff2") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gilmer";
  src: url("../font/Gilmer-Bold-Trial.woff2") format("woff2"),
    url("../font/Gilmer-Heavy-Trial.woff2") format("woff");
  font-weight: 700;
  font-style: normal;
}

body,
h1,
h2,
h3,
p,
span,
li {
  font-family: "Gilmer", sans-serif;
}

:root {
  --yellow-primary: #ffd700;
  --yellow-secondary: #ffa500;
  --dark-bg: #1a1a1a;
  --darker-bg: #0f0f0f;
  --text-light: #ffffff;
  --text-gray: #e0e0e0;
  --card-bg: #2a2a2a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;

  line-height: 1.6;
}

/* Header */
.header {
  background: var(--darker-bg);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #333;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--yellow-primary);
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
}

.logo img {
  width: 124px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--yellow-primary);
}

.register-btn {
  background: var(--yellow-primary);
  color: var(--dark-bg);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.register-btn:hover {
  background: var(--yellow-secondary);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: var(--darker-bg);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 20%,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  background: var(--yellow-primary);
  color: var(--dark-bg);
  padding: 3rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.hero-title {
  font-weight: 700;
  font-size: 68px;
  line-height: 78px;
  letter-spacing: 0%;
}

.hero-subtitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;

  text-transform: capitalize;
}

.hero-description {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.hero-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.powered-by {
  font-weight: 600;
  font-size: 0.9rem;
}

.powered-by img {
  width: 350px;
}

/* Section Styles */
.section {
  padding: 50px 0;
}

.text-higlightnew h4 {
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  text-transform: capitalize;
}

.text-muted {
  font-weight: 500 !important;
  font-size: 20px;
  line-height: 32px;
  font-style: Medium-Trial;
  color: #737373 !important;
  text-decoration-skip-ink: auto;
}

.grydoc {
  text-decoration: underline;
  text-decoration-style: solid;
  color: #737373;
}

.section-title {
  text-align: center;
  font-weight: 800;
  font-size: 68px;
  line-height: 93px;
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 3rem;
}

/* Why Participate Cards */
.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

  margin-top: 2rem;
}

.feature-card {
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow-primary);
}

.feature-card h4 {
  font-family: "Gilmer", sans-serif;
  font-weight: 600;
  font-style: Bold-Trial;
  font-size: 32px;
  line-height: 32px;
  /* text-transform: capitalize; */
  color: #1c1e21;
  display: inline-block;
  margin-bottom: 16px;
  position: relative;
}

.forboldt {
  font-family: "Gilmer", sans-serif;
  font-weight: 500;
  font-style: Medium-Trial;
  font-size: 20px;
  line-height: 32px;
  color: #090909;
}

.feature-card h4::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--yellow-primary);
  margin-top: 0.5rem;
  position: absolute;
  top: -20px;
}

.feature-card p {
  font-family: "Gilmer", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #737373;
}

/* Timeline Section */
.timeline-section {
  background: var(--light-bg);
}

.timeline-container {
  gap: 46px;
  display: flex;
  margin: 0 auto;
  position: relative;
  justify-content: space-between;
}

.timeline-item {
  text-align: center;
}

.timeline-item img {
  width: 100%;
}

.timeline-date {
  background: var(--yellow-primary);
  color: var(--dark-bg);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.timeline-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.timeline-desc {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.timeline-circles {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.timeline-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow-primary);
  color: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
}

/* Requirements Section */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.requirement-card h5 {
  font-family: "Gilmer", sans-serif;
  font-weight: 700;
  font-style: Bold-Trial;
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.requirement-list {
  list-style: none;
  padding: 0;
}

.requirement-list li {
  padding: 0.5rem 0;

  position: relative;
  padding-left: 2rem !important;
  font-family: "Gilmer", sans-serif;
  font-weight: 500;
  font-style: Medium-Trial;
  font-size: 18px;
  line-height: 20px;
  color: #e0e0e0;
}

.requirement-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--yellow-primary);
  font-weight: bold;
  font-size: 1.5rem;
}

/* Timeline Participation */
.participation-section {
  background: var(--darker-bg);
}

.participation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.participation-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #333;
}

.participation-card h5 {
  color: var(--yellow-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.participation-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Prizes Section */
.prizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.prize-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.prize-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow-primary);
}

.prize-card h5 {
  color: var(--yellow-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.prize-card p {
  color: var(--text-gray);
}

/* Tools Section */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tool-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #333;
}

.tool-card h5 {
  color: var(--yellow-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.tool-card p {
  color: var(--text-gray);
}

/* CTA Section */
.cta-section {
  background: var(--yellow-primary);
  color: var(--dark-bg);
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-btn {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: var(--darker-bg);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--darker-bg);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #333;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.timeline-container img {
  width: 100%;
}

.btnstatment {
  background: var(--ColorPrimary, #fcd000);
  padding: 17px 28px;
  font-weight: 600;
  color: #090909;
  font-size: 28px;
  line-height: 28px;
  font-family: "Gilmer", sans-serif;
  text-align: center;
}

.forblack p {
  font-family: "Gilmer", sans-serif;
  font-weight: 400;
  font-style: Bold-Trial;
  font-size: 20px;
  line-height: 30px;
  color: #ffffffb2;
}

.forblack li {
  font-family: "Gilmer", sans-serif;
  font-weight: 300;
  font-style: Light-Trial;
  font-size: 20px;
  line-height: 30px;
  color: #ffffffb2;
}

.text-yello {
  color: var(--ColorPrimary, #fcd000);
  font-weight: 700;
}

.statmentheading {
  font-family: "Gilmer", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  color: #ffffff;
}

.forblack {
  background-color: #090909;
  padding: 80px 20px;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--yellow-primary);
}

.footer-copyright {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .statmentheading {
    font-style: Bold-Trial;
    font-size: 36px;
    line-height: 46px;
  }

  .forblack li {
    font-weight: 300 !important;
    font-size: 16px !important;
    line-height: 24px !important;
  }

  .forblack p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }

  .btnstatment {
    padding: 12px 20px;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }

  .register-btn {
    margin-right: 20px;
  }

  .formobbuildtext {
    font-weight: 700;
    font-size: 20px !important;
    line-height: 36px !important;
  }

  .text-yello {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
  }

  .hero-main {
    padding: 10px 0px;
  }

  .timeline-row {
    flex-direction: column;
    gap: 1rem;
  }

  .text-muted {
    margin-left: 25px !important;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
  }

  .textready {
    font-weight: 700 !important;
    font-style: Bold;
    font-size: 24px !important;
    line-height: 150% !important;
    text-align: center;
  }

  .lead {
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 150% !important;
    text-align: center !important;
  }

  .timeline-row::before {
    display: none;
  }

  .participation-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }



  .feature-grid,
  .requirements-grid,
  .prizes-grid,
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 100px 0 60px;
  }

  .section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 2rem;
  }
}

.custom_btn {
  background: url("../images/btn-bg.png") no-repeat center center;
  color: var(--text-light);
  padding: 1rem 2rem;
  background-size: contain;
  text-decoration: none;
  border: none !important;
  transition: all 0.3s ease;
  font-family: "Gilmer", sans-serif;
  font-weight: 600;
  font-style: Medium-Trial;
  font-size: 16px;
  line-height: 20px;

  padding: 20px 36px;
  color: #ffffff;
}

.custom_btn:hover {
  transform: translateY(-2px);
}

.yellow_custom {
  background: url("../images/yellow-btn.png") no-repeat;
  color: var(--text-dark);
  font-family: "Gilmer", sans-serif;
  font-weight: 600;
  font-style: Medium-Trial;
  font-size: 16px;
  line-height: 23px;
  padding: 20px 36px;
  color: #090909;
  background-size: contain;
  text-decoration: none;
  border: none !important;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 0 !important;
  width: 207px;
  display: block;
}

.bgcard {
  background: #0f0f0f;
  padding: 50px;
  border-radius: 15px;
  position: relative;
}

.bg_card {
  background: #0f0f0f;
  padding: 40px;
  border-radius: 15px;
  position: relative;
}

.bg_card::after {
  content: "";
  background: url("../images/card-bg.png") no-repeat;
  position: absolute;
  background-size: 95%;
  background-position: 100%;
  width: 350px;
  height: 100%;
  z-index: 99;
  right: 0;
  top: 0;
}

.bgcard::after {
  content: "";
  background: url("../images/card-bg.png") no-repeat;
  position: absolute;
  background-size: 80%;
  background-position: 100%;
  width: 350px;
  height: 100%;
  z-index: 99;
  right: 0;
  top: 0;
}

.border_right {
  border-right: 1px #fff solid;
}

.card {
  border-radius: 15px;
  background-color: #fcd000;
  border-radius: 15px;
}

.cardbg {
  background: #0f0f0f;
  padding: 25px;
  border-radius: 15px;
  position: relative;
}

.cardbg::after {
  content: "";
  background: url("../images/card-bg.png") no-repeat;
  position: absolute;
  background-size: contain;
  width: 350px;
  height: 100%;
  z-index: 99;
  right: 0;
  top: 0;
}

.btnmbnew {
  justify-content: center;
}

.showcontent {
  position: absolute;
  z-index: 999;
}

.texth5 {
  font-family: "Gilmer", sans-serif;
  font-weight: 700;
  font-style: Bold-Trial;
  font-size: 22px;
  line-height: 22px;
  text-transform: capitalize;
}

.fwdbold {
  font-family: "Gilmer", sans-serif;
  font-weight: 700;

  font-size: 18px;
  line-height: 20px;
}

.listulformob {
  font-family: "Gilmer", sans-serif;

  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
}

.textQualify {
  font-family: "Gilmer", sans-serif;
  font-weight: 700;
  font-style: Bold-Trial;
  font-size: 32px;

  line-height: 32px;
  text-transform: capitalize;
}

.nexttext h3 {
  /* font-family: Gilmer; */
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  text-transform: capitalize;
  color: #ffffff;
}

.nexttext p {
  color: #e0e0e0;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  columns: #e0e0e0;
}

.footer {
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer a:hover {
  color: #ffc107 !important;
  text-decoration: underline !important;
}

.textformobile p {
  font-weight: 400;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: 0%;
  color: #ffffff;
}

.textmobleft {
  text-align: center;
}

.lead {
  font-weight: 500;
  font-style: Medium-Trial;
  font-size: 28px;
  line-height: 38px;

  text-align: center;
  vertical-align: middle;
}

.cardbdrds {
  border-radius: 12px !important;
  padding: 53px;
}

img {
  height: auto;
}

.textready {
  font-weight: 800;
  font-style: Heavy-Trial;
  font-size: 44px;
  line-height: 100%;
  font-family: "Gilmer", sans-serif;
  text-align: center;
  vertical-align: middle;
}

.grytext {
  font-weight: 500 !important;
  font-size: 20px !important;
  line-height: 32px !important;
}

.textformobile h2 {
  font-weight: 800;
  font-size: 56px;
  line-height: 78px;
  letter-spacing: 0%;

  color: #ffffff;
}

.text-muted {
  margin-left: 30px;
}

.texttimline {
  font-weight: 800;
   font-family: "Gilmer", sans-serif;

  font-size: 68px;
  line-height: 93px;
  letter-spacing: 0%;
  text-align: center;
  color: #000;
}

.info-box {
  font-family: "Gilmer", sans-serif;
  font-weight: 400;
  font-style: Regular-Trial;
  font-size: 22px;
  line-height: 20px;
}

.info-box img {
  margin-top: 5px;
  width: 24px;
  height: auto;
}

.info-box {
  align-items: center;
  border: 1.5px solid #ffffff33;
  border-radius: 18px;
  gap: 20px;
  padding: 17px 30px;
  color: #fff;
  background-color: #000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Responsive adjustments */

@media (max-width: 1300px) {
  .hero-title {
    font-size: 55px;
  }
}

@media (max-width: 767.98px) {
  .footer {
    text-align: center;
  }

  .footer .d-flex {
    justify-content: center !important;
  }
}

@media (max-width: 768px) {
  .accordion{ padding: 0px 15px;}
  .nav-links {
    display: none;
  }

  .info-box {
    width: 100%;
    margin-bottom: 10px;
    padding: 15px 20px;
  }

  .hero-main {
    align-items: center;
    text-align: center;
  }

  .hero-subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #090909;
    text-align: center;
    text-transform: capitalize;
  }

  .hero-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;

    text-align: center;
  }

  .feature-card h4 {
    font-weight: 700 !important;
    font-size: 18px !important;
    line-height: 100%;
    margin-bottom: 0px;
  }



  .feature-card p {
    font-weight: 400;
    font-style: Regular-Trial;
    font-size: 14px;
    line-height: 150%;
  }

  .texttimline {
    font-weight: 700;
    font-style: Bold;
    font-size: 30px;
    line-height: 150%;

    text-align: center;
  }

  .forboldt {
    font-weight: 400;
    font-family: "Gilmer", sans-serif;

    font-size: 14px;
    line-height: 150%;
  }

  .requirement-card h5 {
    font-weight: 700;
    font-style: Bold;
    font-size: 30px;
    line-height: 150%;
  }

  .textQualify {
    font-weight: 700;
    font-style: Bold;
    font-size: 30px;
    line-height: 150%;
  }

  .texth5 {
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 150%;
  }

  .fwdbold {
    font-family: "Gilmer", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
  }

  .listulformob {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 150%;
  }

  .requirement-list li {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 150%;
  }

  .hero-content {
    padding: 2rem;
  }

  .btnmbnew {
    justify-content: start;
  }

  .timeline-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .participation-grid,
  .feature-grid,
  .requirements-grid,
  .prizes-grid,
  .tools-grid {
    grid-template-columns: 1fr !important;
  }

  .bgcard::after {
    background-size: 78%;
    background-position: 100% 100%;
  }

  .section-title {
    font-family: "Gilmer", sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
  }

  .card-body {
    padding: 10px !important;
  }

  .grytext {
    font-family: "Gilmer", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
  }

  .bgcard {
    border-radius: 0px !important;
    padding: 50px 30px;
  }

 
  .card {
    padding: 30px 25px !important;
    border-radius: 0px;
  }

  /* .conformob {
    padding: 0px !important;
  } */

  .bg_card {
    padding: 50px 25px !important;
    border-radius: 0px !important;
  }

  .textformobile h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 150%;
  }

  .textformobile p {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;

    text-transform: capitalize;
    color: #ffffff;
  }

  .bg_card::after {
    background-size: 97%;
    background-position: 100% 100%;
  }

  .border_right {
    border-right: none;
    border-bottom: 1px #fff solid;
  }

  .btnmbnew {
    position: relative;
    z-index: 999 !important;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .nexttext h3 {
    font-weight: 700;
    font-style: Bold;
    font-size: 30px;
    line-height: 150%;
  }

  .nexttext p {
    font-family: Gilmer;
    font-weight: 600;
    font-style: Medium;
    font-size: 16px;
    line-height: 150%;
  }

  .text-higlightnew h4 {
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 150%;
  }

  .section-title {
    margin-bottom: 38px;
  }

  .section {
    padding: 50px 0;
  }

  .yellow_custom {
    /* width: 100%; */
    text-align: center;
    margin-left: 18px !important;
    margin-top: 20px;
    display: block;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 100px 0 60px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 0.8rem 1.5rem;
  }

  .timeline-item img {
    max-width: 90%;
    height: auto;
  }

  .register-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .info-box {
    font-size: 0.85rem;
    flex-wrap: wrap;
  }

}


.workshops {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.custom_card {
  background-color: #ffcc00;
  border-radius: 16px;
  padding: 20px;
  width: 23%;
  position: relative;
  display: flex;
  flex-direction: column;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.badge {
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  background: #000;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin: auto;
  width: 125px;
}

.title {
  font-size: 18px;

  font-weight: 700;
  line-height: 1.3;
  color: #000;
}

.info {
  font-size: 14px;
  color: #000;
}

.speaker-label {
  font-weight: 500;
  margin-top: 10px;
}

.speaker-name {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 14px;
}

.speaker-role {
  font-size: 11px;
  color: #333;
 
}

@media (max-width: 768px) {
  .custom_card {
    width: 100%;
    max-width: 90%;
    margin-bottom: 20px;
  }

  body {
    overflow-x: hidden;
  }
}

b{ color: #000;}

.timeline_section ol {

  list-style: none;
  padding-left: 0;

  margin: auto;
}

 .text-link{ color:#737373 !important;}

.timeline_section li::before {

  font-weight: 600;
  font-size: 20px;
  margin-right: 10px;
  color: #555;
}

.timeline_section .bold {
  font-weight: bold;
}

.timeline_section .step-title {
  font-size: 18px;
  
  margin-bottom: 10px;
  color: #737373;
}

.timeline_section .sub-steps {
  padding-left: 40px;
  margin-top: 8px;
}

.timeline_section .sub-steps li {
  list-style: lower-alpha;
  font-size: 16px;
  color: #737373;
  margin-bottom: 6px;
}

@media (max-width: 600px) {
  .timeline_section .step-title {
    font-size: 16px;
  }

  .timeline_section .sub-steps li {
    font-size: 15px;
  }
}


.accordion-button {
  background-color: transparent;
  box-shadow: none;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  border-bottom: 1px solid #dddddd00;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: transparent;
}

.accordion-button::after {
  transition: transform 0.2s ease-in-out;
  margin-left: 20px;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-item {
  border: none;
}

.accordion-body {
  padding: 0.5rem 0 1rem 0;
  font-size: 0.95rem;
  color: #555;
}

.accordion-body a {
  color: #737373;
  font-weight: 600;
}

.accordion-button:focus {
  border-color: transparent !important;
}

.accordion {
  border-top: 1px solid #dddddd00;
}

.accordion-item:last-child .accordion-button {
  border-bottom: none;
}

h2.accordion-header {
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .accordion-button {
    font-size: 1rem;
  }

  .accordion-body {
    font-size: 0.9rem;
  }
}

@media (max-width:1440px) {

  .title {
    font-size: 15px;


  }
}