@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/* Boxicons */
@font-face {
  font-family: boxicons;
  src: url("../fonts/boxicons/boxicons.ttf");
}
@font-face {
    font-family: "Times New Roman";
    src: url("../fonts/time-new-roman/times new roman.ttf");
  }
  @font-face {
  font-family: "Rise Of Kingdom";
  src: url("../fonts/rise-of-kingdom/rise-of-kingdom-2.ttf");
}
/* Root Styling */
:root {
--heading-font: 'Roboto Slab', serif;
  --color-primary: #6aada4;
  color-primary-light: ;
  --color-primary: #866dd2;
  --pie-color-1: ;
  --pie-color-2: ;
  --pie-color-3: ;
  --pie-color-4: ;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* General Styling */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: 'Roboto', sans-serif;
}
::selection {
  background-color: var(--color-primary);
  color: #fff;
}
a {
  display: inline-block;
  color: #000;
  transition: all 300ms ease-in-out;
}
ul,
ol,
dl {
  margin-bottom: 0;
}
.imgFluid {
  max-width: 100%;
  height: auto;
}
h1,h2,h3,h4,h5,h6,.heading,.subHeading{
    font-family: var(--heading-font);
}
button {
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
i.bx {
  font-family: boxicons;
  vertical-align: middle;
}
.padd-y {
  padding: 5rem 0;
}
.mar-y {
  margin: 4rem 0;
}
.mar-yy {
  margin: 2rem 0;
}
/* ThemeBtn */
/* .dashboard-1 .themeBtn {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 0.9rem;
  font-family: var(--font-tenor-sans);
  border: 2px solid var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  padding: 0.75rem 2rem;
  position: relative;
  z-index: 1;
} */
.dashboard-1 .themeBtn--center {
  margin: 1rem auto;
}
.dashboard-1 .themeBtn--full {
  width: 100%;
}
.dashboard-1 a.themeBtn:hover {
  color: #fff;
  border-color: var(--color-primary);
  background: var(--color-primary);
}
.dashboard-1 .themeBtn:hover i {
}

/* Card Hover */
.dashboard-1 .card-hover__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.dashboard-1 .card-hover__img > img {
  transition: all 500ms ease-in-out;
}
.dashboard-1 .card-hover:hover .card-hover__img > img {
  transform: scale(1.2);
}
.dashboard-1 .bubble-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.dashboard-1 .bubble-card::before {
  content: "";
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 100px;
  position: absolute;
  left: -5rem;
  top: -5rem;
  transition: all 300ms ease-in-out;
  z-index: -1;
}
.dashboard-1 .bubble-card:hover::before {
  transform: scale(50);
}
.dashboard-1 .bubble-card:hover *:not(.themeBtn) {
  color: #fff;
}
/* Section Heading */
.dashboard-1 .section-content {
  color: #000;
}
.dashboard-1 .section-content--light * {
  color: #fff;
}
.section-content :is(.heading, .subHeading) {
    font-family: var(--heading-font);
}
.section-content .heading--line {
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 0 !important;
}
.section-content .heading--line::after {
  content: "";
  width: 13%;
  height: 4px;
  border-radius: 100px;
  background: var(--color-primary);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.dashboard-1 .section-content .heading {
  font-size: 1.75rem;
  line-height: 1.15;
  margin-bottom: 0.25rem;
  font-weight: 600;
  text-transform: capitalize;
}
.dashboard-1 .section-content .subHeading {
  font-size: 2rem;
}
.dashboard-1 .section-content p {
  font-size: 0.99rem;
  font-weight: 400;
  line-height: 1.75;
  margin: 0.75rem 0;
  color: #6d6f75;
}
.dashboard-1 .color-primary {
  color: var(--color-primary) !important;
}
.dashboard-1 .color-secondry {
  color: var(--color-primary) !important;
}
.dashboard-1 .fancy-link {
  display: inline-block;
  padding: 0.15rem 0;
  color: var(--color-primary) !important;
  position: relative;
  isolation: isolate;
  transition: all 300ms;
  margin-inline: 0.25rem;
}
.dashboard-1 .fancy-link::after {
  content: "";
  width: 100%;
  height: 2px;
  border: 1px dashed var(--color-primary) !important;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: all 300ms;
}
.dashboard-1 .fancy-link:hover::after {
  border-style: solid !important;
}
/*Header*/
.dashboard-1 .header-logo {
  width: 100%;
  font-size: 2.25rem;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
}
.dashboard-1 .header-logo:hover {
  color: var(--color-primary);
}
.dashboard-1 .header-logo > img {
  width: 100px;
  object-fit: cover;
}
.dashboard-1
  :is(.header-actions, .header-actions__search, .header-actions__notify) {
  display: flex;
  align-items: center;
}
.dashboard-1 .header-wrapper {
  display: flex;
  justify-content: space-between;
}
.dashboard-1 .header-actions {
  justify-content: flex-end;
  gap: 1rem;
}
.dashboard-1 .header-actions__search {
  justify-content: flex-start;
  gap: 0.75rem;
  background: #fff;
  line-height: 1;
  border-radius: 0.35rem;
  overflow: hidden;
  padding: 0.5rem 1rem;
  height: 50px;
}
.dashboard-1 .header-actions__search :is(input, button) {
  outline: none;
  background: none;
  border: none;
}
.dashboard-1 .header-actions__search > input {
  width: 100%;
  color: #000;
  font-size: 0.95rem;
  font-weight: 500;
}
.dashboard-1 .header-actions__search::placeholder {
  color: #cdcdcd;
  font: inherit;
}
.dashboard-1 .header-actions__search > button {
  color: #cdcdcd;
  font-size: 1.5rem;
}
.dashboard-1 .header-actions__search > button:hover {
  color: var(--color-primary);
}
.dashboard-1 .header-actions__notify {
  color: #000;
  width: 50px;
  aspect-ratio: 1/1;
  font-size: 1.5rem;
  justify-content: center;
  background: #fff;
  border-radius: 0.25rem;
}
.dashboard-1 .header-actions__notify:hover {
  color: #fff;
  background: var(--color-primary);
}
.dashboard-1 .header-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: capitalize;
  font-family: var(--heading-font);
}

/*DashBoard*/
.dashboard-1 .dashboard-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--color-primary-medium);
  padding: 1rem 0 7rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.dashboard-1 .dashboard-sidebar::-webkit-scrollbar {
  width: 7px;
}
.dashboard-1 .dashboard-sidebar::-webkit-scrollbar-track {
  background: rgba(0, 0, 255, 0.122);
  border-radius: 100px;
}
.dashboard-1 .dashboard-sidebar::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: var(--color-primary);
  opacity: 0.25;
}
.dashboard-1.dashboard {
  padding: 1.5rem;
  background: #f6f7fb;
  min-height: 100vh;
}
.dashboard-1 .dashboard-sidebar__nav {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.25rem;
  margin: 4rem 0 1rem;
}
.dashboard-1 .dashboard-sidebar__nav li {
  width: 100%;
}
.dashboard-1 .dashboard-sidebar__nav li a {
  color: #00000070;
  width: 100%;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.5rem;
  padding: 0.75rem;
  gap: 0.65rem;
}
.dashboard-1 .dashboard-sidebar__nav li a .content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-transform: capitalize;
}
.dashboard-1 .dashboard-sidebar__nav li a .new {
  background: var(--color-primary);
  color: #fff;
  padding: 5px 10px;
  line-height: 1;
  border-radius: 0.25rem;
}
.dashboard-1 .dashboard-sidebar__nav li a i {
  font-size: 1.5rem;
}
.dashboard-1 .dashboard-sidebar__nav li a:where(:hover, .active) {
  color: var(--color-primary);
  background: #fff;
}
.dashboard-1 .course-box {
  background: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 2px solid #ececec;
}
.dashboard-1 .course-title {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 1rem;
}
.dashboard-1
  :is(
    .course-activity__list li,
    .course-activity__list li .icon,
    .course-activity__list .date
  ) {
  display: flex;
  align-items: center;
}
.dashboard-1 .course-activity__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  height: 320px;
  overflow-y: auto;
  padding: 0.25rem;
}
.dashboard-1 .course-activity__list::-webkit-scrollbar {
  width: 6px;
}
.dashboard-1 .course-activity__list::-webkit-scrollbar-track {
  background: rgba(0, 0, 255, 0.122);
  border-radius: 100px;
}
.dashboard-1 .course-activity__list::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: var(--color-primary);
  opacity: 0.25;
}
.dashboard-1 .course-activity__list li {
  width: 100%;
  justify-content: flex-start;
  gap: 0.5rem;
  position: relative;
}
.dashboard-1 .course-activity__list >li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 30px;
  background: #9d9f9e;
  position: absolute;
  left: 8%;
  top: 145%;
  transform: translate(-50%, -50%);
  z-index: 11;
}
.dashboard-1 .course-activity__list li .icon {
  width: 40px;
  color: var(--color-primary);
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: var(--color-primary-light);
  justify-content: center;
  font-size: 1.35rem;
  flex: 0.2;
}
.dashboard-1 .course-activity__list li .content {
  flex: 1;
}
.dashboard-1 .course-activity__list .title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
  margin-bottom: 0.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dashboard-1 .course-activity__list .date {
  color: #b1b1b1;
  font-size: 0.8rem;
  font-weight: 600;
  justify-content: flex-start;
  gap: 0.5rem;
}
.dashboard-1 .course-activity__list .date i {
  font-size: 1.25rem;
}

