@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap);
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  counter-reset: section;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}

.gap-4 {
  gap: 4px !important;
}

.gap-8 {
  gap: 8px !important;
}

.gap-16 {
  gap: 16px !important;
}

.gap-24 {
  gap: 24px !important;
}

.gap-32 {
  gap: 32px !important;
}

.gap-64 {
  gap: 64px !important;
}

.gap-80 {
  gap: 80px !important;
}

.br-0 {
  border-radius: 0px !important;
}

.br-4 {
  border-radius: 4px !important;
}

.br-6 {
  border-radius: 6px !important;
}

.br-8 {
  border-radius: 8px !important;
}

.br-16 {
  border-radius: 16px !important;
}

.br-24 {
  border-radius: 24px !important;
}

.br-32 {
  border-radius: 32px !important;
}

.br-64 {
  border-radius: 64px !important;
}

.text-white {
  color: #fff;
}

.bg-white {
  background-color: #fff;
}

.text-black-400 {
  color: #495057;
}

.bg-black-400 {
  background-color: #495057;
}

.text-black-600 {
  color: #343A40;
}

.bg-black-600 {
  background-color: #343A40;
}

.text-black-800 {
  color: #212529;
}

.bg-black-800 {
  background-color: #212529;
}

.text-darkblue-800 {
  color: #0054C0;
}

.bg-darkblue-800 {
  background-color: #0054C0;
}

.text-gray-200 {
  color: #DDDDDD;
}

.bg-gray-200 {
  background-color: #DDDDDD;
}

.text-gray-400 {
  color: #E2E2E2;
}

.bg-gray-400 {
  background-color: #E2E2E2;
}

.text-gray-600 {
  color: #6C757D;
}

.bg-gray-600 {
  background-color: #6C757D;
}

.text-yellow-400 {
  color: #DBBD20;
}

.bg-yellow-400 {
  background-color: #DBBD20;
}

.text-yellow-600 {
  color: #FDDA21;
}

.bg-yellow-600 {
  background-color: #FDDA21;
}

.text-red-800 {
  color: #FF3F00;
}

.bg-red-800 {
  background-color: #FF3F00;
}

.text-lightblue-400 {
  color: #00C3FF;
}

.bg-lightblue-400 {
  background-color: #00C3FF;
}

.text-lightblue-200 {
  color: #F8F9FA;
}

.bg-lightblue-200 {
  background-color: #F8F9FA;
}

.text-lightblue-300 {
  color: rgba(0, 195, 255, 0.07);
}

.bg-lightblue-300 {
  background-color: rgba(0, 195, 255, 0.07);
}

@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
    margin: 0 auto;
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 1240px;
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 1240px;
    margin: 0 auto;
    padding-right: 12px;
    padding-left: 12px;
  }
}

