:root {
  --eduvers-base: #22a6df;
  --eduvers-base-rgb: 104, 126, 255;
  --eduvers-black: #052143;
  --eduvers-black-rgb: 5, 33, 67;
  --eduvers-primary: #F87A53;
  --eduvers-primary-rgb: 248, 122, 83;
  --eduvers-secondary: #f8f7ff;
  --eduvers-secondary-rgb: 248, 247, 255;
  --eduvers-bdr-radius: 10px;
}
/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--eduvers-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--eduvers-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--eduvers-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}

.topNav_ul {list-style: none; margin: 0; padding: 0;display: flex; }
.topNav_ul li { margin-right: 10px;}
.topNav_ul li a {
  color: #fff; 
  text-decoration: none; 
  border-right: 1px solid #fff; 
  padding-right: 10px;
}
.topNav_ul li:last-child a {border-right: 0;}
.topNav_ul li a:hover { color: #77d9f7;}

/* Thm Btn Css */

.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--eduvers-base);
  color:#fff;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  padding: 17px 25px 17px;
  overflow: hidden;
  border-radius: var(--eduvers-bdr-radius);
  transition: all 0.5s linear;
  text-transform: capitalize;
  z-index: 1;
}

.thm-btn span {
  font-size: 14px;
}

.thm-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  background-color: var(--eduvers-black);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.thm-btn:hover:before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}


.thm-btn::after {
  position: absolute;
  background-color: var(--eduvers-black);
  bottom: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.thm-btn:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.thm-btn:hover {
   color:#fff;
}



/*==============================================
    Banner Two
===============================================*/
.banner-two {
  position: relative;
  display: block;
  padding: 170px 0 40px;
  background-color: #f8f4f2;
  z-index: 2;
}

.banner-two__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .70;
  z-index: -1;
}

.banner-two__shape-bg-two {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .20;
  z-index: -1;
}

.banner-two__inner {
  position: relative;
  display: block;
}

.banner-two__left {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-right: -20px;
  z-index: 3;
}

.banner-two__title-box {
  position: relative;
  display: block;
}

.banner-two__sub-title {
  position: relative;
  display: block;
}

.banner-two__sub-title p {
  position: relative;
  display: block;
  font-size: 16px;
  color: var(--eduvers-base);
  font-weight: 600;
  line-height: 1em;
  text-transform: uppercase;
  font-family: var(--eduvers-font-two);
}

.banner-two__title {
  position: relative;
  font-size: 42px;
  color: var(--eduvers-black);
  font-weight: 700;
  line-height: 1.2em;
  margin-top: 0px;
}

.banner-two__title span {
  color: var(--eduvers-base);
}

.banner-two__text {
  position: relative;
  display: block;
  font-size: 18px;
  color: rgba(var(--eduvers-black-rgb), 1);
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 44px;
}

.banner-two__thm-and-other-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.banner-two__btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.banner-two__btn-box-two {
  position: relative;
  display: block;
  line-height: 0;
}

.banner-two__btn-box-two .thm-btn {
  background-color: var(--eduvers-black);
}

.banner-two__btn-box-two .thm-btn::before,
.banner-two__btn-box-two .thm-btn::after {
  background-color: var(--eduvers-base);
}

.banner-two__btn-box-two .thm-btn:hover {
  color:#fff;
}

.banner-two__right {
  position: relative;
  display: block;
  margin-left: 110px;
  margin-top: -50px;
}

.banner-two__carousel .courses-three__title {
  margin-top: 2px;
  margin-bottom: 2px;
  font-size: 20px;
  line-height: 30px;
}

.courses-three__text {
  margin-bottom: 15px;
  line-height: 24px;
}

.banner-two__carousel .courses-three__single {
  margin-bottom: 0;
}

.banner-two__carousel .swiper-nav-style-one {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.banner-two__carousel .banner-two-dot-style1 {
  position: relative;
  display: inline-flex;
  line-height: 0;
}

.banner-two__carousel .banner-two-dot-style1 .swiper-pagination-bullet {
  position: relative;
  display: block;
  width: 40px;
  height: 6px;
  margin: 0px 6px;
  opacity: 1;
  border-radius: 0;
  background: transparent;
  border: 1px solid var(--eduvers-base);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.banner-two__carousel .banner-two-dot-style1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--eduvers-base);
}