.dashboard-1 .dashboard-body {
  padding-inline: 1.75rem;
}
/*Courses*/
.dashboard-1 .courses-card {
  background: var(--color-primary-medium);
  border-radius: 0.75rem;
  padding: 0.75rem;
  width: 330px;
}
.dashboard-1 .courses-card__img {
  width: 100%;
  height: 410px;
  border-radius: 0.75rem;
  overflow: hidden;
}
.dashboard-1 .courses-card__img > img {
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
  /* object-position: top; */
}
.dashboard-1 .courses-card__content {
  padding: 0.5rem 0 0;
}
.dashboard-1 .courses-card__content .title {
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: capitalize;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.dashboard-1 .courses-card__content .lessons {
  color: #a69e93;
  font-size: 0.8rem;
  font-weight: 600;
}
.dashboard-1
  :is(
    .courses-card__content .wrapper,
    .courses-card__content .students,
    .courses-card__content .view-details
  ) {
  display: flex;
  align-items: center;
}
.dashboard-1 .courses-card__content .wrapper {
  margin-top: 2rem;
  justify-content: space-between;
}
.dashboard-1 .courses-card__content .students {
  justify-content: flex-start;
}
.dashboard-1 .courses-card__content .students li {
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.dashboard-1 .courses-card__content .students li:nth-child(2) {
  left: -15px;
}
.dashboard-1 .courses-card__content .students li:nth-child(3) {
  left: -30px;
}
.dashboard-1 .courses-card__content .students li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.dashboard-1 .courses-card__content .view-details {
  border-radius: 0.35rem;
  aspect-ratio: 1/1;
  background: var(--color-primary);
  color: #fff;
  width: 40px;
  font-size: 2rem;
  justify-content: center;
}

.dashboard-1
  :is(.courses-list__single, .course-details, .course-details__icon) {
  display: flex;
  align-items: center;
}
.dashboard-1 .courses-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  margin: 2rem 0 1rem;
}
.dashboard-1 .courses-list__single {
  width: 100%;
  color: #000;
  justify-content: space-between;
}
.dashboard-1 .courses-list__single .title {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: capitalize;
  flex: 0.5;
}
.dashboard-1 .courses-list__single .title.title--heading {
  color: #b5b5b5;
}
.dashboard-1 .course-details {
  justify-content: flex-start;
  gap: 0.75rem;
  line-height: 1.45;
  flex: 1;
}
.dashboard-1 .course-details__icon {
  width: 60px;
  color: var(--color-primary);
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
  background: var(--color-primary-light);
  justify-content: center;
  font-size: 2rem;
}
.dashboard-1 .course-details__content .name {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: capitalize;
}
.dashboard-1 .course-details__content .lessons {
  color: #a69e93;
  font-size: 0.75rem;
  font-weight: 500;
}
.dashboard-1 .courses-list__single > div:first-child {
  flex: 1;
}
.dashboard-1 .course-details__content {
  flex: 1;
}

/*Profile*/
.dashboard-1
  :is(
    .profile-header,
    .profile-header__edit,
    .profile-user,
    .profile-user__name
  ) {
  display: flex;
  align-items: center;
}
.dashboard-1 .profile-header {
  justify-content: space-between;
}
.dashboard-1 .profile-header__edit {
  color: #000;
  width: 50px;
  aspect-ratio: 1/1;
  font-size: 1.5rem;
  justify-content: center;
  background: #fff;
  border-radius: 0.25rem;
}
.dashboard-1 .profile-header__edit:hover {
  color: #fff;
  background: var(--color-primary);
}
.dashboard-1 .profile-user {
  flex-direction: column;
  margin: 2rem 0;
}
.dashboard-1 .profile-user__img {
  width: 130px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
  margin: auto;
  box-shadow: 0 0 15px 1px #00000020;
}
.dashboard-1 .profile-user--file label.profile-user__img {
    cursor: pointer;
    width: 250px;
}
.dashboard-1 .profile-user--file .profile-user__name {
    font-size: 1.75rem;
}

.profile-user.profile-user--file {
    gap: 0.75rem;
}
.dashboard-1 .profile-user__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.dashboard-1 .profile-user__name {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: capitalize;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.5rem 0 0.1rem;
}
.dashboard-1 .profile-user__name i {
  color: var(--color-primary);
  font-size: 1.5rem;
}
.dashboard-1 .profile-user__level {
  color: #b5b5b5;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1px;
}

/*Course Detail*/
.dashboard-1 .course-detail__img {
  width: 100%;
  height: 600px;
  border-radius: 2rem;
  overflow: hidden;
}
.dashboard-1 .course-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.dashboard-1 .course-content__rating {
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1;
}
.dashboard-1 .course-content__rating .stars {
  display: flex;
  align-items: center;
  color: yellow;
  font-size: 1.25rem;
  gap: 0.15rem;
}
.dashboard-1 .course-detail__heading {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 2.5rem;
  margin: 1rem 0;
}
.dashboard-1 .course-detail > p {
  font-size: 1rem;
  font-weight: 500;
  margin: 1rem 0;
}
.dashboard-1 .enroll-content {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 1rem 0;
  flex-wrap: wrap;
}
.dashboard-1 .enroll-text span {
  font-weight: bold;
}
.dashboard-1 .enroll-text .date {
  color: grey;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}
.dashboard-1 .perks {
  padding: 25px 0 5px;
}
.dashboard-1 .perks-single {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
}
.dashboard-1 .perks-single__icon {
  font-size: 1.35rem;
  color: var(--color-primary);
  background-color: var(--color-primary-light);
  border-radius: 100%;
  width: 100%;
  aspect-ratio: 1/1;
  flex: 0.15;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-1 .perks-single__content {
  flex: 1;
}
.dashboard-1 .course-detail .title {
  font-weight: 600;
}
.dashboard-1 .perks-single__content :is(a,p) {
  color: grey;
  font-size: 12px;
  margin: 0;
}
.dashboard-1 .course-detail .enrollBtn {
  border-radius: 25px;
  font-size: 0.75rem !important;
  padding: 0.6rem 1rem !important;
}
.dashboard-1 .enroll-text .title {
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0;
}

.dashboard-1 .course-content {
  padding: 2rem 2.5rem;
}

.dashboard-1 .course-content__rating .rating {
  font-size: 1rem;
  color: #777;
  font-weight: 6500;
}

.dashboard-1 .course-content__rating .total {
  font-size: 1.15rem;
  font-weight: bold;
}

/*Homework*/
.dashboard-1 .homework-list {
  display: flex;
  justify-content: flex-start;
  gap: 1.35rem;
  flex-direction: column;
}
.dashboard-1 :is(.homework-list__single, .homework-list__single .wrapper) {
  display: flex;
  align-items: center;
}
.dashboard-1 .homework-list li {
  width: 100%;
}
.dashboard-1 .homework-list__single .percent-circle {
  position: relative;
  width: 55px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-1 .homework-list__single .percent-circle canvas {
  width: 55px !important;
  height: 55px !important;
  position: absolute;
  top: 0;
  left: 0;
}
.dashboard-1 .homework-list__single .percent-circle .percent {
  color: #6f6f6f;
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
}

.dashboard-1 .percent:after {
  content: "%";
}
.dashboard-1 .homework-list__single {
  color: #000;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 10px 1px #00000020;
  border-radius: 0.75rem;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}
.dashboard-1 .homework-list__single:hover * {
  /*   color: #000 !important; */
}
.dashboard-1 .homework-list__single:hover {
  color: #000 !important;
  background: var(--color-primary-light);
}
.dashboard-1 .homework-list__single .wrapper {
  justify-content: flex-start;
  gap: 0.85rem;
}
.dashboard-1 .homework-list__single .title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
}
.dashboard-1 .homework-list__single .tasks {
  color: #a69e93;
  font-size: 0.85rem;
  font-weight: 500;
}
.dashboard-1 .homework-list__single .arrow {
  font-size: 2.5rem;
}
/* classes */
/* classes */
.dashboard-1
  .classes-card
  :is(
    .courseWrapper,
    .classes-card__body .classes-perks,
    .classes-card__body .classes-perks li,
    .classes-card__header .class-details .name
  ) {
  display: flex;
  align-items: center;
}
.dashboard-1 .classes-card__header .courseWrapper {
  justify-content: flex-start;
  gap: 1rem;
}
.dashboard-1 .classes-card__header .class-img {
  width: 70px;
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
  overflow: hidden;
}
.dashboard-1 .classes-card__header .class-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dashboard-1 .classes-card__header .class-details .title {
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: capitalize;
}
.dashboard-1 .classes-card__header .class-details .name {
  color: #a69e93;
  font-size: 1rem;
  font-weight: 500;
  gap: 0.45rem;
}
.dashboard-1 .classes-card__header .class-details .name i {
  font-size: 1.1rem;
}
.dashboard-1 .classes-card__body {
  padding: 1.5rem 0;
  border: 2px solid #ccc;
  border-inline: none;
}
.dashboard-1 .classes-card__body .classes-perks {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 0;
}
.dashboard-1 .classes-card__body .classes-perks li {
  color: #a69e93;
  width: 50%;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: capitalize;
  justify-content: flex-start;
  gap: 0.5rem;
}
.dashboard-1 .classes-card__body .classes-perks li i {
  font-size: 1.25rem;
}
.dashboard-1 .classes-card__footer .view-class {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  text-align: center;
  padding: 0.75rem 0;
}
.dashboard-1
  :is(.classes-card__header, .classes-card__body, .classes-card__footer) {
  padding-inline: 1.25rem !important;
}
.dashboard-1 .student_detail li em {
  font-size: 12px;
}
.dashboard-1 .student-heading {
  font-size: 1.75rem;
  font-weight: 600;
  text-transform: capitalize;
  padding-top: 40px;
}
.dashboard-1 .student_detail li {
  margin-bottom: 15px;
}
.dashboard-1 .classes-card {
  background: #fff;
  box-shadow: 0 0 15px 5px #00000020;
  border-radius: 0.75rem;
  overflow: hidden;
  margin: 1em 0;
}

.dashboard-1 .classes-card__header {
  padding: 1rem;
}

.dashboard-1 .optionsWrapper {
  position: relative;
}
.dashboard-1 .options-toggle {
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.dashboard-1 .options-toggle--alt {
  position: absolute;
  right: 0.5rem;
  top: 0.75rem;
  z-index: 10;
}
.dashboard-1 .options-box {
  background: #fff;
  box-shadow: 0 0 15px 1px #00000020;
  position: absolute;
  left: -150px;
  width: 150px;
  top: 10px;
  transition: all 300ms;
  opacity: 0;
  visibility: hidden;
}
.dashboard-1 .options-box li {
  width: 100%;
  display: flex;
}
.dashboard-1 .options-box li a {
  color: #000;
  width: 100%;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: capitalize;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #ccc;
}
.dashboard-1 .options-box li a:hover {
  color: #fff;
  background: var(--color-primary);
}
.dashboard-1 .options-box.open {
  visibility: visible;
  opacity: 1;
}

/*tasks*/
.dashboard-1 .tasks-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dashboard-1 :is(.tasks-list__single:not(tr..tasks-list__single), .tasks-list__single .wrapper) {
  display: flex;
  align-items: center;
}
.dashboard-1 .tasks-list__single {
  width: 100%;
  justify-content: space-between;
  padding: 0.75rem;
  border-radius: 0.75rem;
  gap: 0.5rem;
}
.dashboard-1 .tasks-list__single:hover {
}
.dashboard-1 .tasks-list__single .wrapper {
  justify-content: flex-start;
  gap: 1rem;
  flex: 1;
}
.dashboard-1 .tasks-list__single .task-img {
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
  object-fit: cover;
  object-position: top;
}
.dashboard-1 .tasks-list__single .task-name {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: capitalize;
}
.dashboard-1 .tasks-list__single .title {
  color: #b5b5b5;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: capitalize;
  flex: 0.4;
  /* text-align: center; */
  padding: 2rem 0;
}
.dashboard-1 .tasks-list__single .title.message {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-break: anywhere;
    /* text-align: center; */
    padding: 0;
}
.dashboard-1 .tasks-list__single .title i {
  color: var(--color-primary);
  font-size: 2rem;
}
/* ThemeBtn */
.themeBtn {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 0.9rem;
  font-family: var(--font-tenor-sans);
  border: 2px solid var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  padding: 0.75rem 2rem;
  position: relative;
  z-index: 1;
  border-radius: 0.5rem;
}
.themeBtn--sm.themeBtn--sm {
    font-size: 0.75rem;
    padding: 0.65rem 1.5rem;
}

.rounded {
    border-radius: 100px !important;
}
.dashboard-2 .themeBtn--center {
  margin: 1rem auto;
}
.dashboard-2 .themeBtn--full {
  width: 100%;
}
.dashboard-2 a.themeBtn:hover {
  color: #fff;
  border-color: var(--color-primary);
  background: var(--color-primary);
}
.dashboard-2 .themeBtn:hover i {
  transform: translateX(0);
}

/* Card Hover */
.dashboard-2 .card-hover__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.dashboard-2 .card-hover__img > img {
  transition: all 500ms ease-in-out;
}
.dashboard-2 .card-hover:hover .card-hover__img > img {
  transform: scale(1.2);
}
.dashboard-2 .bubble-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.dashboard-2 .bubble-card::before {
  content: "";
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 100px;
  position: absolute;
  left: -5rem;
  top: -5rem;
  transition: all 300ms ease-in-out;
  z-index: -1;
}
.dashboard-2 .bubble-card:hover::before {
  transform: scale(50);
}
.dashboard-2 .bubble-card:hover *:not(.themeBtn) {
  color: #fff;
}
/* Section Heading */
.dashboard-2 .section-content {
  color: #000;
}
.dashboard-2 .section-content--light * {
  color: #fff;
}
.dashboard-2 .section-content .heading {
  font-size: 1.75rem;
  line-height: 1.15;
  margin-bottom: 0.25rem;
  font-weight: 600;
  text-transform: capitalize;
}
.dashboard-2 .section-content .subHeading {
  font-size: 2rem;
}
.dashboard-2 .section-content p {
  font-size: 0.99rem;
  font-weight: 400;
  line-height: 1.75;
  margin: 0.75rem 0;
  color: #6d6f75;
}
.dashboard-2 .color-primary {
  color: var(--color-primary) !important;
}
.dashboard-2 .color-secondry {
  color: var(--color-primary) !important;
}
.dashboard-2 .fancy-link {
  display: inline-block;
  padding: 0.15rem 0;
  color: var(--color-primary) !important;
  position: relative;
  isolation: isolate;
  transition: all 300ms;
  margin-inline: 0.25rem;
}
.dashboard-2 .fancy-link::after {
  content: "";
  width: 100%;
  height: 2px;
  border: 1px dashed var(--color-primary) !important;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: all 300ms;
}
.dashboard-2 .fancy-link:hover::after {
  border-style: solid !important;
}
/*Header*/
.dashboard-2 .header-logo {
  width: 100%;
  font-size: 2.25rem;
  font-weight: 600;
  text-transform: capitalize;
}
.dashboard-2 .header-logo:hover {
  color: var(--color-primary);
}
.dashboard-2 .header-logo > img {
  width: 110px;
  object-fit: cover;
  margin: 1rem AUTO 0;
  display: block;
}
.dashboard-2
  :is(.header-actions, .header-actions__search, .header-actions li a) {
  display: flex;
  align-items: center;
}
.dashboard-2 .header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-bottom: 4px solid #f5f5f5;
  padding: 0 0 1rem;
}
.dashboard-2 .header-content {
  flex: 0.75;
}
.dashboard-2 .header-actions {
  justify-content: flex-end;
  gap: 0.5rem;
  flex: 1;
}
.dashboard-2 .header-actions li a {
  color: #a9a9a9;
  width: 45px;
  aspect-ratio: 1/1;
  font-size: 1.5rem;
  justify-content: center;
  background: #fff;
  border: 2px solid #f5f5f5;
  border-radius: 0.5rem;
}
.dashboard-2 .header-actions li a:hover {
  color: #fff;
  background: var(--color-primary);
}
.dashboard-2 .header-actions__search {
  justify-content: center;
  background: #fff;
  line-height: 1;
  border-radius: 0.35rem;
  overflow: hidden;
  width: 45px;
  height: 45px;
  transition: all 300ms;
  margin-left: auto;
  border: 2px solid #f5f5f5;
}
.dashboard-2 .header-actions__search :is(input, button) {
  outline: none;
  background: none;
  border: none;
}
.dashboard-2 .header-actions__search > input {
  color: #000;
  font-size: 0.95rem;
  font-weight: 500;
  width: 0;
  transition: all 300ms;
}
.dashboard-2 .header-actions__search::placeholder {
  color: #cdcdcd;
  font: inherit;
}
.dashboard-2 .header-actions__search > button {
  color: #a9a9a9;
  font-size: 1.5rem;
}
.dashboard-2 .header-actions__search > button:hover {
  color: var(--color-primary);
}
.dashboard-2 form.header-actions__search.search {
  width: 100%;
  padding-inline: 1rem;
}

.dashboard-2 .header-actions__search.search input {
  width: 100%;
}
.dashboard-2 .header-content .title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: capitalize;
  font-family: var(--heading-font);
}
.dashboard-2 .header-content p {
  color: #b0b0b0;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0;
}
/*DashBoard*/
.dashboard-2 .dashboard-sidebar {
  height: 100vh;
  position: sticky;
  top: 0;
  overflow-y: auto;
  padding: 0rem 0 7rem;
}
.dashboard-2 .dashboard-sidebar::-webkit-scrollbar {
  width: 10px;
}
.dashboard-2 .dashboard-sidebar::-webkit-scrollbar-track {
  background: rgba(0, 0, 255, 0.122);
  border-radius: 100px;
}
.dashboard-2 .dashboard-sidebar::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: var(--color-primary);
  opacity: 0.25;
}
.dashboard-2.dashboard {
  padding: 1.5rem;
  background: linear-gradient(
    270deg,
    #fff 25%,
    var(--color-primary-light),
    var(--color-primary-light) 100%,
    var(--color-primary-light) 100%
  );
  min-height: 100vh;
}
.dashboard-2 .dashboard-sidebar__nav {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.25rem;
  margin: 2rem 0 1rem;
}
.dashboard-2 .dashboard-sidebar__nav li {
  width: 100%;
}
.dashboard-2 .dashboard-sidebar__nav > li > a {
  color: #000;
  width: 100%;
  text-transform: capitalize;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.5rem;
}
.dashboard-2 .dashboard-sidebar__nav li a:where(:hover, .active) i {
    color: #fff;
}
.dashboard-2 .dashboard-sidebar__nav li a .content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-transform: capitalize;
}
.dashboard-2 .dashboard-sidebar__nav li a .new {
  background: var(--color-primary);
  color: #fff;
  padding: 5px 10px;
  line-height: 1;
  border-radius: 0.25rem;
}