.section-padding {
  padding-top: 48px;
  padding-bottom: 48px;
}
@media (max-width: 768px) {
  .section-padding {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.section-padding-sm {
  padding-top: 32px;
  padding-bottom: 32px;
}

.input_group {
  margin-bottom: 16px;
}

.main-heading {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
}

.section-heading {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

.section-subheading {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}

.regular-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
}

.regular-text-light {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.sm-regular-text-bold {
  font-weight: 800;
  font-size: 14px;
  line-height: 22px;
}

.sm-regular-text-regular {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
}

.sm-regular-text-light {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  border: none;
  gap: 8px;
}

.btn-bold {
  font-weight: 600 !important;
}

.btn-fs16 {
  font-size: 16px !important;
}

.btn-primary {
  background-color: #0054C0;
}
.btn-primary:hover {
  background-color: #0054C0;
}

.btn-secondary {
  background-color: #FF3F00;
  border: none;
}
.btn-secondary:hover {
  background-color: #FF3F00;
}

.btn-teritary {
  background-color: #00C3FF;
  border: none;
}
.btn-teritary:hover {
  background-color: #00C3FF;
  color: white;
}

.btn-gray {
  background-color: #DEE2E6;
  border: none;
}
.btn-gray:hover {
  background-color: #DEE2E6;
}

.btn-lightblue {
  background-color: #00C3FF;
  color: #fff;
}
.btn-lightblue:hover {
  background-color: #00C3FF;
  color: #fff;
}
.btn-lightblue:focus {
  background-color: #00C3FF;
  color: #fff;
}

.btn-lg {
  padding: 14px 24px;
  height: 50px;
}

.btn-sm {
  padding: 8px 16px;
}

.btn-md {
  padding: 14px;
  height: 44px;
}

.btn-xsm {
  padding: 14px;
  height: 42px;
}

.btn-xl {
  padding: 14px 24px;
  height: 54px;
}

.viewMore-container {
  text-align: right;
}

.viewMore-btn {
  font-size: 14px;
  font-weight: 400;
  position: relative;
  z-index: 999;
  text-decoration: none;
  border-bottom: 1px solid #343A40;
}

.viewMore-btn--icon {
  font-size: 16px;
  font-weight: 400;
  position: relative;
  z-index: 999;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.viewMore-btn--icon .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.btn-outline {
  border: 1px solid #DEE2E6;
  padding: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  max-height: 44px;
  background-color: #fff;
}

.clear-btn {
  color: #FF3F00;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.form-control {
  border: 1px solid #e5e5e5;
  background: #FFF;
  color: #343A40;
  font-size: 16px;
}
.form-control::-moz-placeholder {
  color: #cacaca;
}
.form-control::placeholder {
  color: #cacaca;
}
.form-control:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid #e5e5e5;
}

.form-control-sm {
  height: 42px !important;
}

.form-control-md {
  height: 44px !important;
}

.form-control-xl {
  height: 48px !important;
}

.form-control-xxl {
  height: 52px !important;
}

.form-control-lg {
  border: 1px solid #e5e5e5;
  height: 52px !important;
  color: #fff;
  background-color: #212529 !important;
}
.form-control-lg::-moz-placeholder {
  color: #cacaca;
}
.form-control-lg::placeholder {
  color: #cacaca;
}
.form-control-lg:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid #e5e5e5;
}

.form-select {
  padding: 0.25rem 0.5rem;
}

.form-check-input:checked {
  background-color: #0054C0 !important;
}

.course-card {
  margin-bottom: 32px;
}
.course-card__imgWrapper {
  position: relative;
}
.course-card__imgWrapper--img {
  display: inline-block;
  height: 160px;
  margin-bottom: 8px;
  width: 100%;
}
.course-card__imgWrapper--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0;
     object-position: 0;
  border-radius: 6px;
}
.course-card__imgWrapper .course-card__duration {
  position: absolute;
  padding: 1px 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  background-color: #FF3F00;
  color: #fff;
  border-radius: 2px;
  top: 10px;
  right: 10px;
}
.course-card__upcommingClass {
  margin-top: 16px;
}
.course-card__upcommingClass p {
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 10px;
}
.course-card__upcommingClass-info--date {
  font-weight: 400;
  font-size: 12px;
  color: #343A40;
  margin-bottom: 4px;
  display: flex;
  gap: 4px;
}
.course-card__upcommingClass-info--date .date--icon {
  font-size: 13.5px;
}
.course-card__upcommingClass-info--time {
  font-weight: 400;
  font-size: 12px;
  color: #343A40;
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}
.course-card__upcommingClass-info--time .time--icon {
  font-size: 13.5px;
  margin-top: 1px;
}
.course-card__upcommingClass-moreClasses {
  color: #0054C0;
  font-size: 12px;
  font-weight: 600;
}
.course-card__title {
  text-decoration: none;
}

.successStudent-card {
  padding: 32px;
  box-shadow: 2px 2px 6px 4px rgba(0, 0, 0, 0.04);
  background-color: #fff;
  text-align: center;
  margin-bottom: 32px;
}
.successStudent-card__studentPhoto {
  width: 70px;
  height: 70px;
  margin: 0 auto 10px;
}
.successStudent-card__studentPhoto img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.successStudent-card__studentName {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.successStudent-card__courseName {
  font-size: 14px;
  font-weight: 400;
  color: #343A40;
  margin-bottom: 2px;
}
.successStudent-card__companyName {
  font-size: 14px;
  font-weight: 500;
  color: #0054C0;
  margin-bottom: 4px;
}
.successStudent-card__collegeInfo h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.successStudent-card__collegeInfo span {
  font-size: 12px;
  font-weight: 400;
  color: #6C757D;
}

.faq_tab {
  border-bottom: 1px solid #e9ebef;
  background-color: #fff;
  margin-bottom: 16px;
}
.faq_tab.sticky-background {
  position: sticky;
  top: -1px;
  z-index: 999;
  transition: all 0.5s ease-out;
  width: 100%;
  left: 0;
  transform: translateY(0);
  box-shadow: 0 0 10px 0 rgba(7, 2, 36, 0.1);
}
.faq_tab .tab_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}
.faq_tab .tab_container .title {
  font-size: 16px;
  color: #343A40;
  font-weight: 600;
  text-transform: uppercase;
}
.faq_tab .tab_container .icon-wrapper {
  width: 20px;
  height: 20px;
  font-size: 20px;
  color: #343A40;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq_tab .tabdropdown {
  display: none;
}
.faq_tab .tabdropdown.show-dropdown {
  display: block;
}
.faq_tab .tabdropdown ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.faq_tab .tabdropdown ul li {
  padding-bottom: 14px;
}
.faq_tab .tabdropdown ul li .nav-link {
  font-size: 15px;
  color: #495057;
  font-weight: 500;
}
.faq_tab .tabdropdown ul li .nav-link.active {
  color: #0054C0;
  font-weight: 600;
}

.studentTestimonial-section__slider {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 0px 44px 0px rgba(20, 40, 103, 0.19);
}
.studentTestimonial-section__slider-card__icon {
  font-family: "Libre Baskerville", serif;
  font-size: 130px;
  font-weight: 700;
  color: #fff;
  height: 54px;
  width: 59px;
  line-height: 138px;
  -webkit-text-stroke: 2px #00C3FF;
}
.studentTestimonial-section__slider-card__content {
  padding: 14px 0 0 24px;
}
.studentTestimonial-section__slider-card__content-description {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 24px;
}
.studentTestimonial-section__slider-card__content-studentDetails {
  display: flex;
  gap: 12px;
}
.studentTestimonial-section__slider-card__content-studentDetails--image {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.studentTestimonial-section__slider-card__content-studentDetails--image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.studentTestimonial-section__slider-card__content-studentDetails--personalInfo-name {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 25.6px;
  margin-bottom: 4px;
}
.studentTestimonial-section__slider-card__content-studentDetails--personalInfo-coursename {
  margin-bottom: 6px;
}
.studentTestimonial-section__slider .slick-dots {
  bottom: -52px !important;
  text-align: left !important;
  left: 0;
}
.studentTestimonial-section__slider .slick-next {
  display: none !important;
}
.studentTestimonial-section__slider .slick-prev {
  display: none !important;
}

.slick-dots li {
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
}
.slick-dots li.slick-active button {
  background-color: #0054C0 !important;
  width: 34px !important;
  border-radius: 10px !important;
}
.slick-dots li button {
  width: 12px;
  height: 12px;
  background-color: #DEE2E6;
  border-radius: 50%;
  margin-right: 4px;
  padding: 0;
}
.slick-dots li button::before {
  display: none;
}

.studentTestimonial-video__slider .plyr--stopped.plyr__poster-enabled .plyr__poster {
  background-size: cover;
}
.studentTestimonial-video__slider #video-container {
  position: relative;
}
.studentTestimonial-video__slider .plyr--video .plyr__controls {
  z-index: 2;
}
.studentTestimonial-video__slider .plyr {
  border-radius: 16px;
  background-color: #fff !important;
}
.studentTestimonial-video__slider .video-box {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.studentTestimonial-video__slider .slick-dots {
  bottom: -50px !important;
  text-align: left !important;
  left: 0;
}
.studentTestimonial-video__slider .slick-next {
  display: none !important;
}
.studentTestimonial-video__slider .slick-prev {
  display: none !important;
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

/* Hide full controls initially */
.plyr--video .plyr__controls {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 1;
}

/* Show full controls on hover */
.plyr--video:hover .plyr__controls {
  opacity: 1;
  pointer-events: auto;
}

.selectFilterOption--title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}
.selectFilterOption--tag {
  padding: 8px;
  background-color: rgba(0, 195, 255, 0.09);
  font-size: 12px;
  font-weight: 400;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.selectFilterOption--tag .cross-icon {
  font-size: 12px;
  color: rgba(108, 117, 125, 0.6);
  cursor: pointer;
}

.filterClear-btn {
  color: #FF3F00;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.8;
  margin: 0;
  text-decoration: none;
}

.filter-section__contents {
  margin-top: 20px;
  gap: 30px;
  display: flex;
}
.filter-section__contents.show-filter .filter-section__contents--option {
  display: none;
  width: 200px;
}
.filter-section__contents.show-filter .filter-section__contents--coursecards {
  flex-grow: 1;
}
.filter-section__contents.show-filter .filter-section__contents--coursecards .course-card {
  flex: 0 0 calc(25% - 20px);
}
.filter-section__contents.show-filter .filter-section__contents--successStoriesCards {
  flex-grow: 1;
}
.filter-section__contents.show-filter .filter-section__contents--successStoriesCards .successStudent-card {
  flex: 0 0 calc(25% - 20px);
}
.filter-section__contents--option {
  width: 300px;
  display: block;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.filter-section__contents--option_form {
  padding: 16px 0;
  position: relative;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.filter-section__contents--option_form .icon {
  position: absolute;
  right: 12px;
  top: 26px;
  background-color: transparent;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.filter-section__contents--option_form .icon--search {
  font-size: 20px;
  color: #6C757D;
}
.filter-section__contents--option_form .icon .cross-icon {
  font-size: 21px;
  color: #6C757D;
  cursor: pointer;
}
.filter-section__contents--option_items {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 16px;
}
.filter-section__contents--option_items--title {
  padding: 16px 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
}
.filter-section__contents--option_items--list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.filter-section__contents--option_items--list li {
  padding-bottom: 8px;
}
.filter-section__contents--option_items--list li:nth-child(n+9) {
  display: none;
}
.filter-section__contents--option_items--list li .form-check-input {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid #e5e5e5;
}
.filter-section__contents--option_items--list li .form-check-input:focus {
  box-shadow: none;
  border: 1px solid #e5e5e5;
}
.filter-section__contents--option_items--list li .form-check-label {
  font-size: 16px;
  font-weight: 400;
  color: #343A40;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.filter-section__contents--option_items #showMore {
  border: 0;
  background-color: white;
  padding-top: 16px;
  font-size: 14px;
  font-weight: 400;
}
.filter-section__contents--option_secondoption {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 16px;
}
.filter-section__contents--option_secondoption--title {
  padding: 16px 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
}
.filter-section__contents--option_secondoption--list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.filter-section__contents--option_secondoption--list li {
  padding-bottom: 8px;
}
.filter-section__contents--option_secondoption--list li .form-check-input {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid #e5e5e5;
}
.filter-section__contents--option_secondoption--list li .form-check-input:focus {
  box-shadow: none;
  border: 1px solid #e5e5e5;
}
.filter-section__contents--option_secondoption--list li .form-check-label {
  font-size: 16px;
  font-weight: 400;
  color: #343A40;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.filter-section__contents--option_thirdoption {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 16px;
}
.filter-section__contents--option_thirdoption--title {
  padding: 16px 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
}
.filter-section__contents--option_thirdoption--list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.filter-section__contents--option_thirdoption--list li {
  padding-bottom: 8px;
}
.filter-section__contents--option_thirdoption--list li .form-check-input {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid #e5e5e5;
}
.filter-section__contents--option_thirdoption--list li .form-check-input:focus {
  box-shadow: none;
  border: 1px solid #e5e5e5;
}
.filter-section__contents--option_thirdoption--list li .form-check-label {
  font-size: 16px;
  font-weight: 400;
  color: #343A40;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.filter-section__contents--coursecards {
  display: flex;
  flex-grow: 1;
  transition: all 0.3s ease;
  gap: 0 20px;
  width: 100%;
  flex-wrap: wrap;
  align-self: flex-start;
}
.filter-section__contents--coursecards .course-card {
  flex: 0 0 calc(33.33% - 20px);
}
@media (max-width: 992px) {
  .filter-section__contents--coursecards .course-card {
    flex: 0 0 calc(50% - 20px);
  }
}
.filter-section__contents--successStoriesCards {
  display: flex;
  flex-grow: 1;
  transition: all 0.3s ease;
  gap: 0 20px;
  width: 100%;
  flex-wrap: wrap;
  align-self: flex-start;
}
.filter-section__contents--successStoriesCards .successStudent-card {
  flex: 0 0 calc(33.33% - 20px);
}
@media (max-width: 992px) {
  .filter-section__contents--successStoriesCards .successStudent-card {
    flex: 0 0 calc(50% - 20px);
  }
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.search-offcanvas {
  width: 100% !important;
  border-left: 0 !important;
  padding: 20px 16px 16px 16px !important;
}
.search-offcanvas .offcanvas-headers {
  text-align: center;
  position: relative;
  margin-bottom: 32px;
}
.search-offcanvas .offcanvas-headers .btn-closes {
  border: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #343a40;
  background-color: white;
}
.search-offcanvas .offcanvas-headers .offcanvas-title {
  font-size: 14px;
  color: #343a40;
  font-weight: 600;
  margin-bottom: 0;
}
.search-offcanvas .offcanvas-body {
  padding: 0;
}
.search-offcanvas .offcanvas-body::-webkit-scrollbar {
  width: 0px;
}
.search-offcanvas .offcanvas-body .searchBox-section {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.search-offcanvas .offcanvas-body .searchBox-section .search-box-wrapper {
  position: relative;
  flex-grow: 1;
}
.search-offcanvas .offcanvas-body .searchBox-section .search-box-wrapper .icon {
  position: absolute;
  right: 12px;
  top: 12px;
  background: white;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6c757d;
}
.search-offcanvas .offcanvas-body .searchBox-section .search-box-wrapper .icon .icon--search {
  font-size: 20px;
  color: #6c757d;
}
.search-offcanvas .offcanvas-body .searchBox-section .cancel-btn {
  color: #dadee6;
  font-size: 14px;
  font-weight: 500;
  border: 0;
  background: white;
}
.search-offcanvas .offcanvas-body .popular_search-wrapper .title-wrapper {
  color: #090d12;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 16px;
}
.search-offcanvas .offcanvas-body .popular_search-wrapper .popular_search-list {
  padding: 0;
  margin: 0;
}
.search-offcanvas .offcanvas-body .popular_search-wrapper .popular_search-list .list-items {
  display: flex;
  align-items: center;
  padding: 12px 0;
  gap: 16px;
  color: #505356;
  font-size: 14px;
}
.search-offcanvas .offcanvas-body .popular_search-wrapper .popular_search-list .list-items .icon-wrapper {
  color: #338bff;
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.search-offcanvas-suggestions {
  margin: 0;
  padding: 0;
  list-style: none;
}
.search-offcanvas-suggestions li {
  border: none !important;
  font-weight: 600;
  font-size: 15px !important;
  padding: 8px 0px !important;
  background-color: #fff;
  cursor: pointer;
}
.search-offcanvas-suggestions li:last-child {
  padding: 8px 0 0 0 !important;
}
.search-offcanvas-suggestions li a {
  font-size: 14px;
  color: #212529;
  background-color: #fff;
  cursor: pointer;
  text-decoration: none;
  font-weight: 400;
}

.breadcrumbWrapper {
  padding: 10px 0;
}
.breadcrumbWrapper nav ol {
  margin-bottom: 0;
}
.breadcrumbWrapper nav ol .breadcrumb-item {
  font-size: 12px;
  font-weight: 400;
  text-transform: capitalize;
}
.breadcrumbWrapper nav ol .breadcrumb-item:first-child::before {
  display: none;
}
.breadcrumbWrapper nav ol .breadcrumb-item::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff !important;
  font-size: 11px;
}
.breadcrumbWrapper nav ol .breadcrumb-item a {
  color: #E9ECEF;
  text-decoration: none;
}
.breadcrumbWrapper nav ol .breadcrumb-item.active {
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
}
.breadcrumbWrapper nav ol .breadcrumb-item.active::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff !important;
  font-size: 11px;
}

header {
  background-color: #fff;
}
header .top-header-sm {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 16px 0;
}
@media (max-width: 768px) {
  header .top-header-sm {
    display: block;
  }
}
header .top-header-sm__left__logo {
  width: auto;
  height: 60px;
  display: inline-block;
}
header .top-header-sm__left__logo img {
  width: auto;
  height: 100%;
}
header .top-header-sm__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
header .top-header-sm__right__search {
  font-size: 24px;
  color: #343A40;
}
header .top-header-sm__right .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  font-size: 24px;
  height: 24px;
  color: #343a40;
  text-decoration: none;
}
header .top-header-sm__right .menu-toggle .menu-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  color: #343a40;
  font-weight: 700;
}
header .top-header-sm__right .menu-toggle .menu-bar .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: #343a40;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-header {
  background-color: #fff;
  justify-content: flex-end;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-header .btn-closes {
  color: #343a40;
  background-color: transparent;
  border: 0;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-header .btn-closes .close-icon {
  width: 22px;
  height: 22px;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #343a40;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body {
  padding: 16px 24px;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .menu-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .menu-list li .menu-list-item {
  color: #343a40;
  text-decoration: none;
  padding: 0 10px 12px 0;
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 400;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .menu-list li .menu-list-item.has-menu::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  font-size: 13px;
  line-height: 1;
  color: #495057;
  position: absolute;
  right: 0;
  top: 6px;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .menu-list li .submenu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1;
  padding: 0;
  margin: 0;
  list-style: none;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .menu-list li .submenu.active {
  display: block;
  background-color: white;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .menu-list li .submenu li {
  padding: 0px 24px 16px 24px;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .menu-list li .submenu li .submenu-item {
  font-size: 16px;
  text-decoration: none;
  color: #343a40;
  font-weight: 400;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .menu-list li .submenu .submenu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background-color: #fff;
  margin-bottom: 10px;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .menu-list li .submenu .submenu-header .btn-closes {
  width: 22px;
  height: 22px;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #343a40;
  background-color: white;
  border: none !important;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .menu-list li .submenu .back-wrapper .back-btn {
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: #343a40;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border: none !important;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-footer {
  padding: 16px 24px;
  border-top: 1px solid #DEE2E6;
}

.offer_top-bar-sm {
  background: #c0dbff;
  padding: 10px 0;
}
.offer_top-bar-sm .offer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.offer_top-bar-sm .offer-content .offer-date {
  font-size: 16px;
  font-weight: 600;
  color: #212529;
  text-transform: uppercase;
}
.offer_top-bar-sm .offer-content .offer_text-content {
  font-size: 16px;
  font-weight: 700;
  color: #212529;
  text-align: center;
}
.offer_top-bar-sm .offer-content .offer_text-content p {
  margin-bottom: 0;
}
.offer_top-bar-sm .offer-content .get-deal-btn {
  color: #0054C0;
  font-size: 16px;
  font-weight: 700;
}

@property --color-A {
  syntax: "<color>";
  initial-value: #FF6A00; /* Initial Color A */
  inherits: false;
}
@property --color-B {
  syntax: "<color>";
  initial-value: #EE0979; /* Initial Color B */
  inherits: false;
}
@property --color-C {
  syntax: "<color>";
  initial-value: #6A00F4; /* Initial Color C */
  inherits: false;
}
.offer_top-bar {
  background-image: linear-gradient(to right, var(--color-A), var(--color-B), var(--color-C));
  animation: smoothColorCycle 9s infinite linear;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease-in;
}
.offer_top-bar.sticky {
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: -1px;
  transform: translateY(0);
  animation: headerslideDown 0.3s ease-out forwards;
}
.offer_top-bar .offer_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.offer_top-bar .offer_content .offer_text-content .text-sm {
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}
.offer_top-bar .offer_content .offer_text-content .text-bold {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}
.offer_top-bar .offer_content .get-deal-btn {
  display: flex;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  box-shadow: 0px 0px 5px 1px rgba(255, 255, 255, 0.2);
}

@keyframes smoothColorCycle {
  0%, 100% { /* State 1: A, B, C */
    --color-A: #FF6A00; /* Reddish-Pink */
    --color-B: #EE0979; /* Teal */
    --color-C: #6A00F4; /* Blue */
  }
  33.33% { /* State 2: B, C, A */
    --color-A: #EE0979; /* Teal */
    --color-B: #6A00F4; /* Blue */
    --color-C: #FF6A00; /* Reddish-Pink */
  }
  66.66% { /* State 3: C, A, B */
    --color-A: #6A00F4; /* Blue */
    --color-B: #FF6A00; /* Reddish-Pink */
    --color-C: #EE0979; /* Teal */
  }
}
@keyframes animatedGradient {
  0%, 100% {
    --color-A: #FF6A00;
    --color-B: #EE0979;
    --color-C: #6A00F4;
  }
  33.33% {
    --color-A: #EE0979;
    --color-B: #6A00F4;
    --color-C: #FF6A00;
  }
  66.66% {
    --color-A: #6A00F4;
    --color-B: #FF6A00;
    --color-C: #EE0979;
  }
}
@keyframes headerslideDown {
  0% {
    top: -200px;
  }
  100% {
    top: -1px;
  }
}
footer .footer-section__company-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
footer .footer-section__company--links {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-section__company--links li {
  margin-bottom: 12px;
}
footer .footer-section__company--links li:last-child {
  margin-bottom: 0;
}
footer .footer-section__company--links li a {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  text-transform: capitalize;
}
footer .footer-section__forStudents {
  margin-bottom: 24px;
}
footer .footer-section__forStudents-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
footer .footer-section__forStudents--links {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-section__forStudents--links li {
  margin-bottom: 12px;
}
footer .footer-section__forStudents--links li:last-child {
  margin-bottom: 0;
}
footer .footer-section__forStudents--links li a {
  text-transform: capitalize;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
}
footer .footer-section__forCorporates-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
footer .footer-section__forCorporates--links {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-section__forCorporates--links li {
  margin-bottom: 12px;
}
footer .footer-section__forCorporates--links li:last-child {
  margin-bottom: 0;
}
footer .footer-section__forCorporates--links li a {
  text-transform: capitalize;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
}
footer .footer-section__Info {
  margin-bottom: 24px;
}
footer .footer-section__Info-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
footer .footer-section__Info--links {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-section__Info--links li {
  margin-bottom: 12px;
}
footer .footer-section__Info--links li:last-child {
  margin-bottom: 0;
}
footer .footer-section__Info--links li a {
  text-transform: capitalize;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
}
footer .footer-section__newsletterSignup-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
footer .footer-section__newsletterSignup--form {
  position: relative;
}
footer .footer-section__newsletterSignup--form .form-control-lg {
  font-size: 16px;
  width: 100%;
}
footer .footer-section__newsletterSignup--form .send-btn {
  background-color: #0054C0;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  position: absolute;
  top: 9px;
  right: 9px;
}
footer .footer-section__newsletterSignup--form .send-btn .arrow-icon {
  color: white;
  font-size: 20px;
}
footer .footer-section__Contact {
  margin-bottom: 22px;
}
footer .footer-section__Contact-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
footer .footer-section__Contact-address {
  margin-bottom: 12px;
}
footer .footer-section__Contact-address strong {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
footer .footer-section__Contact-address--location {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}
footer .footer-section__Contact-number {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
footer .footer-section__Contact-number--icon {
  margin-top: 4px;
}
footer .footer-section__Contact-number--icon .telephone {
  color: #fff;
  font-size: 18px;
}
footer .footer-section__Contact-number--mobile {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
}
footer .footer-section__Contact-number--mobile li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
footer .footer-section__Contact-mail {
  display: flex;
  gap: 8px;
}
footer .footer-section__Contact-mail--icon {
  margin-top: 5px;
}
footer .footer-section__Contact-mail--icon .mail {
  color: #fff;
  font-size: 18px;
}
footer .footer-section__Contact-mail--list {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-section__Contact-mail--list li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
footer .footer-section__payment-option-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
footer .footer-section__payment-option--list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-section__payment-option--list li a img {
  background-color: #fff;
  padding: 4px 8px;
  height: 36px;
  border-radius: 3px;
  width: auto;
}
footer .footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(229, 229, 229, 0.2705882353);
}
footer .footer-bottom__copyright {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}
footer .footer-bottom__socialIcons {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
footer .footer-bottom__socialIcons li a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 36px;
  background-color: #fff;
  overflow: hidden;
}
footer .footer-bottom__socialIcons li a .facebook {
  font-size: 44px;
  color: #4267b2;
}
footer .footer-bottom__socialIcons li a .twitter {
  color: #1da1f2;
  font-size: 40px;
}
footer .footer-bottom__socialIcons li a .instagram {
  color: #c13584;
  font-size: 40px;
}
footer .footer-bottom__socialIcons li a .linkedin {
  color: #0077b5;
  font-size: 40px;
}
footer .footer-bottom__socialIcons li a.youtube-icon {
  background-color: #ff0000;
}
footer .footer-bottom__socialIcons li a.youtube-icon .youtube {
  color: #fff;
  font-size: 22px;
}
footer .footer-bottom__socialIcons li a.viber-icon {
  background-color: #59267c;
}
footer .footer-bottom__socialIcons li a.viber-icon .viber {
  color: #fff;
  font-size: 22px;
}
footer .footer-bottom__socialIcons li a.tiktok-icon {
  background: #ee1d51;
}
footer .footer-bottom__socialIcons li a.tiktok-icon .tiktok {
  color: #fff;
  font-size: 24px;
}

.menu-bottom {
  background-color: #0054C0;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 999;
  display: none;
  display: block;
  box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.07);
}
.menu-bottom .container {
  padding-left: 40px;
  padding-right: 40px;
}
.menu-bottom ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-bottom ul li a {
  text-align: center;
  text-decoration: none;
  padding: 18px 0;
  display: inline-block;
  color: #fff;
  opacity: 0.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.menu-bottom ul li a.active {
  color: #fff;
  border-bottom: 3px solid #fff;
  opacity: 1;
}
.menu-bottom ul li a.active .menu-list {
  font-weight: 700;
}
.menu-bottom ul li a .menu-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-bottom ul li a .menu-icon iconify-icon {
  font-size: 16px;
}
.menu-bottom ul li a .menu-list {
  font-size: 14px;
  font-weight: 600;
}
.menu-bottom .offcanvas {
  background-color: #212529;
  padding: 32px 16px;
}
@media (max-width: 576px) {
  .menu-bottom .offcanvas {
    width: 80%;
  }
}
.menu-bottom .offcanvas .btn-close-icon {
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -46px;
  top: 18px;
  background-color: #212529;
  border-radius: 50%;
  padding: 10px;
  opacity: 1 !important;
  background-image: none !important;
  font-size: 20px;
  color: #fff;
}
.menu-bottom .offcanvas .btn-close-icon:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.menu-bottom .offcanvas-body .filter-section__contents--option_form {
  border-top: 0;
  border-bottom: 0;
  padding: 0;
  margin-bottom: 24px;
  position: sticky;
  top: 0;
  background-color: #212529;
  z-index: 1;
}
.menu-bottom .offcanvas-body .filter-section__contents--option_form .icon {
  top: 12px;
}
.menu-bottom .offcanvas-body .menu-list {
  margin-bottom: 24px;
}
.menu-bottom .offcanvas-body .menu-list__title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.menu-bottom .offcanvas-body .menu-list__items {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.menu-bottom .offcanvas-body .menu-list__items li a {
  padding: 8px 0;
  font-size: 16px;
  font-weight: 300;
  opacity: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.menu-bottom .offcanvas-body .menu-list__items li a .badge {
  font-size: 10px;
  color: #fff;
  padding: 4px 8px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
  line-height: 1.5;
  background: linear-gradient(to right, #F44900, #E69900);
}
.menu-bottom .offcanvas-body .menu-list .newsletter-wrapper {
  position: relative;
}
.menu-bottom .offcanvas-body .menu-list .newsletter-wrapper .form-control-lg {
  width: 100%;
  font-size: 16px;
}
.menu-bottom .offcanvas-body .menu-list .newsletter-wrapper .send-btn {
  border: none;
  background-color: #0054c0;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  position: absolute;
  top: 9px;
  right: 9px;
  color: white;
}
.menu-bottom .offcanvas-body .menu-list.contact_wrapper strong {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.menu-bottom .offcanvas-body .menu-list .payment-option--wrapper .payment-option-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.menu-bottom .offcanvas-body .menu-list .payment-option--wrapper .payment-option--list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: flex-start;
}
.menu-bottom .offcanvas-body .menu-list .payment-option--wrapper .payment-option--list li a {
  padding: 0 !important;
  opacity: 1 !important;
}
.menu-bottom .offcanvas-body .menu-list .payment-option--wrapper .payment-option--list li a img {
  background-color: #fff;
  padding: 4px 8px;
  height: 36px;
  border-radius: 3px;
  width: auto;
}
.menu-bottom .offcanvas-body .content--wrapper {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.menu-bottom .offcanvas-body .content--wrapper .icon-wrapper {
  color: #fff;
  font-size: 18px;
  margin-top: 4px;
}
.menu-bottom .offcanvas-body .content--wrapper .menu-list__items--wrapper {
  display: block;
  color: #fff;
  font-weight: 300;
}
.menu-bottom .offcanvas-body .content--wrapper .menu-list__items--wrapper li a {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  padding: 0 !important;
  opacity: 1 !important;
  line-height: 1.6;
}
.menu-bottom .offcanvas-body .footer-bottom {
  padding: 30px 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.menu-bottom .offcanvas-body .footer-bottom__copyright {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: start;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons li a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 36px;
  background-color: #fff;
  overflow: hidden;
  opacity: 1 !important;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons li a .facebook {
  font-size: 44px;
  color: #4267b2;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons li a .twitter {
  color: #1da1f2;
  font-size: 40px;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons li a .instagram {
  color: #c13584;
  font-size: 40px;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons li a .linkedin {
  color: #0077b5;
  font-size: 40px;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons li a.youtube-icon {
  background-color: #ff0000;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons li a.youtube-icon .youtube {
  color: #fff;
  font-size: 22px;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons li a.viber-icon {
  background-color: #59267c;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons li a.viber-icon .viber {
  color: #fff;
  font-size: 22px;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons li a.tiktok-icon {
  background: #ee1d51;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons li a.tiktok-icon .tiktok {
  color: #fff;
  font-size: 24px;
}

.allcourse-section__subheading {
  margin-bottom: 32px;
}
.allcourse-section .featuredCourse-section {
  margin-bottom: 32px;
}
.allcourse-section .featuredCourse-section__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.allcourse-section .featuredCourse-section__slider .slick-dots {
  display: none !important;
}
.allcourse-section .featuredCourse-section__card {
  padding: 16px;
  display: flex;
  gap: 16px;
  margin-right: 20px;
}
.allcourse-section .featuredCourse-section__card-imgwrapper--img {
  position: relative;
  height: 140px;
  aspect-ratio: 3/2;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .allcourse-section .featuredCourse-section__card-imgwrapper--img {
    height: 100px;
  }
}
@media (max-width: 576px) {
  .allcourse-section .featuredCourse-section__card-imgwrapper--img {
    height: 64px;
    width: 64px;
  }
}
.allcourse-section .featuredCourse-section__card-imgwrapper--img a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.allcourse-section .featuredCourse-section__card-imgwrapper--img .featuredCourse-section__card--durationTag {
  position: absolute;
  background-color: #FF3F00;
  width: 70px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  bottom: 6px;
  right: 6px;
}
.allcourse-section .featuredCourse-section__card-content {
  width: 100%;
}
.allcourse-section .featuredCourse-section__card-content__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  text-decoration: none;
  display: inline-block;
}
@media (max-width: 768px) {
  .allcourse-section .featuredCourse-section__card-content__title {
    margin-bottom: 6px;
  }
}
@media (max-width: 576px) {
  .allcourse-section .featuredCourse-section__card-content__title {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .allcourse-section .featuredCourse-section__card-content__upcommingclasses {
    display: none;
  }
}
.allcourse-section .featuredCourse-section__card-content__upcommingclasses p {
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 10px;
}
.allcourse-section .featuredCourse-section__card-content__upcommingclasses__time .time-wrapper {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.allcourse-section .featuredCourse-section__card-content__upcommingclasses__time .time-wrapper-box {
  display: flex;
  gap: 20px;
}
.allcourse-section .featuredCourse-section__card-content__upcommingclasses__time .time-wrapper-box .time-slot .date {
  font-weight: 400;
  font-size: 12px;
  color: #F8F9FA;
  margin-bottom: 4px;
  display: flex;
  gap: 4px;
}
.allcourse-section .featuredCourse-section__card-content__upcommingclasses__time .time-wrapper-box .time-slot .date .date--icon {
  font-size: 13.5px;
}
.allcourse-section .featuredCourse-section__card-content__upcommingclasses__time .time-wrapper-box .time-slot .time {
  font-weight: 400;
  font-size: 12px;
  color: #F8F9FA;
  display: flex;
  gap: 4px;
}
.allcourse-section .featuredCourse-section__card-content__upcommingclasses__time .time-wrapper-box .time-slot .time .time--icon {
  font-size: 13.5px;
  margin-top: 1px;
}
.allcourse-section .featuredCourse-section__card-content__upcommingclasses__time .time-wrapper .moreUpcommingClass--icon .dot--icon {
  color: #F8F9FA;
  font-size: 18px;
}
.allcourse-section .featuredCourse-section__card-content .featuredCourse-section__card--durationTag {
  background-color: #FF3F00;
  width: 70px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
.allcourse-section .popularTopics-section {
  margin-bottom: 32px;
}
.allcourse-section .popularTopics-section__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.allcourse-section .popularTopics-section .popularTopics-section__tagList {
  list-style: none;
  margin: 0 0 36px 0;
  padding: 0;
}
.allcourse-section .popularTopics-section .popularTopics-section__tagList a {
  display: flex;
  padding: 8px 14px;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  text-decoration: none;
  color: rgba(0, 84, 192, 0.8);
  background-color: rgba(0, 84, 192, 0.11);
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  margin-right: 12px;
}

.course-sm {
  padding: 20px 0 80px 0;
  overflow-x: hidden;
}
.course-sm .header-section {
  text-align: center;
  position: relative;
  margin-bottom: 32px;
}
.course-sm .header-section .title {
  font-size: 14px;
  color: #343A40;
  font-weight: 600;
  margin-bottom: 0;
}
.course-sm .header-section .back-btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #343A40;
}
.course-sm .filtersection-sm {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.course-sm .filtersection-sm .filter-section__contents--option_form {
  padding: 0 !important;
  border: 0;
  width: 100%;
}
.course-sm .filtersection-sm .filter-section__contents--option_form .icon {
  top: 12px !important;
}
@media (max-width: 576px) {
  .course-sm .offcanvas {
    width: 80%;
  }
}
.course-sm .offcanvas .btn-close {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -46px;
  top: 18px;
  background-color: white;
  border-radius: 50%;
  padding: 10px;
  opacity: 1 !important;
  background-image: none !important;
}
.course-sm .offcanvas .btn-close:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.course-sm .offcanvas .btn-close iconify-icon {
  font-size: 20px;
}
.course-sm .offcanvas-body .filter-section__contents--option {
  width: 100%;
}
.course-sm .offcanvas-body .filter-section__contents--option_items {
  padding-bottom: 0;
}
.course-sm .offcanvas-body .filter-section__contents--option_items #showMore {
  padding-top: 0;
  padding-bottom: 10px !important;
}
.course-sm .offcanvas-body .filter-section__contents--option_items:first-child .filter-section__contents--option_items--title {
  padding-top: 0;
}
.course-sm .offcanvas-body .filter-section__contents--option_items .title-wrapper {
  cursor: pointer;
}
.course-sm .offcanvas-body .filter-section__contents--option_items .title-wrapper .icon iconify-icon {
  font-size: 20px;
}
.course-sm .offcanvas-body .filter-section__contents--option_items--list:last-child {
  padding-bottom: 16px;
}
.course-sm .coursecard-sm {
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #DEE2E6;
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .course-sm .coursecard-sm {
    padding: 16px;
  }
}
.course-sm .coursecard-sm .imagebox {
  height: 100px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .course-sm .coursecard-sm .imagebox {
    height: 70px;
    width: 120px;
    overflow: hidden;
  }
}
.course-sm .coursecard-sm .imagebox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.course-sm .coursecard-sm .course-details .course-name {
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #212529;
  margin-bottom: 6px;
  display: inline-block;
}
@media (max-width: 576px) {
  .course-sm .coursecard-sm .course-details .course-name {
    font-size: 16px;
  }
}
.course-sm .coursecard-sm .course-details .course-duration {
  background-color: #ff3f00;
  padding: 2px 4px;
  width: auto !important;
  height: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  border-radius: 4px;
  font-weight: 400;
  color: #fff;
}
.course-sm .coursecard-sm .course-details .totalupcommingclass {
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  color: #0054C0;
}

.coursedetail-section--sm {
  overflow-x: hidden;
}
.coursedetail-section--sm .image-wrapper {
  position: relative;
  padding: 86px 0;
}
.coursedetail-section--sm .image-wrapper .image-box {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.coursedetail-section--sm .image-wrapper .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.coursedetail-section--sm .image-wrapper .top-buttons {
  padding: 10px;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 999;
}
.coursedetail-section--sm .image-wrapper .top-buttons .course-name {
  color: #343A40;
  font-size: 14px;
  font-weight: 600;
  display: none;
}
.coursedetail-section--sm .image-wrapper .top-buttons.sticky-background {
  background-color: white;
}
.coursedetail-section--sm .image-wrapper .top-buttons.sticky-background .course-name {
  display: block;
}
.coursedetail-section--sm .image-wrapper .top-buttons .back-btn {
  background-color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.coursedetail-section--sm .image-wrapper .top-buttons .back-btn iconify-icon {
  color: #343A40;
  font-size: 22px;
}
.coursedetail-section--sm .image-wrapper .top-buttons .share-btn {
  background-color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.coursedetail-section--sm .image-wrapper .top-buttons .share-btn iconify-icon {
  color: #343A40;
  font-size: 20px;
}
.coursedetail-section--sm .image-wrapper .top-buttons .share-btn::after {
  display: none;
}
.coursedetail-section--sm .image-wrapper .top-buttons .share-dropdown {
  padding: 14px 10px;
  list-style: none;
  margin-bottom: 0;
}
.coursedetail-section--sm .image-wrapper .top-buttons .share-dropdown li {
  margin-bottom: 10px;
}
.coursedetail-section--sm .image-wrapper .top-buttons .share-dropdown li:last-child {
  margin-bottom: 0;
}
.coursedetail-section--sm .image-wrapper .top-buttons .share-dropdown li .dropdown-items {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #495057;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
}
.coursedetail-section--sm .image-wrapper .top-buttons .share-dropdown li .dropdown-items .icon-wrapper {
  font-size: 18px;
}
.coursedetail-section--sm .image-wrapper .courseBanner-contents {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 42px 20px;
  text-align: center;
}
.coursedetail-section--sm .image-wrapper .course-preview-btn {
  border: none;
  text-decoration: none;
  padding: 8px 16px;
  display: inline-flex;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
}
.coursedetail-section--sm .image-wrapper .course-preview-btn .play-btn {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.coursedetail-section--sm .image-wrapper .course-preview-btn .play-btn iconify-icon {
  color: #343A40;
  font-size: 20px;
}
.coursedetail-section--sm .courseDetails-wrapper {
  padding: 30px 0;
  background-color: #fff;
  border-radius: 30px 30px 0 0;
  margin-top: -30px;
  position: relative;
  padding-bottom: 80px;
}
.coursedetail-section--sm .courseDetails-wrapper .ai-integration_tag {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(124deg, #FFCB47 0%, #FE7442 100%);
  padding: 2px 6px;
  border-radius: 50px;
  justify-content: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: #802806;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.coursedetail-section--sm .courseDetails-wrapper .ai-integration_tag .icon-wrapper {
  width: 18px;
  height: 18px;
  font-size: 18px;
  color: #802806;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coursedetail-section--sm .courseDetails-wrapper .course-title {
  color: #212529;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
}
.coursedetail-section--sm .courseDetails-wrapper .course-developer {
  display: flex;
  gap: 8px;
  color: #495057;
  align-items: center;
  margin-bottom: 26px;
  font-weight: 600;
  font-size: 14px;
}
.coursedetail-section--sm .courseDetails-wrapper .course-developer iconify-icon {
  font-size: 14px;
}
.coursedetail-section--sm .courseDetails-wrapper .coursedetails_tab.active .course_menu_tab {
  position: fixed;
  top: 75px;
  width: 100%;
  left: 0;
  padding: 0 12px;
  background: white;
  z-index: 3;
}
.coursedetail-section--sm .courseDetails-wrapper .coursedetails_tab .course_menu_tab {
  border-bottom: 1px solid #E9ECEF;
  margin-bottom: 34px;
  background-color: white;
}
@media (max-width: 576px) {
  .coursedetail-section--sm .courseDetails-wrapper .coursedetails_tab .course_menu_tab {
    justify-content: space-between;
  }
}
.coursedetail-section--sm .courseDetails-wrapper .coursedetails_tab .course_menu_tab li .nav-link {
  border-radius: 0 !important;
  position: relative;
  font-size: 16px;
  color: #495057;
  font-weight: 500;
  padding: 12px;
}
.coursedetail-section--sm .courseDetails-wrapper .coursedetails_tab .course_menu_tab li .nav-link.active {
  background-color: white;
  color: #0054C0;
}
.coursedetail-section--sm .courseDetails-wrapper .coursedetails_tab .course_menu_tab li .nav-link.active::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #0054C0;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
.coursedetail-section--sm .menu-btn {
  border-top: 1px solid #dee2e6;
  position: fixed;
  bottom: 0;
  background-color: #fff;
  padding: 20px 0;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  z-index: 99;
}
.coursedetail-section--sm .menu-btn .course-duration-wrapper {
  display: flex;
  gap: 10px;
}
.coursedetail-section--sm .menu-btn .course-duration-wrapper iconify-icon {
  font-size: 30px;
  color: #495057;
}
.coursedetail-section--sm .menu-btn .course-duration-wrapper .course-duration {
  font-size: 10px;
  color: #6C757D;
  font-weight: 700;
  margin-bottom: 0px;
}
.coursedetail-section--sm .menu-btn .course-duration-wrapper .course-duration p {
  font-size: 16px;
  color: #495057;
  font-weight: 800;
  margin-bottom: 0;
}
.coursedetail-section--sm .menu-btn .enquiry-btn-wrapper .enquiry-btn {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  background-color: #0054C0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
}
.coursedetail-section--sm .menu-btn .enquiry-btn-wrapper .enquiry-btn i {
  font-size: 14px;
}

.courseBanner-section {
  background: linear-gradient(180deg, rgba(0, 84, 192, 0.9) 0%, rgba(0, 195, 255, 0.9) 100%);
}
.courseBanner-section .courseBanner__contents .courseBanner__title {
  margin-bottom: 8px;
  text-transform: capitalize;
}
.courseBanner-section .courseBanner__contents .courseBanner__duration {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #F8F9FA;
  font-size: 14px;
  font-weight: 600;
}
.courseBanner-section .courseBanner__contents .courseBanner__duration .calender-icon {
  font-size: 16px;
  color: #F8F9FA;
}
.courseBanner-section .courseBanner__contents .courseBanner__studyrequirement {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #F8F9FA;
  font-size: 14px;
  font-weight: 600;
}
.courseBanner-section .courseBanner__contents .courseBanner__studyrequirement .file-icon {
  font-size: 16px;
  color: #F8F9FA;
}
.courseBanner-section .courseBanner__contents .coursecover {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 42px;
}
.courseBanner-section .courseBanner__contents .image-group {
  display: flex;
}
.courseBanner-section .courseBanner__contents .image-group .circle-44 {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  margin-left: -36px;
}
.courseBanner-section .courseBanner__contents .image-group .circle-44:first-child {
  margin-left: 0;
}
.courseBanner-section .courseBanner__contents .image-group .circle-44.circle-light {
  background-color: #d9d9d9;
}
.courseBanner-section .courseBanner__contents .image-group .circle-44.circle-dark {
  background-color: #bfbebe;
}
.courseBanner-section .courseBanner__contents .image-group .circle-44.circle-extradark {
  background-color: #adadad;
}
.courseBanner-section .courseBanner__contents .image-group .circle-44.circle-image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.courseBanner-section .courseBanner__contents .button-group {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.courseBanner-section .courseBanner__contents .watchTestimonial {
  display: flex;
  gap: 8px;
  align-items: center;
  -webkit-text-decoration: dashed !important;
          text-decoration: dashed !important;
}
.courseBanner-section .courseBanner__contents .watchTestimonial--btn {
  width: 18px;
  height: 18px;
  background-color: #0054C0;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.courseBanner-section .courseBanner__contents .watchTestimonial--btn .play--icon {
  color: #fff;
  font-size: 12px;
}
.courseBanner-section .courseBanner__contents .watchTestimonial--txt {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  border-bottom: 1px dashed #fff;
}
.courseBanner-section .courseBanner__videoWrapper .plyr {
  height: 340px;
  border-radius: 16px;
  background-color: #fff !important;
}
.courseBanner-section .courseBanner__videoWrapper .plyr--stopped.plyr__poster-enabled .plyr__poster {
  background-size: cover;
}
.courseBanner-section .courseBanner__videoWrapper .plyr--video .plyr__controls {
  z-index: 2;
}
.courseBanner-section .courseBanner__videoWrapper .video-box {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.courseBanner-section .courseBanner__videoWrapper .plyr__control--overlaid {
  background-color: #0054C0;
  padding: 20px;
}
.courseBanner-section .courseBanner__videoWrapper .plyr__controls .plyr__controls__item.plyr__progress__container .plyr__progress input {
  color: #0054C0;
}
.courseBanner-section .courseBanner__videoWrapper .plyr__controls .plyr__controls__item:first-child:hover {
  background-color: #0054C0;
}
.courseBanner-section .courseBanner__videoWrapper .plyr__control:hover {
  background-color: #0054C0;
}
.courseBanner-section .courseBanner__videoWrapper .plyr__controls .plyr__controls__item input {
  color: #0054C0;
}

.courseDetails-wrapper .courseTabs {
  padding: 22px 0;
  border-bottom: 1px solid #e5e5e5;
}
.courseDetails-wrapper .courseTabs nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
.courseDetails-wrapper .courseTabs nav ul li .nav-link {
  text-decoration: none;
  color: #495057;
  font-weight: 400;
  font-size: 16px;
  transition: font-weight 0.2s ease;
}
.courseDetails-wrapper .courseTabs nav ul li .nav-link.active {
  font-weight: 600;
}
.courseDetails-wrapper .courseTabs nav ul li .nav-link:hover {
  font-weight: 600;
}
.courseDetails-wrapper .courseOverview-container {
  margin-bottom: 24px;
  max-height: none;
  overflow: hidden;
  transition: height 0.6s cubic-bezier(0.44, 0.99, 0.48, 1);
}
.courseDetails-wrapper .courseOverview-container .courseOverview__title {
  font-size: 24px;
  color: #212529;
  margin-bottom: 16px;
  font-weight: 700;
}
.courseDetails-wrapper .courseOverview-container .courseOverview__description {
  font-size: 16px;
  font-weight: 400;
  color: #343A40;
  line-height: 1.6;
}
.courseDetails-wrapper .courseOverview-container .courseOverview__description ul {
  padding-left: 18px;
  margin-bottom: 26px;
}
.courseDetails-wrapper .courseOverview-container .courseOverview__description ul li {
  padding-bottom: 14px;
}
.courseDetails-wrapper .seemore-btn--wrapper {
  display: block;
  width: 100%;
  padding: 0 10px;
  margin-bottom: 26px;
  position: relative;
  border: none;
  outline: none;
  background-color: transparent;
  color: #343A40;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.44, 0.99, 0.48, 1);
  font-weight: 600;
}
.courseDetails-wrapper .seemore-btn--wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 100px;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.courseDetails-wrapper .seemore-btn--wrapper .icon-wrapper {
  font-size: 20px;
  display: flex;
}
.courseDetails-wrapper .course-overview-description .title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.courseDetails-wrapper .course-overview-description .title-wrapper .course-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0px;
}
.courseDetails-wrapper .course-overview-description .title-wrapper .copy-linkbtn-wrapper {
  position: relative;
  display: inline-block;
}
.courseDetails-wrapper .course-overview-description .title-wrapper .copy-linkbtn-wrapper .copyLinkBtn {
  padding: 6px 12px;
  background-color: #e2e6ea;
  color: #212529;
  font-size: 10px;
  font-weight: 400;
  border: none;
  outline: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.courseDetails-wrapper .course-overview-description .title-wrapper .copy-linkbtn-wrapper .copytooltip {
  visibility: hidden;
  background-color: #F3F7FC;
  color: #343a40;
  text-align: center;
  border-radius: 4px;
  padding: 4px 8px;
  position: absolute;
  z-index: 1;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  white-space: nowrap;
}
.courseDetails-wrapper .course-overview-description .course-description,
.courseDetails-wrapper .course-overview-description p {
  font-size: 16px;
  font-weight: 400;
  color: #343a40;
  margin-bottom: 0px;
}
.courseDetails-wrapper .skills-you-learn {
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 24px;
  background-color: #f3f7fc;
  border-radius: 16px;
}
.courseDetails-wrapper .skills-you-learn h4 {
  font-size: 20px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 16px;
}
.courseDetails-wrapper .skills-you-learn .skills-items {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.courseDetails-wrapper .skills-you-learn .skills-items .icon .arrow-icon {
  font-size: 18px;
  color: #0054C0;
}
.courseDetails-wrapper .skills-you-learn .skills-items .skills-name {
  font-size: 16px;
  font-weight: 400;
  color: #343a40;
}
.courseDetails-wrapper .skills-you-learn .skills-items .skills-name .skills-title {
  font-weight: 700;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-item {
  padding-bottom: 32px;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-item .benefits-heading .title {
  font-size: 24px;
  font-weight: 700;
  color: #090d12;
  margin-bottom: 8px;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-item .description-benefit-list p {
  font-size: 16px;
  font-weight: 400;
  color: #505356;
  margin-bottom: 24px !important;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-item .description-benefit-list ul {
  list-style: none;
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-item .description-benefit-list ul li {
  font-size: 16px;
  color: #26292c;
  font-weight: 400;
  display: flex;
  gap: 8px;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-item .description-benefit-list ul li .icon-check {
  font-size: 22px;
  color: #0cb409;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-item .description {
  font-size: 16px;
  font-weight: 400;
  color: #505356;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-item p {
  margin-bottom: 24px;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-item .benefits-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-item .benefits-list li {
  font-size: 16px;
  color: #26292c;
  font-weight: 400;
  display: flex;
  gap: 8px;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-item .benefits-list li .icon-check {
  font-size: 22px;
  color: #0cb409;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-items {
  background-color: #EDF3FA;
  padding-top: 32px;
  padding-bottom: 32px;
  width: 100%;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-items .benefits-heading .title {
  font-size: 24px;
  font-weight: 700;
  color: #090d12;
  margin-bottom: 8px;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-items .description-benefit-list p {
  font-size: 16px;
  font-weight: 400;
  color: #505356;
  margin-bottom: 24px !important;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-items .description-benefit-list ul {
  list-style: none;
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-items .description-benefit-list ul li {
  font-size: 16px;
  color: #26292c;
  font-weight: 400;
  display: flex;
  gap: 8px;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-items .description-benefit-list ul li .icon-check {
  font-size: 22px;
  color: #0cb409;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-items .description {
  font-size: 16px;
  font-weight: 400;
  color: #505356;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-items p {
  margin-bottom: 24px;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-items .benefits-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-items .benefits-list li {
  font-size: 16px;
  color: #26292c;
  font-weight: 400;
  display: flex;
  gap: 8px;
}
.courseDetails-wrapper .benefits-section .benefits-section-grid .benefits-items .benefits-list li .icon-check {
  font-size: 22px;
  color: #0cb409;
}
.courseDetails-wrapper .student-hired-section {
  margin-top: 32px;
  margin-bottom: 90px;
}
.courseDetails-wrapper .student-hired-section--wrapper .hired-student-heading-wrapper {
  margin-bottom: 24px;
}
.courseDetails-wrapper .student-hired-section--wrapper .hired-student-heading-wrapper .text-content .title {
  font-size: 24px;
  font-weight: 700;
  color: #090d12;
  margin-bottom: 8px;
}
.courseDetails-wrapper .student-hired-section--wrapper .hired-student-heading-wrapper .text-content .sub-title {
  font-size: 16px;
  font-weight: 400;
  color: #505356;
}
.courseDetails-wrapper .student-hired-section--wrapper .hired-student-heading-wrapper .view-all-wrapper .view-all-btn {
  font-size: 16px;
  font-weight: 600;
  color: #0054C0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.courseDetails-wrapper .student-hired-section--wrapper .hired-student-heading-wrapper .view-all-wrapper .view-all-btn .icon-check {
  font-size: 20px;
  color: #0054C0;
}
.courseDetails-wrapper .student-hired-section--wrapper .hired-student-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}
.courseDetails-wrapper .student-hired-section--wrapper .hired-student-card-grid .card-item {
  margin-bottom: 26px;
  padding: 24px;
  border-radius: 8px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 16px;
  border: 1px solid #e9ecef;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 0px 14px 0px;
  transition: box-shadow 0.4s ease-in-out;
}
.courseDetails-wrapper .student-hired-section--wrapper .hired-student-card-grid .card-item:hover {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 0px 24px 0px;
  overflow: visible;
}
.courseDetails-wrapper .student-hired-section--wrapper .hired-student-card-grid .card-item .profile-detail-wrapper .profile-img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 8px;
}
.courseDetails-wrapper .student-hired-section--wrapper .hired-student-card-grid .card-item .profile-detail-wrapper .profile-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.courseDetails-wrapper .student-hired-section--wrapper .hired-student-card-grid .card-item .profile-detail-wrapper .successStudent-card__studentName {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
  color: #212529;
}
.courseDetails-wrapper .student-hired-section--wrapper .hired-student-card-grid .card-item .profile-detail-wrapper .student-job-detail .successStudent-card__courseName {
  font-size: 14px;
  font-weight: 400;
  color: #343a40;
}
.courseDetails-wrapper .student-hired-section--wrapper .hired-student-card-grid .card-item .profile-detail-wrapper .student-job-detail .successStudent-card__companyName {
  font-size: 14px;
  font-weight: 600;
  color: #0054C0;
  margin-bottom: 0px;
}
.courseDetails-wrapper .student-hired-section--wrapper .hired-student-card-grid .card-item .successStudent-card__collegeInfo h6 {
  font-size: 14px;
  color: #495057;
  font-weight: 600;
  margin-bottom: 4px;
}
.courseDetails-wrapper .student-hired-section--wrapper .hired-student-card-grid .card-item .successStudent-card__collegeInfo span {
  font-size: 12px;
  font-weight: 400;
  color: #6c757d;
}
.courseDetails-wrapper .hired-companies-section {
  background-color: #edf3fa;
}
.courseDetails-wrapper .hired-companies-section .hired-companies-section-wrapper .hired-companies-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-right: 16px;
}
.courseDetails-wrapper .hired-companies-section .hired-companies-section-wrapper .hired-companies-left .content-wrapper .hired-companies-text {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  color: #212529;
}
.courseDetails-wrapper .hired-companies-section .hired-companies-section-wrapper .hired-companies-left .content-wrapper .hired-companies-text span {
  color: #FF3F00;
  font-weight: 900;
}
.courseDetails-wrapper .hired-companies-section .hired-companies-section-wrapper .hired-companies-left .content-wrapper .description {
  font-size: 16px;
  font-weight: 400;
  color: #212529;
}
.courseDetails-wrapper .hired-companies-section .hired-companies-section-wrapper .hired-companies-left .file-role-btn-wrapper .file-role-btn {
  background-color: #0054C0;
  padding: 14px 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}
.courseDetails-wrapper .hired-companies-section .hired-companies-section-wrapper .hired-companies-left .file-role-btn-wrapper .file-role-btn .icon-check {
  font-size: 18px;
}
.courseDetails-wrapper .hired-companies-section .hired-companies-section-wrapper .hired-companies-right {
  padding-left: 16px;
}
.courseDetails-wrapper .hired-companies-section .hired-companies-section-wrapper .hired-companies-right .hired-companies-img {
  width: 503px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
}
.courseDetails-wrapper .hired-companies-section .hired-companies-section-wrapper .hired-companies-right .hired-companies-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.courseDetails-wrapper .faq-section-wrap {
  padding: 32px 0;
}
.courseDetails-wrapper .faq-section-wrap .faq__title {
  font-size: 24px;
  color: #212529;
  margin-bottom: 16px;
  font-weight: 700;
}
.courseDetails-wrapper .faq-section-wrap .faq-accordion {
  display: flex;
  align-items: center;
  justify-content: center;
}
.courseDetails-wrapper .faq-section-wrap .faq-accordion .accordion {
  --bs-accordion-bg: transparent !important;
}
.courseDetails-wrapper .faq-section-wrap .faq-accordion .accordion-item {
  border-color: #e5e5e5;
}
.courseDetails-wrapper .faq-section-wrap .faq-accordion .accordion-item:first-child {
  border-top: 1px solid #e5e5e5;
}
.courseDetails-wrapper .faq-section-wrap .faq-accordion .accordion-item:last-child {
  border-bottom: 1px solid #e5e5e5;
}
.courseDetails-wrapper .faq-section-wrap .faq-accordion .accordion-button {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  line-height: 1.6;
  padding: 16px 20px 16px 34px;
}
.courseDetails-wrapper .faq-section-wrap .faq-accordion .accordion-button:focus {
  border: none;
  box-shadow: none;
}
.courseDetails-wrapper .faq-section-wrap .faq-accordion .accordion-button::after {
  display: none;
}
.courseDetails-wrapper .faq-section-wrap .faq-accordion .accordion-button::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23495057' d='M8 17.175V6.825q0-.425.3-.713t.7-.287q.125 0 .263.037t.262.113l8.15 5.175q.225.15.338.375t.112.475q0 .25-.112.475t-.338.375l-8.15 5.175q-.125.075-.262.113T9 18.175q-.4 0-.7-.288t-.3-.712'/%3E%3C/svg%3E");
  height: 24px;
  position: absolute;
  top: 50%;
  left: -2px;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
}
.courseDetails-wrapper .faq-section-wrap .faq-accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
  background-color: transparent;
}
.courseDetails-wrapper .faq-section-wrap .faq-accordion .accordion-button:not(.collapsed)::before {
  transform: translateY(-50%) rotate(90deg);
}
.courseDetails-wrapper .faq-section-wrap .faq-accordion .accordion-body {
  font-size: 16px;
  font-weight: 400;
  color: #212529;
  padding-top: 0;
}
.courseDetails-wrapper .study-requirement {
  margin-bottom: 24px;
  max-height: none;
  overflow: hidden;
  transition: height 0.6s cubic-bezier(0.44, 0.99, 0.48, 1);
}
.courseDetails-wrapper .study-requirement__title {
  font-size: 20px;
  color: #212529;
  margin-bottom: 16px;
  font-weight: 700;
}
.courseDetails-wrapper .study-requirement__paragraph {
  font-size: 16px;
  font-weight: 400;
  color: #343A40;
  line-height: 1.6;
}
.courseDetails-wrapper .study-requirement__view-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0054C0;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  margin-bottom: 36px;
  cursor: pointer;
  position: relative;
  border: 0;
  background-color: transparent;
}
.courseDetails-wrapper .study-requirement__view-detail::after {
  content: "";
  width: 100%;
  border: 1px dashed #0054C0;
  position: absolute;
  left: 0;
  bottom: 0;
}
.courseDetails-wrapper .study-requirement__view-detail .view-detail-requirement__plus-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.courseDetails-wrapper .study-requirement-btn-wrapper {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}
.courseDetails-wrapper .study-requirement-btn-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 100px;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.courseDetails-wrapper .course-benefits {
  margin-bottom: 36px;
}
.courseDetails-wrapper .course-benefits__title {
  font-size: 24px;
  color: #212529;
  margin-bottom: 16px;
  font-weight: 700;
}
.courseDetails-wrapper .course-benefits__list {
  padding: 24px;
  margin: 0;
  list-style: none;
  background-color: #F8F9FA;
  border-radius: 8px;
}
.courseDetails-wrapper .course-benefits__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #343A40;
  margin-bottom: 16px;
}
.courseDetails-wrapper .course-benefits__list-item:last-child {
  margin-bottom: 0;
}
.courseDetails-wrapper .course-benefits__list-item .course-benefits__icon {
  color: #0054C0;
  width: 20px;
  height: 20px;
  font-size: 20px;
}

.testimonial-card-wrapper {
  margin-bottom: 36px;
}
.testimonial-card-wrapper .testimonial-card--titlewrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.testimonial-card-wrapper .testimonial-card--titlewrapper .testimonial-card__title {
  font-size: 24px;
  color: #212529;
  margin-bottom: 0;
  font-weight: 700;
}
.testimonial-card-wrapper .testimonial-card--titlewrapper .viewmore--link {
  color: #0054c0;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}
.testimonial-card-wrapper .testimonial-card {
  background-color: #F8F9FA;
  padding: 16px;
  border-bottom: 4px solid #00C3FF;
}
.testimonial-card-wrapper .testimonial-card__content {
  font-size: 14px;
  font-weight: 400;
  color: #343A40;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}
.testimonial-card-wrapper .testimonial-card__student-info {
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  gap: 8px;
}
.testimonial-card-wrapper .testimonial-card__student-info .student-info__image {
  width: 36px;
  height: 36px;
}
.testimonial-card-wrapper .testimonial-card__student-info .student-info__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.testimonial-card-wrapper .testimonial-card__student-info .student-info__name {
  font-size: 14px;
  font-weight: 600;
  color: #343A40;
}

.course-syllabus {
  margin-bottom: 32px;
}
.course-syllabus .expand-btn-wrapper {
  margin-bottom: 16px;
}
.course-syllabus .expand-btn-wrapper .expand-btn {
  padding: 4px 6px;
  border-radius: 8px;
  background-color: #edf3fa;
  font-size: 12px;
  font-weight: 600;
  border: none;
  color: #0054C0;
}
.course-syllabus .course-syllabus__heading--wrapper .course-syllabus_updatedate {
  margin-bottom: 4px;
  font-size: 14px;
  color: #495057;
}
.course-syllabus__heading {
  font-size: 24px;
  color: #212529;
  font-weight: 700;
}
.course-syllabus .syllabus-accordion {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #c7d2e0;
}
.course-syllabus .syllabus-accordion .accordion-section {
  padding: 0px 16px;
  border-bottom: 1px solid #c7d2e0;
  background-color: #f3f7fc;
}
.course-syllabus .syllabus-accordion .accordion-main-title {
  font-size: 16px;
  color: #212529;
  font-weight: 600;
  margin-bottom: 0px;
  padding: 18px 0px;
}
.course-syllabus .syllabus-accordion .accordion-main-title .icon-check {
  font-size: 24px;
  color: #495057;
  cursor: pointer;
}
.course-syllabus .syllabus-accordion .accordion-item {
  border: none;
}
.course-syllabus .syllabus-accordion .accordion-body {
  background-color: #f3f7fc;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.course-syllabus .syllabus-accordion .accordion-body ul {
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.course-syllabus .syllabus-accordion .accordion-body ul li {
  font-size: 16px;
  font-weight: 400;
}
.course-syllabus .syllabus-accordion .accordion-body ul li:last-child {
  margin-bottom: 0;
}
.course-syllabus .syllabus-accordion .accordion-body ul li::marker {
  font-size: 24px;
}
.course-syllabus .syllabus-accordion .accordion-button {
  background-color: #f3f7fc;
}
.course-syllabus .syllabus-accordion .accordion-button:focus {
  border: none;
  box-shadow: none;
}
.course-syllabus .syllabus-accordion .accordion-button .sub-heading {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  color: #212529;
  line-height: 1.5;
}
.course-syllabus .syllabus-accordion .accordion-button::after {
  display: none;
}
.course-syllabus .syllabus-accordion .accordion-button::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  font-weight: 900;
  top: 50%;
  left: 1px;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
  font-size: 12px;
}
.course-syllabus .syllabus-accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.course-syllabus .syllabus-accordion .accordion-button:not(.collapsed)::before {
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  transform: translateY(-50%) rotate(180deg);
}

.request-syllabus-wrapper {
  margin-bottom: 36px;
  border-top: 1px solid #DEE2E6;
  border-bottom: 1px solid #DEE2E6;
  text-align: center;
  border-left: 1px solid #DEE2E6;
  border-right: 1px solid #DEE2E6;
  padding: 20px;
  border-radius: 8px;
}
.request-syllabus-wrapper .title {
  font-size: 20px;
  font-weight: 600;
  color: #212529;
  line-height: 1.8;
  margin-bottom: 16px;
}
.request-syllabus-wrapper .modal .modal-body {
  padding: 20px;
}
.request-syllabus-wrapper .modal .modal-body .heading {
  font-size: 24px;
  color: #212529;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.5;
}
.request-syllabus-wrapper .modal .modal-body form {
  text-align: left;
  margin-bottom: 24px;
}
.request-syllabus-wrapper .modal .modal-body form .input_group {
  margin-bottom: 16px;
}
.request-syllabus-wrapper .modal .modal-body form .input_group .form-label {
  font-size: 16px;
  font-weight: 600;
  color: #343A40;
  margin-bottom: 8px;
}
.request-syllabus-wrapper .modal .modal-body form .form-check {
  margin-bottom: 24px;
}
.request-syllabus-wrapper .modal .modal-body form .form-check .form-check-label {
  font-size: 16px;
  color: #343A40;
  font-weight: 400;
}
.request-syllabus-wrapper .modal .modal-body .info {
  font-size: 14px;
  color: #495057;
  font-weight: 400;
  margin-bottom: 0;
  text-align: start;
}

.certificate-section {
  overflow: hidden;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .certificate-section {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 20px;
    text-align: center;
  }
}
.certificate-section .certificate-content__heading {
  font-size: 20px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 16px;
  line-height: 1.5;
}
.certificate-section .certificate-content__paragraph {
  font-size: 16px;
  font-weight: 400;
  color: #343A40;
  line-height: 1.5;
  margin-bottom: 0;
}
.certificate-section .certificate__image {
  position: relative;
  text-align: center;
  margin-bottom: 24px;
}
.certificate-section .certificate__image img {
  width: 300px;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .certificate-section .certificate__image img {
    width: 100%;
  }
}
.certificate-section .certificate__image .circle-shape {
  height: 200px;
  width: 380px;
  background-color: #FF3F00;
  filter: blur(30px);
  position: absolute;
  overflow: hidden;
  z-index: -1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.09;
}

.instructor_wrap {
  padding-bottom: 36px;
}
.instructor_wrap .instructor__title {
  font-size: 24px;
  color: #212529;
  margin-bottom: 16px;
  font-weight: 700;
}
@media (max-width: 576px) {
  .instructor_wrap .instructor-slider .slick-dots {
    text-align: left;
  }
}
.instructor_wrap .instructor-slider .slick-dots li {
  background-color: #dee2e6;
}
.instructor_wrap .instructor-slider .slick-dots li.slick-active button {
  background-color: #00C3FF !important;
  border-radius: 0 !important;
  width: 40px !important;
}
.instructor_wrap .instructor-slider .slick-dots li button {
  width: 20px;
  height: 4px;
  margin-right: 0;
  padding: 0 !important;
}
.instructor_wrap .instructor-card {
  display: flex;
  border: 1px solid #DEE2E6;
  padding: 20px;
  margin-right: 20px;
  margin-bottom: 35px;
  gap: 16px;
}
@media (max-width: 576px) {
  .instructor_wrap .instructor-card {
    border-radius: 8px;
    margin-right: 0;
  }
}
.instructor_wrap .instructor-card .instructor__image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .instructor_wrap .instructor-card .instructor__image {
    width: 70px;
    height: 70px;
  }
}
.instructor_wrap .instructor-card .instructor__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.instructor_wrap .instructor-card .instructor__info .instructor__name {
  color: #212529;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0;
}
.instructor_wrap .instructor-card .instructor__info .instructor__designation {
  color: #495057;
  font-size: 14px;
  font-weight: 400;
}
.instructor_wrap .instructor-card .instructor__info .instructor__companyname {
  color: #495057;
  font-size: 14px;
  font-weight: 400;
}
.instructor_wrap .instructor-card .watchIntroduction-video {
  display: flex;
  gap: 8px;
  align-items: center;
  -webkit-text-decoration: dashed !important;
          text-decoration: dashed !important;
}
.instructor_wrap .instructor-card .watchIntroduction-video--btn {
  width: 14px;
  height: 14px;
  border: 1px solid #0054C0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.instructor_wrap .instructor-card .watchIntroduction-video--btn .play--icon {
  color: #0054C0;
  font-size: 11px;
}
.instructor_wrap .instructor-card .watchIntroduction-video--txt {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
  color: #0054C0;
  border-bottom: 1px dashed #0054C0;
}

.success-stories-container {
  margin-bottom: 36px;
}
.success-stories-container .successStudent-card {
  margin: 10px;
}
.success-stories-container .success-stories-titlewrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.success-stories-container .success-stories-titlewrapper .success-stories__title {
  font-size: 24px;
  color: #212529;
  margin-bottom: 0;
  font-weight: 700;
}
.success-stories-container .success-stories-titlewrapper .viewmore--link {
  color: #0054c0;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.career-container {
  margin-bottom: 36px;
}
.career-container .career__title {
  font-size: 24px;
  color: #212529;
  margin-bottom: 16px;
  font-weight: 700;
}
.career-container .career__description {
  font-size: 16px;
  font-weight: 400;
  color: #343A40;
  text-align: justify;
  line-height: 1.6;
}

.job-listing {
  margin-bottom: 36px;
}
.job-listing .job-listing-titlewrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.job-listing .job-listing-titlewrapper .viewmore--link {
  color: #0054c0;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}
.job-listing__title {
  font-size: 20px;
  color: #212529;
  margin-bottom: 0;
  font-weight: 600;
}
.job-listing .job-listing__gridCard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 576px) {
  .job-listing .job-listing__gridCard {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
  }
}
.job-listing .job-card {
  border: 1px solid #DEE2E6;
  padding: 14px;
  border-radius: 8px;
  height: 100%;
}
.job-listing .job-card:last-child {
  margin-bottom: 0;
}
.job-listing .job-card .careerTitle {
  text-decoration: none;
}
.job-listing .job-card__title {
  font-size: 18px;
  color: #212529;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
  text-transform: none;
}
.job-listing .job-card__company {
  color: #495057;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 8px;
  line-height: 1.5;
  display: inline-block;
}
.job-listing .job-card__info {
  display: flex;
  gap: 8px;
}
.job-listing .job-card__info .job-card__type {
  color: #343A40;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  margin-bottom: 0;
}
.job-listing .job-card__info .job-card__date {
  color: #343A40;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  margin-bottom: 0;
}

.faq-section-wrap {
  padding-bottom: 36px;
}
.faq-section-wrap .faq__title {
  font-size: 24px;
  color: #212529;
  margin-bottom: 16px;
  font-weight: 700;
}
.faq-section-wrap .faq-accordion .accordion-item {
  border-color: #e5e5e5;
}
.faq-section-wrap .faq-accordion .accordion-item:first-child {
  border-top: 1px solid #e5e5e5;
}
.faq-section-wrap .faq-accordion .accordion-item:last-child {
  border-bottom: 1px solid #e5e5e5;
}
.faq-section-wrap .faq-accordion .accordion-button {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  line-height: 1.6;
  padding: 16px 20px 16px 34px;
}
.faq-section-wrap .faq-accordion .accordion-button:focus {
  border: none;
  box-shadow: none;
}
.faq-section-wrap .faq-accordion .accordion-button::after {
  display: none;
}
.faq-section-wrap .faq-accordion .accordion-button::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23495057' d='M8 17.175V6.825q0-.425.3-.713t.7-.287q.125 0 .263.037t.262.113l8.15 5.175q.225.15.338.375t.112.475q0 .25-.112.475t-.338.375l-8.15 5.175q-.125.075-.262.113T9 18.175q-.4 0-.7-.288t-.3-.712'/%3E%3C/svg%3E");
  height: 20px;
  position: absolute;
  top: 50%;
  left: -2px;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
}
.faq-section-wrap .faq-accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
  background-color: white;
}
.faq-section-wrap .faq-accordion .accordion-button:not(.collapsed)::before {
  transform: translateY(-50%) rotate(90deg);
}
.faq-section-wrap .faq-accordion .accordion-body {
  font-size: 16px;
  font-weight: 400;
  color: #212529;
}

.upcoming-courses-detail-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  padding: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.upcoming-courses-detail-wrapper .date-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #0054c0;
  font-size: 14px;
  font-weight: 700;
}
.upcoming-courses-detail-wrapper .date-wrapper .icon-wrapper {
  margin-top: 3px;
  font-size: 16px;
}
.upcoming-courses-detail-wrapper .date-wrapper .course-date {
  color: #343A40;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1;
}
.upcoming-courses-detail-wrapper .date-wrapper .course-month {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
  color: #343A40;
}
.upcoming-courses-detail-wrapper .course-time-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 1;
}
.upcoming-courses-detail-wrapper .course-time-wrapper .course-time {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #F8F9FA;
  border: 1px solid #E9ECEF;
  font-size: 14px;
  font-weight: 500;
  color: #343A40;
  line-height: 1;
  border-radius: 4px;
  padding: 4px 10px;
  cursor: pointer;
}
.upcoming-courses-detail-wrapper .course-time-wrapper .course-time input[type=checkbox] {
  accent-color: #1a73e8;
  cursor: pointer;
}

.selected_upcomingCourse--btnwrapper {
  padding: 20px 10px;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 1;
  background-color: #fff;
}

.upcoming-class {
  background: #ebf1fa;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .upcoming-class {
    background-color: white;
    border-radius: 0;
    padding: 0;
  }
}
.upcoming-class__title {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 700;
}
.upcoming-class .class-info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.upcoming-class .class-info li {
  margin-bottom: 16px;
}
.upcoming-class .class-info li:last-child {
  margin-bottom: 0;
}
.upcoming-class .class-info__date {
  color: #343A40;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  margin-bottom: 4px;
}
.upcoming-class .class-info__date .calender-icon {
  font-size: 18px;
  color: #343A40;
}
.upcoming-class .class-info__time {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.upcoming-class .class-info__time span {
  font-size: 14px;
  font-weight: 400;
  color: #495057;
}

.running-class {
  background-color: white;
  border-radius: 0;
  padding: 0;
  margin-bottom: 36px;
}
.running-class__title {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 700;
}
.running-class .class-info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.running-class .class-info li {
  margin-bottom: 16px;
}
.running-class .class-info li:last-child {
  margin-bottom: 0;
}
.running-class .class-info__date {
  color: #343A40;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  margin-bottom: 4px;
}
.running-class .class-info__date .calender-icon {
  font-size: 18px;
  color: #343A40;
}
.running-class .class-info__time {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.running-class .class-info__time span {
  font-size: 14px;
  font-weight: 400;
  color: #495057;
}

.admission__box {
  border-radius: 8px;
  border: 1px solid #89b8f5;
  background: rgba(0, 84, 192, 0.08);
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 36px;
}
.admission__box .icon iconify-icon {
  color: #0054C0;
  font-size: 26px;
}
.admission__box .admission-link {
  font-size: 16px;
  color: #343A40;
  font-weight: 400;
}
.admission__box .admission-link a {
  color: #0054C0;
  font-weight: 600;
}

.course-feature {
  margin: 0 0 36px 0;
  padding: 0;
  list-style: none;
}
.course-feature__list {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}
.course-feature__list:last-child {
  margin-bottom: 0;
  align-items: center;
}
.course-feature__list .circle-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ebf1fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-feature__list .circle-icon .icon {
  font-size: 16px;
  color: #0054C0;
}
.course-feature__list--item h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0;
  color: #212529;
}
.course-feature__list--item p {
  font-size: 14px;
  color: #343A40;
  font-weight: 400;
  line-height: 22.4px;
  margin-bottom: 0;
}

.similar-course {
  margin-bottom: 36px;
}
.similar-course__heading {
  color: #212529;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.similar-course__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.similar-course__list--item {
  margin-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 16px;
  display: flex;
  gap: 16px;
}
.similar-course__list--item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.similar-course__list--item .course-image a img {
  width: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  -o-object-position: center;
     object-position: center;
}
.similar-course__list--item .course-info a {
  text-decoration: none;
}
.similar-course__list--item .course-info a .course-name {
  color: #212529;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.similar-course__list--item .course-info .course-duration {
  display: inline-flex;
  padding: 2px 8px;
  justify-content: center;
  align-items: center;
  background-color: #FF3F00;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 16px;
}
.similar-course__list--item .course-info .upcoming-course__heading {
  color: #212529;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 2px;
}
.similar-course__list--item .course-info .upcoming-course .class-schedule {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.similar-course__list--item .course-info .upcoming-course .class-schedule__date {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #343A40;
  font-size: 12px;
  font-weight: 400;
}
.similar-course__list--item .course-info .upcoming-course .class-schedule__time {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #343A40;
  font-size: 12px;
  font-weight: 400;
}

.inquiry-form {
  border-radius: 8px;
  border: 1px solid #E9ECEF;
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.05);
  padding: 32px;
}
.inquiry-form__heading {
  color: #212529;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 2px;
}
.inquiry-form__text {
  font-size: 14px;
  font-weight: 400;
  color: #495057;
  line-height: 1.5;
  margin-bottom: 16px;
}
.inquiry-form form .input_group {
  margin-bottom: 16px;
}
.inquiry-form form .form-label {
  font-weight: 600;
  font-size: 16px;
  color: #343A40;
  line-height: 1.4;
  margin-bottom: 8px;
}
.inquiry-form form .tel-select {
  width: 120px;
}
.inquiry-form form .form-select:focus {
  border: 1px solid #e5e5e5;
  box-shadow: none;
  outline: none;
}
.inquiry-form form .submit-btn button {
  width: 100%;
}
@media (max-width: 992px) {
  .inquiry-form form .submit-btn button {
    width: auto;
  }
}
@media (max-width: 768px) {
  .inquiry-form form .submit-btn button {
    width: 100%;
  }
}

.skeleton-grids {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
.skeleton-grids .skeleton-box {
  width: 100%;
  height: 100px;
  background-color: #e0e0e0;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.skeleton-grids .skeleton-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -150px;
  height: 100%;
  width: 150px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -150px;
  }
  100% {
    left: 100%;
  }
}
