@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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  counter-reset: section;
}

.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: 500;
  font-size: 16px;
  line-height: 26px;
}

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

.sm-regular-text-bold {
  font-weight: 700;
  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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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-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: 14px;
  font-weight: 400;
  position: relative;
  z-index: 999;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid #DEE2E6;
  padding: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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::-webkit-input-placeholder {
  color: #cacaca;
}
.form-control::-moz-placeholder {
  color: #cacaca;
}
.form-control:-ms-input-placeholder {
  color: #cacaca;
}
.form-control::-ms-input-placeholder {
  color: #cacaca;
}
.form-control::placeholder {
  color: #cacaca;
}
.form-control:focus {
  -webkit-box-shadow: none;
          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::-webkit-input-placeholder {
  color: #cacaca;
}
.form-control-lg::-moz-placeholder {
  color: #cacaca;
}
.form-control-lg:-ms-input-placeholder {
  color: #cacaca;
}
.form-control-lg::-ms-input-placeholder {
  color: #cacaca;
}
.form-control-lg::placeholder {
  color: #cacaca;
}
.form-control-lg:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: 1px solid #e5e5e5;
}

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

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-weight: 300;
  background-color: #FF3F00;
  color: #fff;
  border-radius: 2px;
  bottom: 18px;
  right: 12px;
}
@media (max-width: 768px) {
  .course-card__imgWrapper .course-card__duration {
    bottom: 23px;
  }
}
.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: 300;
  font-size: 12px;
  color: #343A40;
  margin-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.course-card__upcommingClass-info--date .date--icon {
  font-size: 13.5px;
}
.course-card__upcommingClass-info--time {
  font-weight: 300;
  font-size: 12px;
  color: #343A40;
  display: -webkit-box;
  display: -ms-flexbox;
  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;
  -webkit-box-shadow: 2px 2px 6px 4px rgba(0, 0, 0, 0.04);
          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;
}

.studentTestimonial-section__slider {
  background-color: #fff;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 44px 0px rgba(20, 40, 103, 0.19);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.studentTestimonial-section__slider-card__content-studentDetails--image {
  width: 52px;
  height: 52px;
  -ms-flex-negative: 0;
      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: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

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

/* Hide full controls initially */
.plyr--video .plyr__controls {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.selectFilterOption--tag .cross-icon {
  font-size: 12px;
  color: rgba(108, 117, 125, 0.6);
  cursor: pointer;
}

.filter-section__contents {
  margin-top: 20px;
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.filter-section__contents.show-filter .filter-section__contents--option {
  display: none;
  width: 200px;
}
.filter-section__contents.show-filter .filter-section__contents--coursecards {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.filter-section__contents.show-filter .filter-section__contents--coursecards .course-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(25% - 20px);
          flex: 0 0 calc(25% - 20px);
}
.filter-section__contents.show-filter .filter-section__contents--successStoriesCards {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.filter-section__contents.show-filter .filter-section__contents--successStoriesCards .successStudent-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(25% - 20px);
          flex: 0 0 calc(25% - 20px);
}
.filter-section__contents--option {
  width: 300px;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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 {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #e5e5e5;
}
.filter-section__contents--option_items--list li .form-check-label {
  font-size: 16px;
  font-weight: 300;
  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 {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #e5e5e5;
}
.filter-section__contents--option_secondoption--list li .form-check-label {
  font-size: 16px;
  font-weight: 300;
  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 {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #e5e5e5;
}
.filter-section__contents--option_thirdoption--list li .form-check-label {
  font-size: 16px;
  font-weight: 300;
  color: #343A40;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.filter-section__contents--coursecards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  gap: 0 20px;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.filter-section__contents--coursecards .course-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.33% - 20px);
          flex: 0 0 calc(33.33% - 20px);
}
@media (max-width: 992px) {
  .filter-section__contents--coursecards .course-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 20px);
            flex: 0 0 calc(50% - 20px);
  }
}
.filter-section__contents--successStoriesCards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  gap: 0 20px;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.filter-section__contents--successStoriesCards .successStudent-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.33% - 20px);
          flex: 0 0 calc(33.33% - 20px);
}
@media (max-width: 992px) {
  .filter-section__contents--successStoriesCards .successStudent-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 20px);
            flex: 0 0 calc(50% - 20px);
  }
}

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

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