.dashboard-2 .dashboard-sidebar__nav li a i {
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: all 300ms;
}
.dashboard-2 .dashboard-sidebar__nav li a:where(:hover, .active) {
  background: var(--color-primary);
  color: #fff;
}
.dashboard-2 .dashboard-sidebar__nav li a:where(:hover, .active) i{
  color: #fff;
}
.dashboard-2 .dashboard-body {
  margin-inline: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
}

/*Profile*/
.dashboard-2
  :is(
    .profile-header,
    .profile-header__edit,
    .profile-user,
    .profile-user__name
  ) {
  display: flex;
  align-items: center;
}
.dashboard-2 .profile-header {
  justify-content: space-between;
}
.dashboard-2 .profile-header__edit {
  color: #000;
  width: 50px;
  aspect-ratio: 1/1;
  font-size: 1.5rem;
  justify-content: center;
  background: #fff;
  border-radius: 0.25rem;
}
.dashboard-2 .profile-header__edit:hover {
  color: #fff;
  background: var(--color-primary);
}
.dashboard-2 .profile-user {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.dashboard-2 .profile-user__img {
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 0 0 15px 1px #00000020;
}
.dashboard-2 .profile-user__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.dashboard-2 .profile-user__name {
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1;
}
.dashboard-2 .profile-user__name i {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-left: 0.15rem;
}
.dashboard-2 .profile-user__level {
  color: #b5b5b5;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.dashboard-2 .homework-list__single .percent-circle {
  position: relative;
  width: 55px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-2 .homework-list__single .percent-circle canvas {
  width: 55px;
  height: 55px;
  position: absolute;
  top: 0;
  left: 0;
}
.dashboard-2 .homework-list__single .percent-circle .percent {
  color: #6f6f6f;
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
}

.dashboard-2 .percent:after {
  content: "%";
}
.dashboard-2 .optionsWrapper {
  position: relative;
}
.dashboard-2 .options-toggle {
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  width: fit-content;
  transition: all 300ms;
}
.dashboard-2 .options-toggle:hover {
    background: var(--color-primary-light);
}
.dashboard-2 .options-toggle--alt {
  position: absolute;
  right: 0.5rem;
  top: 0.75rem;
  z-index: 10;
}
.dashboard-2 .options-box {
  background: #fff;
  box-shadow: 0 0 15px 1px #00000020;
  position: absolute;
  left: -10rem;
  width: 150px;
  top: 10px;
  transition: all 300ms;
  opacity: 0;
  visibility: hidden;
}
.dashboard-2 .options-box li {
  width: 100%;
  display: flex;
}
.dashboard-2 .options-box li a {
  color: #000;
  width: 100%;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: capitalize;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #ccc;
}
.dashboard-2 .options-box li a:hover {
  color: #fff;
  background: var(--color-primary);
}
.dashboard-2 .options-box.open {
  visibility: visible;
  opacity: 1;
}

/*Course*/
.courses {--main-boxes-height: 550px;}
.dashboard-2
  :is(.courses-list__single, .course-details, .course-details__icon) {
  display: flex;
  align-items: center;
}
.dashboard-2 .courses-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.85rem;
}
.dashboard-2 .courses-list__single {
  width: 100%;
  color: #000;
  justify-content: space-between;
  background: #fff;
  padding: 0.7rem 1rem;
  border: 2px solid #ececec;
  border-radius: 0.5rem;
  height: calc(var(--main-boxes-height) / 7 - 0.73rem);
}
.dashboard-2 .courses-list__single .title {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: capitalize;
  flex: 0.5;
}
.dashboard-2 .courses-list__single .title.title--heading {
  color: #b5b5b5;
}
.dashboard-2 .courses-list__single .course-details {
  justify-content: flex-start;
  gap: 0.75rem;
  line-height: 1.45;
  flex: 1;
}
.dashboard-2 .course-details__icon {
  width: 35px;
  color: var(--color-primary);
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: var(--color-primary-light);
  justify-content: center;
  font-size: 1.2rem;
}
.dashboard-2 .course-details__content .learner {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: capitalize;
}
.dashboard-2 .course-details__content .users {
  color: #a69e93;
  font-size: 0.95rem;
  font-weight: 600;
}
.dashboard-2 .course-box {
  background: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 2px solid #ececec;
  height: var(--main-boxes-height);
}
.dashboard-2 .course-title {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 1rem;
}
.dashboard-2
  :is(
    .course-activity__list li,
    .course-activity__list li .icon,
    .course-activity__list .date
  ) {
  display: flex;
  align-items: center;
}
.dashboard-2 .course-activity__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  height: calc(var(--main-boxes-height) - 5rem);
  overflow-y: auto;
  padding: 0.25rem;
  padding-right: 1rem;
}
.dashboard-2 .course-activity__list::-webkit-scrollbar {
  width: 6px;
}
.dashboard-2 .course-activity__list::-webkit-scrollbar-track {
  background: rgba(0, 0, 255, 0.122);
  border-radius: 100px;
}
.dashboard-2 .course-activity__list::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: var(--color-primary);
  opacity: 0.25;
}
.dashboard-2 .course-activity__list li {
  width: 100%;
  justify-content: flex-start;
  gap: 0.5rem;
  position: relative;
}
.dashboard-2 .course-activity__list >li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 30px;
  background: #9d9f9e;
  position: absolute;
  left: 8%;
  top: 145%;
  transform: translate(-50%, -50%);
  z-index: 11;
}
.dashboard-2 .course-activity__list li .icon {
  width: 40px;
  color: var(--color-primary);
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: var(--color-primary-light);
  justify-content: center;
  font-size: 1.35rem;
  flex: 0.2;
}
.dashboard-2 .course-activity__list li .content {
  flex: 1;
}
.dashboard-2 .course-activity__list .title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
  margin-bottom: 0.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dashboard-2 .course-activity__list .date {
  color: #b1b1b1;
  font-size: 0.8rem;
  font-weight: 600;
  justify-content: flex-start;
  gap: 0.5rem;
}
.dashboard-2 .course-activity__list .date i {
  font-size: 1.25rem;
}

