.container-syllabus {
  flex: 0 1 50%;
  border-radius: 10px;
  z-index: 5;

  background-color: #fffbe6;
  position: relative;


  display: flex;
  flex-direction: column;

  min-height: 100%;
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}

.container-syllabus::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}



pre > code {
    padding: 0;
    border-radius: 10px;
    font-size: 18px;
    line-height: 30px;
}

code {
    padding: 0;
    border-radius: 4px;
    font-size: 18px;
}


/*  SYLLABUS CARD  */
.syllabus-title-container {
  margin: 0;

  border-radius: 10px 10px 0 0;
  padding: 20px 40px;
  border-bottom: 2px solid black;
  background-color: #fffbe6;

  position: sticky;
  top: 0;
}

.syllabus-title {
  font-size: 40px;
  font-weight: bold;
  font-family: Rubik;
  margin: auto;
  text-align: left;
  color: #000;
  margin-bottom: 20px;
}

.syllabus-tags {
  display: flex;
  gap: 5px;

  overflow-x: scroll;
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}

.syllabus-tags::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}

.syllabus-tag {
  font-size: 18px;
  font-weight: 500;
  font-family: Rubik;
  margin: 0;
  padding: 4px 10px;
  border-radius: 3px;
  color: white;
  display: flex;
  text-wrap: nowrap;
}


.container-heading {
  font-family: Rubik;
  font-weight: bold;
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 5px;
}

.syllabus-text-container {
  margin: 0;

  border-radius: 0 0 10px 10px;
  padding: 0px 40px;
  overflow: scroll;

  font-size: 18px;
  font-family: Rubik;

  max-width: 680px;

  height: 100%;
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}

.container-syllabus::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}

.syllabus-text-container ul, ol {
  margin: 0;

  border-radius: 0 0 10px 10px;
  padding: 10px 20px;
}

.syllabus-text-container h2 {
  margin-top: 20px;
  margin-bottom: 5px;

  font-size: 28px;
  font-family: Rubik;
  font-weight: bold;


  text-transform: uppercase;
}

.syllabus-text-container h3 {
  margin-top: 40px;
  margin-bottom: 5px;

  font-size: 22px;
  font-family: Rubik;
  font-weight: bold;
  text-transform: uppercase;
}


.syllabus-text-container p {
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 20px;

  font-family: Rubik;
  font-weight: 400;
  line-height: 30px;
  word-wrap: break-word;
}




strong, b,
*[style*="font-weight: bold"],
*[style*="font-weight:bold"] {
  background: linear-gradient(to right, #ff69b4, #4169e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 5px rgba(255, 105, 180, 0.1),
               0 0 10px rgba(65, 105, 225, 0.1);
}



.syllabus-text-container ul {
  margin-top: 10px;
  margin-bottom: 15px;


  font-family: Rubik;


  list-style-type: "+  ";

}

.syllabus-text-container li {
    margin-bottom: .5em;
    line-height: 30px;
    font-size: 20px;
    font-family: Rubik;
    margin-bottom: 20px;
}

/* .syllabus-text-container li:before {
    content: "+";
    margin-right: 8px;
    margin-left: -16px;
} */




.syllabus-text-container img {
  object-fit: cover;
  max-height: 300px;
  border-radius: 10px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.syllabus-text-container iframe {
  border-radius: 10px;
  width: 100%;
}