.banner-two__carousel .banner-two-dot-style1 .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
.banner-two__carousel .banner-two-dot-style1 .swiper-pagination-bullet:hover {
  transform: scale(1.0);
}


.banner-two__category-search-box {
  position: relative;
  display: block;
  max-width: 960px;
  width: 100%;
  margin: 50px auto 0;
  z-index: 5;
}

.banner-two__category-search-inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.banner-two__category-select-box {
  position: relative;
  display: block;
  max-width: 290px;
  width: 100%;
}

.banner-two__category-select-box .select-box .nice-select {
  background-color: var(--eduvers-white);
  color: var(--eduvers-gray);
  font-size: 16px;
  font-weight: 400;
  height: 60px;
  line-height: 60px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin-bottom: 0px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.banner-two__category-select-box .select-box .nice-select:after {
  position: absolute;
  right: 30px;
}

.banner-two__category-form {
  position: relative;
  display: block;
  flex: 1;
}

.banner-two__category-input {
  position: relative;
  display: block;
}

.banner-two__category-input input[type="search"] {
  font-size: 16px;
  color: var(--eduvers-gray);
  font-weight: 400;
  height: 60px;
  width: 100%;
  background: var(--eduvers-white);
  border: none;
  border-left: 1px solid var(--eduvers-bdr-color);
  outline: none;
  padding: 0 20px 0;
  padding-right: 133px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.banner-two__category-btn {
  position: absolute;
  top: 7px;
  right: 7px;
  border: none;
  background-color: var(--eduvers-base);
  font-size: 18px;
  line-height: 18px;
  color: var(--eduvers-white);
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 10px;
  transition: 0.5s ease-in-out;
  overflow: hidden;
  z-index: 1;
}

.banner-two__category-btn:hover {
  background-color: var(--eduvers-black);
}

.banner-two__tags {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.banner-two__tags a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid var(--eduvers-bdr-color);
  color: var(--eduvers-base);
  background-color: var(--eduvers-white);
  padding: 6px 20px 6px;
  border-radius: 8px;
}

.banner-two__tags a:hover {
  background-color: var(--eduvers-base);
  color: var(--eduvers-white);
}



/*--------------------------------------------------------------
# Courses Three
--------------------------------------------------------------*/
.courses-three {
  position: relative;
  display: block;
  padding: 120px 0 67px;
  z-index: 1;
}

.courses-three__main-tab-box {
  position: relative;
  display: block;
}

.courses-three__filter {
  position: absolute;
  display: flex;
  align-items: center;
  border-radius: 25px;
  height: 50px;
  width: 510px;
  border: 1px solid var(--eduvers-bdr-color);
  padding: 3px 3px 3px;
  padding-right: 0;
  top: -110px;
  right: 0;
}

.courses-three__filter li {
  position: relative;
  display: flex;
  align-items: center;
}

.courses-three__filter li+li {
  margin-left: 0px;
}

.courses-three__filter li p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 14px;
  line-height: 14px;
  color: var(--eduvers-black);
  background-color: transparent;
  padding: 14px 15px 14px;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  border-radius: 25px;
  transition: all 0.5s linear;
  z-index: 1;
}

.courses-three__filter li.active p {
  color: var(--eduvers-white);
}

.courses-three__filter li p:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0%;
  background-color: var(--eduvers-base);
  transition: all 0.3s ease;
  z-index: -1;
}

.courses-three__filter li.active p:before {
  height: 100%;
}

.courses-three__inner {
  position: relative;
  display: block;
}

.courses-three__single {
  position: relative;
  display: block;
  background-color: #FCFCFC;
  border: 1px solid var(--eduvers-bdr-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 19px 19px 14px;
  margin-bottom: 40px;
}

.courses-three__img-box {
  position: relative;
  display: block;
}

.courses-three__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
}