/*Course Detail*/
.course-detail__img {
  width: 330px !important;
  height: 450px !important;
  margin: auto !important;
  display: block !important;
  border-radius: 0 !important;
}
.dashboard-2 .course-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.dashboard-2 .course-content__rating {
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1;
}
.dashboard-2 .course-content__rating .stars {
  display: flex;
  align-items: center;
  color: yellow;
  font-size: 1.25rem;
  gap: 0.15rem;
}
.dashboard-2 .course-detail__heading {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 2.5rem;
  margin: 1rem 0;
}
.course-detail__subHeading {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
}
.dashboard-2 .course-detail >p {
  font-size: 1rem;
  font-weight: 500;
  margin: 0.25rem 0 1rem;
}
.dashboard-2 .enroll-content {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 2rem 0 0.5rem;
  flex-wrap: wrap;
}
.dashboard-2 .enroll-text span {
  font-weight: bold;
}
.dashboard-2 .enroll-text .date {
  color: grey;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}
.dashboard-2 .perks {
  padding: 25px 0 5px;
}
.dashboard-2 .perks-single {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
}
.dashboard-2 .perks-single__icon {
  font-size: 1.35rem;
  color: var(--color-primary);
  background-color: var(--color-primary-light);
  border-radius: 100%;
  width: 100%;
  aspect-ratio: 1/1;
  flex: 0.15;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-2 .perks-single__content {
  flex: 1;
}
.dashboard-2 .course-detail .title {
  font-weight: 600;
}
.dashboard-2 .perks-single__content :is(a,p) {
  color: grey;
  font-size: 12px;
  margin: 0;
}
.dashboard-2 .course-detail .enrollBtn {
  border-radius: 25px;
  font-size: 0.75rem !important;
  padding: 0.6rem 1rem !important;
}
.dashboard-2 .enroll-text .title {
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0;
}

.dashboard-2 .course-content {
  padding: 2rem 0;
}

.dashboard-2 .course-content__rating .rating {
  font-size: 1rem;
  color: #777;
  font-weight: 6500;
}

.dashboard-2 .course-content__rating .total {
  font-size: 1.15rem;
  font-weight: bold;
}
.dashboard-2 .pieID {
  display: inline-block;
  vertical-align: top;
}
.dashboard-2 .pie {
  height: 200px;
  width: 200px;
  position: relative;
  margin: 2rem auto 3rem;
  display: block;
}
.dashboard-2 .pie::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 160px;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dashboard-2 .slice {
  position: absolute;
  width: 200px;
  height: 200px;
  clip: rect(0px, 200px, 200px, 100px);
  animation: bake-pie 1s;
}
.dashboard-2 .slice span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  clip: rect(0px, 200px, 200px, 100px);
}
.dashboard-2 .course-total__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 0.5rem;
}
.dashboard-2 .course-total__details li {
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  text-transform: capitalize;
  border-left: 20px solid;
  padding-left: 0.5rem;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.dashboard-2 .course-total__details em {
  font-style: normal;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}
.dashboard-2 .course-total__details span {
  font-weight: 700;
  display: block;
}

@keyframes bake-pie {
  from {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

.dashboard-2 .totalWrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  text-align: center;
  line-height: 1;
}
.dashboard-2 .totalWrapper .totalPercent {
  color: #000;
  font-size: 3rem;
  font-weight: 600;
}
.dashboard-2 .totalWrapper span {
  color: #a6a6a6;
  font-size: 0.9rem;
  font-weight: 600;
}

.dashboard-2
  :is(.chart-header, .chart-header__details, .chart-header__details li) {
  display: flex;
  align-items: center;
}
.dashboard-2 .chart-header {
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0 2rem;
}
.dashboard-2 .chart-header__details {
  justify-content: flex-start;
  gap: 1rem;
}
.dashboard-2 .chart-header__details li {
  color: #c1c1c1;
  font-size: 1rem;
  text-transform: capitalize;
  font-weight: 600;
  justify-content: flex-start;
  gap: 0.5rem;
}
.dashboard-2 .chart-header__details li span {
  color: #000;
  font-weight: 800;
}
.dashboard-2 .chart-header__details li i {
  color: var(--color-primary);
  font-size: 1.75rem;
}

/* classes */
.dashboard-2
  .classes-card
  :is(
    .courseWrapper,
    .classes-card__body .classes-perks,
    .classes-card__body .classes-perks li,
    .classes-card__header .class-details .name
  ) {
  display: flex;
  align-items: center;
}
.dashboard-2 .classes-card__header .courseWrapper {
  justify-content: flex-start;
  gap: 1rem;
}
.dashboard-2 .classes-card__header .class-img {
  width: 70px;
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
  overflow: hidden;
}
.dashboard-2 .classes-card__header .class-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.dashboard-2 .classes-card__header .class-details .title {
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: capitalize;
}
.dashboard-2 .classes-card__header .class-details .name {
  color: #a69e93;
  font-size: 1rem;
  font-weight: 500;
  gap: 0.45rem;
}
.dashboard-2 .classes-card__header .class-details .name i {
  font-size: 1.1rem;
}
.dashboard-2 .classes-card__body {
  padding: 1.5rem 0;
  border: 2px solid #ccc;
  border-inline: none;
  height: 145px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: c;
}
.dashboard-2 .classes-card__body::-webkit-scrollbar {
  width: 7px;
}
.dashboard-2 .classes-card__body::-webkit-scrollbar-track {
  background: rgba(0, 0, 255, 0.122);
  border-radius: 100px;
}
.dashboard-2 .classes-card__body::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: var(--color-primary);
  opacity: 0.25;
}
.dashboard-2 .classes-card__body .classes-perks {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 0;
}
.dashboard-2 .classes-card__body .classes-perks :is(li,a) {
  color: #a69e93;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.dashboard-2 .classes-card__body .classes-perks li i {
  font-size: 1.25rem;
}
.dashboard-2 .classes-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.dashboard-2 .classes-card__footer .view-class {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  padding: 0.75rem 0;
  display: block;
}
.dashboard-2
  :is(.classes-card__header, .classes-card__body, .classes-card__footer) {
  padding-inline: 1.25rem !important;
}
.dashboard-2 .student_detail li em {
  font-size: 12px;
}
.dashboard-2 .student-heading {
  font-size: 1.75rem;
  font-weight: 600;
  text-transform: capitalize;
  padding-top: 40px;
}
.dashboard-2 .student_detail li {
  margin-bottom: 15px;
}
.dashboard-2 .classes-card {
  background: #fff;
  box-shadow: 0 0 15px 5px #00000020;
  border-radius: 0.75rem;
  overflow: hidden;
  margin: 1em 0;
}

.dashboard-2 .classes-card__header {
  padding: 1rem;
}

/*tasks*/
.dashboard-2 .tasks-list {margin: 1rem 0 0;}
.dashboard-2 :is(.tasks-list__single .wrapper) {
  display: flex;
  align-items: center;
}

.tasks-list__single td {
    padding-inline: 0;
    vertical-align: middle;
    border: none;
}

.dashboard-2 .tasks-list__single {
  width: 100%;
  justify-content: space-between;
  padding: 0.75rem;
  border-radius: 0.75rem;
  gap: 0.5rem;
}
.dashboard-2 .tasks-list__single:hover {
  background: #fff;
}
.dashboard-2 .tasks-list__single .wrapper {
  justify-content: flex-start;
  gap: 1rem;
  flex: 1;
  width: 250px;
}
.dashboard-2 .tasks-list__single .task-img {
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 0 5px 1px #00000020;
}
.dashboard-2 .tasks-list__single .title.id {
  flex: 0.4;
}
.dashboard-2 .tasks-list__single .task-name {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: capitalize;
}
.dashboard-2 .tasks-list__single .title {
  color: #b5b5b5;
  font-size: 0.95rem;
  text-transform: capitalize;
  flex: 0.85;
  /* text-align: center; */
  padding: 1.5rem 0;
}
.dashboard-2 .tasks-list__single .title.message {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* width: 300px; */
    line-break: anywhere;
}
.dashboard-2 .tasks-list__single .title i {
  color: #77ddb6;
  font-size: 2rem;
}

/*Home Page*/

/* ThemeBtn */
.themeBtn {
  width: fit-content;
  display: block;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 0.9rem;
  border: 2px solid transparent;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  padding: 0.75rem 2rem;
  position: relative;
  z-index: 1;
}
.themeBtn--center {
  margin: 1rem auto;
}
.themeBtn--full {
  width: 100%;
}
a.themeBtn:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: #fff;
}

