@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 .navbar_offcanvas {
  width: 100% !important;
  border: none;
}
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: 20px;
  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: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #343a40;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body {
  padding: 0px !important;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .offcanvas-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .solutions-main-wrapper {
  display: flex;
  flex-direction: column;
  padding: 0px 16px 20px 16px;
  border-bottom: 1px solid #e9ecef;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .solutions-main-wrapper .solutions-title {
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #343a40;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .solutions-main-wrapper .solutions-nav-wrapper {
  margin: 0px;
  padding: 10px 10px 0px 0px;
  scrollbar-width: none;
  /* IE and old Edge */
  -ms-overflow-style: none;
  overflow-x: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .solutions-main-wrapper .solutions-nav-wrapper .solutions-list {
  padding: 4px 12px;
  border-radius: 60px;
  border: 1px solid #e2e8ea;
  background-color: #edf3fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .solutions-main-wrapper .solutions-nav-wrapper .solutions-list .solutions-link {
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  color: #727272;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .solutions-main-wrapper .solutions-nav-wrapper .kids-wrapper {
  position: relative;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .solutions-main-wrapper .solutions-nav-wrapper .kids-wrapper .kids-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 60px;
  background-color: #edf3fa;
  border: 1px solid #0054c0;
  text-decoration: none;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .solutions-main-wrapper .solutions-nav-wrapper .kids-wrapper .kids-link .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .solutions-main-wrapper .solutions-nav-wrapper .kids-wrapper .kids-link .icon img {
  height: 20px;
  width: 20px;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .solutions-main-wrapper .solutions-nav-wrapper .kids-wrapper .kids-link p {
  margin-bottom: 0px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  color: #0054C0;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .solutions-main-wrapper .solutions-nav-wrapper .kids-wrapper .kids-badge {
  position: absolute;
  right: -16px;
  top: -8px;
  padding: 4px 6px;
  border-radius: 20px;
  font-size: 8px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .solutions-main-wrapper .solutions-nav-wrapper .kids-wrapper .kids-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--kids-color-a), var(--kids-color-b), var(--kids-color-c));
  animation: kidsGradientCycle 3s infinite linear;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .offcanvas-menu-list-wrapper {
  padding: 0px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .offcanvas-menu-list-wrapper .menu-list-header-text {
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #343A40;
  padding: 6px 0px;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .menu-list {
  padding: 0px;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .menu-list li .menu-list-item {
  color: #343a40;
  text-decoration: none;
  padding: 6px 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;
  position: relative;
  padding-right: 40px;
  display: flex;
}
header .top-header-sm__right .menu-toggle #menuoffcanvasExample .offcanvas-body .menu-list li .submenu li .submenu-item .course_badge-new {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 4px 8px;
  border-radius: 40px;
  background: linear-gradient(to right, #fc466b 0%, #3f5efb 100%);
  font-size: 10px;
  font-weight: 600;
  color: #fff;
}
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;
}

@property --kids-color-a {
  syntax: "<color>";
  initial-value: #00C0E8;
  inherits: false;
}
@property --kids-color-b {
  syntax: "<color>";
  initial-value: #6155F5;
  inherits: false;
}
@property --kids-color-c {
  syntax: "<color>";
  initial-value: #CB30E0;
  inherits: false;
}
@keyframes kidsGradientCycle {
  0%, 100% {
    --kids-color-a: #00C0E8;
    --kids-color-b: #6155F5;
    --kids-color-c: #CB30E0;
  }
  33.33% {
    --kids-color-a: #6155F5;
    --kids-color-b: #CB30E0;
    --kids-color-c: #00C0E8;
  }
  66.66% {
    --kids-color-a: #CB30E0;
    --kids-color-b: #00C0E8;
    --kids-color-c: #6155F5;
  }
}
.popular_search-wrapper .popular_search-list .list-items .list-items-wrapper {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #505356;
  font-size: 14px;
  cursor: pointer;
}

.searchBox-section .search-btn {
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #343a40;
  font-size: 16px;
  padding: 6px 12px;
  border-radius: 8px;
}

.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 {
  position: relative;
  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: 998;
  top: -1px;
  transform: translateY(0);
  animation: headerslideDown 0.3s ease-out forwards;
}
.offer_top-bar .offer_content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.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: 12px;
  color: #fff;
  font-weight: 500;
}
.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);
}
.offer_top-bar .button_wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer_top-bar .button_wrapper .offer-time-duration {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 6px 20px;
  border-radius: 70px;
  background-color: rgba(255, 255, 255, 0.0784313725);
}
.offer_top-bar .button_wrapper .offer-time-duration .end_dot {
  height: 9px;
  width: 9px;
  border-radius: 50%;
  background-color: #75e13b;
}
.offer_top-bar .button_wrapper .offer-time-duration .end-in {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.offer_top-bar .button_wrapper .learn_more {
  border-radius: 70px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 30px;
  color: #fff;
  text-decoration: underline;
}
.offer_top-bar .offer-top-cross {
  position: absolute;
  right: 10px;
  top: 16px;
}
.offer_top-bar .offer-top-cross .icon {
  font-size: 14px;
  color: white;
}

.offer_top-bar-theme2 {
  position: relative;
  background-color: rgba(0, 84, 192, 0.1019607843);
  padding: 12px 0;
  position: relative;
  transition: all 0.3s ease-in;
}
.offer_top-bar-theme2.sticky {
  position: fixed;
  background-color: #0053c0;
  width: 100%;
  z-index: 998;
  top: -1px;
  transform: translateY(0);
  animation: headerslideDown 0.3s ease-out forwards;
}
.offer_top-bar-theme2.sticky .offer_text-content .text-sm {
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}
.offer_top-bar-theme2.sticky .offer_text-content .text-bold {
  font-size: 12px;
  color: #fff !important;
  font-weight: 500;
}
.offer_top-bar-theme2.sticky .learn_more {
  color: white !important;
}
.offer_top-bar-theme2.sticky .offer-top-cross .icon {
  color: #fff;
}
.offer_top-bar-theme2 .offer_content {
  align-items: center;
  justify-content: space-between;
  justify-content: center;
  gap: 16px;
}
.offer_top-bar-theme2 .offer_content .offer_text-content {
  max-width: 290px;
  margin: 0 auto;
}
@media (max-width: 360px) {
  .offer_top-bar-theme2 .offer_content .offer_text-content {
    width: 290px;
  }
}
.offer_top-bar-theme2 .offer_content .offer_text-content .text-sm {
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}
.offer_top-bar-theme2 .offer_content .offer_text-content .text-bold {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #343a40;
}
.offer_top-bar-theme2 .offer_content .offer_text-content .text-bold a {
  font-size: 12px;
  font-weight: 500;
  color: #0054C0;
  text-decoration: underline;
  margin-top: 2px;
}
.offer_top-bar-theme2 .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);
}
.offer_top-bar-theme2 .button_wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 95px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer_top-bar-theme2 .button_wrapper .offer-time-duration {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 6px 20px;
  border-radius: 70px;
  background-color: rgba(255, 255, 255, 0.0784313725);
}
.offer_top-bar-theme2 .button_wrapper .offer-time-duration .end_dot {
  height: 9px;
  width: 9px;
  border-radius: 50%;
  background-color: #75e13b;
}
.offer_top-bar-theme2 .button_wrapper .offer-time-duration .end-in {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.offer_top-bar-theme2 .button_wrapper .learn_more {
  border-radius: 70px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 30px;
  color: #0054C0;
  text-decoration: underline;
}
.offer_top-bar-theme2 .offer-top-cross {
  position: absolute;
  right: 24px;
  top: 16px;
  cursor: pointer;
}
.offer_top-bar-theme2 .offer-top-cross .icon {
  font-size: 14px;
  color: #0054C0;
}

@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 {
  outline: none;
  border: none;
  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:focus {
  outline: none;
  border: none;
}
.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_footer {
  background-color: #212529;
  padding: 32px 16px;
}
.menu-bottom .offcanvas,
.menu-bottom .offcanvas_footer {
  background-color: #212529;
}
@media (max-width: 576px) {
  .menu-bottom .offcanvas,
  .menu-bottom .offcanvas_footer {
    width: 100%;
  }
}
.menu-bottom .offcanvas .btn-close-icon_add,
.menu-bottom .offcanvas_footer .btn-close-icon_add {
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 14px;
  top: 16px;
  z-index: 99999;
  background-color: transparent;
  font-size: 14px;
  color: #fff;
}
.menu-bottom .offcanvas .btn-close-icon_add:focus,
.menu-bottom .offcanvas_footer .btn-close-icon_add:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.menu-bottom .offcanvas .btn-close-icon,
.menu-bottom .offcanvas_footer .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,
.menu-bottom .offcanvas_footer .btn-close-icon:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.menu-bottom .offcanvas-header,
.menu-bottom .offcanvas_footer-header {
  padding: 32px 16px 0px 16px;
}
.menu-bottom .offcanvas-body,
.menu-bottom .offcanvas_footer-body {
  padding: 0px 16px 32px 16px;
}
.menu-bottom .offcanvas-body .solutions-main-wrapper,
.menu-bottom .offcanvas_footer-body .solutions-main-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0px 0px 24px 0px;
  border-bottom: 1px solid rgba(229, 229, 229, 0.1215686275);
  margin-bottom: 14px;
}
.menu-bottom .offcanvas-body .solutions-main-wrapper .solutions-title,
.menu-bottom .offcanvas_footer-body .solutions-main-wrapper .solutions-title {
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
}
.menu-bottom .offcanvas-body .solutions-main-wrapper .solutions-nav-wrapper,
.menu-bottom .offcanvas_footer-body .solutions-main-wrapper .solutions-nav-wrapper {
  margin: 0px;
  scrollbar-width: none;
  /* IE and old Edge */
  -ms-overflow-style: none;
  overflow-x: auto;
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: start !important;
  list-style: none;
}
.menu-bottom .offcanvas-body .solutions-main-wrapper .solutions-nav-wrapper .solutions-list .solutions-link,
.menu-bottom .offcanvas_footer-body .solutions-main-wrapper .solutions-nav-wrapper .solutions-list .solutions-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  opacity: 1;
  line-height: 1.6;
  color: #fff;
  padding: 0px;
}
.menu-bottom .offcanvas-body .solutions-main-wrapper .solutions-nav-wrapper .kids-wrapper,
.menu-bottom .offcanvas_footer-body .solutions-main-wrapper .solutions-nav-wrapper .kids-wrapper {
  position: relative;
  display: none;
}
.menu-bottom .offcanvas-body .solutions-main-wrapper .solutions-nav-wrapper .kids-wrapper .kids-link,
.menu-bottom .offcanvas_footer-body .solutions-main-wrapper .solutions-nav-wrapper .kids-wrapper .kids-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 60px;
  background-color: #edf3fa;
  border: 1px solid #0054c0;
  text-decoration: none;
}
.menu-bottom .offcanvas-body .solutions-main-wrapper .solutions-nav-wrapper .kids-wrapper .kids-link .icon,
.menu-bottom .offcanvas_footer-body .solutions-main-wrapper .solutions-nav-wrapper .kids-wrapper .kids-link .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-bottom .offcanvas-body .solutions-main-wrapper .solutions-nav-wrapper .kids-wrapper .kids-link .icon img,
.menu-bottom .offcanvas_footer-body .solutions-main-wrapper .solutions-nav-wrapper .kids-wrapper .kids-link .icon img {
  height: 20px;
  width: 20px;
}
.menu-bottom .offcanvas-body .solutions-main-wrapper .solutions-nav-wrapper .kids-wrapper .kids-link p,
.menu-bottom .offcanvas_footer-body .solutions-main-wrapper .solutions-nav-wrapper .kids-wrapper .kids-link p {
  margin-bottom: 0px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  color: #0054C0;
}
.menu-bottom .offcanvas-body .solutions-main-wrapper .solutions-nav-wrapper .kids-wrapper .kids-badge,
.menu-bottom .offcanvas_footer-body .solutions-main-wrapper .solutions-nav-wrapper .kids-wrapper .kids-badge {
  position: absolute;
  right: -16px;
  top: -8px;
  padding: 4px 6px;
  border-radius: 20px;
  background: linear-gradient(90deg, #00c0e8 0%, #6155f5 100%);
  font-size: 8px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.menu-bottom .offcanvas-body .footer_menu_list-wrapper,
.menu-bottom .offcanvas_footer-body .footer_menu_list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(229, 229, 229, 0.1215686275);
  margin-bottom: 24px;
}
.menu-bottom .offcanvas-body .footer_menu_list-wrapper .footer_menu_category_wrapper,
.menu-bottom .offcanvas_footer-body .footer_menu_list-wrapper .footer_menu_category_wrapper {
  padding: 6px 0px;
  border: none;
  background-color: transparent;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.menu-bottom .offcanvas-body .footer_menu_list-wrapper .footer_menu_category_wrapper .category-name,
.menu-bottom .offcanvas_footer-body .footer_menu_list-wrapper .footer_menu_category_wrapper .category-name {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-bottom .offcanvas-body .footer_menu_list-wrapper .footer_menu_category_wrapper .category-name .name,
.menu-bottom .offcanvas_footer-body .footer_menu_list-wrapper .footer_menu_category_wrapper .category-name .name {
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
}
.menu-bottom .offcanvas-body .footer_menu_list-wrapper .footer_menu_category_wrapper .category-name .offer_badge,
.menu-bottom .offcanvas_footer-body .footer_menu_list-wrapper .footer_menu_category_wrapper .category-name .offer_badge {
  padding: 6px 10px;
  border-radius: 40px;
  background-color: #fff;
  font-size: 10px;
  font-weight: 500;
  color: #212529;
  line-height: 1.2;
}
.menu-bottom .offcanvas-body .footer_menu_list-wrapper .footer_menu_category_wrapper .icon-wrapper,
.menu-bottom .offcanvas_footer-body .footer_menu_list-wrapper .footer_menu_category_wrapper .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-bottom .offcanvas-body .footer_menu_list-wrapper .footer_menu_category_wrapper .icon-wrapper .icon,
.menu-bottom .offcanvas_footer-body .footer_menu_list-wrapper .footer_menu_category_wrapper .icon-wrapper .icon {
  font-size: 20px;
  color: #fff;
}
.menu-bottom .offcanvas-body .footer_menu_list-wrapper .submenu,
.menu-bottom .offcanvas_footer-body .footer_menu_list-wrapper .submenu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 99999;
  padding: 0;
  margin: 0;
  list-style: none;
  background-color: #212529;
}
.menu-bottom .offcanvas-body .footer_menu_list-wrapper .submenu.active,
.menu-bottom .offcanvas_footer-body .footer_menu_list-wrapper .submenu.active {
  display: block;
}
.menu-bottom .offcanvas-body .footer_menu_list-wrapper .submenu li,
.menu-bottom .offcanvas_footer-body .footer_menu_list-wrapper .submenu li {
  padding: 0px 24px 16px 24px;
}
.menu-bottom .offcanvas-body .footer_menu_list-wrapper .submenu li .submenu-item,
.menu-bottom .offcanvas_footer-body .footer_menu_list-wrapper .submenu li .submenu-item {
  font-size: 16px;
  text-decoration: none;
  color: #343a40;
  font-weight: 400;
  position: relative;
  padding-right: 40px;
  display: flex;
}
.menu-bottom .offcanvas-body .footer_menu_list-wrapper .submenu li .submenu-item .course_badge-new,
.menu-bottom .offcanvas_footer-body .footer_menu_list-wrapper .submenu li .submenu-item .course_badge-new {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 4px 8px;
  border-radius: 40px;
  background: linear-gradient(to right, #fc466b 0%, #3f5efb 100%);
  font-size: 10px;
  font-weight: 600;
  color: #fff;
}
.menu-bottom .offcanvas-body .footer_menu_list-wrapper .submenu .submenu-header_footer,
.menu-bottom .offcanvas_footer-body .footer_menu_list-wrapper .submenu .submenu-header_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 14px;
  background-color: transparent;
  margin-bottom: 10px;
}
.menu-bottom .offcanvas-body .footer_menu_list-wrapper .submenu .submenu-header_footer .btn-closes,
.menu-bottom .offcanvas_footer-body .footer_menu_list-wrapper .submenu .submenu-header_footer .btn-closes {
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: transparent;
  border: none !important;
}
.menu-bottom .offcanvas-body .footer_menu_list-wrapper .submenu .back-wrapper .back-btn,
.menu-bottom .offcanvas_footer-body .footer_menu_list-wrapper .submenu .back-wrapper .back-btn {
  font-size: 24px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none !important;
}
.menu-bottom .offcanvas-body .footer_menu_list-wrapper .submenu .submenu-content-list,
.menu-bottom .offcanvas_footer-body .footer_menu_list-wrapper .submenu .submenu-content-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0px 16px;
}
.menu-bottom .offcanvas-body .footer_menu_list-wrapper .submenu .submenu-content-list .text-title,
.menu-bottom .offcanvas_footer-body .footer_menu_list-wrapper .submenu .submenu-content-list .text-title {
  margin-bottom: 0px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.36;
  color: #fff;
}
.menu-bottom .offcanvas-body .footer_menu_list-wrapper .submenu .submenu-content-list .submenu-content_list--items_wrapper,
.menu-bottom .offcanvas_footer-body .footer_menu_list-wrapper .submenu .submenu-content-list .submenu-content_list--items_wrapper {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: inherit;
  gap: 14px;
}
.menu-bottom .offcanvas-body .footer_menu_list-wrapper .submenu .submenu-content-list .submenu-content_list--items_wrapper li,
.menu-bottom .offcanvas_footer-body .footer_menu_list-wrapper .submenu .submenu-content-list .submenu-content_list--items_wrapper li {
  padding: 0px;
}
.menu-bottom .offcanvas-body .footer_menu_list-wrapper .submenu .submenu-content-list .submenu-content_list--items_wrapper li a,
.menu-bottom .offcanvas_footer-body .footer_menu_list-wrapper .submenu .submenu-content-list .submenu-content_list--items_wrapper li a {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8392156863);
  text-decoration: none;
  line-height: 1.6;
  align-items: start;
  justify-content: start;
  padding: 0px !important;
  opacity: 1 !important;
}
.menu-bottom .offcanvas-body .hotline-wrapper,
.menu-bottom .offcanvas_footer-body .hotline-wrapper {
  border-bottom: 1px solid rgba(229, 229, 229, 0.4862745098);
  margin-bottom: 24px;
  padding-bottom: 16px;
}
.menu-bottom .offcanvas-body .hotline-wrapper .hotline-title,
.menu-bottom .offcanvas_footer-body .hotline-wrapper .hotline-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.menu-bottom .offcanvas-body .hotline-wrapper .hotline-wrapper-list,
.menu-bottom .offcanvas_footer-body .hotline-wrapper .hotline-wrapper-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-bottom .offcanvas-body .hotline-wrapper .hotline-wrapper-list .hotline-item span,
.menu-bottom .offcanvas_footer-body .hotline-wrapper .hotline-wrapper-list .hotline-item span {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8392156863);
}
.menu-bottom .offcanvas-body .hotline-wrapper .hotline-wrapper-list .hotline-item a,
.menu-bottom .offcanvas_footer-body .hotline-wrapper .hotline-wrapper-list .hotline-item 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__grid--wrapper,
.menu-bottom .offcanvas_footer-body .footer__grid--wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.menu-bottom .offcanvas-body .footer__grid--wrapper .footer__gridItem .footer-section__Info,
.menu-bottom .offcanvas_footer-body .footer__grid--wrapper .footer__gridItem .footer-section__Info {
  margin-bottom: 16px;
}
.menu-bottom .offcanvas-body .footer__grid--wrapper .footer__gridItem .footer-section__Info .footer-section__company-title,
.menu-bottom .offcanvas_footer-body .footer__grid--wrapper .footer__gridItem .footer-section__Info .footer-section__company-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.menu-bottom .offcanvas-body .footer__grid--wrapper .footer__gridItem .footer-section__Info .footer-section__company--links,
.menu-bottom .offcanvas_footer-body .footer__grid--wrapper .footer__gridItem .footer-section__Info .footer-section__company--links {
  display: flex;
  flex-direction: column;
  list-style: none;
  align-items: start;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.menu-bottom .offcanvas-body .footer__grid--wrapper .footer__gridItem .footer-section__Info .footer-section__company--links li a,
.menu-bottom .offcanvas_footer-body .footer__grid--wrapper .footer__gridItem .footer-section__Info .footer-section__company--links li a {
  padding: 0px;
  display: flex;
  align-items: start;
  justify-content: start;
  text-align: start;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8392156863);
  opacity: 1;
  position: relative !important;
}
.menu-bottom .offcanvas-body .footer__grid--wrapper .footer__gridItem .footer-section__Info .footer-section__company--links li a .badge,
.menu-bottom .offcanvas_footer-body .footer__grid--wrapper .footer__gridItem .footer-section__Info .footer-section__company--links li a .badge {
  color: rgba(255, 255, 255, 0.8392156863);
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  top: 0px;
  right: -26px;
}
.menu-bottom .offcanvas-body .filter-section__contents--option_form,
.menu-bottom .offcanvas_footer-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,
.menu-bottom .offcanvas_footer-body .filter-section__contents--option_form .icon {
  top: 12px;
}
.menu-bottom .offcanvas-body .menu-list-contact-social,
.menu-bottom .offcanvas_footer-body .menu-list-contact-social {
  margin-bottom: 24px !important;
}
.menu-bottom .offcanvas-body .menu-list,
.menu-bottom .offcanvas_footer-body .menu-list {
  margin-bottom: 16px;
}
.menu-bottom .offcanvas-body .menu-list__title,
.menu-bottom .offcanvas_footer-body .menu-list__title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.6;
}
.menu-bottom .offcanvas-body .menu-list__items,
.menu-bottom .offcanvas_footer-body .menu-list__items {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.menu-bottom .offcanvas-body .menu-list__items li a,
.menu-bottom .offcanvas_footer-body .menu-list__items li a {
  padding: 4px 0;
  font-size: 14px;
  font-weight: 400;
  opacity: 1;
  display: flex;
  line-height: 1.6;
  flex-direction: row;
  align-items: center;
  color: rgba(255, 255, 255, 0.8392156863);
}
.menu-bottom .offcanvas-body .menu-list__items li a .badge,
.menu-bottom .offcanvas_footer-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,
.menu-bottom .offcanvas_footer-body .menu-list .newsletter-wrapper {
  position: relative;
}
.menu-bottom .offcanvas-body .menu-list .newsletter-wrapper .form-control-lg,
.menu-bottom .offcanvas_footer-body .menu-list .newsletter-wrapper .form-control-lg {
  width: 100%;
  font-size: 16px;
}
.menu-bottom .offcanvas-body .menu-list .newsletter-wrapper .send-btn,
.menu-bottom .offcanvas_footer-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,
.menu-bottom .offcanvas_footer-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,
.menu-bottom .offcanvas_footer-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,
.menu-bottom .offcanvas_footer-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,
.menu-bottom .offcanvas_footer-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,
.menu-bottom .offcanvas_footer-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 .menu-award-logo,
.menu-bottom .offcanvas_footer-body .menu-award-logo {
  border-bottom: 1px solid rgba(229, 229, 229, 0.1215686275);
  padding-bottom: 32px;
}
.menu-bottom .offcanvas-body .menu-award-logo .award-title,
.menu-bottom .offcanvas_footer-body .menu-award-logo .award-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.6;
  color: #fff;
}
.menu-bottom .offcanvas-body .menu-award-logo .awards-img-wrapper-grid,
.menu-bottom .offcanvas_footer-body .menu-award-logo .awards-img-wrapper-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
}
.menu-bottom .offcanvas-body .menu-award-logo .awards-img-wrapper-grid .awards-img-wrapper,
.menu-bottom .offcanvas_footer-body .menu-award-logo .awards-img-wrapper-grid .awards-img-wrapper {
  height: 29px !important;
  width: auto;
  position: relative;
}
.menu-bottom .offcanvas-body .menu-award-logo .awards-img-wrapper-grid .awards-img-wrapper img,
.menu-bottom .offcanvas_footer-body .menu-award-logo .awards-img-wrapper-grid .awards-img-wrapper img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.menu-bottom .offcanvas-body .subscription-wrapper .subscription-title,
.menu-bottom .offcanvas_footer-body .subscription-wrapper .subscription-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  margin-top: 24px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.menu-bottom .offcanvas-body .subscription-wrapper .subscription-description,
.menu-bottom .offcanvas_footer-body .subscription-wrapper .subscription-description {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8392156863);
  margin-bottom: 24px;
}
.menu-bottom .offcanvas-body .subscription-wrapper .subscribe-btn--lg,
.menu-bottom .offcanvas_footer-body .subscription-wrapper .subscribe-btn--lg {
  padding: 10px 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0px;
  background-color: #0054c0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
}
.menu-bottom .offcanvas-body .subscription-wrapper .subscribe-btn--lg .icon-wrapper,
.menu-bottom .offcanvas_footer-body .subscription-wrapper .subscribe-btn--lg .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-bottom .offcanvas-body .subscription-wrapper .input_group,
.menu-bottom .offcanvas_footer-body .subscription-wrapper .input_group {
  margin-bottom: 0px;
  width: 100%;
}
.menu-bottom .offcanvas-body .subscription-wrapper .form-wrapper,
.menu-bottom .offcanvas_footer-body .subscription-wrapper .form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.menu-bottom .offcanvas-body .subscription-wrapper .form-wrapper .input_group .form-control,
.menu-bottom .offcanvas-body .subscription-wrapper .form-wrapper .input_group input,
.menu-bottom .offcanvas_footer-body .subscription-wrapper .form-wrapper .input_group .form-control,
.menu-bottom .offcanvas_footer-body .subscription-wrapper .form-wrapper .input_group input {
  border: 1px solid rgba(255, 255, 255, 0.0235294118);
  padding: 10px 16px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.0666666667) !important;
  color: #fff;
  font-size: 14px;
}
.menu-bottom .offcanvas-body .content--wrapper,
.menu-bottom .offcanvas_footer-body .content--wrapper {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.menu-bottom .offcanvas-body .content--wrapper .icon-wrapper,
.menu-bottom .offcanvas_footer-body .content--wrapper .icon-wrapper {
  color: #fff;
  font-size: 18px;
  margin-top: 4px;
}
.menu-bottom .offcanvas-body .content--wrapper .menu-list__items--wrapper,
.menu-bottom .offcanvas_footer-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,
.menu-bottom .offcanvas_footer-body .content--wrapper .menu-list__items--wrapper li a {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8392156863);
  padding: 0 !important;
  opacity: 1 !important;
  line-height: 1.6;
  text-decoration: none;
}
.menu-bottom .offcanvas-body .footer-bottom,
.menu-bottom .offcanvas_footer-body .footer-bottom {
  padding: 20px 0 10px 0;
  display: flex;
  flex-direction: column;
}
.menu-bottom .offcanvas-body .footer-bottom__copyright,
.menu-bottom .offcanvas_footer-body .footer-bottom__copyright {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons,
.menu-bottom .offcanvas_footer-body .footer-bottom__socialIcons {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: start;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons li a,
.menu-bottom .offcanvas_footer-body .footer-bottom__socialIcons li a {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0px !important;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons li a .facebook,
.menu-bottom .offcanvas_footer-body .footer-bottom__socialIcons li a .facebook {
  font-size: 44px;
  color: #4267b2;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons li a .twitter,
.menu-bottom .offcanvas_footer-body .footer-bottom__socialIcons li a .twitter {
  color: #1da1f2;
  font-size: 40px;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons li a .instagram,
.menu-bottom .offcanvas_footer-body .footer-bottom__socialIcons li a .instagram {
  color: #c13584;
  font-size: 40px;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons li a .linkedin,
.menu-bottom .offcanvas_footer-body .footer-bottom__socialIcons li a .linkedin {
  color: #0077b5;
  font-size: 40px;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons li a.youtube-icon,
.menu-bottom .offcanvas_footer-body .footer-bottom__socialIcons li a.youtube-icon {
  background-color: #ff0000;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons li a.youtube-icon .youtube,
.menu-bottom .offcanvas_footer-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,
.menu-bottom .offcanvas_footer-body .footer-bottom__socialIcons li a.viber-icon {
  background-color: #59267c;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons li a.viber-icon .viber,
.menu-bottom .offcanvas_footer-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,
.menu-bottom .offcanvas_footer-body .footer-bottom__socialIcons li a.tiktok-icon {
  background: #ee1d51;
}
.menu-bottom .offcanvas-body .footer-bottom__socialIcons li a.tiktok-icon .tiktok,
.menu-bottom .offcanvas_footer-body .footer-bottom__socialIcons li a.tiktok-icon .tiktok {
  color: #fff;
  font-size: 24px;
}

.youtube {
  font-size: 24px !important;
}

.social_icons {
  opacity: 1 !important;
}

.facebook_icon {
  height: 28px !important;
}

.location-image-wrapper {
  height: 147px;
  width: 98%;
  position: relative;
  margin-bottom: 20px;
}
.location-image-wrapper img,
.location-image-wrapper iframe {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.location-image-wrapper .copy-linkbtn-main-wrapper {
  position: absolute;
  top: 8px;
  right: 7px;
  z-index: 2;
}
.location-image-wrapper .copy-linkbtn-wrapper {
  position: relative;
  display: inline-block;
}
.location-image-wrapper .copy-linkbtn-wrapper .copytooltip {
  visibility: hidden;
  background-color: #f3f7fc;
  color: #0054C0;
  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;
}
.location-image-wrapper .copyLinkBtn {
  padding: 6px 12px;
  background-color: white;
  color: #0054C0;
  font-size: 12px;
  font-weight: 400;
  border: none;
  outline: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery--sm {
  padding: 20px 0 100px 0;
}
.gallery--sm .header-section {
  text-align: center;
  position: relative;
  margin-bottom: 32px;
}
.gallery--sm .header-section .title {
  font-size: 14px;
  color: #343A40;
  font-weight: 600;
  margin-bottom: 0;
}
.gallery--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;
}
.gallery--sm .swiper-slide-wrapper {
  position: relative;
  height: 80vh;
}
.gallery--sm .swiper-slide-wrapper .banner-image {
  height: 100%;
  width: 100%;
}
.gallery--sm .swiper-slide-wrapper .banner-image .banner-image-wrapper {
  position: relative;
}
.gallery--sm .swiper-slide-wrapper .banner-image .banner-image-wrapper .hero-overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.655) 100%);
  left: 0;
  top: 0;
  z-index: -1;
}
.gallery--sm .swiper-slide-wrapper .banner-image .banner-image-wrapper img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.gallery--sm .swiper-slide-wrapper .banner-image .banner-image-wrapper h2 {
  background-color: white;
  text-align: start;
  margin-top: 120px;
}
.gallery--sm .swiper-slide-wrapper .banner-image .banner-image-wrapper .bg-blur {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  filter: blur(20px) brightness(0.7);
  transform: scale(1.1);
  z-index: -3;
}
.gallery--sm .swiper-slide-wrapper .banner-image-wrapper .main-banner-content-wrapper {
  position: relative !important;
  height: 100%;
  width: 100%;
}
.gallery--sm .swiper-slide-wrapper .banner-image-wrapper .main-banner-content {
  position: absolute;
  bottom: 118px;
  z-index: 1;
}
.gallery--sm .swiper-slide-wrapper .banner-image-wrapper .main-banner-content .content-title {
  font-size: 24px;
  font-weight: 800;
  color: white;
  text-align: start;
}
.gallery--sm .swiper-slide-wrapper .banner-image-wrapper .main-banner-content .banner-content-date-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 0px;
  margin: 0px;
}
.gallery--sm .swiper-slide-wrapper .banner-image-wrapper .main-banner-content .banner-content-date-wrapper .date-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: white;
  padding: 0px;
  font-size: 14px;
  font-weight: 600;
}
.gallery--sm .swiper-slide-wrapper .banner-image-wrapper .hero-banner-content {
  position: relative !important;
}
.gallery--sm .swiper-slide-wrapper .banner-image-wrapper .hero-banner-content .hero-banner-content-wrapper .banner-content-wrapper {
  position: absolute;
  bottom: 444px;
  z-index: 22;
  left: 0px;
}
.gallery--sm .thumbsslider-main-wrappper {
  position: relative !important;
}
.gallery--sm .thumbsslider-main-wrappper .thumbsslider-wrapppers .thumbsslider {
  position: absolute !important;
  bottom: 24px;
  max-width: 330px;
  z-index: 2;
}
.gallery--sm .thumbsslider-main-wrappper .thumbsslider-wrapppers .thumbsslider .thumbsslider-wrapper .thumbsslider-item {
  width: 100px !important;
  height: 60px !important;
  overflow: hidden;
  cursor: pointer !important;
  border: 1px solid white;
}
.gallery--sm .thumbsslider-main-wrappper .thumbsslider-wrapppers .thumbsslider .thumbsslider-wrapper .thumbsslider-item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery--sm .swiper {
  width: 100%;
  height: 100%;
}
.gallery--sm .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery--sm .thumbsslider {
  position: absolute;
}
.gallery--sm .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
.gallery--sm .swiper-slide {
  background-size: cover;
  background-position: center;
}
.gallery--sm .mySwiper2 {
  height: 100%;
  width: 100%;
}
.gallery--sm .mySwiper {
  height: auto;
  box-sizing: border-box;
  padding: 10px 0;
}
.gallery--sm .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}
.gallery--sm .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
.gallery--sm .gallery-hero-wrapper {
  background-color: #edfbff;
  text-align: center;
  background-color: #edfbff;
  height: 65vh;
  width: 100%;
  padding-top: 32px;
  position: relative;
  overflow: hidden;
}
.gallery--sm .gallery-hero-wrapper .hero-content {
  padding: 0 16px;
}
.gallery--sm .gallery-hero-wrapper .hero-content .galler-date {
  font-size: 12px;
  font-weight: 500;
  color: #495057;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.gallery--sm .gallery-hero-wrapper .hero-content .galler-date .icon {
  font-size: 12px;
}
.gallery--sm .gallery-hero-wrapper .hero-content .hero-title {
  font-size: 20px;
  font-weight: 700;
  color: #090d12;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
.gallery--sm .gallery-hero-wrapper .hero-content .hero-description {
  font-size: 16px;
  font-weight: 400;
  color: #26292c;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gallery--sm .gallery-hero-wrapper .hero-content .checkout-gallery-btn-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 99999;
}
.gallery--sm .gallery-hero-wrapper .hero-content .checkout-gallery-btn-wrapper .check-gallery-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #0054C0;
  gap: 8px;
}
.gallery--sm .gallery-hero-wrapper .hero-content .checkout-gallery-btn-wrapper .check-gallery-btn .icon {
  font-size: 20px;
  color: #0054C0;
}
.gallery--sm .gallery-hero-wrapper .hero-content .gallery-btn-wrapper .gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 16px;
  color: #fff;
  background-color: #0054C0;
  border-radius: 6px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}
.gallery--sm .gallery-hero-wrapper .hero-gallery-wrapper {
  margin-top: 40px;
  position: absolute;
  bottom: 0;
  left: -24px;
}
.gallery--sm .gallery-hero-wrapper .hero-gallery-wrapper .hero-gallery-grid {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: nowrap;
}
.gallery--sm .gallery-hero-wrapper .hero-gallery-wrapper .hero-gallery-grid .card-item-wrapper {
  flex: 0 0 auto;
  height: 30vh;
  width: 14vw;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}
.gallery--sm .gallery-hero-wrapper .hero-gallery-wrapper .hero-gallery-grid .card-item,
.gallery--sm .gallery-hero-wrapper .hero-gallery-wrapper .hero-gallery-grid .card-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery--sm .gallery-hero-wrapper .hero-gallery-wrapper .hero-gallery-grid .card-item .top-img,
.gallery--sm .gallery-hero-wrapper .hero-gallery-wrapper .hero-gallery-grid .card-wrapper .top-img {
  flex: 1;
  border-radius: 2px;
  border: 1px solid #fff;
}
.gallery--sm .gallery-hero-wrapper .hero-gallery-wrapper .hero-gallery-grid .card-item .bottom-img,
.gallery--sm .gallery-hero-wrapper .hero-gallery-wrapper .hero-gallery-grid .card-wrapper .bottom-img {
  height: 80px;
  border-radius: 2px 2px 0 0;
  border: 1px solid #fff;
}
.gallery--sm .gallery-hero-wrapper .hero-gallery-wrapper .hero-gallery-grid .card-item img,
.gallery--sm .gallery-hero-wrapper .hero-gallery-wrapper .hero-gallery-grid .card-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.gallery--sm .gallery-hero-wrapper .hero-gallery-wrapper .hero-gallery-grid .first-card .card-wrapper .top-img {
  height: auto;
}
.gallery--sm .gallery-hero-wrapper .hero-gallery-wrapper .hero-gallery-grid .second-card .card-item,
.gallery--sm .gallery-hero-wrapper .hero-gallery-wrapper .hero-gallery-grid .sixth-card .card-item {
  height: 48%;
  position: absolute;
  bottom: 0;
  border-radius: 2px 2px 0 0;
  border: 1px solid #fff;
}
.gallery--sm .gallery-hero-wrapper .hero-gallery-wrapper .hero-gallery-grid .third-card .card-item,
.gallery--sm .gallery-hero-wrapper .hero-gallery-wrapper .hero-gallery-grid .fifth-card .card-item {
  height: 38%;
  position: absolute;
  bottom: 0;
  border-radius: 2px 2px 0 0;
  border: 1px solid #fff;
}
.gallery--sm .gallery-hero-wrapper .hero-gallery-wrapper .hero-gallery-grid .forth-card .card-item {
  height: 30%;
  position: absolute;
  bottom: 0;
  border-radius: 2px 2px 0 0;
  border: 1px solid #fff;
}
.gallery--sm .gallery-hero-wrapper .hero-gallery-wrapper .hero-gallery-grid .seventh-card .card-wrapper {
  flex-direction: column;
}
.gallery--sm .gallery-hero-wrapper .hero-gallery-wrapper .overlay-fade {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0px;
  background: linear-gradient(to bottom, rgba(255, 252, 252, 0) 0%, rgba(250, 249, 249, 0) 43%, rgba(253, 252, 252, 0.2) 65%, rgba(255, 254, 254, 0.6) 88%, rgba(254, 253, 253, 0.7) 94%, rgb(254, 252, 252) 100%);
  z-index: 999;
}
.gallery--sm .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 32px;
}
.gallery--sm .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper .gallery-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gallery--sm .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper .gallery-card .image-wrapper {
  height: 208px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.gallery--sm .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper .gallery-card .image-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery--sm .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper .gallery-card .image-wrapper .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 55%, rgb(0, 0, 0) 100%);
  left: 0;
  top: 0;
}
.gallery--sm .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper .gallery-card .image-wrapper .photo-count-wrapper {
  position: absolute;
  left: 14px;
  bottom: -6px;
  z-index: 10;
}
.gallery--sm .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper .gallery-card .image-wrapper .photo-count-wrapper .photo-count-title,
.gallery--sm .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper .gallery-card .image-wrapper .photo-count-wrapper p {
  display: flex;
  gap: 8px;
  align-items: center;
  color: white;
  font-size: 12px;
  font-weight: 600;
}
.gallery--sm .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper .gallery-card .image-wrapper .photo-count-wrapper .photo-count-title .icon,
.gallery--sm .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper .gallery-card .image-wrapper .photo-count-wrapper p .icon {
  font-size: 15px;
}
.gallery--sm .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper .gallery-card .card-title {
  font-size: 14px;
  font-weight: 400;
  color: #505356;
  text-decoration: none !important;
}
.gallery--sm .tab-content .gallery-image-grid-main-wrapper .loadmore-btn-wrapper {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery--sm .tab-content .gallery-image-grid-main-wrapper .loadmore-btn-wrapper .loadMore {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #0054C0;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.gallery--sm .tab-content .gallery-image-grid-main-wrapper .loadmore-btn-wrapper .loadMore .icon {
  font-size: 18px;
}
.gallery--sm .category-content-main-wrapper .category-content-wrapper-tab .category-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 93px;
  z-index: 22;
  background-color: white;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.gallery--sm .category-content-main-wrapper .category-content-wrapper-tab .nav-pills {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  overflow-x: auto;
  /* Hide scrollbar - Firefox */
  scrollbar-width: none;
  /* Hide scrollbar - IE & Edge (legacy) */
  -ms-overflow-style: none;
}
.gallery--sm .category-content-main-wrapper .category-content-wrapper-tab .nav-pills::-webkit-scrollbar {
  display: none;
}
.gallery--sm .category-content-main-wrapper .category-content-wrapper-tab .nav-pills .nav-item .nav-links {
  padding: 8px 24px;
  border: none;
  background-color: #edf3fa;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #8b8e91;
  border-radius: 60px;
  border: 1px solid #e2e8ea;
  transition: 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.gallery--sm .category-content-main-wrapper .category-content-wrapper-tab .nav-pills .nav-item .nav-links.active {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  background-color: #0054C0;
}
.gallery--sm .category-content-main-wrapper .category-content-wrapper-tab .nav-pills .nav-item .nav-links:hover {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  background-color: #0054C0;
}
.gallery--sm .category-content-main-wrapper .category-content-wrapper-tab .dropdown-tab-wrapper .dropdown .dropdown-menu {
  padding: 10px 0;
}
.gallery--sm .category-content-main-wrapper .category-content-wrapper-tab .dropdown-tab-wrapper .dropdown .dropdown-menu .nav-item .nav-links,
.gallery--sm .category-content-main-wrapper .category-content-wrapper-tab .dropdown-tab-wrapper .dropdown .dropdown-menu .nav-item .dropdown-item {
  padding: 8px 16px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #8b8e91;
}
.gallery--sm .category-content-main-wrapper .category-content-wrapper-tab .dropdown-tab-wrapper .dropdown .dropdown-menu .nav-item .nav-links.active,
.gallery--sm .category-content-main-wrapper .category-content-wrapper-tab .dropdown-tab-wrapper .dropdown .dropdown-menu .nav-item .dropdown-item.active {
  border-bottom: 3px solid #26292c;
  color: #26292c;
}
.gallery--sm .category-content-main-wrapper .category-content-wrapper-tab .dropdown-tab-wrapper .dropdown .dropdown-toggle .icon {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e1e1e;
}
.gallery--sm .category-content-main-wrapper .category-content-wrapper-tab .dropdown-tab-wrapper .dropdown .dropdown-toggle::after {
  display: none;
}
.gallery--sm .category-content-main-wrapper .tab-content .gallery-grid-tab-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.gallery--sm .category-content-main-wrapper .tab-content .gallery-grid-tab-card-wrapper .nav-pills {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  /* Hide scrollbar - Firefox */
  scrollbar-width: none;
  /* Hide scrollbar - IE & Edge (legacy) */
  -ms-overflow-style: none;
}
.gallery--sm .category-content-main-wrapper .tab-content .gallery-grid-tab-card-wrapper .nav-pills::-webkit-scrollbar {
  display: none;
}
.gallery--sm .category-content-main-wrapper .tab-content .gallery-grid-tab-card-wrapper .nav-pills .nav-item .nav-links {
  padding: 8px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #8b8e91;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.gallery--sm .category-content-main-wrapper .tab-content .gallery-grid-tab-card-wrapper .nav-pills .nav-item .nav-links.active {
  border-bottom: 3px solid #0054C0;
  color: #0054C0;
}
.gallery--sm .category-content-main-wrapper .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 32px;
}
.gallery--sm .category-content-main-wrapper .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper .gallery-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gallery--sm .category-content-main-wrapper .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper .gallery-card .image-wrapper {
  height: 208px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.gallery--sm .category-content-main-wrapper .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper .gallery-card .image-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery--sm .category-content-main-wrapper .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper .gallery-card .image-wrapper .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 55%, rgb(0, 0, 0) 100%);
  left: 0;
  top: 0;
}
.gallery--sm .category-content-main-wrapper .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper .gallery-card .image-wrapper .photo-count-wrapper {
  position: absolute;
  left: 14px;
  bottom: -6px;
  z-index: 10;
}
.gallery--sm .category-content-main-wrapper .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper .gallery-card .image-wrapper .photo-count-wrapper .photo-count-title,
.gallery--sm .category-content-main-wrapper .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper .gallery-card .image-wrapper .photo-count-wrapper p {
  display: flex;
  gap: 8px;
  align-items: center;
  color: white;
  font-size: 12px;
  font-weight: 600;
}
.gallery--sm .category-content-main-wrapper .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper .gallery-card .image-wrapper .photo-count-wrapper .photo-count-title .icon,
.gallery--sm .category-content-main-wrapper .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper .gallery-card .image-wrapper .photo-count-wrapper p .icon {
  font-size: 15px;
}
.gallery--sm .category-content-main-wrapper .tab-content .gallery-image-grid-main-wrapper .gallery-image-grid-wrapper .gallery-card .card-title {
  font-size: 14px;
  font-weight: 400;
  color: #505356;
}
.gallery--sm .category-content-main-wrapper .tab-content .gallery-image-grid-main-wrapper .loadmore-btn-wrapper {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery--sm .category-content-main-wrapper .tab-content .gallery-image-grid-main-wrapper .loadmore-btn-wrapper .loadMore {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #0054C0;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.gallery--sm .category-content-main-wrapper .tab-content .gallery-image-grid-main-wrapper .loadmore-btn-wrapper .loadMore .icon {
  font-size: 18px;
}
.gallery--sm .gallery-category-section .category-heading-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.gallery--sm .gallery-category-section .category-heading-wrapper h2,
.gallery--sm .gallery-category-section .category-heading-wrapper .text-title {
  font-size: 30px;
  font-weight: 700;
  color: #090d12;
  margin-bottom: 0px;
}
.gallery--sm .gallery-category-section .category-heading-wrapper p,
.gallery--sm .gallery-category-section .category-heading-wrapper .text-description {
  font-size: 16px;
  font-weight: 400;
  color: #505356;
  margin-bottom: 0px;
}
.gallery--sm .gallery-category-section-wrapper .gallery-category-heading {
  padding-top: 32px;
  text-align: center;
}
.gallery--sm .gallery-category-section-wrapper .gallery-category-heading .category-title,
.gallery--sm .gallery-category-section-wrapper .gallery-category-heading h2,
.gallery--sm .gallery-category-section-wrapper .gallery-category-heading h3 {
  font-size: 28px;
  font-weight: 700;
  color: #090d12;
  margin-bottom: 8px;
}
.gallery--sm .gallery-category-section-wrapper .gallery-category-heading .sub-title,
.gallery--sm .gallery-category-section-wrapper .gallery-category-heading p {
  font-size: 16px;
  font-weight: 500;
  color: #1e1e1e;
  margin-bottom: 0px;
}
.gallery--sm .gallery-category-section-wrapper .gallery-category-grid-wrapper {
  margin-top: 32px;
}
.gallery--sm .gallery-category-section-wrapper .gallery-category-grid-wrapper .gallery-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 260px;
}
.gallery--sm .gallery-category-section-wrapper .gallery-category-grid-wrapper .gallery-card .card-img-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery--sm .gallery-category-section-wrapper .gallery-category-grid-wrapper .gallery-card .card-img-wrapper .card-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s linear;
}
.gallery--sm .gallery-category-section-wrapper .gallery-category-grid-wrapper .gallery-card .overlay-bg {
  position: absolute;
  left: 0;
  top: 0px;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 43%, rgba(0, 0, 0, 0.2) 65%, rgba(0, 0, 0, 0.6) 88%, rgba(0, 0, 0, 0.7) 94%, rgb(0, 0, 0) 100%);
}
.gallery--sm .gallery-category-section-wrapper .gallery-category-grid-wrapper .gallery-card .card-content {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
}
.gallery--sm .gallery-category-section-wrapper .gallery-category-grid-wrapper .gallery-card .card-content h6,
.gallery--sm .gallery-category-section-wrapper .gallery-category-grid-wrapper .gallery-card .card-content .card-title {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0px;
  text-decoration: none;
}
.gallery--sm .gallery-category-section-wrapper .gallery-category-grid-wrapper .gallery-card .icon-wrapper {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3098039216);
  border: 1px solid #e9ecef;
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery--sm .gallery-category-section-wrapper .gallery-category-grid-wrapper .gallery-card .icon-wrapper .icon {
  color: #fff;
  font-size: 24px;
}
.gallery--sm .gallery-category-section-wrapper .gallery-category-grid-wrapper .gallery-card:hover .card-img-wrapper .card-img {
  transform: scale(1.02);
}
.gallery--sm .corporate-training-section {
  padding-top: 32px;
}
.gallery--sm .corporate-training-section-wrapper .content-wrapper .date-wrapper {
  background-color: #edf3fa;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #343a40;
  margin-bottom: 16px;
}
.gallery--sm .corporate-training-section-wrapper .content-wrapper .date-wrapper .icon {
  font-size: 16px;
  color: #343a40;
}
.gallery--sm .corporate-training-section-wrapper .content-wrapper .text-title,
.gallery--sm .corporate-training-section-wrapper .content-wrapper h5,
.gallery--sm .corporate-training-section-wrapper .content-wrapper h6,
.gallery--sm .corporate-training-section-wrapper .content-wrapper h4 {
  font-size: 26px;
  font-weight: 700;
  color: #0054C0;
  margin-bottom: 32px;
}
.gallery--sm .corporate-training-section-wrapper .content-wrapper p,
.gallery--sm .corporate-training-section-wrapper .content-wrapper .text-description {
  font-size: 16px;
  font-weight: 400;
  color: #343a40;
  margin-bottom: 32px;
}
.gallery--sm .corporate-training-section-wrapper .content-wrapper .view-more-btn-wrapper .view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  background-color: #0054C0;
  color: #fff;
  padding: 8px 24px;
  border-radius: 6px;
  text-decoration: none;
}
.gallery--sm .corporate-training-section-wrapper .content-wrapper .view-more-btn-wrapper .view-more-btn .icon {
  font-size: 16px;
  color: #fff;
}
.gallery--sm .corporate-training-section-wrapper .corporate-img-wrapper {
  overflow: hidden;
}
.gallery--sm .corporate-training-section-wrapper .swiper-pagination-bullet {
  height: 12px !important;
  width: 12px !important;
  border-radius: 50%;
}
.gallery--sm .corporate-training-section-wrapper .swiper-pagination-bullet-active {
  width: 34px !important;
  border-radius: 10px !important;
}
.gallery--sm .corporate-training-section-wrapper .right-img-wrapper .card-img {
  border-radius: 8px;
  height: 189px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery--sm .corporate-training-section-wrapper .right-img-wrapper .card-left-img {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gallery--sm .corporate-training-section-wrapper .right-img-wrapper .card-left-img .card-img {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  height: 111px;
}
.gallery--sm .corporate-training-section-wrapper .right-img-wrapper .card-left-img .card-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery--sm .corporate-training-section-wrapper .right-img-wrapper .card-right-img {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gallery--sm .corporate-training-section-wrapper .right-img-wrapper .card-right-img .card-img {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  height: 111px;
}
.gallery--sm .corporate-training-section-wrapper .right-img-wrapper .card-right-img .card-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery--sm .gallery-wrapper {
  display: flex;
  gap: 24px;
  position: relative;
}
.gallery--sm .gallery-wrapper .category-heading-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.gallery--sm .gallery-wrapper .category-heading-wrapper h2,
.gallery--sm .gallery-wrapper .category-heading-wrapper .text-title {
  font-size: 26px;
  font-weight: 700;
  color: #090d12;
  margin-bottom: 0px;
}
.gallery--sm .gallery-wrapper .category-heading-wrapper p,
.gallery--sm .gallery-wrapper .category-heading-wrapper .text-description {
  font-size: 16px;
  font-weight: 400;
  color: #505356;
  margin-bottom: 0px;
}
.gallery--sm .gallery-wrapper .category-heading-wrapper .search-input {
  margin-top: 16px;
  max-width: 604px;
}
.gallery--sm .gallery-wrapper .category-heading-wrapper .search-input-wrapper {
  display: flex;
  border: 1px solid #dee2e6;
  background-color: #fff;
  align-items: center;
  justify-content: space-between;
  padding: 6px;
  border-radius: 8px;
}
.gallery--sm .gallery-wrapper .category-heading-wrapper .search-input-wrapper-box {
  width: 100%;
}
.gallery--sm .gallery-wrapper .category-heading-wrapper .search-input-wrapper-box input {
  border: none;
  outline: none;
}
.gallery--sm .gallery-wrapper .category-heading-wrapper .search-input-wrapper .search-btn {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
.gallery--sm .gallery-wrapper .category-heading-wrapper .search-input-wrapper .search-btn .icon {
  font-size: 18px;
  color: #cac1c1;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .gallery-filter-wrapper {
  position: sticky;
  top: 0px;
  z-index: 10;
  background-color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px;
  border-bottom: 1px solid #dee2e6;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .gallery-filter-wrapper .filter-title {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border-radius: 0;
  color: #0054C0;
  font-weight: 600;
  width: 100%;
  text-align: left;
  font-size: 14px;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .gallery-filter-wrapper .filter-title .icon {
  font-size: 14px;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .gallery-filter-wrapper .filter-icon-wrapper {
  border: none;
  outline: none;
  background-color: #fff;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .gallery-filter-wrapper .filter-icon-wrapper .icon {
  font-size: 20px;
  color: #202428;
}
@media (max-width: 576px) {
  .gallery--sm .gallery-wrapper .gallery-listing-wrapper .offcanvas {
    width: 80%;
  }
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .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;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .offcanvas .btn-close:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .offcanvas .btn-close iconify-icon {
  font-size: 20px;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .offcanvas-body .filter-section__contents--option {
  width: 100%;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .offcanvas-body .filter-section__contents--option_items {
  padding-bottom: 0;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .offcanvas-body .filter-section__contents--option_items #showMore {
  padding-top: 0;
  padding-bottom: 10px !important;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .offcanvas-body .filter-section__contents--option_items:first-child .filter-section__contents--option_items--title {
  padding-top: 0;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .offcanvas-body .filter-section__contents--option_items .title-wrapper {
  cursor: pointer;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .offcanvas-body .filter-section__contents--option_items .title-wrapper .icon iconify-icon {
  font-size: 20px;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .offcanvas-body .filter-section__contents--option_items--list:last-child {
  padding-bottom: 16px;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .sidebar {
  background: white;
  align-self: start;
  height: -moz-fit-content;
  height: fit-content;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .sidebar .nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .sidebar .nav .p-icon {
  font-size: 14px;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .sidebar .nav .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 14px 10px;
  border-bottom: 1px solid #dee2e6;
  border-radius: 0;
  color: #495057;
  font-weight: 400;
  width: 100%;
  text-align: left;
  font-size: 16px;
  transition: font-weight 0.1s ease;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .sidebar .nav .nav-link.active {
  background-color: #fff;
  color: #0054C0;
  font-weight: 600;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .sidebar .nav .nav-link .icon {
  margin-top: 2px;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .sidebar .nav .child-nav {
  margin: 8px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 1px solid #dee2e6;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .sidebar .nav .child-nav-link {
  display: flex;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #495057;
  padding: 10px 16px;
  border-bottom: 1px solid #dee2e6;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .gallery-masonry {
  -moz-column-count: 1;
       column-count: 1;
  -moz-column-gap: 4px;
       column-gap: 4px;
  overflow: hidden;
  position: static !important;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .gallery-masonry .gallery-item {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  background: #f0f0f0;
  border: 1px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  position: static !important;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .gallery-masonry .gallery-item .gallery-item-wrapper {
  position: relative;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .gallery-masonry .gallery-item .gallery-item-wrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s linear;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .gallery-masonry .gallery-item .gallery-item-wrapper:hover img {
  transform: scale(1.02);
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .gallery-masonry .gallery-item .gallery-item-wrapper .overlay-bg {
  position: absolute;
  left: 0;
  top: 0px;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 43%, rgba(0, 0, 0, 0.2) 65%, rgba(0, 0, 0, 0.6) 88%, rgba(0, 0, 0, 0.7) 94%, rgb(0, 0, 0) 100%);
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .gallery-masonry .gallery-item .gallery-item-wrapper .card-content {
  position: absolute;
  left: 0px;
  padding: 0 10px;
  bottom: 10px;
  z-index: 2;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .gallery-masonry .gallery-item .gallery-item-wrapper .card-content h6,
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .gallery-masonry .gallery-item .gallery-item-wrapper .card-content .card-title {
  font-size: 14px;
  font-weight: 400;
  color: #e9ecef;
  margin-bottom: 0px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .gallery--sm .gallery-wrapper .gallery-listing-wrapper .gallery-masonry .gallery-item .gallery-item-wrapper .card-content h6,
  .gallery--sm .gallery-wrapper .gallery-listing-wrapper .gallery-masonry .gallery-item .gallery-item-wrapper .card-content .card-title {
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  .gallery--sm .gallery-wrapper .gallery-listing-wrapper .gallery-masonry .gallery-item .gallery-item-wrapper .card-content h6,
  .gallery--sm .gallery-wrapper .gallery-listing-wrapper .gallery-masonry .gallery-item .gallery-item-wrapper .card-content .card-title {
    font-size: 10px;
  }
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .gallery-masonry .gallery-item .gallery-item-wrapper .icon-wrapper {
  position: absolute;
  right: 6px;
  top: 4px;
}
.gallery--sm .gallery-wrapper .gallery-listing-wrapper .gallery-masonry .gallery-item .gallery-item-wrapper .icon-wrapper .icon {
  color: #fff;
  font-size: 16px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.slick-dots {
  top: 162px;
  bottom: auto !important;
}
@media (max-width: 400px) {
  .slick-dots {
    top: 172px;
  }
}

.slick-dots li.slick-active button {
  background-color: #ff3f00 !important;
}

.open-position-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.open-position-wrapper .open-position-btn {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background-color: #0054C0;
  padding: 10px 16px;
  text-decoration: none;
}

.skeleton-grids {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .skeleton-grids {
    grid-template-columns: repeat(1, 1fr);
  }
}
.skeleton-grids .skeleton-box {
  width: 100%;
  height: 230px;
  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;
}
.skeleton-grids .skeleton-box-wrapper .skeleton-title {
  background-color: #e0e0e0;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  height: 24px;
  border-radius: 4px;
  width: 80%;
  margin-bottom: 0px;
  margin-top: 8px;
}
.skeleton-grids .skeleton-box-wrapper .skeleton-title::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%;
  }
}
/* Default: show 8 skeleton items */
#gallery-skeleton .skeleton-box-wrapper {
  display: block;
}

/* Life at Broadway: show only first 4 skeleton items */
#gallery-skeleton.life-at-broadway .skeleton-box-wrapper:nth-child(n+5) {
  display: none;
}