.courses-three__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--eduvers-black-rgb), .70);
  opacity: 0;
  transform: translateY(90px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

.courses-three__single:hover .courses-three__img::before {
  opacity: 1;
  transform: translateY(0px);
}

.courses-three__img img {
  width: 100%;
  border-radius: 16px;
  transform: scale(1.0);
  transition: all 1500ms ease;
}

.courses-three__single:hover .courses-three__img img {
  transform: scale(1.05) rotate(0deg);
}

.courses-three__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.courses-three__tag span {
  position: relative;
  background-color: var(--eduvers-base);
  padding: 5px 15px 5px;
  border-radius: 5px;
  font-weight: 500;
  color: var(--eduvers-white);
}

.courses-three__content {
  position: relative;
  display: block;
  margin-top: 14px;
}

.courses-three__doller-and-review {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.courses-three__doller {
  position: relative;
  display: block;
}

.courses-three__doller p {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: var(--eduvers-base);
}

.courses-three__review {
  position: relative;
  display: block;
}

.courses-three__review p {
  font-size: 14px;
  line-height: 24px;
  color: var(--eduvers-black);
}

.courses-three__review p i {
  color: #FFC224;
  font-size: 14px;
}

.courses-three__review p span {
  font-size: 14px;
  line-height: 24px;
  color: var(--eduvers-gray);
}

.courses-three__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  margin-top: 8px;
  margin-bottom: 18px;
}

.courses-three__title a {
  color: var(--eduvers-black);
}

.courses-three__title a:hover {
  color: var(--eduvers-base);
}

.courses-three__btn-and-client-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.courses-three__btn-box {
  position: relative;
  display: block;
}

.courses-three__btn-box .thm-btn {
  padding: 14px 20px 14px;
}

.courses-three__client-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.courses-three__client-img {
  position: relative;
  display: block;
  max-width: 40px;
  width: 100%;
}

.courses-three__client-img img {
  width: 100%;
  border: 1px solid var(--eduvers-base);
  border-radius: 50%;
}

.courses-three__client-content {
  position: relative;
  display: block;
  flex: 1;
}

.courses-three__client-content h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 1px;
}

.courses-three__client-content p {
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
}

.courses-three__client-content p span {
  font-family: var(--eduvers-font) !important;
}

.courses-three__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  margin-top: 15px;
  border-top: 1px dashed var(--eduvers-bdr-color);
}

.courses-three__meta li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.courses-three__meta li .icon {
  position: relative;
  display: inline-block;
}

.courses-three__meta li .icon span {
  position: relative;
  display: inline-block;
  font-size: 12px;
  color: #FF3EA5;
}

.courses-three__meta li:nth-child(2) .icon span {
  color: #FFC224;
}

.courses-three__meta li:nth-child(3) .icon span {
  color: var(--eduvers-base);
}

.courses-three__meta li p {
  font-size: 14px;
  line-height: 24px;
}

/* Section Title Css */
.section-title {
  position: relative;
  display: block;
  margin-top: -6px;
  margin-bottom: 49px;
  z-index: 1;
}
.section-title p {font-size: 16px;}
.font_16{font-size: 14px;}