/* Card Hover */
.card-hover__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.card-hover__img > img {
  transition: all 500ms ease-in-out;
}
.card-hover:hover .card-hover__img > img {
  transform: scale(1.2);
}
.bubble-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.bubble-card::before {
  content: "";
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 100px;
  position: absolute;
  left: -5rem;
  top: -5rem;
  transition: all 300ms ease-in-out;
  z-index: -1;
}
.bubble-card:hover::before {
  transform: scale(50);
}
.bubble-card:hover *:not(.themeBtn) {
  color: #fff;
}
/* Section Heading */
.section-content {
  color: #000;
}
.section-content--light * {
  color: #fff  !important;
}
.section-content :is(.heading, .subHeading) {
  font-weight: 500;
}
.section-content .heading {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  font-weight: 700;
  text-transform: capitalize;
}
.section-content .subHeading {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 1rem;
  gap: 4rem;
  margin-inline: auto;
  position: relative;
}
.section-content p {
  font-size: 0.99rem;
  font-weight: 400;
  line-height: 1.75;
  margin: 0.75rem 0;
  color: #000;
}
.heading-line {
  position: relative;
  display: inline-block;
}
.heading-line::before {
  content: "";
  width: 120px;
  height: 1px;
  position: absolute;
  border-bottom: 2px solid;
  top: 50%;
  transform: translateY(-50%);
}

.heading-line.heading-line--left::before {
  left: 0;
  border-image: linear-gradient(
    to left,
    var(--color-primary),
    rgb(58 123 213 / 0%)
  );
  border-image-slice: 1;
}
.heading-line.heading-line--right::before {
  right: 0;
  border-image: linear-gradient(
    to right,
    var(--color-primary),
    rgb(58 123 213 / 0%)
  );
  border-image-slice: 1;
}
.color-primary {
  color: var(--color-primary) !important;
}
.color-secondry {
  color: var(--color-primary) !important;
}
.fancy-link {
  display: inline-block;
  padding: 0.15rem 0;
  color: var(--color-primary) !important;
  position: relative;
  isolation: isolate;
  transition: all 300ms;
  margin-inline: 0.25rem;
}
.fancy-link::after {
  content: "";
  width: 100%;
  height: 2px;
  border: 1px dashed var(--color-primary) !important;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: all 300ms;
}
.fancy-link:hover::after {
  border-style: solid !important;
}

/* Header */
.header {
  padding: 0.75rem 0;
  background: #fff;
  box-shadow: 0 0 15px 5px #00000020;
}
:is(.header-main, .header-main__nav, .header-main__btns) {
  display: flex;
  align-items: center;
}
.header-main {
  justify-content: space-between;
}
.header-main__logo {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 800;
  text-transform: uppercase;
}

:is(.header-main__logo, .header-main__btns) {
  flex: 0.25;
}
.header-main__logo > img {
  width: 140px;
  object-fit: cover;
}
.header-main__nav {
  justify-content: center;
  flex: 1;
}
.header-main__nav > li > a:not(a.themeBtn) {
    color: #000;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0.64rem;
    position: relative;
}
.header-main__nav > li > a:not(a.themeBtn):where(:hover, .active) {
  color: var(--color-primary) !important;
}
.header-main__btns {
  gap: 1rem;
  justify-content: flex-end;
}

/* Banner */
.banner {
  min-height: 90vh;
  height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.banner--overlay {
  position: relative;
}
.banner--overlay::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.65;
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.banner__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
:is(.banner-content__heading, .banner-content__subHeading) {
  margin-bottom: 0.5rem;
}
.banner-content__heading {
  font-size: 3.25rem;
  text-transform: capitalize;
  font-weight: 600;
}
.banner-content__heading > span {
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-primary);
}
.banner-content__subHeading {
  font-size: 1.15rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.banner-content > p {
  font-size: 0.95rem;
  font-weight: 400;
  margin: 1rem 0;
}

/* About Us */
.overlay {
  width: 100%;
  height: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 3rem 0;
}
.overlay::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: #000000;
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
}
.overlay__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.about__content {
  width: 100%;
  background: #0d1215a8;
  box-shadow: 0 0 10px 1px #00000020;
  border-radius: 3rem 0;
  padding: 2rem 4rem;
  position: relative;
  left: 3rem;
  backdrop-filter: blur(10px);
  text-align: center;
}
.about .section-content .heading {
    letter-spacing: 3px;
    font-weight: 700;
}

.about .section-content p {
    font-size: 0.85rem;
    line-height: 1.85;
}
.about__img {
  width: 100%;
  height: 500px;
}
.about__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Page-title */
.page-title {
  width: 100%;
  height: 100%;
  min-height: 45vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.page-title__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
}
.page-title__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.page-title__content .heading {
  color: #fff;
  font-size: 4rem;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--font-lemon-regular);
}
.box-text {
  display: inline-block;
  padding: 0 1rem;
  background: var(--color-primary);
  position: relative;
}
.box-text::after {
  content: "";
  width: 99%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0.4rem;
  top: 0.35rem;
  z-index: -1;
}
/*Auth*/
.auth__form {
  background: #fff;
  padding: 4rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px 5px #00000020;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.auth__form .inputField {
  position: relative;
  margin-bottom: 1.25rem;
}
.auth__form .inputField :is(input, select) {
  width: 100%;
  font-size: 14px;
  background: transparent;
  border: 1px solid #000;
  border-radius: 100px;
  outline: none;
  padding: 0.7rem 1.25rem;
}
.auth__form .inputField :is(input, select):focus {
  box-shadow: 0px 0px 10px 1px #00000020;
}
.auth__form .inputField .icon {
  color: #000;
  font-size: 1.5rem;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.auth__form .inputField .title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0.75rem;
}
.auth__form .inputField .iconWrapper {
  position: relative;
}
.auth__form .inputField .showPassword {
  cursor: pointer;
}
.auth__form .inputField .icon.toggle-password.show i::before {
  content: "\ec0c";
}
.auth__bottom {
  margin-top: 1rem;
}
.auth__bottom > p {
  color: #a3a3a3;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0;
  text-align: center;
}
.auth__bottom > p > a {
  color: #000;
  font-size: 1rem;
  font-weight: 700;
}

/* Footer */
.footer {
  color: #fff;
  background-color: #000;
  padding-top: 5rem;
}

.footer .title {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.footer-info__logo {
  width: 150px;
  margin-bottom: 1.6rem;
  font-size: 1.25rem;
  color: var(--color-primary);
  font-weight: 800;
  text-transform: uppercase;
}
.footer-info__logo > img {
  width: 100%;
  object-fit: cover;
}
.footer-info > p {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.65;
  margin-top: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.footer-info__social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.footer-info__social > li > a {
  color: #fff !important;
  font-weight: 500;
  font-size: 1.75rem;
}
.footer li > a:hover {
  color: var(--color-primary);
}
.footer-info__social > li > a:hover {
  color: var(--color-primary);
  transform: translateY(-5px);
}
.footer__quickLinks > ul > li > a:not(.footer-info__social a) {
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0.45rem 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}
.footer__quickLinks > ul > li > a:not(.footer-info__social a) i {
    font-size: 1.5rem;
}
.footer__newletter > p {
  font-size: 1rem;
  font-weight: 500;
}
.footer__newletter > form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  border-radius: 0.25rem;
  overflow: hidden;
  background: #fff;
}
.footer__newletter > form :is(input, button) {
  border: none;
  outline: none;
  padding: 0.25rem 0;
}
.footer__newletter > form > input {
  width: 100%;
  background: none;
  padding-inline: 1.5rem;
}
.footer__newletter > form > input,
.footer__newletter > form > input::placeholder {
  color: #000;
  font-size: 0.9rem;
  font-weight: 500;
}
.footer__newletter > form > button {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 500;
  background: var(--color-primary);
  padding-inline: 1rem;
}
.footer__copyright {
  border-top: 1.5px solid #6aada452;
  text-align: center;
  padding: 1.25rem 0;
  margin-top: 4rem;
  margin-inline: auto;
}
.footer__copyright > p {
  margin-bottom: 0;
}
/* department */
.department-card {
  margin: 1rem auto;
  width: 330px;
}
.department-card__img {
  width: 100%;
  height: 450px;
  background: #000;
}
.department-card__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.department-card__content {
  padding: 0.56rem 0;
}
.department-card__content > .title {
  color: var(--color-primary);
  font-size: 1.35rem;
  text-transform: capitalize;
  font-weight: 500;
  margin: 0.5rem 0 0.25rem;
  line-height: 1.35;
}
.department-card__content{
  text-align: center;
  color: #333333;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.75;
  margin: 0;
  margin: 0.25rem 0;
}
.department-card__content::-webkit-scrollbar {
  width: 3px;
}
.department-card__content::-webkit-scrollbar-track {
  background: rgba(0, 0, 255, 0.122);
  border-radius: 100px;
}
.department-card__content::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: var(--color-primary);
  opacity: 0.25;
}

/* Reviews */
.reservationWrapper {
  padding: 5rem 0;
}
.reviews {
  position: relative;
  isolation: isolate;
  padding: 7rem 0 8rem;
}
.reviews--bg {
  background: url("../images/about-bg.jpg") no-repeat center fixed;
  background-size: cover;
}
.reviews--bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.35;
  z-index: -1;
}