header {
  background-color: #fff;
}
header .top-header-sm {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 16px 0;
}
@media (max-width: 768px) {
  header .top-header-sm {
    display: block;
  }
}
header .top-header-sm__left__logo {
  width: auto;
  height: 60px;
  display: inline-block;
}
header .top-header-sm__left__logo img {
  width: auto;
  height: 100%;
}
header .top-header-sm__right__search {
  font-size: 24px;
  color: #343A40;
}

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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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: 300;
  color: #fff;
  text-decoration: none;
}
footer .footer-section__Contact-number {
  display: -webkit-box;
  display: -ms-flexbox;
  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;
}
footer .footer-section__Contact-number--mobile li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}
footer .footer-section__Contact-mail {
  display: -webkit-box;
  display: -ms-flexbox;
  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: 300;
  color: #fff;
}
footer .footer-section__payment-option-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
footer .footer-section__payment-option--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .footer-bottom__socialIcons li a {
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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;
  -webkit-box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.07);
}
.menu-bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-bottom ul li a {
  text-align: center;
  text-decoration: none;
  padding: 8px 0;
  display: inline-block;
  color: #fff;
  opacity: 0.4;
}
.menu-bottom ul li a.active {
  color: #fff;
  border-bottom: 3px solid #fff;
  opacity: 1;
}
.menu-bottom ul li a .menu-icon {
  width: 100%;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu-bottom ul li a .menu-icon iconify-icon {
  font-size: 20px;
}
.menu-bottom ul li a .menu-list {
  font-size: 13px;
}
.menu-bottom .offcanvas {
  background-color: #212529;
  padding: 24px;
}
@media (max-width: 576px) {
  .menu-bottom .offcanvas {
    width: 80%;
  }
}
.menu-bottom .offcanvas .btn-close-icon {
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: -46px;
  top: 18px;
  background-color: #212529;
  border-radius: 50%;
  padding: 10px;
  opacity: 1 !important;
  background-image: none !important;
  font-size: 20px;
  color: #fff;
}
.menu-bottom .offcanvas .btn-close-icon:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
.menu-bottom .offcanvas-body .filter-section__contents--option_form {
  border-top: 0;
  border-bottom: 0;
  padding: 0;
  margin-bottom: 24px;
  position: sticky;
  top: 0;
  background-color: #212529;
  z-index: 1;
}
.menu-bottom .offcanvas-body .filter-section__contents--option_form .icon {
  top: 12px;
}
.menu-bottom .offcanvas-body .menu-list {
  margin-bottom: 24px;
}
.menu-bottom .offcanvas-body .menu-list__title {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.menu-bottom .offcanvas-body .menu-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.menu-bottom .offcanvas-body .menu-list__items li a {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 400;
  opacity: 1;
}

.client-section--sm {
  padding: 20px 0 100px 0;
}
.client-section--sm .header-section {
  text-align: center;
  position: relative;
  margin-bottom: 32px;
}
.client-section--sm .header-section .title {
  font-size: 14px;
  color: #343A40;
  font-weight: 600;
  margin-bottom: 0;
}
.client-section--sm .header-section .back-btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  color: #343A40;
}
.client-section--sm .client_list--wrapper .title {
  font-size: 24px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 12px;
}
.client-section--sm .client_list--wrapper .client__list {
  margin: 0;
  padding: 0;
}
.client-section--sm .client_list--wrapper .client__list .previous-clients--card {
  background-color: #F8F9FA;
  border: 1px solid #DEE2E6;
  border-radius: 8px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.client-section--sm .client_list--wrapper .client__list .previous-clients--card:last-child {
  margin-bottom: 0;
}
.client-section--sm .client_list--wrapper .client__list .previous-clients--card .image-box {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.client-section--sm .client_list--wrapper .client__list .previous-clients--card .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.client-section--sm .client_list--wrapper .client__list .previous-clients--card .client--info .client-name {
  font-size: 18px;
  color: #212529;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 4px;
  display: inline-block;
}
.client-section--sm .client_list--wrapper .client__list .previous-clients--card .client--info .link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0054C0;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.1;
}
.client-section--sm .client_list--wrapper .client__list .previous-clients--card .client--info .link-wrapper .link {
  border-bottom: 1px solid #0054C0;
}
.client-section--sm .client_list--wrapper .client__list .previous-clients--card .client--info .link-wrapper .icon {
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  color: #0054C0;
}/*# sourceMappingURL=client.css.map */