.section-title__tagline-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.section-title__tagline-shape {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: var(--eduvers-base);
  border-radius: 50%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.section-title__tagline-shape-2 {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--eduvers-black);
  border-radius: 50%;
  margin-left: -8px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.section-title__tagline {
  position: relative;
  display: block;
  color: var(--eduvers-base);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  font-family: var(--eduvers-font-two);
  margin-left: 7px;
}

.section-title__title {
  font-size: 36px;
  line-height: 1.2em;
  font-weight: 700;
}

.section-title__title span {
  color: var(--eduvers-base);
}


/*--------------------------------------------------------------
# live class Two
--------------------------------------------------------------*/
.live-class {
  position: relative;
  display: block;
  padding: 40px 0;
  z-index: 1;
}

.live-class__main-tab-box {
  position: relative;
  display: block;
}

.live-class__left {
  position: relative;
  display: block;
}

.live-class__left .section-title {
  margin-bottom: 34px;
}

/* ===== Tabs Container ===== */
.live-class__main-tab-box .tab-buttons {
  display: flex;
  gap: 5px;
  background: #22a6df24;
  padding: 5px;
  border-radius: 5px;
  overflow-x: auto;              /* 🔥 enable horizontal scroll */
  scroll-behavior: smooth;
}

/* Hide scrollbar (optional) */
.live-class__main-tab-box .tab-buttons::-webkit-scrollbar {
  display: none;
}
.live-class__main-tab-box .tab-buttons {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ===== Each Tab ===== */
.live-class__main-tab-box .tab-buttons .tab-btn {
  flex: 1;                       /* 🔥 equal width on desktop */
  display: flex;
  min-width: 0;                  /* prevent overflow issues */
}

/* ===== Button Inner ===== */
.live-class__buttons {
  width: 100%;
  background-color: var(--eduvers-black);
  padding: 10px 12px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Hover / Active Background Effect */
.live-class__buttons::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--eduvers-base);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: 0.4s;
  z-index: -1;
}

.live-class__main-tab-box .tab-buttons .tab-btn.active-btn .live-class__buttons::before {
  transform: scaleX(1) rotateX(0deg);
  opacity: 1;
}

/* ===== Text ===== */
.live-class__content-title a {
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  display: block;
}
/* ===== 📱 Mobile View ===== */
@media (max-width: 768px) {

  .live-class__main-tab-box .tab-buttons {
    flex-wrap: nowrap;           /* 🔥 no wrapping */
  }

  .live-class__main-tab-box .tab-buttons .tab-btn {
    flex: 0 0 auto;              /* 🔥 disable equal width */
    min-width: 180px;            /* 🔥 each tab fixed width */
  }

  .live-class__buttons {
    padding: 10px;
  }

  .live-class__content-title a {
    font-size: 13px;
    white-space: nowrap;         /* 🔥 single line tabs */
  }
}

.live-class__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height:40px;
  background-color: rgba(var(--eduvers-white-rgb), .20);
  border-radius: 50%;
  top: 0px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.live-class__icon::before {
  content: "\f144";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  font-size: 30px;
  color: var(--eduvers-black);
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
  width: 30px;
  height: 30px;
  background-color: rgba(var(--eduvers-white-rgb), .50);
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.live-class__content {
  position: relative;
  display: block;
  flex: 1;
}


.live-class__content-title {
font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
        margin: 0;
}

.live-class__content-title a {
  color:#fff;
}

.live-class__right {
  position: relative;
  display: block;
  margin-top:10px;
  z-index: 1;
}

.live-class__main-tab-box .tabs-content {
  position: relative;
  display: block;
}

.live-class__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateX(35px);
  -ms-transform: translateX(35px);
  transform: translateX(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.live-class__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}

.live-class__img-box {
  position: relative;
  display: block;
  border-radius: 40px;
  overflow: hidden;
      text-align: end;
}


.live-class__live-text {
  font-size: 14px;
  color: var(--eduvers-black);
  font-weight: 600;
  line-height: 14px;
}

.live-class__btn-box {
    display: block;
    margin-top: 40px;
}

.live-class__btn-box .thm-btn {
  width: 100%;
  background-color: var(--eduvers-black);
  justify-content: center;
}

.live-class__btn-box .thm-btn::after,
.live-class__btn-box .thm-btn::before {
  background-color: var(--eduvers-base);
}

.about-three__single-points {
  position: relative;
  display: block;
      margin-top: 5%;
      padding-left: 0px;
}

.about-three__single-points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-three__single-points li+li {
  margin-top: 5px;
}

.about-three__single-points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--eduvers-base);
  border-radius: 50%;
}

.about-three__single-points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 12px;
  color: #fff;
}

.about-three__single-points li p {
  flex: 1;
  font-size: 16px;
}

/* Logo Slider */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.customer-logos .slide {
    height: 200px;              /* same height for all slides */
    display: flex;
    align-items: center;        /* vertical center */
    justify-content: center;    /* horizontal center */
}

.customer-logos img {
    max-height: 150px;
    width: auto;
}
/* Logo Slider END */