.reviews-card {
  color: #fff;
  background: #111c26;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  margin: 0.5rem;
}
:is(.reviews-card > .wrapper, .reviews-card .user, .reviews-card__rating) {
  display: flex;
  align-items: center;
}
.reviews-card > .wrapper {
  justify-content: space-between;
}
.reviews-card .user {
  justify-content: flex-start;
  gap: 1rem;
}
.user-img {
  width: 500px;
  height: 250px;
}
.user-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.user-details .name {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0.25rem;
}
.user-details .designation {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}
.reviews-card__quote i {
  color: transparent;
  font-size: 55px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  display: none;
}
.reviews-card__content {
  width: 100%;
  height: 250px;
  overflow-y: auto;
  padding: 0 0.5rem;
}
.reviews-card__content .desc {
    font-size: 0.85rem;
    margin: 0.85rem 0;
    line-height: 1.75;
    opacity: 0.85;
}
.reviews-card__content .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.reviews-card__content::-webkit-scrollbar {
  width: 3px;
}
.reviews-card__content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.122);
  border-radius: 100px;
}
.reviews-card__content::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: #fff;
  opacity: 0.25;
}
.reviews-card__rating {
  gap: 0.25rem;
}
.reviews-card__rating i {
  font-size: 0.95rem;
  color: var(--color-primary);
}

.slick-dots {
  bottom: -5rem;
  left: 50%;
  transform: translateX(-50%);
}
.reviewsSlider .slick-dots {
  bottom: -4rem;
  left: 50%;
}
.reviewsSlider .slick-dots li {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 1px solid var(--color-primary);
  transform: rotate(-45deg);
  margin: 0 0.35rem;
  transition: all 300ms ease-in-out;
}
.reviewsSlider .slick-dots li button::before {
  content: "";
  display: none;
}
.reviewsSlider .slick-dots li.slick-active {
  background-color: var(--color-primary);
}
/* events */
.events {
  position: relative;
  isolation: isolate;
}
.events--bg {
  padding: 3rem 0 0;
  background: var(--color-primary-light);
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
}
.events-card {
  color: #000;
  background: #fff;
  box-shadow: 0 0 10px 5px #00000020;
  border-radius: 0.75rem;
  overflow: hidden;
  margin: 1rem 0;
  position: relative;
  /* padding-bottom: 0 !important; */
}
.events-card__img {
  width: 100%;
  height: 300px;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.events-card__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.events-card__content {
  padding: 0;
}
.events-card__content > .title {
  color: #333333;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}
.events-card__content > .date {
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.events-card__content > .date i {
  font-size: 1.35rem;
  color: var(--color-primary);
}
.events-card__content > p {
  color: #505489;
  font-size: 0.9rem;
  line-height: 1.75;
  overflow-y: auto;
  margin: 1rem 0;
  height: 100px;
}
.events-card--publication .events-card__content > p {-webkit-line-clamp: 3;-webkit-box-orient: vertical;line-height: 2;overflow: hidden;height: 90px;display: -webkit-box;}

.events-card--publication .themeBtn {
    margin: 0.5rem 0 0;
    font-size: 0.85rem;
    border-radius: 100px;
    padding: 0.5rem 1.5rem;
}
.events-card__content > p::-webkit-scrollbar {
  width: 3px;
}
.events-card__content > p::-webkit-scrollbar-track {
  background: rgba(0, 0, 255, 0.122);
  border-radius: 100px;
}
.events-card__content > p::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: var(--color-primary);
  opacity: 0.25;
}
.card-effect {
  padding: 1rem;
}
.card-effect::after {
  content: "";
  background: linear-gradient(
        50deg,
        var(--color-primary) 20%,
        var(--color-primary)
      )
      no-repeat bottom,
    top;
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 0.75rem;
  transition: all 500ms ease-in-out;
}
.card-effect:hover::after {
  height: 100%;
}
.card-effect:hover a.themeBtn {
    background: #fff;
    color: var(--color-primary);
}
.card-effect * {
  transition: all 300ms ease-in-out;
}
.card-effect:hover *:not(.themeBtn) {
  color: #fff !important;
}
:is(.card-effect__img, .card-effect__content) {
  position: relative;
  z-index: 2;
}

/* Slick Styling */
.bannerSlider .row {
  display: flex !important;
}

.slick-slide {
  margin-right: 0;
}
.bannerSlider .slick-arrow::before {
  color: #fff;
  opacity: 1;
  font-size: 2rem;
  font-family: boxicons !important;
  transition: all 300ms ease-in-out;
}
.bannerSlider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  display: inline-flex;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  justify-content: center;
  background: var(--color-primary);
  transition: all 300ms ease-in-out;
  z-index: 111;
}
.bannerSlider .slick-next {
  right: -3rem;
}
.bannerSlider .slick-prev {
  left: -3rem;
}
.bannerSlider .slick-prev::before {
  content: "\ea4d";
}
.bannerSlider .slick-next::before {
  content: "\ea50";
}
.bannerSlider .slick-arrow:hover::before {
  color: #fff;
}

.inputField-check {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  width: 35px;
  height: 25px;
  flex: 0.2;
  --check-value: 1.5rem;
}
.inputField-check input {
  display: none;
}
.inputField-check label {
  position: relative;
  user-select: none;
  text-transform: capitalize;
  color: #ffffff;
  font-size: 14px;
  font-weight: 5;
  cursor: pointer;
  margin-top: 0.3rem;
}
.inputField-check label::before {
  content: "";
  width: var(--check-value);
  height: var(--check-value);
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  border: 1px solid var(--color-primary);
  box-shadow: 1px 1px 4px 0px #6e774a20;
}
.inputField-check label::after {
  content: "\ea41";
  width: var(--check-value);
  height: var(--check-value);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-family: boxicons !important;
  font-weight: 900;
  background: var(--color-primary);
  transform: scale(0);
  transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.inputField-check input:checked + label::after {
  transform: scale(1);
}
.action-btns {
  display: none;
  gap: 0.85rem;
  margin: 2rem 0 1.5rem;
}
.primary-fields .title{
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0;
}
.primary-fields .field {
  width: 100%;
  color: #000;
  font-size: 0.95rem;
  font-weight: 600;
  background: none;
  border: 1px solid #ccc;
  outline: none;
  padding: 0.75rem 1rem;
  transition: all 150ms;
  margin: 0.6rem 0;
  resize: none;
  background: #fff;
}
.primary-fields .field:focus {
  box-shadow: 0 0 10px 1px #00000020;
}
.primary-fields .field::placeholder {
  color: inherit;
  font: inherit;
  opacity: 0.85;
}
.field-wrapper--icon input[type="date"]::-webkit-inner-spin-button,
.field-wrapper--icon input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}


.custom-dropdown {
    position: relative;
}
.custom-dropdown__active{
    cursor: pointer;
}

.custom-dropdown__values {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 0 15px 5px #00000020;
    z-index: 100;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease-in-out
}
.custom-dropdown__values.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}
.custom-dropdown__values li {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: capitalize;
}

.custom-dropdown__values li:not(:last-child) {
    border-bottom: 1px solid #77777780;
}
.chat-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
}
.replies-wrapper {
        border-radius: 1rem;
        padding: 1rem  2rem 3rem;
        overflow-y: auto;
        background: #fff;
    }

.replies-wrapper .title {
    width: 100%;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
}
    .replies {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 1.5rem;
    }

    .reply {
        width: 50%;
        background: #fff;
        padding: 1rem;
        box-shadow: 0 0 15px 1px #00000020;
        border-radius: 1rem;
        border-top-left-radius: 0;
    }

    .reply--my {
        color: #fff;
        margin-left: auto;
        background: var(--color-primary);
        border-top-right-radius: 0;
    }
.reply.reply--my .name {
    color: #fff;
}


    .reply__info {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0.25rem;
    }

    .reply .name {
        color: var(--color-primary);
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: capitalize;
    }

    .reply .time {
        font-size: 0.75rem;
        font-weight: 500;
    }
.reply__message {
    font-size: 0.95rem;
    font-weight: 600;
}

.tool-tip {
  position: relative;
}

.tool-tip__content {
  width: 80%;
  height: 138px;
  overflow-y: auto;
  background: #fff;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.125) 0px 0px 15px 5px;
  border-radius: 0.5rem;
  position: absolute;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 150ms ease 0s;
}
.tool-tip__content::-webkit-scrollbar {
  width: 6px;
}
.tool-tip__content::-webkit-scrollbar-track {
  background: rgba(0, 0, 255, 0.122);
  border-radius: 100px;
}
.tool-tip__content::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: var(--color-primary);
  opacity: 0.25;
}

.tool-tip:hover .tool-tip__content {
  opacity: 1;
  visibility: visible;
}

.tool-tip__content::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.125) 0px 0px 15px 5px;
  z-index: -1;
}

.tool-tip__content--top {
  left: 50%;
  top: 4.5rem;
  transform: translateX(-50%);
}

