@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;
}

.media_coverage_section {
  padding: 20px 0 100px 0;
}
.media_coverage_section .media_coverage_wrapper .header-section {
  text-align: center;
  position: relative;
  margin-bottom: 32px;
}
.media_coverage_section .media_coverage_wrapper .header-section .title {
  font-size: 14px;
  color: #343A40;
  font-weight: 600;
  margin-bottom: 0;
}
.media_coverage_section .media_coverage_wrapper .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;
}
.media_coverage_section .media_coverage_wrapper .media_coverage_header {
  margin-bottom: 24px;
}
.media_coverage_section .media_coverage_wrapper .media_coverage_header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #090D12;
  margin-bottom: 16px;
}
.media_coverage_section .media_coverage_wrapper .media_coverage_header .content_wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.media_coverage_section .media_coverage_wrapper .media_coverage_header .content_wrapper .title {
  font-size: 14px;
  font-weight: 600;
  color: #505356;
}
.media_coverage_section .media_coverage_wrapper .media_coverage_header .content_wrapper .title span {
  margin-right: 4px;
}
.media_coverage_section .media_coverage_wrapper .media_coverage_header .content_wrapper .title span svg {
  color: #505356;
  margin-bottom: 2px;
}
.media_coverage_section .media_coverage_wrapper .hero_banner_image {
  height: auto;
  width: 100%;
  overflow: hidden;
}
.media_coverage_section .media_coverage_wrapper .hero_banner_image img {
  height: 100%;
  width: 100%;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.media_coverage_section .media_coverage_wrapper .award-news-item-wrapper {
  padding: 16px 0px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.media_coverage_section .media_coverage_wrapper .award-news-item-wrapper .text-content {
  flex: 2;
  font-size: 16px;
  font-weight: 400;
  color: #343A40;
}
.media_coverage_section .media_coverage_wrapper .award-news-item-wrapper .text-content span {
  font-size: 16px;
  font-weight: 700;
  color: #343A40;
}
.media_coverage_section .menu-btn {
  box-shadow: 0px 0px 44px 0px rgba(20, 40, 103, 0.19);
  position: fixed;
  bottom: 82px;
  background-color: #fff;
  padding: 20px 0;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  z-index: 99;
}
.media_coverage_section .menu-btn .read-full-story-wrapper .read-full-story {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.media_coverage_section .menu-btn .read-full-story-wrapper .read-full-story h6 {
  font-size: 16px;
  font-weight: 600;
  color: #151A21;
  margin-bottom: 0px;
}
.media_coverage_section .menu-btn .read-full-story-wrapper .read-full-story .read-btn .read-full-story-btn {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 8px;
  color: #fff;
  background-color: #0054C0;
}