.clientBox{background-color: #e0f4f9; padding: 40px 0 45px;}
.slick-slider {
    margin-bottom: 0px !important;;
}
.slider .slide{background-color: #fff; padding:10px; border-radius: 5px;    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;} 
.slider .slide img{border-radius: 5px;}

.logo_boxOver {
    width: 240px;
    height: 200px;
    position: absolute;
    z-index: 99;
    background: linear-gradient(-90deg, rgb(0, 166, 202) 0%, rgb(66, 110, 198) 100%);
    border-radius: 10px;
    top: 0;
    right: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
}
.logo_boxOver a { 
  font-size:18px;  
  color: #fff;
    font-weight: 500;
  }

/* testimonial-section Start */

.spacer{background: linear-gradient(90deg, rgb(36, 39, 77) 0%, rgb(57, 102, 179) 100%);}

.testimonial p {
	 font-size: 28px;
	 letter-spacing: 0.02em;
	 line-height: 35px;
}
 .testimonial .name {
	 font-weight: bold;
	 font-size: 18px;
	 letter-spacing: 0.04em;
	 line-height: 35px;
	 text-align: left;
}
 .testimonial .designation {
	 font-size: 14px;
	 letter-spacing: 0.04em;
	 text-align: left;
	 color: #fff;
	 opacity: 0.65;
}
 .unt {
	 margin-bottom: 20px;
	 margin-top: 60px;
}
 .hero-text {
	 font-size: 30px;
	 letter-spacing: 0.02em;
	 color: #fff;
}
 .gallery-thumbs {
	 height: 100%;
}
 .gallery-thumbs .swiper-wrapper {
	 align-items: center;
}
 .gallery-thumbs .swiper-slide {
	 background-position: center;
	 background-size: cover;
	 width: 300px !important;
	 height: 220px;
	 position: relative;
}
 .gallery-thumbs .swiper-slide img {
	filter: contrast(0.2) blur(1px);
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
	 border-radius: 10px;
         box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
}
 .gallery-thumbs .swiper-slide-active img {
	 filter: contrast(1) blur(0px) !important;
}
 .flex-row {
	 display: -webkit-box;
	 display: -ms-flexbox;
	 display: flex;
	 -ms-flex-wrap: wrap;
	 flex-wrap: wrap;
	 margin-right: -15px;
	 margin-left: -15px;
}
 .flex-row .flex-col {
	 -ms-flex-preferred-size: 0;
	 flex-basis: 0;
	 -webkit-box-flex: 1;
	 -ms-flex-positive: 1;
	 flex-grow: 1;
	 max-width: 100%;
	 position: relative;
	 width: 100%;
	 min-height: 1px;
	 padding-right: 15px;
	 padding-left: 15px;
}

.gallery-thumbs .swiper-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.testimonial-section .quote {
    width: 100%;
    height: 100%;
    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-pack: center;
    -ms-flex-pack: center;
/*    justify-content: center;*/
    padding-left: 100px;
    padding-right: 100px;
        padding-top: 3%;
}
.swiper-container.testimonial {
    height: 100vh;
}
.testimonial-section .user-saying {
    width: 60%;
    color: #fff;
    height: 100%;
}
.testi-user-img {
    width: 40%;
}
.testimonial-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.testimonial-section .quote p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}
.quote-icon {
    width: 38px;
    display: block;
    margin-bottom: 30px;
}
/* testimonial-section End */

.vendor_box{background-color: #000;}
.vendor_network {
       display: flex;
    align-items: center;
    justify-content: space-between;
    padding:0px 0% 0px 8%;
    width: 100%;
    box-sizing: border-box;
}
.text {
    flex: 1;
    padding-right: 40px;
    color: #fff;
}
.image {
    flex: 1;
    text-align: end;
}
.image img {
    width: 75%;
    height: auto;
    text-align: end;
}
.features-list {
    padding-left: 0;
    list-style-type: none;
    margin-top: 25px;
}
.features-list li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 34px;
    color: #666666;
}
.features-list li i {
        width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background-color: #1f5394;
    color: #fff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: inline-block;
    font-size: 10px;
    position: absolute;
    left: 0;
    top: 2px;
}

.whyC1_area{background-color: #f8f9fc; padding: 40px 0;}
    .whyC1_area h2{font-weight: 700;}
    .whyC1_area p{color: #6c757d;}
    .feature-card {
      border: none;
      border-radius: 12px;
      padding: 20px;
      height: 100%;
      box-shadow: 0 4px 12px rgba(0,0,0,0.04);
      transition: 0.2s ease;
        position: relative;
    }
    .feature-card:hover {
      transform: translateY(-4px);
        position: relative;
    }
    .why-icon-box {
      width: 45px;
      height: 45px;
      border-radius: 10px;
      background: #eef2ff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
      font-size: 20px;
      color: #4f46e5;
    }
    .why-cta-card {
      background: #f1f3ff;
      border-radius: 12px;
      padding: 25px;
      position: absolute;
      bottom: 20px;
      width: 90%;
    }

    .form_area_ftr{background: linear-gradient(135deg, #1c2340, #3a2b7a);color: #fff;}
    .heroForm {
      padding: 40px 0;
    }
    .form-card_ftr {
      background: #fff;
      color: #000;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .btn-primary {
      background: linear-gradient(90deg, #6ed3ff, #0087c1);
      border: none;
      border-radius:5px;
      padding: 10px;
      font-weight: 600;
    }
    .avatar-group img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 8px;
      border: 2px solid #fff;
    }
     .bnr-card-link {
      text-decoration: none;
      color: inherit;
      display: block;
      height: 100%;
    }

    .content-card_bnr {
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      height: 100%;
    }

    .bnr-card-link:hover .content-card_bnr {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    }

    .bnr_card-label {
      color: #0274a5;
      font-weight: 500;
      margin-bottom: 10px;
    }

    .bnr_card-title {
      font-size: 13px;
      font-weight: 600;
      color: #1f2a44;
      line-height: 1.4;
    }   
.counter-Box {
    border: 1px solid #000;
    border-radius:10px;
    padding: 15px;
    text-align: center;
    flex: 0 0 calc(33.33% - 14px);
}
.list_styl{    padding: 10px 0 0 0;}
.list_styl li{ list-style: none; padding: 5px 0;}  
.pad_60{padding: 40px 0 ;}
.section-title__title_h3{font-size: 32px;}

/* Counter Box Start */
.sectionClass {
  /* padding: 20px 0px 50px 0px; */
  position: relative;
  display: block;
}
.fullWidth {
  width: 100% !important;
  display: table;
  float: none;
  padding: 0;
  min-height: 1px;
  height: 100%;
  position: relative;
}
.sectiontitle {
  background-position: center;
  margin: 30px 0 0px;
  text-align: center;
  min-height: 20px;
}
.sectiontitle h2 {
    font-size: 1.75rem;
    color: #222;
    margin-bottom: 0px;
    padding-right: 10px;
    padding-left: 10px;
    font-weight: 700;
}
.headerLine {
  width: 160px;
  height: 2px;
  display: inline-block;
  background: #101F2E;
}
.projectFactsWrap{
    display: flex;
  margin-top: 30px;
  flex-direction: row;
  flex-wrap: wrap;
}
#projectFacts .fullWidth{
  padding: 0;
}
.projectFactsWrap .item{
  width: 20%;
  height: 100%;
  padding: 50px 0px;
  text-align: center;
}
 .projectFactsWrap .item:nth-child(1) {
  background: rgb(26, 55, 83);
  transition: all 0.3s ease;
}

.projectFactsWrap .item:nth-child(1):hover {
  background: rgb(40, 90, 130);
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  cursor: pointer;
}
.projectFactsWrap .item:nth-child(2){
    background: rgb(26 43 60);
    transition: all 0.3s ease;
}
.projectFactsWrap .item:nth-child(2):hover {
  background: rgb(40, 90, 130);
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  cursor: pointer;
}
.projectFactsWrap .item:nth-child(3){
     background: rgb(25 47 70);
     transition: all 0.3s ease;
}
.projectFactsWrap .item:nth-child(3):hover {
  background: rgb(40, 90, 130);
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  cursor: pointer;
}
.projectFactsWrap .item:nth-child(4){
      background: rgb(12 35 60);
      transition: all 0.3s ease;
}
.projectFactsWrap .item:nth-child(4):hover {
  background: rgb(40, 90, 130);
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  cursor: pointer;
}
.projectFactsWrap .item:nth-child(5){
  background: rgb(23, 44, 66);
  transition: all 0.3s ease;
}
.projectFactsWrap .item:nth-child(5):hover {
  background: rgb(40, 90, 130);
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  cursor: pointer;
}
.projectFactsWrap .item p.number{
  font-size: 40px;
  padding: 0;
  font-weight: bold;
}
.projectFactsWrap .item p{
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
  padding: 10px;
  font-family: 'Open Sans';
}
.projectFactsWrap .item span{
  width: 60px;
  background: rgba(255, 255, 255, 0.8);
  height: 2px;
  display: block;
  margin: 0 auto;
}
.projectFactsWrap .item i{
  vertical-align: middle;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.8);
}
.projectFactsWrap .item:hover i, .projectFactsWrap .item:hover p{
  color: white;
}
.projectFactsWrap .item:hover span{
  background: white;
}
@media (max-width: 786px){
  .projectFactsWrap .item {
     flex: 0 0 100%;
  }
  .projectFactsWrap .item {
    padding: 20px 0px;
}
}
/* Counter Box end */
.thankBox{    display: flex;
    text-align: center;
    color: rgb(52, 133, 0);
    min-height: 200px;
    align-items: center;
    justify-content: center;}
/*--------------------------------------------------------------
# Slider All Responsive Css
--------------------------------------------------------------*/
@media screen and (min-width: 1366px) and (max-width: 1366px) {
  .logo_boxOver {width: 200px;}
}
@media only screen and (min-width: 1200px) and (max-width: 1319px) {
    .banner-two__title { font-size: 50px;}
    .banner-two__right {margin-left: 35px;}
    .banner-two__right .courses-three__single { padding: 19px 19px 14px;}
    
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .banner-two__left {
        max-width: 600px;
        margin: 0 auto 0;
    }

    .banner-two__title {
        font-size: 48px;
    }

    .banner-two__text br {
        display: none;
    }

    .banner-two__right {
        max-width: 410px;
        margin: 50px auto 0;
    }
     .live-class__left {
        max-width: 600px;
        margin: 0 auto;
    }

    .live-class__left .section-title {
        text-align: center;
    }

    .live-class__right {
        max-width: 600px;
        margin: 50px auto 0;
    }

}


@media only screen and (min-width: 768px) and (max-width: 991px) {
  

    .banner-two__left {
        max-width: 600px;
        margin: 0 auto 0;
    }

    .banner-two__title {
        font-size: 48px;
    }

    .banner-two__text br {
        display: none;
    }

    .banner-two__right {
        max-width: 410px;
        margin: 50px auto 0;
    }
    .live-class__left {
        max-width: 600px;
        margin: 0 auto;
    }

    .live-class__left .section-title {
        text-align: center;
    }

    .live-class__right {
        max-width: 600px;
        margin: 50px auto 0;
    }

}

@media only screen and (max-width: 767px) {
    

    .banner-two__left {
        margin-top: 0;
        margin-right: 0;
    }

    .banner-two__title {
        font-size: 26px;
        line-height: 1.3em;
    }

    .banner-two__text br {
        display: none;
    }

.banner-two__text {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 20px;
}
    .banner-two__thm-and-other-btn-box {
        gap: 15px;
        flex-direction: column;
        align-items: baseline;
    }

    .banner-two__right {
        margin-left: 0;
        margin-top: 30px;
    }

    .banner-two__carousel .courses-three__title {
        font-size: 18px;
        line-height: 28px;
    }

    .banner-two__category-search-inner {
        flex-direction: column;
        gap: 20px;
    }

    .banner-two__category-select-box {
        max-width: 100%;
    }

    .banner-two__category-select-box .select-box .nice-select {
        border-radius: 10px;
    }

    .banner-two__category-input input[type="search"] {
        padding: 0 20px 0;
        border-radius: 10px;
    }

    .banner-two__category-form {
        width: 100%;
        text-align: center;
    }

    .banner-two__category-btn {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 20px;
    }

    .banner-two {
      padding: 100px 0 30px;
    }
    .live-class__buttons {
        flex-direction: column;
        align-items: baseline;
    }
    .live-class__content-title a br {
        display: none;
    }
    .live-class {
        padding: 67px 0 0px;
    }
    .testimonial-four {
        padding: 80px 0 80px;
    }
    .testimonial-four__carousel.owl-theme .owl-nav {
        display: none;
    }

    .live-class__main-tab-box .tab-buttons {
      display: grid;
    }
    .bnr_img img {width: 100%;} 
    .thm-btn {
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    padding: 10px 20px 10px;
    margin-bottom: 10px;
}
.section-title__title {
    font-size: 28px;}
.section-title__title_h3{font-size: 20px;font-weight: 700;}
.live-class__img-box img{width: 100%;}
.live-class__right {margin-top: 0px;}
.logo_boxOver {
    width: 83%;
    height: 42px;
    top: 210px;
    right: 31px;
}
.clientBox {
    padding: 32px 0 60px;
}
.vendor_network {
    padding: 20px 0% 20px 5%;
}
.image {display:none;}
.dsp_none{display:none;}

}