.tool-tip__content--left {
  left: -70%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.tool-tip__content.tool-tip__content--top::after {
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.tool-tip__content.tool-tip__content--left::after {
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  clip-path: polygon(100% 50%, 0px 0px, 0px 100%);
}

.tool-tip__content>p {
  color: rgb(255, 255, 255);
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 0.5rem;
}

.tool-tip__content :is(a, p, ul li) {
  font-size: 0.75rem;
  font-weight: 600;
}

.tool-tip__content p:last-child {
  margin-bottom: 0px;
}

.tool-tip__content a {
  color: rgb(32, 92, 212);
  font-weight: 600;
}

.tool-tip__content ul {
  margin: 0.5rem 0px;
}
.tool-tip__content .title{
    display: block !important;
    line-height: 1.35 !important;
    margin: 0.75rem 0;
}
.tool-tip__content ul li {
  line-height: 1.6;
  padding: 0.5rem 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
}

.tool-tip__content ul li i {
  color: rgb(105, 106, 106);
  font-size: 1rem;
}

.table thead .title {
    text-transform: capitalize;
}
table.table.dataTable {
    width: 100% !important;
}
.d-flex.align-items-center.justify-content-between {
    margin-bottom: 1.5rem;
}

.custom-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem
}

.custom-tabs__item>:is(a,button) {
  width: 190px;
  color: var(--color-primary);
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: .9rem;
  font-weight: 500;
  text-transform: capitalize;
  background: 0 0;
  border: none;
  outline: 0;
  transition: .3s;
  border: 2px solid var(--color-primary);
}
.custom-tabs--sub li a {font-size: 0.85rem;width: fit-content;}

.custom-tabs__item>:is(a,button).active {
  background: var(--color-primary);
  color: #fff;
}
.course-activity__list a.title:hover {
    color: var(--color-primary);
}
.profile-user--file label.profile-user__img{
    position:relative;
}
.profile-user--file label.profile-user__img::after {
    content: "\ed0c";
    font-family: boxicons!important;
    background: #00000047;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.75rem;
    position: absolute;
    inset: 0;
    transition: all 300ms;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.profile-user--file label.profile-user__img:hover::after {
    opacity: 1;
    visibility: visible;
}
.course-videos {
    margin: 2rem auto;
    max-width: 70%;
}

.course-videos li a {
    font-size: 1rem;
    text-transform: capitalize;
    font-weight: 500;
    background: #fff;
    box-shadow: 0 0 15px 5px #00000020;
    width: 100%;
    margin: 1rem 0;
    color: #000 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.5rem;
    overflow: hidden;
    padding-right: 0.5rem;
}
.course-videos li a i {
    font-size: 2rem;
    color: var(--color-primary);
}
.course-videos li a .wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
}

.course-videos li a video {
    width: 100px;
    aspect-ratio: 16/9;
}
body.fancybox-active.compensate-for-scrollbar{
    margin:0;
    padding:0;
    overflow:inherit;
}
.dashboard-2 .profile-user--file {
    flex-direction: column;
    margin: 2rem 0;
}
.dashboard-2 .profile-user--file {
    gap: 0.75rem;
}
.dashboard-2 .profile-user--file label.profile-user__img {
    cursor: pointer;
    width: 250px;
}
.dashboard-2 .profile-user--file .profile-user__name {
    font-size: 1.75rem;
}

.about--bg {background-repeat: no-repeat !important;background-position: top center !important;background-image: url("../images/about-bg.jpg");background-size: cover !important;isolation: isolate;position: relative;padding: 6rem 0;z-index: 11;}
 .themeBtn i {
    font-size: 1rem;
}

.tasks.mar-y {
    margin: 1rem 0 !important;
}

.primary-fields.my-5 {
    margin: 2rem 0 !important;
}

.section-content.mb-4.d-flex.align-items-center {
    margin: 0 !important;
}
div#main-table_filter input {
    border-radius: 100px !important;
    border: 1px solid #000 !important;
    padding: 0.6rem 1.25rem 0.5rem 3.25rem !important;
    outline: none;
    box-shadow: none;
}
 
div#main-table_filter label {
    position: relative;
}

div#main-table_filter label::after {
    content: "\f002";
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    top: 50%;
    left: 1.75rem;
    transform: translateY(-50%);
    z-index: 11;
    font-size: 1rem;
    opacity: 0.6;
}
input#monthInput {
    cursor: pointer;
}
.field-wrapper {
    margin: 0;
    width: 100%;
    position: relative;
}

.field-wrapper--icon::after {
    content: '\ed00';
    font-family: 'boxicons';
    position: absolute;
    left: 90%;
    color: var(--color-primary);
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 1.45rem;
    pointer-events: none;
}
.names {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
}

:is(.names li ,.emails li a){
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

.department-card__content p {
    margin: 0.75rem 0;
}
.department-card__content--details {
    height: auto;
    display: block;
    overflow: auto;
    text-align: left;
}


:is(.names ,.emails) li i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

 .emails {
    margin: 0.5rem 0 0;
}
.names li {
    list-style-type: disc !important;
}
 .emails li a:hover {color: var(--color-primary);}

.emails li a {
    padding: 0.1rem 0;
}.color-black {
    color: #000 !important;
}

.info {
    margin: 1rem 0;
}
.info li {
    font-size: 0.9rem;
    font-weight: 500;
}

.info.info--wraper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    margin-left: 1rem;
}

.info.info--wraper li {
    list-style-type: disc;
}

.info li a {
    color: #000;
    display: flex;
    align-items: center;
    justify-items: flex-start;
    gap: 0.75rem;
    padding: 0.25rem 0;
}

.info li a i {font-size: 1.15rem;color: var(--color-primary);}
ul.info.info-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    margin-left: 1rem;
}

ul.info.info-wrapper li {
    list-style-type: disc;
}
.courses-card__content a.title:hover {
    color: var(--color-primary);
}
.options-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 1rem 0 3rem;
}

.options-wrapper .form-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    margin: 0;
}

.options-wrapper .form-group label {margin-bottom: 0;cursor: pointer;user-select: none;}


.profile-user--doc .profile-user__img > img {
    object-fit: contain;
    object-position: initial;
    width: 100%;
    margin: auto;
    display: block;
    filter: grayscale(1);
}

.profile-user.profile-user--doc label.profile-user__img {
    padding: 1rem;
    width: 70px;
    background: none;
    box-shadow: none;
    transition: all 300ms;
}
.profile-user.profile-user--doc label.profile-user__img::after {
    display: none;
}
.profile-user.profile-user--doc label.profile-user__img:hover {
    background: #fff;
    box-shadow: 0 0 10px 5px #00000020;
}
.editor-content li{
    list-style-type: initial !important;
}
.editor-content li p {
    margin: 0;
}
.ck-content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.names--vertical {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 1rem 0;
}
.events-card--pub {
    height: 230px;
}
.row.custom-row {
    gap: 1rem;
}

  .gallery-card {
        margin: 1rem 0;
        box-shadow: 0 0 10px 5px #00000020;
    }

    .gallery-card__img {
        width: 100%;
        height: 240px;
        position: relative;
        isolation: isolate
    }

    .gallery-card__img::after {
        content: "\eeaa";
        font-family: boxicons !important;
        background: #0000005f;
        position: absolute;
        inset: 0;
        color: #fff;
        font-size: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease-in-out;
        pointer-events: none;
    }

    .gallery-card__img:hover::after {
        opacity: 1;
        visibility: visible;
    }

    .gallery-card__img>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }

    .gallery .btnsWrapper {
        margin: 2rem 0px;
    }

    .gallery .btnsWrapper .themeBtn:where(:hover, .active) {
        background: var(--color-primary);
        color: #fff;
    }
    .list-img {
    width: 160px;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: top;
}
.delete-btn {
    width: 45px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.delete-btn:hover {
    background: #ff0000;
    color: #fff;
}
.events-card--pub .events-card__content > .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}


.header-main__menu {
    display: none;
}

