.code-container {
  font-size: 1.4rem;
  line-height: 2rem;
}

aside {
  max-width: 350px;
  background: #fff;
  padding: 10px;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Poppins", sans-serif;
  gap: 1rem;
}
.section-header h2 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 3rem;
  line-height: 1;
  color: var(--primary);
}
.section-header p {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.dropdown {
  position: relative;
}
.dropdown .selected-item {
  color: #6b6b6b;
  font-weight: 400;
  font-size: 1.4rem;
  display: flex;
  gap: 5px;
}
.dropdown:hover .dropdown-target {
  display: block;
}
.dropdown .dropdown-target {
  position: absolute;
  top: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 2;
  width: max(200px, 100%);
}
.dropdown .dropdown-target:after {
  content: "";
  border-bottom: solid 10px #fff;
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(calc(-50% - 3px));
  z-index: 1;
}
.dropdown .dropdown-target ul {
  list-style: none;
  background: #fff;
  font-size: 1.3rem;
  line-height: 2rem;
}
.dropdown .dropdown-target ul li.dropdown-item .item {
  padding: 1rem;
  color: #333;
  width: auto;
  display: flex;
  white-space: nowrap;
  text-decoration: none;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.dropdown .dropdown-target ul li.dropdown-item .item:hover {
  background-color: #f7f7f7;
}
.dropdown .dropdown-target ul li.dropdown-item .item.active {
  background-color: #e7e7e7;
}

.wrapper {
  --course-gradient-color: #ffe900;
  --testimonial-gradient-color: #3d00ff;
}

.card-wrapper {
  display: grid;
  gap: 3rem;
  justify-content: space-between;
  grid-template-columns: repeat(4, 1fr);
}

.content-wrapper {
  display: flex;
  gap: 3rem;
}

.privacy-policy h1,
.privacy-policy h2 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.privacy-policy .content {
  margin-bottom: 2rem;
}

.videos-container {
  flex-direction: column;
}

.videos .select-course {
  color: #9d9d9d;
  font-size: 1.4rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
.videos h2 {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  gap: 0.5rem;
}
.videos.internal-content-wrapper h2.page-heading {
  margin-bottom: 0;
}
.videos .videos-container h2 {
  margin: 2rem 0;
}
.videos .dropdown h2 {
  border-bottom: solid 3px var(--primary);
  width: 200px;
}
.videos .list {
  display: flex;
  gap: 2rem;
  width: 100%;
}
.videos .list h3 {
  font-size: 1.6rem;
  line-height: 2rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 1rem;
}
.videos .list .large-video {
  flex: 1 auto;
  width: 640px;
}
.videos .list .large-video .subscribe-btn {
  margin-top: 20px;
}
.videos .list ul {
  list-style: none;
  overflow: auto;
  margin-bottom: 3rem;
  max-height: 100vh;
  width: 300px;
  padding-right: 3px;
}
.videos .list ul li {
  background: #fff;
  margin-bottom: 1.5rem;
}
.videos .list ul li a {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
  text-decoration: none;
  display: flex;
}
.videos .list ul li:last-child {
  margin-bottom: 0;
}
.videos .list ul li .video {
  border-bottom: solid 1px #ccc;
  width: 150px;
  overflow: hidden;
}
.videos .list ul li .details {
  padding: 1rem;
  background-color: #fff;
}

.course-links,
.mobile-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.course-links .links,
.mobile-links .links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-links {
  display: none;
}

.course-links,
.topic-links {
  transform: translateX(-100%);
  transition: all ease-in-out 0.3s;
}
.course-links.open,
.topic-links.open {
  transform: translateX(0);
}

.topic-menu {
  font-size: 3rem;
  font-weight: bold;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  padding: 1rem;
  cursor: pointer;
}
.topic-menu.float-menu {
  position: fixed;
  z-index: 5;
  right: 10px;
  bottom: 10px;
}
.topic-menu-close {
  cursor: pointer;
}

div.code-toolbar > .toolbar {
  top: -20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  z-index: 2 !important;
}

div.code-toolbar > .toolbar > .toolbar-item > a,
div.code-toolbar > .toolbar > .toolbar-item > button,
div.code-toolbar > .toolbar > .toolbar-item > span {
  color: #4d4d4d !important;
  font-size: 0.8em !important;
  padding: 0.5rem 1rem !important;
  background: #fff !important;
  box-shadow: none !important;
  border-radius: 0.5em !important;
}

#dimention {
  position: fixed;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  z-index: 10;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  padding: 0.5rem;
}

.student-registration {
  align-items: center;
}
.student-registration .seats-availibility h2 {
  text-align: center;
}
.student-registration .seats-availibility ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  justify-content: center;
}
.student-registration .seats-availibility ul li {
  width: 5rem;
  height: 5rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 100%;
  font-weight: 600;
  color: #301c97;
  font-size: 1.8rem;
}
.student-registration .seats-availibility ul li.booked {
  color: #fff;
  background: #efefef;
  pointer-events: none;
}

.language-label {
  position: absolute;
  right: 0;
  top: 0;
  background: #184781;
  font-size: 1.2rem;
  line-height: 1.2rem;
  padding: 5px;
}

pre {
  position: relative;
}/*# sourceMappingURL=style.css.map */