.header-main__menu a > i {
  color: #000;
  font-size: 2rem;
}
/*Side Bar*/
.sideBar {
  width: 280px;
  position: fixed;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--color-primary-light);
  background-size: 200%;
  transition: all 300ms ease-in-out;
  padding: 0.5rem 0;
  transform: translateX(-100%);
  z-index: 100;
  padding: 4rem 2.13rem;
  backdrop-filter: blur(10px);
}
.sideBar.show {
  transform: translateX(0);
}
.sideBar__logo {
  width: 90px;
  display: block;
  margin: auto;
}
.sideBar__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sideBar__close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.6rem;
  background: var(--color-primary);
  color: #fff;
  aspect-ratio: 1/1;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  display:none;
}
.sideBar__close:hover {
  color: #fff;
}
:is(.sideBar__nav, .sideBar__nav > li > a:not(.themeBtn)) {
  display: flex;
  justify-content: flex-start;
}
.sideBar__nav {
  margin-top: 2.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
}
.sideBar__nav > li > a:not(.themeBtn) {
  color: #000;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: capitalize;
  gap: 0.25rem;
}
.sideBar__nav > li > a:not(.themeBtn) i {
  color: var(--color-primary);
  font-size: 1.25rem;
}
.sideBar__nav > li > a:hover {
  color: var(--color-primary) !important;
}
.sidebar-btn {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.sidebar-btn .themeBtn {
    font-size: 13px;
    padding-inline: 0;
    width: 100%;
    text-transform: capitalize;
}

.sidebar-btn li {
    width: 100%;
}
.dashboard-2  .dashboard-sidebar.show {
    transform: translateX(0);
}
.chat-form button {
    border-radius: 0;
}
.chat-form :is(input, button) {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    line-height: 1;
}

.chat-form {
    height: 45px;
}
.google-chart {
 width: 100%; 
  min-height: 450px;
}

.editor-content a {color: #007bff;}
.heading-pb {
    padding-bottom: 1.5rem;
}
.editor-content {
    overflow-x: auto;
}

/*library-services*/
.library-services {
    margin: 1.5rem 0;
    text-align: center;
    display: block;
}

.library-services__img {
    width: 120px;
    aspect-ratio: 1/1;
    object-fit: contain;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    padding: 1.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 15px 1px #00000020;
}
.library-services__title {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 1rem 0;
}
a.library-services__title:hover {
    color: var(--color-primary);
}
.library-services__content {
    color: #000;
    opacity: 0.5;
    font-size: 0.85rem;
    font-weight: 400;
}



.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  border: none;
  display: inline-flex;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  overflow: hidden;
  justify-content: center;
  background: transparent;
  transition: all 300ms ease-in-out;
  z-index: 111;
}

.slick-arrow::before {
    color: #fff;
    background: var(--color-primary);
    opacity: 1;
    font-size: 2.5rem;
    border-radius: 100%;
    font-family: boxicons !important;
    transition: all 300ms ease-in-out;
}
.slick-next {left: 97%;}

.slick-prev {
  left: 3%;
}

.slick-prev::before {
  content: "\ea4d";
}

.slick-next::before {
  content: "\ea50";
}

.slick-arrow:hover::before {
  color: #fff;
}

.news-slider {
    padding-bottom: 3rem;
}
@media only screen and (max-width: 580px) {
  .slick-next {
    left: 93%;
  }
  .slick-prev {
    left: 7%;
  }
}

/* slider-gallery */
.slider-gallery-wrapper {
    padding: 5rem 0 1.25rem;
}
.slider-gallery__img .feature-img {
        width: 100%;
        height: 300px;
        cursor: pointer;
        position: relative;
        box-shadow: 0 0 20px 1px #00000020;
        display: block;
    }

    .slider-gallery__img::after {
        content: "\ec90";
        font-family: boxicons !important;
        background: #0000005f;
        position: absolute;
        inset: 0;
        color: #fff;
        font-size: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease-in-out;
        z-index: 1111;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .slider-gallery__img:hover::after {
        opacity: 1;
        visibility: visible;
    }

    .slider-gallery__img .feature-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        transition: 0.5s ease-in-out;
    }
.slider-gallery__img {
    position: relative;
    isolation: isolate;
    border-radius: 0.5rem;
    overflow: hidden;
}

.slider-gallery__content .date {
    color: #000;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}
.slider-gallery__content .date i{
    font-size: 1.35rem;
    color: var(--color-primary);
}
.slider-gallery__content {
    padding: 0.75rem 0;
}

.slider-gallery__content .title {
    color: #333333;
    font-size: 1.25rem;
    line-height: 1.35;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}
/* slider-gallery */
    .footer__quickLinks.footer__quickLinks > ul > li > a.email {
    text-transform: lowercase;
}
span.g-username {
    text-transform: uppercase;
}
.slider-gallery {
    margin: 1rem 0;
}
.limited-text-3,.limited-text-4,.limited-text-5,.limited-text-6 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.limited-text-4 {
    -webkit-line-clamp: 4;
}
.limited-text-5 {
    -webkit-line-clamp: 5;
}

.limited-text-6 {
    -webkit-line-clamp: 6;
}

.editor-text * {
    text-decoration: initial !important;
    list-style-type: initial !important;
    text-align: initial;
}
.editor-text a {
    color: #007bff;
}
.editor-text--limit {
    height: 150px;
    overflow: hidden;
    width: 430px;
}
.editor-text p {
    display: block !important;
    margin: 0;
}
.service-details__img {
    width: 100%;
    height: 20vmax;
}
.service-details__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.service-details__content .title {
    font-size: 2.25vmax;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0.65rem;
}
.service-details__content {
    padding: 1rem 0;
}
@media only screen and (max-width: 768px) {
    .service-details__content .title {
        font-size: 3.5vmax;
    }
}
@media only screen and (max-width: 570px) {
    .service-details__content .title {
        font-size: 5vmax;
    }
}
/*custom-dropdown-sidebar__values*/
.custom-dropdown-sidebar__values {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 500ms;
}

.sidebar-values-wrapper {
    width: 85%;
    background: #fff;
    transition: all 300ms ease-in-out;
    margin-left: auto;
    overflow: hidden;
}

.sidebar-values-wrapper li:not(:last-child) {
    border-bottom: 1px solid var(--color-primary-light);
}

.sidebar-values-wrapper li a:where(:hover, .active) {
    background: var(--color-primary);
    color: #fff;
}   

.sidebar-values-wrapper li a {
    padding: 10px 15px;
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #222;
    border-left: 4px solid transparent;
    text-transform: capitalize;
}

.custom-dropdown-sidebar__values.show,
li.custom-dropdown-sidebar.open .custom-dropdown-sidebar__values {
    grid-template-rows: 1fr;
}

/*Toppers*/
.toppers-single {
    background: #fff;
    box-shadow: 0 0 20px 1px #00000020;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0.5rem;
}

.toppers-single__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.toppers-single__img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 100%;
    box-shadow: 0 0 15px 1px #00000020;
    overflow: hidden;
    margin: auto;
    display: block;
}

.toppers-single__batch {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.toppers-single__content .name {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}


.toppers-single__content .details li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    font-size: 0.95rem;
    padding: 0.35rem 0;
}

.toppers-single__content .details li .title {font-weight: 800;}

.toppers-single__content {
    padding: 1rem 2rem 0 0.25rem;
}
@media only screen and (max-width: 768px) {
  .toppers-single__content {
    padding: 1rem 0;
  }
}

/* activity */
.search-filter__field {
  width: 100%;
  position: relative;
}

.search-filter__field .field {
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  height: 40px;
  border-radius: 0.25rem;
  padding: 0  1rem;
  font-size: 0.8rem;
  outline: none;
}

.activity-header {
  padding-bottom: 1.5rem;
}

.search-filter__title {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.activity-list__card {
  margin: 1rem 0;
  background: #fff;
  color: #000;
  box-shadow: 0 0 10px 1px #00000020;
  border-radius: 0.75rem;
  overflow: hidden;
}
.activity-list__card .img-box {
  width: 100%;
  height: 300px;
}
.activity-list__card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.activity-list__card .title {
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 600;
  margin: 1rem 0 0;
  text-transform: capitalize;
}
.activity-list__card .content-box {
  padding: 1rem;
}
.activity-list__card .desc-box {
  font-size: 0.9rem;
  line-height: 1.75;
  overflow-y: auto;
  margin: 0.5rem 0 1rem;
  height: 100px;
}

.activity-list__card .desc-box::-webkit-scrollbar {
  width: 3px;
}
.activity-list__card .desc-box::-webkit-scrollbar-track {
  background: rgba(0, 0, 255, 0.122);
  border-radius: 100px;
}
.activity-list__card .desc-box::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: var(--color-primary);
  opacity: 0.25;
}
.activity-list__card .event-date {
  color: #000000e0;
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.activity-list__card .event-date i {
  font-size: 1.35rem;
  color: var(--color-primary);
}
.activity-list--archives .activity-list__card .img-box {
    height: 100%;
}

.activity-list--archives .activity-list__card .desc-box {
    font-size: 0.8rem;
    overflow: inherit;
    margin: 11px 0;
    height: auto;
    line-height: 1.7;
}

.activity-list--archives .activity-list__card .content-box {
    overflow-y: auto;
    margin: 0.85rem 0.85rem 0;
    padding: 0;
    padding-right: 0.25rem;
    height: 135px;
}
.activity-list--archives .activity-list__card .content-box::-webkit-scrollbar {
  width: 3px;
}
.activity-list--archives .activity-list__card .content-box::-webkit-scrollbar-track {
  background: rgba(0, 0, 255, 0.122);
  border-radius: 100px;
}
.activity-list--archives .activity-list__card .content-box::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: var(--color-primary);
  opacity: 0.25;
}
.activity-list--archives .activity-list__card .event-date {
    font-size: 0.7rem;
    margin-bottom: 0.3rem;
}

.activity-list--archives .activity-list__card .event-date i {
    font-size: 1.1rem;
}


.activity-list--archives .activity-list__card .title {
    font-size: 0.75rem;
    line-height: 1.6;
    margin: 0 0 0.5rem;
}
.archives-wrapper {
    padding: 1.5rem 0 0;
}
.activity--bg{
        padding: 4rem 0;
    background: var(--color-primary-light);
    background-repeat: no-repeat !important;
    background-position: top center !important;
    background-size: cover !important;
}
.activity .section-content .heading {
    font-size: 2rem;
}


.activity-list.activity-list--archives .activity-list__card {
    height: 160px;
}

.activity-list.activity-list--archives .activity-list__card .row,
.activity-list.activity-list--archives .activity-list__card .col{
    height: 100%;
}

.activity-list.activity-list--archives {
    height: 550px;
    overflow-y: auto;
    padding-right: 1rem;
}

.slick-slider .slick-arrow {
    opacity: 0.25;
    transition: 300ms ease;
}

.slick-slider:hover .slick-arrow {
    opacity: 1;
}

.slick-disabled {
    display: none;
}
.search-filter-wrapper .themeBtn {
    font-size: 0.85rem;
    padding: 0;
    padding-inline: 1.5rem;
    height: 39px;
    display: flex;
    margin-bottom: 0.6rem;
    border-radius: 0.25rem;
}

.search-filter-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 1rem;
}

.search-filter {
    width: 100%;
}
.activity-list__card .content-box .themeBtn {
    font-size: 0.75rem;
    border-radius: 100px;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    font-weight: 500;
}
/* activity */



/*drop-down*/
.header-main__nav li {
    position: relative;
}
.header-main__nav>li:hover .drop-down{
  transform: scaleY(1);
  opacity: 1;
  visibility: visible
}
.drop-down {
  width: 250px;
  background: #fff;
  position: absolute;
  left: -7%;
  top: 140%;
  transform-origin: center top;
  transform: scaleY(0);
  opacity: 0;
  visibility: hidden;
  z-index: 111;
  transition: 0.5s ease-in-out;
  box-shadow: 0 0 15px 1px #00000020;
}

.drop-down__list > li > a {
  width: 100%;
  color: #000;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
  padding: 0.5rem 1.5rem;
  border-bottom: 1px solid #00000052;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 300ms;
}
.drop-down__list > li > a:hover {
    color: #fff;
    border-color: var(--color-primary);
    background: var(--color-primary);
}
/*drop-down*/


/* custom-popup */
.custom-popup {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  transition: all 300ms ease 0s;
}
.contact-formWrapper {
  background: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.125) 0px 0px 10px 1px;
  border-radius: 0.5rem;
  position: relative;
  padding: 2rem;
}
.contact-form__fields {
  margin: 0.5rem 0px;
}
.contact-form__fields :is(input, textarea, select) {
  outline: none;
  background: none;
  resize: none;
}
.contact-form__fields :is(input, textarea, select) {
  border: 1px solid rgb(204, 204, 204);
  padding: 0.65rem 1rem;
  color: rgb(0, 0, 0);
  font-size: 0.85rem;
  font-weight: 500;
  width: 100% !important;
}
.contact-form__fields :is(input, textarea, select)::placeholder {
  opacity: 0.5;
  color: inherit;
  font: inherit;
}
.contact-form__fields .get-started {
  width: 100%;
  color: rgb(255, 255, 255);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: var(--color-primary);
  padding: 1rem;
  text-align: center;
  border: none;
  margin-top: 0.85rem;
}
.contact-form__fields .get-started:hover {
  color: rgb(255, 255, 255);
}
.contact-formWrapper button.close {
  color: rgb(255, 255, 255) !important;
  background: var(--color-primary) !important;
  opacity: 1 !important;
  font-size: 1.5rem;
  width: 50px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  opacity: 1;
  transition: all 300ms ease-in-out 0s;
  z-index: 1;
  top: 0px;
  right: 0px;
  border: none;
  outline: none;
  border-radius: 0px;
}

.modal-content-custom .heading {
  font-size: 2.25rem;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 0.85rem;
}
.modal-content-custom p {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.custom-popup .modal-content {
  border: none;
}
.custom-popup .modal-body {
  padding: 0;
}
.contact-formWrapper .contact-form {
    padding: 0;
}
body.modal-open {
    padding: 0 !important;
}
/* custom-popup */
/* socialLinks */
.socialLinks {
  display: flex;
  gap: 1.15rem;
  margin: 1rem 0;
}
.socialLinks li a {
  color: #fff;
  border: 2px solid #fff;
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  aspect-ratio: 1/1;
}

.socialLinks li a:hover {
  color: var(--color-primary);
  background: #fff;
  border-color: var(--color-primary);
}
/* socialLinks */