/*********************************************************************
************************* Style Global Rouls *************************
*********************************************************************/
@font-face {
  font-family: 'Dubai';
  src: url('../fonts/DubaiW23-Regular.ttf') format('truetype');
  font-weight: normal;
}
@font-face {
  font-family: 'Dubai';
  src: url('../fonts/DubaiW23-Medium.ttf') format('truetype');
  font-weight: Medium;
}
@font-face {
  font-family: 'Dubai';
  src: url('../fonts/DubaiW23-Bold.ttf') format('truetype');
  font-weight: Bold;
}
@font-face {
  font-family: 'Monadi';
  src: url('../fonts/Monadi.ttf') format('truetype');
  font-weight: Bold;
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --main-color: #13121a;
  --second-color: #d4af37;
  --second-opacity-color: #d4af37;
  --third-color: #fd962f;
  --black-color: #121113;
  --red-color: #ff3c00;
  --green-color: #7ae582;
  --text-color: #979797;
  --background-color: #f1f5f973;
  --border-color: #e5e5e5;
  --white-color: #fff;
  --main-space: 100px;
  --main-transition: 0.4s;
}

/* :root {
  --main-color: #33005a;
  --second-color: #ef157f;
  --second-opacity-color: rgba(239, 21, 127, 0.8);
  --third-color: #fd962f;
  --black-color: #121113;
  --red-color: #ff3c00;
  --green-color: #7ae582;
  --text-color: #979797;
  --background-color: #f1f5f973;
  --border-color: #e5e5e5;
  --white-color: #fff;
  --main-space: 100px;
  --main-transition: 0.4s;
} */

@media (max-width: 1199px) {
  :root {
    --main-space: 80px;
  }
}
@media (max-width: 991px) {
  :root {
    --main-space: 60px;
  }
}
@media (max-width: 575px) {
  :root {
    --main-space: 30px;
  }
}

body {
  font-family: 'Monadi', sans-serif;
}
body.background {
  /* background-image: url('../images/footer-background.webp'); */
  /* background-position: top; */
  /*background-repeat: repeat-x;
    background-size: 700px;*/
  /* background-repeat: no-repeat; */
}
body.dark::after {
  content: '';
  position: absolute;
  top: -130px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(assets/images/overlay.png);
  background-blend-mode: overlay;
  opacity: 0.2;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: top;
  background-position-x: right;
}
.subject_title {
  text-align: center;
  color: #450056;
  margin-top: 14px;
}
.no-margin {
  margin-top: 0px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p,
address,
figure {
  margin: 0;
}

input,
textarea {
  direction: rtl !important;
}

button {
  background: none;
  border: none;
}

button:focus {
  outline: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
a:hover {
  color: var(--second-color);
}

hr {
  border: 1px solid #e1e1e1;
}

.container-lg {
  --bs-gutter-x: 32px;
}
@media (max-width: 575px) {
  .container-lg {
    --bs-gutter-x: 24px;
  }
}

#content {
  min-height: 80vh;
}

.normal-text div:not(:last-child) {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .normal-text div:not(:last-child) {
    margin-bottom: 20px;
  }
}
.normal-text h1 {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: var(--main-color);
}
@media (max-width: 991px) {
  .normal-text h1 {
    font-size: 17px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .normal-text h1 {
    font-size: 16px;
    line-height: 22px;
  }
}
.normal-text h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: var(--main-color);
}
.normal-text h2:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .normal-text h2:not(:last-child) {
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .normal-text h2 {
    font-size: 16px;
    line-height: 22px;
  }
}
.normal-text h3,
.normal-text h4,
.normal-text h5,
.normal-text h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--main-color);
}
.normal-text h3:not(:last-child),
.normal-text h4:not(:last-child),
.normal-text h5:not(:last-child),
.normal-text h6:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .normal-text h3:not(:last-child),
  .normal-text h4:not(:last-child),
  .normal-text h5:not(:last-child),
  .normal-text h6:not(:last-child) {
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .normal-text h3,
  .normal-text h4,
  .normal-text h5,
  .normal-text h6 {
    font-size: 14px;
    line-height: 19px;
  }
}
.normal-text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--text-color);
}
.normal-text p:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .normal-text p {
    font-size: 13px;
    line-height: 20px;
  }
}
.normal-text ul,
.normal-text ol {
  list-style: unset;
  margin-right: 1rem;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--text-color);
}
@media (max-width: 767px) {
  .normal-text ul,
  .normal-text ol {
    font-size: 13px;
    line-height: 20px;
  }
}
.normal-text ul:not(:last-child),
.normal-text ol:not(:last-child) {
  margin-bottom: 10px;
}
.normal-text ul li:not(:last-child),
.normal-text ol li:not(:last-child) {
  margin-bottom: 5px;
}
.normal-text a {
  color: var(--second-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.normal-text a:hover {
  color: var(--main-color);
}

/*********************************************************************
  ************************** Style to I pluto **************************
  *********************************************************************/
/***************** Start style components *******************/
/* main heading component */
.main-heading {
  text-align: center;
}
.main-heading.space {
  /* margin-bottom: 50px; */
}
@media (max-width: 1199px) {
  .main-heading.space {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .main-heading.space {
    margin-bottom: 20px;
  }
}
.main-heading .title {
  font-size: 23px;
  font-weight: 700;
  line-height: 40px;
  color: var(--second-color);
  margin-bottom: 10px;
}
.banner-item .main-heading .title {
  color: var(--third-color);
}
@media (max-width: 991px) {
  .main-heading .title {
    font-size: 21px;
  }
}
@media (max-width: 575px) {
  .main-heading .title {
    font-size: 19px;
    line-height: 30px;
    margin-bottom: 6px;
  }
}
.main-heading .heading {
  font-size: 37px;
  font-weight: 700;
  line-height: 50px;
  color: var(--main-color);
}
@media (max-width: 991px) {
  .main-heading .heading {
    font-size: 32px;
    line-height: 44px;
  }
}
@media (max-width: 575px) {
  .main-heading .heading {
    font-size: 28px;
    line-height: 40px;
  }
}
.main-heading.two .special-word {
  /* background-image: url('../images/icons/special-word.svg'); */
  /* background-repeat: no-repeat; */
  /* background-position: 0 24px; */
  /* background-size: 100%; */
  color: var(--second-color);
  display: inline-block;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .main-heading .special-word {
    background-position: 0 20px;
  }
}
@media (max-width: 575px) {
  .main-heading .special-word {
    background-position: 0 18px;
  }
}
.main-heading.white .heading {
  color: white;
}
.main-heading.white .special-word {
  /* background-image: url('../images/icons/special-word-white.svg'); */
  color: var(--second-color);
}

/* second heading component */
.second-heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  color: var(--main-color);
  margin-bottom: 40px;
  padding-bottom: 35px;
  border-bottom: 1px solid #e4e4e4;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .second-heading {
    padding-bottom: 25px;
    margin-bottom: 25px;
    font-size: 21px;
    line-height: 32px;
  }
}
.second-heading img,
.second-heading svg {
  width: 28px;
  color: var(--second-color);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* main button component */
.main-button {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  min-width: 135px;
  padding: 12px 8px;
  background-color: var(--main-color);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: var(--white-color);
  /*color: var(--second-color);*/
  text-align: center;
  position: relative;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}

.main-button:hover {
  background-color: var(--second-color);
  color: #fff;
}
.main-button:hover::after {
  display: none;
}
.dark .main-button {
  background-color: var(--white-color);
  color: var(--main-color);
}
/* second button component */
.second-button {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 135px;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 12px;
  /* background-color: #fff; */
  background: linear-gradient(91.85deg, #f44660 1.56%, #fe6aa4 144.91%);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: var(--white-color);
  /* border: 1px solid var(--main-color); */
  border: 1px solid var(--second-color);
  text-align: center;
  position: relative;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.second-button::after {
  content: '';
  width: 60%;
  height: 10px;
  background-color: var(--white-color);
  border-radius: 5px;
  position: absolute;
  bottom: -4px;
  right: 20%;
  z-index: 1;
}
.second-button:hover {
  background: var(--white-color);
  /* border-color: var(--second-color); */
  border: 1px solid var(--second-color);
}
.second-button:hover::after {
  background-color: var(--second-color);
}

/* third button component */
.third-button {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
  background-color: var(--main-color);
  padding: 12px 24px;
  min-width: 140px;
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: auto;
  border-radius: 5px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .third-button {
    min-width: auto;
    padding: 8px 16px;
  }
}
.third-button:hover {
  color: #fff;
  background-color: var(--second-color);
}

/* subscribe button component */
.subscribe-button {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  background-color: var(--main-color);
  padding: 15px 40px;
  border-radius: 10px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 575px) {
  .subscribe-button {
    padding: 10px 24px;
    font-size: 16px;
    border-radius: 8px;
  }
}
.subscribe-button svg {
  width: 24px;
}
.subscribe-button svg path {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.subscribe-button:hover {
  background-color: var(--second-color);
  color: #fff;
}
.subscribe-button:hover svg path {
  fill: var(--main-color);
}
.subscribe-button.white {
  background-color: #fff;
  color: var(--main-color);
}
.subscribe-button.white:hover {
  background-color: var(--second-color);
  color: #fff;
}
.subscribe-button.white:hover svg path {
  fill: var(--main-color);
}

/* custom select component */
.custom-select {
  position: relative;
  max-width: 100%;
}
.custom-select:not(:last-of-type) {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .custom-select:not(:last-of-type) {
    margin-bottom: 25px;
  }
}
.custom-select label {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-color);
  text-transform: capitalize;
  position: absolute;
  top: 0;
  right: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: white;
  padding: 4px;
}
.custom-select .input-button {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 16px 25px;
  border: 1px solid #a3a3a3;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .custom-select .input-button {
    gap: 16px;
  }
}
.custom-select .input-button svg {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.custom-select .input-button.show > svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.custom-select.invalid .input-button {
  border-color: #f73705;
  color: #f73705;
}
.custom-select.invalid label {
  color: #f73705;
}
.custom-select .dropdown-menu {
  width: 100%;
  max-width: 100%;
  margin: 5px 0 !important;
  -webkit-box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  border-radius: 15px;
  border: none;
  max-height: 250px;
  padding: 0;
  overflow-y: auto;
}
.custom-select .dropdown-menu .dropdown-item {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-color);
  padding: 13px 24px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  border-radius: 15px;
  cursor: pointer;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
}
.custom-select .dropdown-menu .dropdown-item:hover,
.custom-select .dropdown-menu .dropdown-item.active {
  background-color: var(--main-color);
  color: #fff;
}

/* main select component */
.main-select {
  position: relative;
  max-width: 100%;
}
.main-select .dropdown-menu {
  width: 100%;
  max-width: 100%;
  margin: 5px 0 !important;
  -webkit-box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  border-radius: 15px;
  border: none;
  max-height: 250px;
  padding: 0;
  overflow-y: auto;
}
.main-select .dropdown-menu .dropdown-item {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-color);
  padding: 13px 24px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  border-radius: 15px;
  cursor: pointer;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
}
.main-select .dropdown-menu .dropdown-item:hover,
.main-select .dropdown-menu .dropdown-item.active {
  color: var(--main-color);
  background-color: transparent;
}
.main-select .dropdown-menu .dropdown-item.logout {
  color: var(--red-color);
  padding-top: 0;
}
.main-select .dropdown-menu .dropdown-item.logout:hover {
  color: var(--red-color);
  opacity: 0.7;
}

/* select number code component */
.select-number-code .option-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  color: var(--black-color);
  border-radius: 100px;
  padding: 12px;
  border: 1px solid #a3a3a3;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .select-number-code .option-select {
    gap: 12px;
  }
}
.select-number-code .option-select svg {
  font-size: 14px;
  color: var(--text-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.select-number-code .option-select.show svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.select-number-code .options-dropdown {
  background-color: white;
  width: 300px;
  padding-top: 24px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 24px;
}
.select-number-code .options-dropdown .options-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
  padding: 0 12px;
  margin-bottom: 20px;
}
.select-number-code .options-dropdown .options-header .btn-close {
  margin: 0;
  padding: 0;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")
    center/24px auto no-repeat;
  opacity: 1;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.select-number-code .options-dropdown .options-header .btn-close:hover {
  opacity: 0.5;
}
.select-number-code .options-dropdown .options-header h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
  color: var(--black-color);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.select-number-code .options-dropdown .options-header .header-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.select-number-code .options-dropdown .options-body {
  overflow-y: auto;
  max-height: 225px;
}
.select-number-code .options-dropdown .options-body .dropdown-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  padding: 5px 12px;
}
.select-number-code .options-dropdown .options-body .dropdown-item:hover {
  background-color: #ececec;
}
.select-number-code
  .options-dropdown
  .options-body
  .dropdown-item:not(:last-child) {
  margin-bottom: 12px;
}
.select-number-code .options-dropdown .options-body .dropdown-item .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: #ececec;
  border-radius: 50%;
}
.select-number-code .options-dropdown .options-body .dropdown-item .icon svg {
  font-size: 16px;
  color: var(--text-color);
}
.select-number-code .options-dropdown .options-body .dropdown-item h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 26px;
  color: var(--black-color);
}
.select-number-code input[type='search'] {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: var(--black-color);
  display: block;
  width: 100%;
  outline: none;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  padding: 4px 8px;
  direction: rtl;
}
.select-number-code .input-button {
  direction: ltr;
  border-radius: 8px;
  gap: 12px;
}
.select-number-code .flag img {
  width: 32px;
  height: 32px;
  border-radius: 12px;
}
.select-number-code select {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: var(--black-color);
  border: none;
  outline: none;
  direction: ltr;
}

/* main alert component */
.main-alert {
  padding: 12px 20px;
  border-radius: 5px;
  background-color: var(--main-color);
  margin-bottom: 10px;
  min-height: 60px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .main-alert {
    padding: 10px;
  }
}
.main-alert .btn-close {
  background-image: none;
  right: auto;
  color: #fff;
  opacity: 1;
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 4px;
  display: block;
  width: auto;
  height: auto;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 991px) {
  .main-alert .btn-close {
    left: 10px;
  }
}
@media (max-width: 575px) {
  .main-alert .btn-close {
    left: 6px;
  }
}
.main-alert .btn-close:hover {
  color: var(--text-color);
}
.main-alert .btn-close svg {
  font-size: 24px;
}
@media (max-width: 575px) {
  .main-alert .btn-close svg {
    font-size: 20px;
  }
}

/* accordion Component */
.main-accordion {
  max-width: 630px;
  margin: auto;
  --bs-accordion-border-radius: 5px;
}
.main-accordion .accordion-item {
  padding: 0 20px;
  border-color: rgba(4, 3, 73, 0.1215686275);
}
@media (max-width: 575px) {
  .main-accordion .accordion-item {
    padding: 0 16px;
  }
}
.main-accordion .accordion-header {
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
}
.main-accordion .accordion-header svg {
  font-size: 16px;
  color: #cdd6e1;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.main-accordion .accordion-header:not(.collapsed) {
  border-bottom: 1px solid rgba(4, 3, 73, 0.1215686275);
  color: var(--second-color);
}
.main-accordion .accordion-header:not(.collapsed) svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  color: var(--second-color);
}
.main-accordion .accordion-body {
  padding: 16px 0;
}
@media (max-width: 575px) {
  .main-accordion .accordion-body {
    padding: 12px 0;
  }
}
.main-accordion .accordion-body p {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: var(--text-color);
}
.main-accordion .accordion-body p:not(:last-child) {
  margin-bottom: 8px;
}
@media (max-width: 575px) {
  .main-accordion .accordion-body p:not(:last-child) {
    margin-bottom: 5px;
  }
}
@media (max-width: 575px) {
  .main-accordion .accordion-body p {
    font-size: 11px;
    line-height: 17px;
  }
}

/* main popup component */
.modal-backdrop.show {
  background: rgba(0, 0, 0, 0.6980392157);
  opacity: 1;
}

.main-popup .modal-dialog {
  -webkit-box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  max-width: calc(100% - 48px);
  width: 560px;
  margin: 24px auto;
}
@media (max-width: 575px) {
  .main-popup .modal-dialog {
    max-width: calc(100% - 24px);
    margin: 12px auto;
  }
}
.main-popup .modal-content {
  border-radius: 15px;
}
@media (max-width: 575px) {
  .main-popup .modal-content {
    border-radius: 10px;
  }
}
.main-popup .modal-header {
  padding: 0;
  border: none;
}
.main-popup .btn-close {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 10;
  padding: 4px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  background-image: none;
  opacity: 1;
}
.main-popup .btn-close svg {
  font-size: 20px;
  color: var(--text-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.main-popup .btn-close:hover svg {
  color: var(--main-color);
}
@media (max-width: 575px) {
  .main-popup .btn-close {
    top: 16px;
    left: 16px;
  }
}
.main-popup .modal-body {
  padding: 60px;
}
@media (max-width: 575px) {
  .main-popup .modal-body {
    padding: 40px 16px;
  }
}

.main-popup#invitation_code .modal-dialog {
  width: 700px;
}

/* video popup component */
.video-popup .modal-dialog {
  width: 900px;
}
.video-popup .modal-body {
  padding: 0;
  margin-bottom: -9px;
}
.video-popup video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border-radius: 15px;
}
@media (max-width: 575px) {
  .video-popup video {
    aspect-ratio: 1;
    border-radius: 10px;
  }
}

/* main search component */
.main-search {
  max-width: 1140px;
  margin: auto;
  background-color: #fff;
  padding: 45px 25px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  position: relative;
  z-index: 1;
}
.main-search .search-heading {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: var(--main-color);
  margin-bottom: 30px;
  text-align: center;
}
.main-search .search-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 30px 15px;
}
@media (max-width: 991px) {
  .main-search .search-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 25px 20px;
  }
}
.main-search .register-form {
  max-width: 100%;
}
.main-search .register-form .custom-select {
  width: calc((100% - 145px - 45px) / 3);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
@media (max-width: 991px) {
  .main-search .register-form .custom-select {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 575px) {
  .main-search .register-form .custom-select {
    width: 100%;
  }
}
.main-search .register-form .custom-select:not(:last-of-type) {
  margin-bottom: 0;
}
.main-search .register-form .submit {
  margin: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 16px;
  width: 145px;
}
@media (max-width: 991px) {
  .main-search .register-form .submit {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 575px) {
  .main-search .register-form .submit {
    width: 100%;
  }
}

/* breadcrumb component */
.breadcrumb-section {
  margin: calc(var(--main-space) / 2);
}

.breadcrumb {
  margin: 0;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 22px;
  color: var(--main-color);
}
@media (max-width: 575px) {
  .breadcrumb {
    font-size: 10px;
  }
}
.breadcrumb .breadcrumb-item {
  text-decoration: underline;
  padding: 0;
}
.breadcrumb .breadcrumb-item a {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.breadcrumb .breadcrumb-item a:hover {
  color: var(--second-color);
}
.breadcrumb .breadcrumb-item.active {
  color: var(--second-color);
}
.breadcrumb .breadcrumb-item.active a {
  color: var(--second-color);
}

/* sliders component */
.lessons-slider {
  max-height: 605px;
}

/* all forms style */
.invalid-feedback {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: #f73705;
}

/* box between component */
.box-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.home-statistics {
  padding: 60px 0;
  background-color: var(--main-color);
  position: relative;
  width: 98%;
  margin: auto;
  border-radius: 50px;
  overflow: hidden;
  z-index: 0;
}
.dark .home-statistics,
.dark .home-statistics.twwo {
  background: linear-gradient(91.84deg, #6c299f 1.56%, #5e3081 107.16%);
}
.home-statistics.twwo {
  background: linear-gradient(91.84deg, #f44660 1.56%, #33005a 107.16%);
  padding: 60px;
  margin: 100px auto;
}
.main-space {
  width: 98%;
  margin: auto;
  padding: 100px 0;
}
.home-statistics::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-image: url(../images/bg=gray.png);
  border-radius: 20px;
  overflow: hidden;
  z-index: -1;
  background-repeat: round;
}
/* empty data component */
.empty-data {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--text-color);
  padding: 20px 30px;
  text-align: center;
  display: -ms-grid;
  display: grid;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.empty-data img,
.empty-data svg {
  max-width: 200px;
}
@media (max-width: 575px) {
  .empty-data img,
  .empty-data svg {
    max-width: 150px;
  }
}
@media (max-width: 575px) {
  .empty-data {
    font-size: 14px;
    padding: 10px;
  }
}

/* scrollable box component */
.horizontal-scrollable {
  max-width: 100%;
  overflow-x: auto;
}

.vertical-scrollable {
  max-height: 100%;
  overflow-y: auto;
}

/* search form component */
.search-form {
  width: 230px;
  max-width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(156, 173, 196, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}
@media (max-width: 991px) {
  .search-form {
    width: 150px;
    padding-bottom: 4px;
  }
}
.search-form input {
  border: none;
  outline: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 21px;
  color: #9cadc3;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: calc(100% - 24px);
}
.search-form input::-webkit-input-placeholder {
  color: #9cadc3;
}
.search-form input::-moz-placeholder {
  color: #9cadc3;
}
.search-form input:-ms-input-placeholder {
  color: #9cadc3;
}
.search-form input::-ms-input-placeholder {
  color: #9cadc3;
}
.search-form input::placeholder {
  color: #9cadc3;
}
@media (max-width: 575px) {
  .search-form svg {
    width: 14px;
  }
}

/* search form component */
.clipboard {
  font-size: 18px;
  color: var(--text-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 991px) {
  .clipboard {
    font-size: 14px;
  }
}
.clipboard:hover,
.clipboard.active {
  color: var(--main-color);
}
.clipboard .copy-alet {
  display: block;
  font-size: 11px;
  font-weight: 400;
  line-height: 19px;
  color: var(--text-color);
  display: none;
  opacity: 0;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.clipboard .copy-alet.show {
  display: block;
  opacity: 1;
}
@media (max-width: 991px) {
  .clipboard .copy-alet {
    font-size: 8px;
  }
}

/* custom checkbox component */
.custom-checkbox {
  padding: 0;
  cursor: pointer;
}
.custom-checkbox .form-check-input {
  margin: 0;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  width: 24px;
  height: 24px;
  cursor: pointer;
  border: 1px solid #9cadc3;
}
@media (max-width: 575px) {
  .custom-checkbox .form-check-input {
    width: 20px;
    height: 20px;
  }
}
.custom-checkbox .form-check-input:focus {
  border: 1px solid #9cadc3;
}
.custom-checkbox .form-check-input:checked {
  border: 2px solid var(--main-color);
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23040349' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

/***************** End style components *******************/
/*********************** Start style Header ***************************/
#header {
  /* border-bottom: 1px solid #e5e5e5; */
}
#header .navbar {
  position: unset;
  gap: 69px;
  padding: 0px 0;
}
@media (max-width: 1199px) {
  #header .navbar {
    gap: 32px;
  }
}
#header .navbar-brand {
  margin: 0;
}
#header .navbar-brand img {
  /* width: 97px; */
  /* border-radius: 10px; */
}
@media (max-width: 991px) {
  #header .navbar-brand img {
    /* width: 70px; */
    /* border-radius: 10px; */
  }
}
@media (max-width: 575px) {
  #header .navbar-brand img {
    /* width: 48px; */
    /* border-radius: 10px; */
  }
}
#header .navbar-toggler {
  border-radius: 0;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 24px;
  color: var(--main-color);
}
.dark #header .navbar-toggler {
  color: var(--white-color);
}
#header .offcanvas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (max-width: 1199px) {
  #header .offcanvas {
    gap: 24px;
  }
}
@media (max-width: 991px) {
  #header .offcanvas {
    /* background-image: url("../images/footer-background.webp"); */
    background-size: contain;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 16px;
  }
}
#header .offcanvas .offcanvas-header {
  border-bottom: 1px solid #e5e5e5;
}
#header .offcanvas .offcanvas-header .navbar-brand img {
  width: 48px;
}
#header .offcanvas .close-button {
  font-size: 24px;
  color: var(--main-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
#header .offcanvas .close-button:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media (max-width: 991px) {
  #header .offcanvas .sign-buttons {
    margin-bottom: 16px;
  }
}
#header .navbar-nav {
  gap: 25px;
}
@media (max-width: 1199px) {
  #header .navbar-nav {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  #header .navbar-nav {
    margin-bottom: auto;
    gap: 0;
  }
}
#header .navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: var(--main-color);
  padding: 6px 0;
  position: relative;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.dark #header .navbar-nav .nav-link {
  color: var(--white-color);
}
@media (max-width: 991px) {
  #header .navbar-nav .nav-link {
    padding: 16px;
    font-size: 16px;
  }
}
/* #header .navbar-nav .nav-link::before, */
#header .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  right: 0;
  /* -webkit-transform: translateX(-50%); */
  /* transform: translateX(-50%); */
  width: 20px;
  height: 3px;
  border-radius: 10px;
  background-color: var(--second-color);
  opacity: 0;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 991px) {
  #header .navbar-nav .nav-link::before,
  #header .navbar-nav .nav-link::after {
    display: none;
  }
}
#header .navbar-nav .nav-link::before {
  top: 0;
}
#header .navbar-nav .nav-link::after {
  bottom: 0;
}
#header .navbar-nav .nav-link.active,
#header .navbar-nav .nav-link:hover {
  color: var(--second-color);
}
#header .navbar-nav .nav-link.active::before,
#header .navbar-nav .nav-link.active::after {
  opacity: 1;
}
@media (max-width: 991px) {
  #header .navbar-nav .nav-link.active {
    background: var(--main-color);
    color: #fff !important;
  }
}

.lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  direction: ltr;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.lang img {
  height: 8px;
}

.sign-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 991px) {
  .sign-buttons {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/*********************** End style Header ***************************/
/*********************** Start style Footer ***************************/
#footer {
  /*background-image: url("../images/footer-background.webp");*/
  background-position: top;
  background-size: cover;
  padding: var(--main-space) 0;
  /* text-align: center; */
  padding-top: 0;
  position: relative;
}
#footer::before {
  content: '';
  position: absolute;
  top: -176px;
  /* right: 25%; */
  width: 50%;
  height: 100%;
  background-image: url(../images/Downpic.cc-163594208.svg);
  /* background-size: cover; */
  /* background-position: top; */
  /* background-blend-mode: overlay; */
  opacity: 0.1;
  z-index: -1;
  /* background-repeat: round; */
  margin: auto;
  text-align: center;
  right: 20%;
}
.dark #footer::before {
  /* background-color: #1b0a28; */
  mix-blend-mode: color-burn;
}

#footer .image {
  margin-bottom: 12px;
  text-align: center;
}
#footer .image img {
  width: 128px;
  border-radius: 10px;
}
#footer .navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  #footer .navbar-nav {
    gap: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  #header .navbar-nav .nav-link {
    color: var(--main-color) !important;
  }
  #footer .navbar-nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}
#footer .navbar-nav .nav-link {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: var(--main-color);
  padding: 6px 0;
  position: relative;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
#footer .navbar-nav .nav-link::before,
#footer .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 12px;
  height: 3px;
  border-radius: 10px;
  background-color: var(--main-color);
  opacity: 0;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
#footer .navbar-nav .nav-link::before {
  top: 0;
}
#footer .navbar-nav .nav-link::after {
  bottom: 0;
}
#footer .navbar-nav .nav-link.active,
#footer .navbar-nav .nav-link:hover {
  color: var(--second-color);
}
#footer .navbar-nav .nav-link.active::before,
#footer .navbar-nav .nav-link.active::after {
  opacity: 1;
}
#footer .footer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  margin-top: 3rem;
}
@media (max-width: 991px) {
  #footer .footer-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
#footer ul.social-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}
@media (max-width: 991px) {
  #footer ul.social-footer {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
}
#footer ul.social-footer a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  color: var(--main-color);
  border: 1px solid #d9d9e4;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}

.dark #footer ul.social-footer a {
  color: var(--white-color);
}
#footer ul.social-footer a:hover {
  background-color: #d9d9e4;
  color: var(--main-color);
}
@media (min-width: 992px) {
  #footer .sign-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
#footer .copywrite {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: var(--text-color);
}
#footer .copywrite a {
  font-weight: 600;
  color: var(--main-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.dark #footer .copywrite,
.dark #footer .copywrite a {
  color: var(--white-color);
}
#footer .copywrite a:hover {
  color: var(--second-color);
}

/*********************** End style Footer ***************************/
/*************************** Animation ******************************/
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@-webkit-keyframes rotate50 {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}
@keyframes rotate50 {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes moving {
  from {
    -webkit-transform: translateX(-5px) translateY(-5px);
    transform: translateX(-5px) translateY(-5px);
  }
  50% {
    -webkit-transform: translateX(10px) translateY(5px);
    transform: translateX(10px) translateY(5px);
  }
}
@keyframes moving {
  from {
    -webkit-transform: translateX(-5px) translateY(-5px);
    transform: translateX(-5px) translateY(-5px);
  }
  50% {
    -webkit-transform: translateX(10px) translateY(5px);
    transform: translateX(10px) translateY(5px);
  }
}
@-webkit-keyframes movingOne {
  from {
    -webkit-transform: translateX(5px) translateY(-5px);
    transform: translateX(5px) translateY(-5px);
  }
  50% {
    -webkit-transform: translateX(-10px) translateY(-5px);
    transform: translateX(-10px) translateY(-5px);
  }
}
@keyframes movingOne {
  from {
    -webkit-transform: translateX(5px) translateY(-5px);
    transform: translateX(5px) translateY(-5px);
  }
  50% {
    -webkit-transform: translateX(-10px) translateY(-5px);
    transform: translateX(-10px) translateY(-5px);
  }
}
@-webkit-keyframes movingTwo {
  from {
    -webkit-transform: translateX(10px) translateY(5px);
    transform: translateX(10px) translateY(5px);
  }
  50% {
    -webkit-transform: translateX(-5px) translateY(-5px);
    transform: translateX(-5px) translateY(-5px);
  }
}
@keyframes movingTwo {
  from {
    -webkit-transform: translateX(10px) translateY(5px);
    transform: translateX(10px) translateY(5px);
  }
  50% {
    -webkit-transform: translateX(-5px) translateY(-5px);
    transform: translateX(-5px) translateY(-5px);
  }
}
/*********************************************************************
  **************************** Home page *******************************
  *********************************************************************/
/******************** Start style Home Header *********************/
.home-header {
  position: relative;
  /* padding-bottom: 3rem; */
}
.home-header .sign-buttons {
  margin-top: 2.5rem;
}

.home-heading {
  padding: 5% 0 0px;
  /* text-align: right; */
  position: relative;
  /* text-transform: capitalize; */
  /* flex: auto; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home-heading::before {
  content: '';
  position: absolute;
  top: 13px;
  right: 20%;
  width: 64%;
  height: 100%;
  background-image: url(../images/Downpic.cc-163594208.svg);
  /* background-size: cover; */
  background-position: top;
  background-blend-mode: overlay;
  opacity: 0.3;
  z-index: -1;
  background-repeat: no-repeat;
}
.dark .home-heading::before {
  /* background-color: #1b0a28; */
  mix-blend-mode: color-burn;
}
.header-imgs {
  border: 1px solid #f2f2f2;
  border-radius: 15px;
  background-color: #f4f4f4;
  margin: 10px 8px;
  padding: 10px 20px;
}
.header-imgs-section {
  display: flex;
}
@media (max-width: 575px) {
  .header-imgs-section {
    flex-wrap: wrap;
    width: 435px;
  }
  .header-imgs {
    margin: 5px;
    padding: 10px 15px;
  }
}

.header-imgs img {
  width: 80px !important ;
}

.home-heading .title,
.home-desc .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 40px;
  color: var(--second-color);
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .home-heading .title,
  .home-desc .title {
    font-size: 21px;
  }
}
@media (max-width: 575px) {
  .home-heading {
    padding: 0 0 80px;
  }
  .home-heading .title,
  .home-desc .title {
    font-size: 18px;
    line-height: 30px;
  }
}
.home-heading .heading,
.home-desc .heading {
  font-size: 55px; /*54px;*/
  font-weight: 700;
  line-height: 72px;
  color: var(--main-color);
}
.dark .home-heading .heading {
  color: var(--white-color);
}
.dark .home-header .sign-buttons svg rect {
  fill: var(--white-color);
}
.dark .home-header .sign-buttons svg path:nth-of-type(1) {
  fill: var(--white-color);
}

.dark .home-header .sign-buttons svg path.path-two {
  fill: var(--main-color);
}
.home-header .heading2 {
  font-size: 16px;
  line-height: 20px;
}
.margin-top {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .home-heading .heading,
  .home-desc .heading {
    font-size: 32px;
    line-height: 48px;
    width: auto;
  }
  .home-header .heading2 {
    font-size: 16px;
    line-height: 20px;
  }
}
.img-header {
  width: 600px;
  height: 550px;
}
.row-display {
  display: flex;
  /* margin-right: 70px; */
  margin: 0px auto;
}
@media (max-width: 575px) {
  .margin-top {
    margin-top: 20px;
  }
  .home-heading .heading,
  .home-desc .heading {
    font-size: 32px;
    line-height: 48px;
    /* width: 400px; */
  }
  .home-header .heading2 {
    font-size: 16px;
    line-height: 20px;
  }
  .home-heading {
    width: auto;
  }

  .home-header .heading2 {
    width: auto;
  }

  .img-header {
    height: auto;
    width: 100%;
    max-width: 100%;
  }
  .col-5.slider-image {
    width: 100%;
    margin: 0px 0px;
  }

  .row-display {
    display: block;
    margin: 5px;
  }
}
.home-heading .special-word,
.home-desc .special-word {
  color: var(--second-color);
}
.special-word2 {
  color: var(--third-color);
  font-size: 75px;
}
.special-word3 {
  color: var(--main-color);
  font-size: 30px;
}
.home-scenes .image-scene {
  position: absolute;
  width: 140px;
  max-width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.home-scenes {
  width: 60%;
  position: relative;
}
.home-scenes img {
  width: 80%;
  margin-top: 5%;
  /* animation: moving 1.5s linear infinite; */
}
.home-scenes svg {
  position: absolute;
  /* top: 5%; */
  /* right: 6%; */
  z-index: -1;
  animation: moving 1.5s linear infinite;
}
@media (max-width: 575px) {
  .home-scenes .image-scene {
    width: 90px;
  }
}
.home-scenes .image-scene:nth-child(1) {
  top: 0;
  right: 180px;
  width: 85px;
  -webkit-animation: moving 1.5s linear infinite;
  animation: moving 1.5s linear infinite;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
@media (max-width: 1199px) {
  .home-scenes .image-scene:nth-child(1) {
    right: 150px;
  }
}
@media (max-width: 575px) {
  .home-scenes .image-scene:nth-child(1) {
    width: 75px;
  }
}
.home-scenes .image-scene:nth-child(2) {
  top: 0;
  right: 0;
  -webkit-animation: movingOne 1.5s linear infinite;
  animation: movingOne 1.5s linear infinite;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
@media (max-width: 1199px) {
  .home-scenes .image-scene:nth-child(2) {
    top: 20px;
  }
}
@media (max-width: 575px) {
  .home-scenes .image-scene:nth-child(2) {
    bottom: 10px;
    top: auto;
    right: 20px;
  }
}
.home-scenes .image-scene:nth-child(3) {
  bottom: 0px;
  right: 100px;
  -webkit-animation: movingTwo 1.5s linear infinite;
  animation: movingTwo 1.5s linear infinite;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
@media (max-width: 1399px) {
  .home-scenes .image-scene:nth-child(3) {
    right: 80px;
  }
}
@media (max-width: 1199px) {
  .home-scenes .image-scene:nth-child(3) {
    right: 20px;
    bottom: -20px;
  }
}
@media (max-width: 575px) {
  .home-scenes .image-scene:nth-child(3) {
    bottom: auto;
    top: 10px;
  }
}
.home-scenes .image-scene:nth-child(4) {
  top: 0;
  left: 150px;
  width: 110px;
  -webkit-animation: moving 1.5s linear infinite;
  animation: moving 1.5s linear infinite;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
@media (max-width: 1199px) {
  .home-scenes .image-scene:nth-child(4) {
    left: 100px;
  }
}
@media (max-width: 575px) {
  .home-scenes .image-scene:nth-child(4) {
    top: auto;
    bottom: -25px;
    width: 80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.home-scenes .image-scene:nth-child(5) {
  top: 50px;
  left: 0;
  -webkit-animation: movingOne 1.5s linear infinite;
  animation: movingOne 1.5s linear infinite;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
@media (max-width: 1199px) {
  .home-scenes .image-scene:nth-child(5) {
    top: 40px;
    left: -20px;
  }
}
@media (max-width: 575px) {
  .home-scenes .image-scene:nth-child(5) {
    top: 10px;
    left: 10px;
  }
}
.home-scenes .image-scene:nth-child(6) {
  bottom: 0px;
  left: 100px;
  -webkit-animation: movingTwo 1.5s linear infinite;
  animation: movingTwo 1.5s linear infinite;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
@media (max-width: 1399px) {
  .home-scenes .image-scene:nth-child(6) {
    bottom: -20px;
    left: 60px;
  }
}
@media (max-width: 575px) {
  .home-scenes .image-scene:nth-child(6) {
    bottom: 10px;
    left: 20px;
  }
}

/******************** End style Home Header ************************/
/******************** Start style Start Learn **********************/
.start-learn {
  margin: -75px 0 var(--main-space);
  padding-top: 125px;
  position: relative;
}
@media (max-width: 575px) {
  .start-learn {
    margin: -50px 0 var(--main-space);
    padding-top: 80px;
  }
}
.start-learn::after {
  content: '';
  background-color: rgba(6, 217, 200, 0.0588235294);
  border-radius: 40px;
  z-index: -1;
  width: calc(100% - 40px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 1199px) {
  .start-learn::after {
    border-radius: 25px;
    width: calc(100% - 24px);
  }
}
@media (max-width: 991px) {
  .start-learn::after {
    width: calc(100% - 12px);
    border-radius: 15px;
  }
}
@media (max-width: 575px) {
  .start-learn::after {
    border-radius: 10px;
  }
}
.start-learn .section-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 600px;
  grid-template-columns: 1fr 600px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (max-width: 1399px) {
  .start-learn .section-box {
    -ms-grid-columns: 1fr 540px;
    grid-template-columns: 1fr 540px;
  }
}
@media (max-width: 1199px) {
  .start-learn .section-box {
    -ms-grid-columns: 1fr 400px;
    grid-template-columns: 1fr 400px;
  }
}
@media (max-width: 991px) {
  .start-learn .section-box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.start-learn .content {
  padding-bottom: 100px;
}
@media (max-width: 1199px) {
  .start-learn .content {
    padding-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .start-learn .content {
    padding-bottom: 20px;
  }
}
.start-learn .main-heading .special-word {
  background-position: 0 16px;
}
@media (max-width: 991px) {
  .start-learn .main-heading .special-word {
    background-position: 0 14px;
  }
}
@media (max-width: 575px) {
  .start-learn .main-heading .special-word {
    background-position: 0 12px;
  }
}
.start-learn .actions-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1199px) {
  .start-learn .actions-box {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .start-learn .actions-box {
    gap: 15px;
  }
}
.start-learn .about-link {
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 5px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  text-decoration: underline;
}
.start-learn .about-link svg {
  width: 24px;
}
.start-learn .about-link svg path {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.start-learn .about-link:hover {
  color: var(--second-color);
  text-decoration: none;
}
.start-learn .about-link:hover svg path {
  fill: var(--second-color);
}
@media (max-width: 991px) {
  .start-learn .image {
    text-align: center;
  }
}
.start-learn .image img {
  width: 100%;
}
@media (max-width: 991px) {
  .start-learn .image img {
    max-width: 450px;
  }
}

.learn-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .learn-features {
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .learn-features {
    max-width: 550px;
  }
}
@media (max-width: 575px) {
  .learn-features {
    gap: 8px;
  }
}
.learn-features:not(:last-child) {
  margin-bottom: 70px;
}
@media (max-width: 1199px) {
  .learn-features:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .learn-features:not(:last-child) {
    margin-bottom: 30px;
  }
}
.learn-features li {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  color: #fff;
  background-color: var(--second-color);
  padding: 15px 24px;
  border-radius: 10px;
  cursor: pointer;
}
.learn-features li:hover {
  background-color: var(--main-color);
}
@media (max-width: 1199px) {
  .learn-features li {
    padding: 12px 20px;
    border-radius: 8px;
  }
}
@media (max-width: 575px) {
  .learn-features li {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 22px;
  }
}
.learn-features li:first-of-type {
  background-color: #fff;
  color: var(--main-color);
}
.learn-features li:last-of-type {
  background-color: var(--main-color);
  color: #fff;
}

/******************** End style Start Learn ************************/
/******************** Start style teachers slider **********************/
.teachers-slider {
  padding-bottom: 60px;
}
.teachers-slider .swiper-wrapper {
  min-height: 400px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.teachers-slider .teacher-section {
  max-width: 100%;
  margin: 0 8px;
  -webkit-transition: 0s;
  transition: 0s;
}
.teachers-slider .teacher-section.swiper-slide-active {
  width: 20% !important;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 1199px) {
  .teachers-slider .teacher-section.swiper-slide-active {
    width: 30% !important;
  }
}
@media (max-width: 991px) {
  .teachers-slider .teacher-section.swiper-slide-active {
    width: 35% !important;
  }
}
@media (max-width: 767px) {
  .teachers-slider .teacher-section.swiper-slide-active {
    width: 55% !important;
  }
}
@media (max-width: 575px) {
  .teachers-slider .teacher-section.swiper-slide-active {
    width: 70% !important;
  }
}
.teachers-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 6px;
  border-radius: 100px;
  background-color: rgba(4, 3, 73, 0.5490196078);
  opacity: 1;
  cursor: pointer;
  margin: 0 3px;
}
.teachers-slider
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--main-color);
  width: 27px;
  border-radius: 100px;
}
.teachers-slider .swiper-button-next,
.teachers-slider .swiper-button-prev {
  background-color: #fff;
  top: calc(50% - 60px);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  color: var(--main-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 767px) {
  .teachers-slider .swiper-button-next,
  .teachers-slider .swiper-button-prev {
    display: none;
  }
}
.teachers-slider .swiper-button-next::after,
.teachers-slider .swiper-button-prev::after {
  font-weight: bold;
  font-size: 36px;
}
.teachers-slider .swiper-button-next:hover,
.teachers-slider .swiper-button-prev:hover {
  color: #fff;
  background-color: var(--main-color);
}

/******************** End style teachers slider ************************/
/******************** Start style Banners **********************/
.banners-slider .swiper-wrapper {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.banners-slider .image-item {
  height: auto;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.banners-slider .banner-item {
  /*background: var(--main-color);*/
  background-image: url(../images/small-slider-min.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px;
  border-radius: 40px;
  position: relative;
  height: auto;
}
@media (max-width: 767px) {
  .banners-slider .banner-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    border-radius: 20px;
  }
}
.banners-slider .banner-item::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /*background-image: url(../images/home-banner-background.svg);*/
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
  z-index: -1;
}
.banners-slider .banner-item .content {
  padding: 50px 60px;
}
@media (max-width: 1199px) {
  .banners-slider .banner-item .content {
    padding: 40px 30px;
  }
}
@media (max-width: 991px) {
  .banners-slider .banner-item .content {
    padding: 20px 20px 50px;
  }
}
@media (max-width: 767px) {
  .banners-slider .banner-item .content {
    padding: 25px 10px 50px;
  }
}
.banners-slider .banner-item .main-heading {
  max-width: 490px;
}
@media (max-width: 767px) {
  .banners-slider .banner-item .main-heading {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .banners-slider .banner-item .subscribe-button {
    margin-left: auto;
    margin-right: auto;
  }
}
.banners-slider .banner-item .image {
  width: 470px;
  max-width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .banners-slider .banner-item .image {
    width: 350px;
  }
}
@media (max-width: 991px) {
  .banners-slider .banner-item .image {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .banners-slider .banner-item .image {
    width: 100%;
  }
}
.banners-slider .banner-item .image img,
.banners-slider .banner-item .image iframe,
.banners-slider .banner-item .image video {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media (max-width: 575px) {
  .banners-slider .banner-item .image img,
  .banners-slider .banner-item .image iframe,
  .banners-slider .banner-item .image video {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    border-radius: 15px;
  }
}
.banners-slider .banner-item .image iframe,
.banners-slider .banner-item .image video {
  -o-object-fit: contain;
  object-fit: contain;
}
.banners-slider .swiper-pagination {
  padding: 30px 70px;
}
@media (max-width: 1199px) {
  .banners-slider .swiper-pagination {
    padding: 10px 40px;
  }
}
@media (max-width: 991px) {
  .banners-slider .swiper-pagination {
    padding: 10px 30px;
  }
}
@media (max-width: 767px) {
  .banners-slider .swiper-pagination {
    text-align: center !important;
  }
}
.banners-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 6px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.5019607843);
  opacity: 1;
  cursor: pointer;
  margin: 0 3px;
}
.banners-slider
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ffffff;
  width: 27px;
  border-radius: 100px;
}

/******************** End style Banners ************************/
/******************** Start style statistics **********************/
.statistics-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .statistics-box {
    gap: 24px;
  }
}
@media (max-width: 991px) {
  .statistics-box {
    gap: 16px;
  }
}

.statistics {
  width: 240px;
  max-width: 100%;
  /* background-color: #fff; */
  border-radius: 20px;
  -webkit-box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  padding: 48px 0px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 1199px) {
  .statistics {
    padding: 32px 16px;
  }
}
@media (max-width: 767px) {
  .statistics {
    width: calc((100% - 16px) / 2);
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .statistics {
    padding: 24px 12px;
    border-radius: 10px;
  }
}
.statistics .number {
  font-size: 44px;
  font-weight: 700;
  line-height: 56px;
  color: var(--third-color);
  margin-bottom: 8px;
}
@media (max-width: 575px) {
  .statistics .number {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 4px;
  }
}
.statistics .heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  color: var(--white-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .statistics .heading {
    font-size: 14px;
    line-height: 22px;
  }
}
.statistics:hover {
  /* background-color: var(--main-color); */
}
.statistics:hover .heading {
  color: #fff;
}

/******************** End style statistics ************************/
/******************** Start style testimonials **********************/
.ipluto-rate {
  max-width: 320px;
  margin: auto;
  -webkit-box-shadow: 11px 8px 23px 0px rgba(0, 0, 0, 0.0784313725);
  box-shadow: 11px 8px 23px 0px rgba(0, 0, 0, 0.0784313725);
  padding: 20px 36px;
  border-radius: 15px;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ipluto-rate .rate-num {
  font-size: 54px;
  font-weight: 700;
  line-height: 54px;
  color: var(--main-color);
  margin-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}
.ipluto-rate .rate-num svg {
  font-size: 24px;
  color: var(--second-color);
}
.ipluto-rate .rate-text {
  font-size: 7px;
  font-weight: 700;
  line-height: 9px;
  color: #fff;
  background-color: var(--main-color);
  border-radius: 100px;
  padding: 4px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.ipluto-rate .numbers {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.ipluto-rate .numbers:not(:last-child) {
  margin-bottom: 3px;
}
.ipluto-rate .numbers .box-between {
  width: 28px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  gap: 2px;
}
.ipluto-rate .numbers .num {
  font-size: 10px;
  font-weight: 500;
  line-height: 10px;
  color: #6a6a6a;
}
.ipluto-rate .numbers svg {
  font-size: 9px;
  color: var(--second-color);
}
.ipluto-rate .bar {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.ipluto-rate .bar span {
  display: block;
  height: 4px;
  background-color: var(--main-color);
  border-radius: 10px;
}

.testimonials-slider {
  padding-bottom: 60px;
}
.testimonials-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 6px;
  border-radius: 100px;
  background-color: rgba(4, 3, 73, 0.5490196078);
  opacity: 1;
  cursor: pointer;
  margin: 0 3px;
}
.testimonials-slider
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--main-color);
  width: 27px;
  border-radius: 100px;
}

.testimonial-section {
  width: 340px;
  max-width: 100%;
  border: 1px dashed #2563eb;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  margin: 0 8px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  height: auto;
}
@media (max-width: 575px) {
  .testimonial-section {
    width: 300px !important;
    padding: 30px 20px;
  }
}
.testimonial-section .avater {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 15px;
}
.testimonial-section .avater img {
  width: 100%;
  height: 100%;
}
.testimonial-section .name {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  color: var(--main-color);
  margin-bottom: 5px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.testimonial-section .title {
  font-size: 10px;
  font-weight: 400;
  line-height: 17px;
  color: var(--text-color);
  font-family: 'cairo', 'Montserrat', sans-serif;
  margin-bottom: 15px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.testimonial-section .comment {
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  color: #121113;
  margin-bottom: 15px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.testimonial-section .rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.testimonial-section .rate svg {
  font-size: 14px;
  color: var(--second-color);
}
.testimonial-section.swiper-slide-active {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(4, 3, 73, 0.8)),
    color-stop(78.41%, var(--main-color))
  );
  background: linear-gradient(
    270deg,
    rgba(4, 3, 73, 0.8) 0%,
    var(--main-color) 78.41%
  );
  border: 1px solid var(--main-color);
}
.testimonial-section.swiper-slide-active .comment,
.testimonial-section.swiper-slide-active .name {
  color: #fff;
}
.testimonial-section.swiper-slide-active .title {
  color: var(--second-color);
}

/******************** End style testimonials ************************/
/*********************************************************************
  *************************** teachers page ****************************
  *********************************************************************/
.teachers-heading {
  font-size: 23px;
  font-weight: 700;
  line-height: 40px;
  color: var(--main-color);
  margin-bottom: 60px;
  text-align: center;
}

.teachers-box {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
  gap: 32px;
}

.teacher-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.teacher-section .image {
  position: relative;
  border-radius: 15px;
  cursor: pointer;
}
.teacher-section .image::after {
  content: '\f06e';
  font-family: 'Font Awesome 6 Free';
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: 5px;
  background-color: var(--second-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--white-color);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.teacher-section .image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.6980392157);
  border-radius: inherit;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.teacher-section .image:hover::after {
  opacity: 1;
}
.teacher-section .image:hover::before {
  width: 100%;
  height: 100%;
}
.teacher-section .image img {
  width: 100%;
  max-height: 350px;
  aspect-ratio: 1.2;
  border-radius: inherit;
}
.teacher-section .content {
  display: block;
  position: relative;
  z-index: 1;
  margin: -40px 10px 0;
  background-color: #fff;
  padding: 20px 10px;
  border-radius: 15px;
  -webkit-box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  text-align: center;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
  align-content: center;
}
.teacher-section .content:hover {
  -webkit-box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.1098039216);
  box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.1098039216);
}
.teacher-section .number-lessons {
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  color: var(--white-color);
  padding: 4px 12px 6px;
  padding-right: 35px;
  background-color: var(--main-color);
  border-radius: 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8px;
  position: relative;
}
.teacher-section .number-lessons .number {
  position: absolute;
  right: -1px;
  top: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--second-color);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.teacher-section .name {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--main-color);
  margin-bottom: 8px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.teacher-section .name:hover {
  color: var(--text-color);
}
.teacher-section .subject {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: var(--second-color);
}
.teacher-section .subject:not(:last-child) {
  margin-bottom: 8px;
}
.teacher-section .rate {
  font-size: 11px;
  font-weight: 500;
  line-height: 14px;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.teacher-section .rate svg {
  font-size: 16px;
  color: var(--second-color);
}

.teacher-popup .modal-dialog {
  -webkit-box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  max-width: calc(100% - 48px);
  width: 870px;
  margin: 24px auto;
}
@media (max-width: 575px) {
  .teacher-popup .modal-dialog {
    max-width: calc(100% - 24px);
    margin: 12px auto;
  }
}
.teacher-popup .modal-content {
  border-radius: 15px;
}
.teacher-popup .modal-header {
  padding: 0;
  border: none;
}
.teacher-popup .btn-close {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  z-index: 10;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  background-image: none;
  border: 2px solid var(--main-color);
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: var(--main-transition);
  opacity: 1;
}
.teacher-popup .btn-close svg {
  font-size: 16px;
  color: var(--main-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.teacher-popup .btn-close:hover {
  border-color: var(--second-color);
}
.teacher-popup .btn-close:hover svg {
  color: var(--second-color);
}
@media (max-width: 767px) {
  .teacher-popup .btn-close {
    top: 24px;
    left: 22px;
  }
}
.teacher-popup .modal-body {
  padding: 10px;
}
@media (max-width: 767px) {
  .teacher-popup .modal-body {
    padding: 6px;
  }
}

.teacher-brief {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0;
}
@media (max-width: 767px) {
  .teacher-brief {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.teacher-brief .image {
  width: 310px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
@media (max-width: 767px) {
  .teacher-brief .image {
    width: 100%;
    height: 400px;
  }
}
@media (max-width: 575px) {
  .teacher-brief .image {
    width: 100%;
    height: 350px;
  }
}
.teacher-brief .image img,
.teacher-brief .image video {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media (max-width: 767px) {
  .teacher-brief .image img,
  .teacher-brief .image video {
    border-radius: 12px;
  }
}
.teacher-brief .content {
  max-width: 510px;
  padding: 25px;
}
@media (max-width: 767px) {
  .teacher-brief .content {
    padding: 15px;
  }
}
.teacher-brief .heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  color: var(--second-color);
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .teacher-brief .heading {
    margin-bottom: 10px;
  }
}
.teacher-brief .description {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--main-color);
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .teacher-brief .description {
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 20px;
  }
}
.teacher-brief .imprtant-info {
  padding: 20px 25px;
  background-color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .teacher-brief .imprtant-info {
    padding: 12px 20px;
    gap: 6px;
  }
}
.teacher-brief .imprtant-info svg {
  font-size: 24px;
  color: var(--second-color);
}
@media (max-width: 767px) {
  .teacher-brief .imprtant-info svg {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .teacher-brief.student {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .teacher-brief.student .image {
    width: 100%;
    height: 400px;
  }
  .teacher-brief.student .content {
    padding: 15px;
  }
}

/*********************************************************************
  *************************** teacher page *****************************
  *********************************************************************/
.teacher-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
@media (max-width: 991px) {
  .teacher-info {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .teacher-info {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}
@media (max-width: 575px) {
  .teacher-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.teacher-info .image {
  width: 320px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-height: 450px;
}
@media (max-width: 1199px) {
  .teacher-info .image {
    width: 280px;
    max-height: 400px;
  }
}
@media (max-width: 991px) {
  .teacher-info .image {
    width: 250px;
    max-height: 360px;
  }
}
@media (max-width: 575px) {
  .teacher-info .image {
    width: 100%;
    height: 350px;
  }
}
.teacher-info .image img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -o-object-fit: cover;
  object-fit: cover;
}
.teacher-info .name {
  font-size: 37px;
  font-weight: 700;
  line-height: 50px;
  color: var(--main-color);
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .teacher-info .name {
    font-size: 32px;
    line-height: 44px;
  }
}
@media (max-width: 575px) {
  .teacher-info .name {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 5px;
  }
}
.teacher-info .heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  color: var(--second-color);
  margin-bottom: 15px;
}
.teacher-info .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 80px;
}
@media (max-width: 991px) {
  .teacher-info .info-box {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .teacher-info .info-box {
    gap: 20px 40px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.teacher-info .info {
  padding: 15px 0;
  position: relative;
}
@media (max-width: 767px) {
  .teacher-info .info {
    padding: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
.teacher-info .info:not(:last-of-type)::after {
  content: '';
  height: 100%;
  width: 1px;
  border-radius: 10px;
  background-color: #e2e2e2;
  position: absolute;
  top: 0;
  left: -40px;
}
@media (max-width: 991px) {
  .teacher-info .info:not(:last-of-type)::after {
    left: -20px;
  }
}
@media (max-width: 767px) {
  .teacher-info .info:not(:last-of-type)::after {
    display: none;
  }
}
.teacher-info .info .icon {
  margin-bottom: 5px;
}
.teacher-info .info .icon img {
  width: 24px;
}
.teacher-info .info .icon svg {
  font-size: 24px;
  color: var(--second-color);
}
.teacher-info .info .info-heading {
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  color: var(--main-color);
}
.teacher-info .info .info-heading .special {
  color: var(--second-color);
  font-weight: 700;
}
.teacher-info .info .rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  color: var(--second-color);
  margin-bottom: 10px;
}
.teacher-info .add-rate {
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  color: var(--second-color);
  text-decoration: underline;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.teacher-info .add-rate:hover {
  color: var(--main-color);
}

.teacher-resume {
  padding-top: 50px;
  background-color: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
}
@media (max-width: 991px) {
  .teacher-resume {
    padding-top: 40px;
  }
}
@media (max-width: 575px) {
  .teacher-resume {
    padding-top: 25px;
  }
}
.teacher-resume .teacher-brief {
  padding: 50px;
}
@media (max-width: 991px) {
  .teacher-resume .teacher-brief {
    padding: 40px 30px;
  }
}
@media (max-width: 575px) {
  .teacher-resume .teacher-brief {
    padding: 25px 15px;
  }
}
.teacher-resume .teacher-brief .image {
  width: 400px;
  max-height: 450px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .teacher-resume .teacher-brief .image {
    width: 320px;
  }
}
@media (max-width: 767px) {
  .teacher-resume .teacher-brief .image {
    width: 100%;
    max-height: 400px;
  }
  .teacher-resume .teacher-brief .image img,
  .teacher-resume .teacher-brief .image video {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 575px) {
  .teacher-resume .teacher-brief .image {
    height: auto;
  }
}
.teacher-resume .teacher-brief .image video {
  width: 100%;
  max-height: 450px;
  aspect-ratio: 1;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 767px) {
  .teacher-resume .teacher-brief .image video {
    max-height: 350px;
    aspect-ratio: unset;
  }
}
.teacher-resume .teacher-brief .content {
  max-width: 100%;
}
@media (max-width: 991px) {
  .teacher-resume .teacher-brief .content {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .teacher-resume .teacher-brief .content {
    padding: 15px 0 0;
  }
}

.filter-lessons {
  max-width: 820px;
  margin: auto;
}

.filter-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .filter-header {
    margin-bottom: 40px;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .filter-header {
    gap: 10px;
  }
}
.filter-header .filter-item {
  font-size: 16px;
  font-weight: 600;
  line-height: 27px;
  color: var(--main-color);
  width: 155px;
  padding: 20px 10px;
  text-align: center;
  border: 1px solid var(--main-color);
  border-radius: 10px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 767px) {
  .filter-header .filter-item {
    padding: 10px;
    width: 125px;
  }
}
@media (max-width: 575px) {
  .filter-header .filter-item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 8px 20px;
  }
}
.filter-header .filter-item:not(.active):hover {
  border-color: var(--second-color);
  color: var(--second-color);
}
.filter-header .filter-item.active {
  background-color: var(--main-color);
  color: white;
}

.lesson-section {
  background-color: rgba(6, 217, 200, 0.0588235294);
  border-radius: 10px;
  padding: 25px;
}
@media (max-width: 575px) {
  .lesson-section {
    border-radius: 8px;
    padding: 15px 10px;
  }
}
.lesson-section:not(:last-child) {
  margin-bottom: 15px;
}
.lesson-section .box-between {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (max-width: 575px) {
  .lesson-section .box-between {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.lesson-section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .lesson-section .box {
    gap: 15px;
  }
}
.lesson-section .image {
  width: 150px;
}
.lesson-section .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.lesson-section .lesson-badge {
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  color: white;
  margin-bottom: 15px;
  background-color: var(--second-color);
  border-radius: 5px;
  padding: 8px;
  width: 90px;
  text-align: center;
  display: block;
}
.lesson-section .section {
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  color: var(--second-color);
  margin-bottom: 5px;
}
.lesson-section .heading {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--main-color);
}
@media (max-width: 575px) {
  .lesson-section .heading {
    font-size: 14px;
    line-height: 19px;
  }
}
.lesson-section .lesson-action {
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  color: var(--main-color);
  background-color: var(--third-color);
  border-radius: 10px;
  padding: 14px 32px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 767px) {
  .lesson-section .lesson-action {
    border-radius: 6px;
    padding: 8px 16px;
  }
}
.lesson-section .lesson-action:hover {
  background-color: var(--main-color);
  color: white;
}
.lesson-section .lesson-action:hover svg {
  fill: white;
  color: white;
}
.lesson-section .lesson-action svg {
  width: 18px;
}

/*********************************************************************
  *************************** lesson page ******************************
  *********************************************************************/
.lesson-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 530px;
  grid-template-columns: 1fr 530px;
  gap: 20px;
}
@media (max-width: 1399px) {
  .lesson-layout {
    -ms-grid-columns: 1fr 465px;
    grid-template-columns: 1fr 465px;
  }
}
@media (max-width: 1199px) {
  .lesson-layout {
    -ms-grid-columns: 1fr 15px 410px;
    grid-template-columns: 1fr 410px;
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .lesson-layout {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 20px;
  }
}

/********************* Start style lesson video ************************/
.video-palyer {
  background-color: #fff;
  -webkit-box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  border-radius: 15px;
  padding: 20px;
}
@media (max-width: 1199px) {
  .video-palyer {
    padding: 10px;
  }
}
@media (max-width: 991px) {
  .video-palyer {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .video-palyer {
    padding: 10px;
    border-radius: 10px;
  }
}
.video-palyer:not(:last-child) {
  margin-bottom: 30px;
}
.video-palyer video {
  width: 100%;
  max-height: 650px;
  aspect-ratio: 1.27;
  border-radius: 10px;
}
.video-palyer video[poster] {
  object-fit: cover;
}
.video-palyer.full-width {
  max-width: 900px;
  margin: auto;
  padding: 0;
  margin-bottom: 32px;
}
@media (max-width: 575px) {
  .video-palyer.full-width {
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.0509803922);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.0509803922);
  }
}

.video-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
.video-actions:not(:last-child) {
  margin-bottom: 20px;
}
.video-actions .lesson-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 400;
  line-height: 17px;
  color: var(--main-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.video-actions .lesson-action:hover,
.video-actions .lesson-action.active {
  color: var(--second-color);
}
.video-actions .lesson-action.active:hover {
  color: var(--main-color);
}
.video-actions .lesson-action svg {
  font-size: 18px;
}

.lessons-breadcrumb {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 11px;
  line-height: 19px;
}

/********************* End style lesson video *************************/
/********************* Start style more lesson ************************/
.more-lessons {
  background-color: #fff;
  -webkit-box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  border-radius: 15px;
  padding: 30px 20px;
}
@media (max-width: 1199px) {
  .more-lessons {
    padding: 15px 10px;
    border-radius: 10px;
  }
}
@media (max-width: 991px) {
  .more-lessons {
    border-radius: 15px;
    padding: 30px 20px;
  }
}
@media (max-width: 575px) {
  .more-lessons {
    padding: 15px 10px;
    border-radius: 10px;
  }
}
.more-lessons:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .more-lessons:not(:last-child) {
    margin-bottom: 25px;
  }
}
.more-lessons .heading {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: var(--main-color);
}
@media (max-width: 575px) {
  .more-lessons .heading {
    font-size: 19px;
    line-height: 28px;
  }
}
.more-lessons .teaher-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: var(--second-color);
}
@media (max-width: 575px) {
  .more-lessons .teaher-name {
    font-size: 12px;
    line-height: 18px;
  }
}
.more-lessons .teaher-name:not(:last-child) {
  margin-bottom: 32px;
}

.second-lesson-section {
  background-color: #f8fafc;
  border-radius: 15px;
  padding: 15px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  cursor: pointer;
}
@media (max-width: 575px) {
  .second-lesson-section {
    border-radius: 8px;
    padding: 15px 10px;
  }
}
.second-lesson-section:not(:last-child) {
  margin-bottom: 15px;
}
.second-lesson-section .box-between {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  gap: 8px;
}
.second-lesson-section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media (max-width: 767px) {
  .second-lesson-section .box {
    gap: 10px;
  }
}
.second-lesson-section .image {
  width: 120px;
  position: relative;
}
.second-lesson-section .image::after {
  content: '\f144';
  font-family: 'Font Awesome 6 Free';
  font-size: 24px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  display: none;
}
.second-lesson-section .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.second-lesson-section .lesson-badge {
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  color: white;
  background-color: var(--main-color);
  border-radius: 8px;
  padding: 8px;
  width: 95px;
  text-align: center;
  display: block;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.second-lesson-section .lesson-badge:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .second-lesson-section .lesson-badge:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .second-lesson-section .lesson-badge {
    border-radius: 6px;
    padding: 6px;
  }
}
.second-lesson-section .heading {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: var(--main-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .second-lesson-section .heading {
    font-size: 12px;
    line-height: 18px;
  }
}
.second-lesson-section .lesson-action {
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  color: var(--main-color);
  background-color: var(--third-color);
  border-radius: 8px;
  padding: 8px;
  width: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .second-lesson-section .lesson-action {
    border-radius: 6px;
    padding: 6px;
  }
}
.second-lesson-section .lesson-action:hover {
  background-color: var(--second-color);
  color: white;
}
.second-lesson-section .lesson-action:hover svg {
  fill: white;
  color: white;
}
.second-lesson-section .lesson-action svg {
  width: 16px;
}
.second-lesson-section.active,
.second-lesson-section:hover {
  background-color: var(--main-color);
}
.second-lesson-section.active .heading,
.second-lesson-section:hover .heading {
  color: var(--second-color);
}
.second-lesson-section.active .lesson-badge,
.second-lesson-section:hover .lesson-badge {
  background-color: var(--second-color);
}
.second-lesson-section.active .image::after,
.second-lesson-section:hover .image::after {
  display: block;
}
.second-lesson-section.active .image::after {
  content: '\f28b';
}

/********************* End style more lesson *************************/
/*********************************************************************
  ************************ registration pages **************************
  *********************************************************************/
.registration-section {
  margin-top: var(--main-space);
}

.registration-box {
  max-width: 910px;
  margin: auto;
  padding: 60px;
  border-radius: 15px;
  -webkit-box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  background-color: #fff;
}
@media (max-width: 575px) {
  .registration-box {
    padding: 40px 20px;
  }
}

.register-nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (50%) [2];
  grid-template-columns: repeat(2, 50%);
  max-width: 910px;
  margin: auto;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  -webkit-box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
}
.register-nav + .registration-box {
  border-radius: 0 0 15px 15px;
}
.register-nav .nav-link {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: var(--main-color);
  text-align: center;
  padding: 30px 8px;
  background-color: #eff7ff;
}
@media (max-width: 575px) {
  .register-nav .nav-link {
    font-size: 16px;
    line-height: 28px;
  }
}
.register-nav .nav-link.active {
  background-color: var(--main-color);
  color: #fff;
}
.register-nav .nav-link:hover {
  background-color: var(--main-color) !important;
  color: #fff !important;
}
.register-nav:hover .nav-link.active {
  background-color: #eff7ff;
  color: var(--main-color);
}

.register-heading {
  text-align: center;
  max-width: 440px;
  margin: auto;
}
.register-heading:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .register-heading:not(:last-child) {
    margin-bottom: 20px;
  }
}
.register-heading .icon {
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .register-heading .icon {
    margin-bottom: 20px;
  }
}
.register-heading .icon img {
  width: 90px;
}
.register-heading .heading {
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
  color: var(--main-color);
  margin-bottom: 8px;
}
@media (max-width: 575px) {
  .register-heading .heading {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 6px;
  }
}
.register-heading .number {
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  color: var(--text-color);
}
@media (max-width: 575px) {
  .register-heading .number {
    font-size: 14px;
    line-height: 19px;
  }
}
.register-heading .teacher-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  color: var(--second-color);
  margin-bottom: 16px;
}
.register-heading .text {
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  color: var(--text-color);
}
.register-heading hr {
  border: 1px solid #f1f1f1;
  margin: 20px 0;
}
@media (max-width: 575px) {
  .register-heading hr {
    bottom: 15px 0;
  }
}
.register-heading .description {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text-color);
}
.register-heading .description:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .register-heading .description:not(:last-child) {
    margin-bottom: 15px;
  }
}
.register-heading .icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.register-heading .icon-box .icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(122.26deg, #ff3c00 19.75%, #ba0f2b 94.45%),
    linear-gradient(0deg, #ffffff, #ffffff);
  -webkit-box-shadow: 4px 3px 7px 0px rgba(0, 0, 0, 0.0901960784);
  box-shadow: 4px 3px 7px 0px rgba(0, 0, 0, 0.0901960784);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  color: #fff;
  margin-bottom: 0;
}
.register-heading .small-text {
  font-size: 11px;
  font-weight: 400;
  line-height: 19px;
  color: var(--text-color);
  text-align: right;
}
.register-heading .logout {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 19px;
  color: #f73705;
  text-decoration: underline;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.register-heading .logout.done {
  color: #7ae582;
}
.register-heading .logout:not(.done):hover {
  text-decoration: none;
  opacity: 0.8;
}

.register-title {
  font-size: 27px;
  font-weight: 500;
  line-height: 27px;
  color: var(--main-color);
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 575px) {
  .register-title {
    margin-bottom: 40px;
  }
}

.register-form {
  /* max-width: 440px; */
  max-width: 720px;
  margin: auto;
}
.register-form .input-field {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.register-form .input-field:not(:last-of-type) {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .register-form .input-field:not(:last-of-type) {
    margin-bottom: 25px;
  }
}
.register-form .input-field input,
.register-form .input-field select {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-color);
  caret-color: var(--main-color);
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 16px 25px;
  padding-left: 50px;
  border: 1px solid #a3a3a3;
  border-radius: 10px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .register-form .input-field input,
  .register-form .input-field select {
    padding: 16px;
    padding-left: 40px;
  }
}
.register-form .input-field input:focus,
.register-form .input-field select:focus {
  outline: none;
  border-color: var(--main-color);
  color: var(--main-color);
}
.register-form .input-field input:focus ~ label,
.register-form .input-field select:focus ~ label {
  color: var(--main-color);
}
.register-form .input-field input:focus ~ .icon,
.register-form .input-field select:focus ~ .icon {
  color: var(--main-color);
}
.register-form .input-field input:focus ~ .icon svg path,
.register-form .input-field select:focus ~ .icon svg path {
  fill: var(--main-color);
}
.register-form .input-field input::-webkit-input-placeholder,
.register-form .input-field select::-webkit-input-placeholder {
  color: var(--text-color);
}
.register-form .input-field input::-moz-placeholder,
.register-form .input-field select::-moz-placeholder {
  color: var(--text-color);
}
.register-form .input-field input:-ms-input-placeholder,
.register-form .input-field select:-ms-input-placeholder {
  color: var(--text-color);
}
.register-form .input-field input::-ms-input-placeholder,
.register-form .input-field select::-ms-input-placeholder {
  color: var(--text-color);
}
.register-form .input-field input::placeholder,
.register-form .input-field select::placeholder {
  color: var(--text-color);
}
.register-form .input-field.password input {
  padding-left: 50px;
}
.register-form .input-field input[type='number'] {
  -moz-appearance: textfield;
}
.register-form .input-field input[type='number']::-webkit-inner-spin-button,
.register-form .input-field input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.register-form .input-field label {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-color);
  text-transform: capitalize;
  position: absolute;
  top: 0;
  right: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: white;
  padding: 4px;
}
.register-form .input-field .field-alert {
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
  color: var(--text-color);
  margin-top: 8px;
  padding: 0 20px;
}
@media (max-width: 575px) {
  .register-form .input-field .field-alert {
    padding: 0;
  }
}
.register-form .input-field .icon {
  position: absolute;
  top: 16px;
  left: 25px;
  font-size: 18px;
  color: #a3a3a3;
}
@media (max-width: 575px) {
  .register-form .input-field .icon {
    left: 16px;
  }
}
.register-form .input-field .eye {
  position: absolute;
  top: 18px;
  left: 50px;
  font-size: 17px;
  color: #a3a3a3;
  cursor: pointer;
}
@media (max-width: 575px) {
  .register-form .input-field .eye {
    left: 40px;
  }
}
.register-form .profile-field input {
  border: none;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  padding: 16px 25px;
}
@media (max-width: 575px) {
  .register-form .profile-field input {
    padding: 16px;
  }
}
.register-form .profile-field input:focus {
  border: 1px solid var(--main-color);
}
.register-form .profile-field.password input {
  padding-left: 50px;
}
.register-form .profile-field .eye {
  left: 25px;
}
@media (max-width: 575px) {
  .register-form .profile-field .eye {
    left: 16px;
  }
}
.register-form.was-validated .input-field input:invalid {
  background-image: none;
  border-color: var(--red-color);
  padding: 16px 25px;
  padding-left: 50px;
}
@media (max-width: 575px) {
  .register-form.was-validated .input-field input:invalid {
    padding: 16px;
    padding-left: 40px;
  }
}
.register-form.was-validated .input-field input:invalid ~ label {
  color: var(--red-color);
}
.register-form.was-validated .input-field input:invalid ~ .icon {
  color: var(--red-color);
}
.register-form.was-validated .input-field input:invalid ~ .icon svg path {
  fill: var(--red-color);
}
.register-form.was-validated .input-field input:valid {
  background-image: none;
  border-color: var(--green-color);
  padding: 16px 25px;
  padding-left: 50px;
}
@media (max-width: 575px) {
  .register-form.was-validated .input-field input:valid {
    padding: 16px;
    padding-left: 40px;
  }
}
.register-form.was-validated .input-field input:valid ~ label {
  color: var(--green-color);
}
.register-form.was-validated .input-field input:valid ~ .icon {
  color: var(--green-color);
}
.register-form.was-validated .input-field input:valid ~ .icon svg path {
  fill: var(--green-color);
}
.register-form .invitation-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media (max-width: 575px) {
  .register-form .invitation-field {
    gap: 8px;
  }
}
.register-form .invitation-field .input-field {
  margin-bottom: 0;
}
.register-form .invitation-field .invitation-icon {
  font-size: 24px;
  color: #a3a3a3;
  margin-top: 14px;
}
.register-form .invitation-field .invitation-icon.success {
  color: var(--green-color);
}
.register-form .invitation-field .invitation-icon.error {
  color: var(--red-color);
}
.register-form .form-alert {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-color);
  padding: 0 20px;
  margin-top: 8px;
}
.register-form .form-alert a {
  color: var(--main-color);
  text-decoration: underline;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.register-form .form-alert a:hover {
  text-decoration: none;
  color: var(--second-color);
}
.register-form .submit,
.register-form .skip {
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  display: block;
  width: 135px;
  padding: 12px;
  border-radius: 5px;
  margin: 40px auto 0;
  text-align: center;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  border: 1px solid var(--main-color);
}
@media (max-width: 575px) {
  .register-form .submit,
  .register-form .skip {
    margin: 30px auto 0;
  }
}
.register-form .submit {
  background-color: var(--main-color);
  color: #fff;
}
.register-form .submit.color {
  color: var(--second-color);
}
.register-form .submit:hover {
  background-color: var(--second-color);
  border-color: var(--second-color);
}
.register-form .skip {
  color: var(--main-color);
}
.register-form .skip:hover {
  border-color: var(--second-color);
  color: var(--second-color);
}
.register-form .otp-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 340px;
  margin: auto;
  margin-bottom: 35px;
  direction: ltr;
}
.register-form .otp-inputs input {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #c4c4c4;
  max-width: 100%;
  width: calc((100% - 100px) / 6);
  text-align: center;
  caret-color: var(--second-color);
  border: none;
  outline: none;
  border-bottom: 3px solid #c4c4c4;
  padding: 6px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-radius: 0;
  background: transparent;
}
.register-form .otp-inputs input::-webkit-outer-spin-button,
.register-form .otp-inputs input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.register-form .otp-inputs input[type='number'] {
  -moz-appearance: textfield;
}
.register-form .otp-inputs input:valid,
.register-form .otp-inputs input:invalid {
  background-image: none;
  caret-color: var(--second-color);
  width: calc((100% - 100px) / 6);
  padding: 6px;
  color: #c4c4c4;
  border-color: #c4c4c4;
}
.register-form .otp-inputs input:valid:focus,
.register-form .otp-inputs input:invalid:focus {
  color: var(--second-color);
  border-color: var(--second-color);
}
.register-form .otp-inputs input:focus {
  color: var(--second-color);
  border-color: var(--second-color);
}
.register-form .otp-inputs .invalid-feedback {
  text-align: center;
  direction: rtl;
}
.rate-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 64px;
}
@media (max-width: 575px) {
  .rate-field {
    margin-bottom: 32px;
    gap: 8px;
  }
}
.rate-field .icon {
  font-size: 32px;
  color: var(--second-color);
  cursor: pointer;
}
@media (max-width: 575px) {
  .rate-field .icon {
    font-size: 24px;
  }
}

/*******************************************************************************
  ************************###############################*************************
  ************************### Student Dashboard pages ###*************************
  ************************###############################*************************
  *******************************************************************************/
/* student heading component */
.student-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .student-heading {
    margin-bottom: 15px;
  }
}
.student-heading .heading {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: var(--main-color);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .student-heading .heading {
    font-size: 17px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .student-heading .heading {
    font-size: 16px;
    line-height: 22px;
  }
}
.student-heading .link {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: var(--second-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .student-heading .link {
    font-size: 11px;
    line-height: 16px;
  }
}
.student-heading .link:hover {
  color: var(--main-color);
}
.student-heading .link svg {
  font-size: 16px;
}
@media (max-width: 575px) {
  .student-heading .link svg {
    font-size: 14px;
  }
}
.student-heading .welcome {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: var(--second-color);
}
.student-heading .special {
  color: var(--second-color);
}

/* student option component */
.student-option {
  max-width: 550px;
  margin: 60px auto 0;
  background-color: #f8fbff;
  border-radius: 5px;
  padding: 30px 40px;
}
@media (max-width: 991px) {
  .student-option {
    margin: 30px auto 0;
  }
}
@media (max-width: 575px) {
  .student-option {
    margin: 20px auto 0;
    padding: 20px 25px;
  }
}
.student-option li:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(156, 173, 196, 0.1);
}
.student-option .method-link {
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding: 5px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.student-option .method-link:hover {
  color: var(--second-color);
}
.student-option .method-link:hover svg {
  color: var(--second-color);
}
.student-option .method-link svg {
  font-size: 16px;
  color: var(--text-color);
}
.student-option .profile-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding: 5px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.student-option .profile-link:hover {
  color: var(--second-color);
}
.student-option .profile-link:hover .heading,
.student-option .profile-link:hover .data,
.student-option .profile-link:hover .arrow svg,
.student-option .profile-link:hover svg {
  color: var(--second-color);
}
.student-option .profile-link .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}
.student-option .profile-link .heading {
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  color: var(--main-color);
  width: 90px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.student-option .profile-link .data {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: #9cadc3;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.student-option .profile-link .data .icon {
  font-size: 16px;
  padding: 2px 4px;
}
.student-option .profile-link .data .icon svg {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.student-option .profile-link .data .icon.check {
  color: var(--green-color);
}
.student-option .profile-link .arrow svg {
  font-size: 16px;
  color: #9cadc3;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}

/* user avatar component */
.user-avatar {
  position: relative;
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  border: 5px solid var(--main-color);
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .user-avatar {
    margin-bottom: 15px;
  }
}
.user-avatar img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.user-avatar .change-image {
  position: absolute;
  bottom: 0;
  right: 0;
}
.user-avatar .change-image label {
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.user-avatar .change-image label:hover {
  background-color: var(--border-color);
}
.user-avatar .change-image label svg {
  width: 20px;
  height: 20px;
}
.user-avatar .change-image input[type='file'] {
  display: none;
}

/* student invoices component */
.student-invoices {
  max-width: 900px;
  margin: auto;
}
.student-invoices .wallet-history {
  padding: 30px 20px;
}
@media (max-width: 575px) {
  .student-invoices .wallet-history {
    padding: 15px 10px;
  }
}

.student-list-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 60px 1fr 60px 1fr;
  grid-template-columns: 2fr repeat(2, 1fr);
  gap: 60px;
}
@media (max-width: 1199px) {
  .student-list-box {
    gap: 40px;
  }
}
@media (max-width: 575px) {
  .student-list-box {
    gap: 30px;
  }
}

.teacher-list.student-list li {
  min-width: 420px;
}

/*********************** Start style Student Header *************************/
#dashboard-header {
  border-bottom: 1px solid var(--border-color);
}
#dashboard-header .navbar {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#dashboard-header .header-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
@media (max-width: 991px) {
  #dashboard-header .header-box {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  #dashboard-header .header-box {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
#dashboard-header .navbar-brand {
  margin: 0;
}
#dashboard-header .navbar-brand img {
  width: 97px;
  border-radius: 10px;
}
@media (max-width: 991px) {
  #dashboard-header .navbar-brand img {
    width: 70px;
    border-radius: 10px;
  }
}
@media (max-width: 575px) {
  #dashboard-header .navbar-brand img {
    width: 48px;
    border-radius: 10px;
  }
}
#dashboard-header .sidemenu-toggler,
#dashboard-header .mobile-toggler {
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
#dashboard-header .sidemenu-toggler svg,
#dashboard-header .mobile-toggler svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 767px) {
  #dashboard-header .sidemenu-toggler svg,
  #dashboard-header .mobile-toggler svg {
    width: 32px;
    height: 32px;
  }
}
#dashboard-header .sidemenu-toggler svg path,
#dashboard-header .mobile-toggler svg path {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (min-width: 768px) {
  #dashboard-header .sidemenu-toggler:hover,
  #dashboard-header .mobile-toggler:hover {
    color: var(--second-color);
  }
  #dashboard-header .sidemenu-toggler:hover svg path,
  #dashboard-header .mobile-toggler:hover svg path {
    fill: var(--second-color);
  }
}
#dashboard-header .header-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
@media (max-width: 767px) {
  #dashboard-header .header-action {
    margin: auto;
  }
}
#dashboard-header .header-action .action {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--second-opacity-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  position: relative;
}
@media (max-width: 767px) {
  #dashboard-header .header-action .action {
    width: 36px;
    height: 36px;
  }
}
#dashboard-header .header-action .action svg {
  width: 24px;
}
@media (max-width: 767px) {
  #dashboard-header .header-action .action svg {
    width: 20px;
  }
}
#dashboard-header .header-action .action svg path {
  fill: var(--main-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
#dashboard-header .header-action .action svg circle {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
#dashboard-header .header-action .action:hover {
  background-color: var(--main-color);
}
#dashboard-header .header-action .action svg path {
  fill: #fff;
}
#dashboard-header .header-action .action svg circle,
#dashboard-header .header-action .action svg circle + path {
  stroke: #fff;
}
#dashboard-header .header-action .action:hover svg path {
  fill: #fff;
}
#dashboard-header .header-action .action:hover svg circle,
#dashboard-header .header-action .action:hover svg circle + path {
  stroke: #fff;
}
#dashboard-header .header-action .action.new {
  background-color: var(--third-color);
}
#dashboard-header .header-action .action.new svg path {
  fill: #fff;
}
#dashboard-header .header-action .action.new svg circle,
#dashboard-header .header-action .action.new svg circle + path {
  stroke: #fff;
}
#dashboard-header .header-action .action.new:hover {
  opacity: 0.7;
}
#dashboard-header .header-action .action .alert-tooltip {
  font-size: 12px;
  font-weight: 700;
  line-height: 21px;
  color: #fff;
  background-color: var(--main-color);
  padding: 2px 12px;
  border-radius: 5px;
  position: absolute;
  top: 15px;
  left: -2px;
  -webkit-transform: translate(-100%, -100%);
  transform: translate(-100%, -100%);
}

.user-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.user-info .avater img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .user-info .avater img {
    width: 40px;
    height: 40px;
  }
}
.user-info .welcome {
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  color: var(--second-color);
  display: block;
}
.user-info .name {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--main-color);
}
.user-info .data {
  font-size: 10px;
  font-weight: 500;
  line-height: 16px;
  color: var(--text-color);
}

.logout {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.logout:hover {
  color: #ff3c00;
}
.logout:hover .icon {
  opacity: 0.7;
}
.logout .icon {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: linear-gradient(122.26deg, #ff3c00 19.75%, #ba0f2b 94.45%),
    linear-gradient(0deg, #ffffff, #ffffff);
  -webkit-box-shadow: 4px 3px 7px 0px rgba(0, 0, 0, 0.0901960784);
  box-shadow: 4px 3px 7px 0px rgba(0, 0, 0, 0.0901960784);
  border: 3px solid #ffffff;
}
.logout .icon svg {
  font-size: 20px;
  color: #fff;
}

/*********************** End style Student Header ***************************/
/*********************** Start style Student Footer *************************/
#dashboard-footer {
  padding: 30px 0;
}
@media (max-width: 575px) {
  #dashboard-footer {
    padding: 20px 0;
  }
}
#dashboard-footer .footer-bg {
  background-color: rgba(6, 217, 200, 0.0784313725);
  border-radius: 10px;
  padding: 10px;
}
@media (max-width: 575px) {
  #dashboard-footer .footer-bg {
    padding: 20px 10px;
  }
}
#dashboard-footer .footer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 575px) {
  #dashboard-footer .footer-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
#dashboard-footer ul.social-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}
@media (max-width: 575px) {
  #dashboard-footer ul.social-footer {
    gap: 8px;
  }
}
#dashboard-footer ul.social-footer a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  color: var(--second-color);
  border: 1px solid #c9f7f7;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
#dashboard-footer ul.social-footer a:hover {
  background-color: #c9f7f7;
}
#dashboard-footer .copywrite {
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  color: var(--main-color);
  text-align: center;
}
#dashboard-footer .copywrite a {
  font-weight: 600;
  color: var(--second-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
#dashboard-footer .copywrite a:hover {
  color: var(--main-color);
  text-decoration: underline;
}

/*********************** End style Student Footer ***************************/
/*********************** Start style Side Menu *************************/
.dashboard-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .dashboard-layout {
    gap: 12px;
  }
}

#page-content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  /*position: relative;*/
  max-width: 100%;
  /*overflow: hidden;*/
}
@media (max-width: 991px) {
  #page-content {
    padding: 12px;
  }
}
@media (max-width: 767px) {
  #page-content {
    padding: 0;
    border-radius: 0;
    border: none;
  }
}

#side-menu {
  width: 225px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}

#side-menu:not(.open) {
  border: 0px solid #e5e5e5;
}
@media (max-width: 991px) {
  #side-menu {
    padding: 12px;
  }
}
@media (min-width: 768px) {
  #side-menu.closed {
    width: 90px;
    padding: 20px 4px;
  }
  #side-menu.closed .main-menu .menu-link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #side-menu.closed .main-menu .menu-link .text {
    display: none;
  }
  #side-menu.closed .main-menu .menu-link .arrow {
    display: none;
  }
  #side-menu.closed .submenu {
    padding-right: 0;
    padding: 8px 0;
  }
  #side-menu.closed .submenu .menu-item:not(:last-child) {
    margin-bottom: 5px;
  }
  #side-menu.closed .submenu .menu-link {
    font-size: 9px;
    text-align: center;
  }
  #side-menu.closed .alert-tooltip {
    display: none;
  }
  #side-menu.closed .sidemenu-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
  }
}
@media (max-width: 767px) {
  #side-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    /* background-image: url("../images/footer-background.webp"); */
    background-size: contain;
    border-radius: 0;
    border: none;
    border-left: 1px solid #e5e5e5;
    width: 400px;
    max-width: 100%;
    overflow-y: auto;
    z-index: 100;
  }
  #side-menu:not(.open) {
    width: 0;
    padding: 0;
    overflow: hidden;
  }
}
@media (max-width: 575px) {
  #side-menu {
    width: 100%;
  }
}
#side-menu .sidemenu-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
  display: none;
}
#side-menu .sidemenu-header .navbar-brand img {
  width: 48px;
}
#side-menu .sidemenu-header .close-button {
  font-size: 24px;
  color: var(--main-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
#side-menu .sidemenu-header .close-button:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media (max-width: 767px) {
  #side-menu .sidemenu-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .menu-item:not(:last-child) {
  margin-bottom: 10px;
}
.main-menu .menu-link {
  --icon-color: var(--white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: var(--text-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  text-wrap: nowrap;
}
.main-menu .menu-link .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--second-opacity-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.main-menu .menu-link .icon svg {
  width: 24px;
}
.main-menu .menu-link .icon svg path {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.main-menu .menu-link .icon svg ellipse {
  fill: var(--icon-color);
}
.main-menu .menu-link.collapsed .icon svg,
.main-menu .menu-link.collapsed .icon  svg path,
.main-menu .menu-link.collapsed .icon  svg circle
/* .main-menu .menu-link .icon  svg ellipse */ {
  /* fill: var(--second-color) !important; */
  stroke: var(--white-color) !important;
}
.main-menu .menu-link .icon:hover svg,
.main-menu .menu-link .icon:hover svg path,
.main-menu .menu-link .icon:hover svg circle,
.main-menu .menu-link .icon:hover svg ellipse {
  /* fill: var(--second-color) !important; */
  stroke: var(--second-color) !important;
}
.main-menu .menu-link .icon.no-fill svg,
.main-menu .menu-link .icon.no-fill svg ellipse,
.main-menu .menu-link .icon.no-fill svg circle {
  stroke: var(--icon-color);
  fill: transparent;
}
.main-menu .menu-link .icon.no-fill:hover svg,
.main-menu .menu-link .icon.no-fill:hover svg path,
.main-menu .menu-link .icon.no-fill:hover svg ellipse,
.main-menu .menu-link .icon.no-fill:hover svg circle {
  stroke: var(--third-color);
  fill: transparent;
}
.main-menu .menu-link .icon.yellow_bg:hover svg path {
  stroke: transparent;
  fill: var(--main-color) !important;
}
.main-menu .menu-link .text {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main-menu .menu-link .arrow {
  margin-right: auto;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.main-menu .menu-link:not(.collapsed) .arrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.main-menu .menu-link:hover,
.main-menu .menu-link.active {
  color: var(--main-color);
  --icon-color: var(--second-color);
}
.main-menu .menu-link:hover .icon,
.main-menu .menu-link.active .icon {
  background-color: var(--main-color);
}
.main-menu .menu-link.new {
  color: var(--main-color);
  padding: 8px 0;
  --icon-color: #fff;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f1f1;
  margin: 20px 0;
}
@media (max-width: 767px) {
  .main-menu .menu-link.new {
    padding-bottom: 0;
    padding-top: 0;
    border-bottom: none;
  }
}
.main-menu .menu-link.new .icon {
  background-color: var(--third-color);
  -webkit-box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.3490196078),
    0 0 0 8px rgba(250, 204, 21, 0.2);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.3490196078),
    0 0 0 8px rgba(250, 204, 21, 0.2);
}
.main-menu .submenu {
  padding: 10px 0;
  padding-right: 60px;
}
.main-menu .alert-tooltip {
  font-size: 12px;
  font-weight: 700;
  line-height: 21px;
  color: #fff;
  background-color: var(--main-color);
  padding: 2px 12px;
  border-radius: 5px;
}

.sidemenu-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.sidemenu-links li:not(:last-of-type) {
  position: relative;
}
.sidemenu-links li:not(:last-of-type)::after {
  content: '-';
  font-size: 11px;
  font-weight: 400;
  line-height: 19px;
  color: var(--text-color);
  position: absolute;
  top: 50%;
  left: -12px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.sidemenu-links .link {
  font-size: 10px;
  font-weight: 400;
  line-height: 19px;
  color: var(--text-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.sidemenu-links .link:hover,
.sidemenu-links .link.active {
  color: var(--second-color);
}

.container-fluid {
  max-width: 2200px;
}

/*********************** End style Side Menu ***************************/
/*********************************************************************
  **************************** Home page *******************************
  *********************************************************************/
/*********************** Start style alrts *************************/
.code-alert {
  background-color: var(--main-color);
  text-align: center;
}
.code-alert .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.code-alert .text {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
}
.code-alert .link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--third-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.code-alert .link:hover {
  color: var(--second-color);
}

.live-alert {
  background-color: #ff3c00;
  padding: 8px;
  padding-left: 50px;
}
@media (max-width: 575px) {
  .live-alert {
    padding: 4px 8px;
    padding-left: 40px;
  }
}
.live-alert .alert-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .live-alert .alert-box {
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .live-alert .alert-box {
    gap: 5px;
  }
}
.live-alert .text {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 991px) {
  .live-alert .text {
    font-size: 11px;
    line-height: 17px;
  }
}
@media (max-width: 575px) {
  .live-alert .text {
    font-size: 9px;
    line-height: 14px;
  }
}
.live-alert .subscribe-button {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  padding: 12px 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .live-alert .subscribe-button {
    font-size: 12px;
    line-height: 17px;
    padding: 8px 12px;
  }
}
@media (max-width: 575px) {
  .live-alert .subscribe-button {
    font-size: 10px;
    line-height: 16px;
    padding: 6px 10spx;
  }
  .live-alert .subscribe-button svg {
    width: 16px;
    height: 16px;
  }
}
.live-alert .subscribe-button:hover svg path {
  fill: #fff;
}
.live-alert .subscribe-button:not(.white) svg path {
  fill: #fff;
}

/*********************** End style alrts ***************************/
.dashboard-home-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.4fr 30px 1fr;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
}
@media (max-width: 1199px) {
  .dashboard-home-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.student-teachers:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .student-teachers:not(:last-child) {
    margin-bottom: 30px;
  }
}
.student-teachers .teachers-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc((100% - 45px) / 4) 15px calc((100% - 45px) / 4) 15px
    calc((100% - 45px) / 4) 15px calc((100% - 45px) / 4);
  grid-template-columns: repeat(4, calc((100% - 45px) / 4));
  gap: 15px;
}
@media (max-width: 991px) {
  .student-teachers .teachers-box {
    -ms-grid-columns: calc((100% - 30px) / 4) 10px calc((100% - 30px) / 4) 10px
      calc((100% - 30px) / 4) 10px calc((100% - 30px) / 4);
    grid-template-columns: repeat(4, calc((100% - 30px) / 4));
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .student-teachers .teachers-box {
    -ms-grid-columns: calc((100% - 15px) / 2) 15px calc((100% - 15px) / 2);
    grid-template-columns: repeat(2, calc((100% - 15px) / 2));
    gap: 20px 15px;
  }
}

.teacher-section.small .content {
  padding: 12px 6px;
  margin: -20px 10px 0;
}
.teacher-section.small .number-lessons {
  font-size: 10px;
  line-height: 14px;
  margin: 0 auto 4px;
  padding: 2px 12px 4px;
  padding-right: 25px;
}
.teacher-section.small .number-lessons .number {
  width: 20px;
  height: 20px;
}
.teacher-section.small .name {
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 2px;
}
.teacher-section.small .subject {
  font-size: 10px;
  line-height: 14px;
}

/*********************** Start style student-lessons *************************/
.student-lesson-section {
  padding: 10px;
  padding-left: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}
@media (max-width: 1399px) {
  .student-lesson-section {
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .student-lesson-section {
    padding: 6px;
    border-radius: 6px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px auto;
    grid-template-columns: 1fr auto;
    gap: 5px 10px;
  }
}
.student-lesson-section:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .student-lesson-section:not(:last-child) {
    margin-bottom: 10px;
  }
}
.student-lesson-section > section {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.student-lesson-section > section:not(:last-of-type) {
  position: relative;
}
.student-lesson-section > section:not(:last-of-type)::after {
  content: '';
  width: 1px;
  height: 100%;
  background-color: #e4e4e4;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: -35px;
}
@media (max-width: 1399px) {
  .student-lesson-section > section:not(:last-of-type)::after {
    left: -15px;
  }
}
@media (max-width: 575px) {
  .student-lesson-section > section:not(:last-of-type)::after {
    display: none;
  }
}
.student-lesson-section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  gap: 20px;
}
@media (max-width: 767px) {
  .student-lesson-section .box {
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .student-lesson-section .box {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/3/2;
  }
}
.student-lesson-section .image {
  width: 50px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.student-lesson-section .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.student-lesson-section .lesson-badge {
  font-size: 10px;
  font-weight: 500;
  line-height: 17px;
  color: white;
  margin-bottom: 5px;
  background-color: #7ae582;
  border-radius: 100px;
  padding: 2px 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  display: block;
}
.student-lesson-section .heading {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: var(--main-color);
}
.student-lesson-section .heading a {
  color: inherit;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.student-lesson-section .heading:hover {
  color: var(--second-color);
}
.student-lesson-section .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2px 5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.student-lesson-section .links a {
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
  color: var(--third-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.student-lesson-section .links a:hover {
  color: var(--second-color);
  text-decoration: underline;
}
.student-lesson-section .lesson-price {
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  color: white;
  background-color: var(--second-color);
  border-radius: 5px;
  padding: 8px;
  width: 90px;
  text-align: center;
  display: block;
}
.student-lesson-section .lesson-action {
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  color: var(--main-color);
  background-color: var(--third-color);
  border-radius: 5px;
  padding: 8px 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  width: 90px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-wrap: nowrap;
}
.student-lesson-section .lesson-action.watch {
  background-color: var(--main-color);
  color: #fff;
}
.student-lesson-section .lesson-action.watch:hover {
  background-color: var(--second-color);
}
.student-lesson-section .lesson-action:hover {
  background-color: var(--main-color);
  color: white;
}
.student-lesson-section .lesson-action:hover svg {
  fill: white;
  color: white;
}
.student-lesson-section .lesson-action svg {
  width: 16px;
  font-size: 14px;
}

/*********************** End style student-lessons ***************************/
/*********************** Start style student-summary *************************/
.student-summary {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
}
@media (max-width: 991px) {
  .student-summary {
    padding: 15px 10px;
    border-radius: 6px;
  }
}
@media (max-width: 575px) {
  .student-summary {
    padding: 10px 8px;
  }
}

.materials-summary:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .materials-summary:not(:last-child) {
    margin-bottom: 30px;
  }
}
.materials-summary .summary-heading {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: var(--main-color);
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .materials-summary .summary-heading {
    margin-bottom: 25px;
  }
}
.materials-summary .summary-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc((100% - 40px) / 3) 20px calc((100% - 40px) / 3) 20px
    calc((100% - 40px) / 3);
  grid-template-columns: repeat(3, calc((100% - 40px) / 3));
  gap: 30px 20px;
}
@media (max-width: 575px) {
  .materials-summary .summary-box {
    -ms-grid-columns: calc((100% - 30px) / 3) 15px calc((100% - 30px) / 3) 15px
      calc((100% - 30px) / 3);
    grid-template-columns: repeat(3, calc((100% - 30px) / 3));
    gap: 20px 15px;
  }
}

.summary-progress .progress-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.summary-progress .progress {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 3px;
  background-color: #e9e9e9;
}
.summary-progress .progress .progress-bar {
  background-color: var(--main-color);
}
.summary-progress.low .progress-bar {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(6.76%, #ea3706),
    color-stop(95.95%, #902320)
  );
  background: linear-gradient(270deg, #ea3706 6.76%, #902320 95.95%);
}
.summary-progress.middle .progress-bar {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(6.76%, #f7b801),
    color-stop(95.95%, #d2ac16)
  );
  background: linear-gradient(270deg, #f7b801 6.76%, #d2ac16 95.95%);
}
.summary-progress.high .progress-bar {
  background: -webkit-gradient(linear, right top, left top, color-stop(6.76%, #7AE582), color-stop(95.95%, #268F2E));
  background: linear-gradient(270deg, #7AE582 6.76%, #268F2E 95.95%);
}
.completion-progress .progress-heading {
  font-size: 13px;
  font-weight: 400;
  line-height: 17px;
  color: rgba(5, 4, 73, 0.4196078431);
  margin-bottom: 4px;
}

.success-rate .progress {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
}

.success-rate .progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 8px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
}

.success-rate .progress>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.success-rate .progress .progress-left {
  left: 0;
}

.success-rate .progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 5px;
  border-style: solid;
  position: absolute;
  top: 0;
}

.success-rate .progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.success-rate .progress .progress-right {
  right: 0;
}

.success-rate .progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
  animation: loading-1 1.8s linear forwards;
}

.success-rate .progress .progress-value {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: transparent;
  font-size: 11px;
  color: var(--green-color);
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: 5%;
  left: 5%;
}
.registered-student.fail .success-rate .progress .progress-value{

  color: rgba(255, 0, 0, 1);
}
.success-rate .progress.green .progress-bar {
  border-color: #2b7238;
}
.registered-student.fail .success-rate .progress.green .progress-bar{
  border-color: rgba(255, 0, 0, 1);
}
.success-rate .progress.green .progress-left .progress-bar {
  animation: loading-2 1.5s linear forwards 1.8s;
}

.success-rate .progress.pink .progress-bar {
  border-color: #ed687c;
}

.success-rate .progress.pink .progress-left .progress-bar {
  animation: loading-4 0.4s linear forwards 1.8s;
}

.success-rate .progress.green .progress-bar {
  border-color: var(--green-color);
}

.success-rate .progress.green .progress-left .progress-bar {
  animation: loading-5 1.2s linear forwards 1.8s;
}
.progress-bar-slider .completion-progress input[type="range"] + label {
  color:#38CB89;
  left: unset;
  right: -15px;
  padding: 5px 0;
  position: absolute;
  text-align: center;
  top: -25px;
  width: 80px;
  font-size: 11px;
  font-weight: 700;
}
.progress-bar-slider .completion-progress.fail input[type="range"] + label {
  color:red;
}
.progress-bar-slider .completion-progress.start input[type="range"] + label {
  color: #AFAFCD;
  right:-32px
}
.progress {
  width: 60px;
  height: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
.modal .progress{
transform: scale(1.5);
}
.progress-bar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#007bff var(--progress, 0%), #e9ecef00 0%);
  z-index: 1;
}

.progress-bar.bg-success::before {
  background: conic-gradient(#7ae582 var(--progress, 0%), #e9ecef00 0%);
}

.fail  .progress-bar.bg-success::before {
  background: conic-gradient(#dc3545 var(--progress, 0%), #e9ecef00 0%);
  transform: rotate(100deg);
}

.progress-bar.bg-success::before {
transform: rotate(70deg);
}

.progress-bar.bg-danger::before {
  background: conic-gradient(#dc3545 var(--progress, 0%), #e9ecef00 0%);
}

.progress-bar span {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: 50px;
  padding: 23px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 990px) {
  .success-rate .progress {
    margin-bottom: 20px;
  }
}
.summary-progress .heading {
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
  color: var(--main-color);
  margin-bottom: 8px;
}

.summary-progress .Percentage {
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
  color: var(--main-color);
}
.summary-progress.low .Percentage {
  color: #EA3706;
}
.summary-progress.middle .Percentage {
  color: #E3C13A;
}
.summary-progress.high .Percentage {
  color: #7ae582;
}

.wallet-summary {
  padding: 30px 15px 15px;
  background-color: var(--main-color);
  border-radius: 10px;
  color: #fff;
  position: relative;
}
@media (max-width: 1399px) {
  .wallet-summary {
    padding-top: 35px;
  }
}
@media (max-width: 575px) {
  .wallet-summary {
    padding: 35px 10px 10px;
  }
}
.wallet-summary .heading {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}
.wallet-summary .absolute-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  position: absolute;
  top: 35px;
  right: 15px;
}
@media (max-width: 1399px) {
  .wallet-summary .absolute-box {
    top: 15px;
  }
}
.wallet-summary .wallet-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .wallet-summary .wallet-box {
    gap: 10px;
    margin-bottom: 15px;
  }
}
.wallet-summary .separator {
  width: 35px;
  height: 1px;
  background-color: #fff;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .wallet-summary .separator {
    width: 25px;
  }
}

.wallet-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.wallet-action:hover {
  color: var(--second-color);
}
.wallet-action svg {
  width: 20px;
  height: 20px;
}

.wallet-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.wallet-price .number {
  font-size: 17px;
  font-weight: 700;
  line-height: 23px;
}
.wallet-price .currency {
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  color: var(--second-color);
}

.wallet-history {
  background-color: rgba(6, 217, 200, 0.1294117647);
  padding: 20px 10px;
  border-radius: 10px;
  color: #fff;
}
@media (max-width: 575px) {
  .wallet-history {
    padding: 12px 8px;
    border-radius: 8px;
  }
}
.wallet-history .history-heading {
  font-size: 10px;
  font-weight: 700;
  line-height: 17px;
  color: #fff;
  margin-bottom: 15px;
  text-align: center;
}
.wallet-history .history-heading a {
  color: var(--second-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.wallet-history .history-heading a:hover {
  color: var(--border-color);
}
.wallet-history .history-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 10px;
  background-color: var(--main-color);
  border-radius: 10px;
}
@media (max-width: 575px) {
  .wallet-history .history-item {
    padding: 12px 8px;
    border-radius: 6px;
  }
}
.wallet-history .history-item:not(:last-child) {
  margin-bottom: 10px;
}
.wallet-history .history-item .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}
.wallet-history .history-item svg {
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.wallet-history .history-item svg path {
  stroke: var(--second-color);
}
.wallet-history .history-item .text {
  font-size: 10px;
  font-weight: 700;
  line-height: 17px;
}
.wallet-history .history-item .number {
  color: var(--second-color);
}
.wallet-history .history-item.delete svg path {
  stroke: #ff3c00;
}
.wallet-history .history-item.delete .number {
  color: #ff3c00;
}
.wallet-history .history-item.add svg path {
  stroke: #7ae582;
}
.wallet-history .history-item.add .number {
  color: #7ae582;
}

/******************* End style student-summary *********************/
/******************* Start style payment section ********************/
.payment-popup .modal-dialog {
  width: 1200px;
}
@media (max-width: 991px) {
  .payment-popup .modal-body {
    padding: 40px 30px;
  }
}
@media (max-width: 575px) {
  .payment-popup .modal-body {
    padding: 30px 16px;
  }
}

.payment-section {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.2fr 20px 1fr;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}
@media (max-width: 991px) {
  .payment-section {
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .payment-section {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.payment-section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.payment-info {
  padding: 30px;
  border-radius: 5px;
  background-color: rgba(241, 245, 249, 0.4509803922);
}
@media (max-width: 991px) {
  .payment-info {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .payment-info {
    padding: 15px;
  }
}
.payment-info .payment-data:not(:last-child) {
  margin-bottom: 25px;
}
.payment-info .payment-data .heading {
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  color: rgba(4, 3, 73, 0.4196078431);
  margin-bottom: 5px;
}
.payment-info .payment-data .data {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: var(--main-color);
}

.register-form.payment-form {
  max-width: 100%;
}
.register-form.payment-form .input-field {
  margin: 10px 0;
}
.register-form.payment-form input {
  border: 1px solid rgba(4, 3, 73, 0.1215686275);
  border-radius: 5px;
}
.register-form.payment-form .submit {
  color: var(--second-color);
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
}
.register-form.payment-form .submit:hover {
  color: #fff;
}
.register-form.payment-form .code {
  color: #fff;
  padding: 13px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
.register-form.payment-form .code-input {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.register-form.payment-form .method-label {
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  color: rgba(4, 3, 73, 0.4196078431);
  margin-bottom: 10px;
}

.payment-methods {
  padding: 30px 20px 20px;
  border-radius: 5px;
  border: 1px solid #d5dbe1;
}
@media (max-width: 991px) {
  .payment-methods {
    padding: 20px 15px 15px;
  }
}
.payment-methods .form-check-input {
  border: 2px solid rgba(4, 3, 73, 0.1490196078);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.payment-methods .form-check-input:checked {
  border-color: var(--main-color);
}
.payment-methods .methods-item {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: rgba(4, 3, 73, 0.4196078431);
  margin-bottom: 15px;
  border: 1px solid rgba(4, 3, 73, 0.1490196078);
  border-radius: 5px;
  display: block;
  padding: 16px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.payment-methods .methods-item.active {
  color: var(--main-color);
  border-color: var(--main-color);
}
.payment-methods .methode-info {
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #d5dbe1;
}
@media (max-width: 991px) {
  .payment-methods .methode-info {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .payment-methods .methode-info {
    padding: 0;
    border: none;
  }
}
.payment-methods hr {
  margin: 20px 0;
  border: 1px solid rgba(4, 3, 73, 0.1215686275);
}
.payment-methods .description {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #9cadc3;
}
.payment-methods .description .number {
  color: var(--second-color);
}
.payment-methods .method-label {
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  color: rgba(4, 3, 73, 0.4196078431);
  margin-bottom: 10px;
}
.payment-methods .method-data {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--main-color);
}

/******************* End style payment section **********************/
/*********************************************************************
  ************************** Contact pages *****************************
  *********************************************************************/
/****************** Start style support contact page ********************/
.support-welcome {
  padding: 20px;
  border-radius: 5px;
  background-color: var(--third-color);
}
.support-welcome:not(:last-child) {
  margin-bottom: 15px;
}
.support-welcome .text {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: var(--main-color);
  text-align: center;
}
.support-welcome .text:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 575px) {
  .support-welcome .text:not(:last-child) {
    margin-bottom: 8px;
  }
}
@media (max-width: 991px) {
  .support-welcome .text {
    font-size: 17px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .support-welcome .text {
    font-size: 16px;
    line-height: 22px;
  }
}

.support-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media (max-width: 991px) {
  .support-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.support-layout .support-box {
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
}
@media (max-width: 1199px) {
  .support-layout .support-box {
    padding: 25px;
  }
}
@media (max-width: 575px) {
  .support-layout .support-box {
    padding: 20px 15px;
    border-radius: 6px;
  }
}

.support-form .from-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 575px) {
  .support-form .from-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0;
  }
}
.support-form .input-field {
  width: 100%;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .support-form .input-field {
    margin-bottom: 10px;
  }
}
.support-form .input-field input,
.support-form .input-field select,
.support-form .input-field textarea {
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  color: #9cadc3;
  caret-color: var(--main-color);
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 10px 5px;
  border: none;
  border-bottom: 1px solid #9cadc3;
  border-radius: 0;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  background-color: transparent;
}
@media (max-width: 575px) {
  .support-form .input-field input,
  .support-form .input-field select,
  .support-form .input-field textarea {
    padding: 16px;
    padding-left: 40px;
  }
}
.support-form .input-field input:focus,
.support-form .input-field select:focus,
.support-form .input-field textarea:focus {
  outline: none;
  border-color: var(--main-color);
  color: var(--main-color);
}
.support-form .input-field input[type='number'] {
  -moz-appearance: textfield;
}
.support-form .input-field input[type='number']::-webkit-inner-spin-button,
.support-form .input-field input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.support-form .input-field .invalid-feedback {
  font-size: 9px;
  line-height: 14px;
}
.support-form.was-validated .input-field input:invalid,
.support-form.was-validated .input-field textarea:invalid,
.support-form.was-validated .input-field select:invalid {
  padding: 10px 5px;
  border-color: var(--red-color);
  background-image: none;
}
.support-form.was-validated .input-field input:valid,
.support-form.was-validated .input-field textarea:valid,
.support-form.was-validated .input-field select:valid {
  padding: 10px 5px;
  border-color: var(--green-color);
  background-image: none;
}
.support-form button[type='submit'] {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  color: var(--second-color);
  display: block;
  width: 100%;
  padding: 12px;
  background-color: var(--main-color);
  margin-top: 25px;
  border-radius: 5px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.support-form button[type='submit']:hover {
  background-color: var(--second-color);
  color: var(--main-color);
}

.support-methods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .support-methods {
    gap: 30px;
  }
}
.support-methods .method {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: var(--text-color);
  display: block;
  text-align: center;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.support-methods .method:hover {
  color: var(--second-color);
  text-decoration: underline;
}
.support-methods .method .icon {
  display: block;
  width: 50px;
  margin: auto;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .support-methods .method .icon {
    width: 40px;
    margin-bottom: 10px;
  }
}
.support-methods .method .icon img {
  width: 100%;
}

/****************** End style support contact page **********************/
/****************** Start style about us page ********************/
.about-us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
@media (max-width: 991px) {
  .about-us {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
  }
}
.about-us .content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.about-us .heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 37px;
  color: var(--main-color);
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .about-us .heading {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 575px) {
  .about-us .heading {
    font-size: 19px;
    line-height: 28px;
    margin-bottom: 10px;
  }
}
.about-us .description {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: rgba(4, 3, 73, 0.4588235294);
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .about-us .description {
    font-size: 12px;
    line-height: 17px;
    margin-bottom: 8px;
  }
}
.about-us .image {
  width: 450px;
  max-width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 1399px) {
  .about-us .image {
    width: 350px;
  }
}
@media (max-width: 1199px) {
  .about-us .image {
    width: 320px;
  }
}
@media (max-width: 575px) {
  .about-us .image {
    width: 280px;
  }
}
.about-us .image img {
  width: 100%;
}

.about-featuers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .about-featuers {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px 10px;
  }
}
@media (max-width: 575px) {
  .about-featuers {
    margin-top: 25px;
    gap: 10px;
  }
}
.about-featuers .featuer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 12px;
  padding-left: 25px;
  border-radius: 15px;
  background-color: rgba(4, 3, 73, 0.031372549);
}
@media (max-width: 1399px) {
  .about-featuers .featuer-item {
    padding-left: 18px;
  }
}
@media (max-width: 575px) {
  .about-featuers .featuer-item {
    padding: 10px;
    padding-left: 15px;
    border-radius: 10px;
  }
}
.about-featuers .featuer-item img {
  width: 65px;
  border-radius: 15px;
}
@media (max-width: 1399px) {
  .about-featuers .featuer-item img {
    width: 50px;
  }
}
@media (max-width: 575px) {
  .about-featuers .featuer-item img {
    width: 45px;
    border-radius: 10px;
  }
}
.about-featuers .featuer-item .featuer-heading {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: var(--main-color);
}

/****************** End style about us page **********************/
/*********************************************************************
  ************************** profile pages *****************************
  *********************************************************************/
.profile-change-data {
  max-width: 550px;
  min-height: 400px;
  margin: auto;
  background-color: #f8fbff;
  border-radius: 10px;
  padding: 40px;
}
@media (max-width: 575px) {
  .profile-change-data {
    min-height: 300px;
    padding: 30px 15px;
    border-radius: 5px;
  }
}

.profile-heading {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  color: var(--main-color);
  margin-bottom: 35px;
  text-align: center;
}
@media (max-width: 991px) {
  .profile-heading {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 575px) {
  .profile-heading {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 20px;
  }
}

.student-popup-heading {
  text-align: center;
}
.student-popup-heading .icon {
  width: 165px;
  margin: auto;
  margin-bottom: 35px;
}
.student-popup-heading .icon.large {
  width: 230px;
}
@media (max-width: 575px) {
  .student-popup-heading .icon.large {
    width: 170px;
  }
}
@media (max-width: 575px) {
  .student-popup-heading .icon {
    width: 120px;
    margin-bottom: 20px;
  }
}
.student-popup-heading .icon img {
  width: 100%;
}
.student-popup-heading .heading {
  font-size: 26px;
  font-weight: 500;
  line-height: 36px;
  color: var(--main-color);
}
.student-popup-heading .heading:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .student-popup-heading .heading:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .student-popup-heading .heading {
    font-size: 21px;
  }
}
@media (max-width: 575px) {
  .student-popup-heading .heading {
    font-size: 18px;
    line-height: 30px;
  }
}
.student-popup-heading .description {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: rgba(4, 3, 73, 0.3019607843);
}
@media (max-width: 575px) {
  .student-popup-heading .description {
    font-size: 12px;
    line-height: 19px;
  }
}
.student-popup-heading .button {
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  display: block;
  width: 135px;
  margin: auto;
  padding: 12px;
  border-radius: 5px;
  text-align: center;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  background-color: var(--main-color);
  color: #fff;
}
.student-popup-heading .button:hover {
  background-color: var(--second-color);
  border-color: var(--second-color);
}

.profile-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: #9cadc3;
  margin-bottom: 8px;
}
@media (max-width: 575px) {
  .profile-label {
    font-size: 12px;
    line-height: 17px;
  }
}

/*********************************************************************
  *********************** notifications pages **************************
  *********************************************************************/
.notifications-empty {
  max-width: 200px;
  text-align: center;
  min-height: 100%;
  margin: 100px auto;
}
@media (max-width: 575px) {
  .notifications-empty {
    margin: 80px auto;
    max-width: 150px;
  }
}
.notifications-empty img {
  width: 100%;
}
.notifications-empty .heading {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: #c7c7c7;
  margin-top: 20px;
}
@media (max-width: 575px) {
  .notifications-empty .heading {
    font-size: 12px;
    margin-top: 15px;
  }
}

.notification-item {
  background-color: rgba(4, 3, 73, 0.031372549);
  border-radius: 10px;
  padding: 5px;
  padding-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
@media (max-width: 575px) {
  .notification-item {
    border-radius: 5px;
    padding: 8px 12px;
  }
}
.notification-item:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .notification-item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.notification-item .image {
  width: 65px;
  height: 65px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .notification-item .image {
    display: none;
  }
}
.notification-item .image img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.notification-item .box-between {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.notification-item .text {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: var(--main-color);
}
@media (max-width: 991px) {
  .notification-item .text {
    font-size: 12px;
    line-height: 22px;
  }
}
.notification-item .text a {
  color: var(--second-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.notification-item .text a:hover {
  color: var(--third-color);
}
.notification-item .delete {
  color: #ff3c00;
}
.notification-item .add {
  color: #7ae582;
}
.notification-item .date {
  font-size: 10px;
  font-weight: 500;
  line-height: 17px;
  color: var(--text-color);
}

.notification-button {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
  background-color: var(--main-color);
  padding: 12px 20px;
  border-radius: 5px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  transition: var(--main-transition);
}
.notification-button:hover {
  background-color: var(--second-color);
  color: #fff;
}
@media (max-width: 991px) {
  .notification-button {
    font-size: 12px;
    line-height: 19px;
    padding: 8px 12px;
  }
}

/*********************************************************************
  ************************* my lessons page ****************************
  *********************************************************************/
.materials-section {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px 20px;
}
@media (max-width: 575px) {
  .materials-section {
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }
}

.student-material .image {
  display: block;
  position: relative;
  border-radius: 15px;
  cursor: pointer;
}
.student-material .image::after {
  content: '\f06e';
  font-family: 'Font Awesome 6 Free';
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: 5px;
  background-color: var(--second-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--main-color);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.student-material .image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.6980392157);
  border-radius: inherit;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.student-material .image:hover::after {
  opacity: 1;
}
.student-material .image:hover::before {
  width: 100%;
  height: 100%;
}
.student-material .image img {
  width: 100%;
  max-height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  border-radius: inherit;
}
.student-material .content {
  display: block;
  position: relative;
  z-index: 1;
  margin: -40px 10px 0;
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 15px;
  -webkit-box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.0509803922);
  text-align: center;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .student-material .content {
    padding: 12px 15px;
    border-radius: 10px;
    margin: -25px 10px 0;
  }
}
.student-material .content:hover {
  -webkit-box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.1098039216);
  box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.1098039216);
}
.student-material .name {
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  color: var(--main-color);
  margin-bottom: 8px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .student-material .name {
    font-size: 12px;
    line-height: 17px;
  }
}
.student-material .name:hover {
  color: var(--text-color);
}
.student-material hr {
  margin: 10px 0;
  border: 1px solid rgba(5, 4, 73, 0.1019607843);
}
.student-material .teacher {
  font-size: 11px;
  font-weight: 400;
  line-height: 14px;
  color: rgba(5, 4, 73, 0.4196078431);
  margin-bottom: 5px;
}
.student-material .info {
  font-size: 11px;
  font-weight: 400;
  line-height: 14px;
  color: var(--second-color);
}

/*********************************************************************
  ************************** teachers page *****************************
  *********************************************************************/
.student-teachers-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 15px 1fr;
  grid-template-columns: 300px 1fr;
  gap: 15px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 1399px) {
  .student-teachers-layout {
    -ms-grid-columns: 280px 1fr;
    grid-template-columns: 280px 1fr;
  }
}
@media (max-width: 1199px) {
  .student-teachers-layout {
    -ms-grid-columns: 260px 1fr;
    grid-template-columns: 260px 1fr;
  }
}
@media (max-width: 991px) {
  .student-teachers-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.student-teachers-layout .register-form {
  max-width: 100%;
}
@media (max-width: 991px) {
  .student-teachers-layout .register-form {
    padding: 32px;
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  .student-teachers-layout .register-form {
    padding: 16px;
    padding-top: 0;
  }
}

.teachers-filter {
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #d5dbe1;
  position: sticky;
  top: 10px;
  z-index: 100;
  background-color: #fff;
}
@media (max-width: 991px) {
  .teachers-filter {
    position: fixed;
    bottom: 0;
    top: auto;
    width: 100%;
    left: 0;
    padding: 0;
    border-radius: 0;
    border: none;
    border-top: 1px solid #d5dbe1;
  }
}
.teachers-filter .filter-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--main-color);
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px;
  background-color: rgba(241, 245, 249, 0.4509803922);
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 991px) {
  .teachers-filter .filter-button {
    padding: 20px 10px;
  }
}
.teachers-filter .filter-button[aria-expanded='true'] {
  margin-bottom: 30px;
}
.teachers-filter .filter-button svg {
  width: 20px;
  height: 20px;
}

/*********************************************************************
  ********************** addition codes pages **************************
  *********************************************************************/
.codes-list:not(:last-child) {
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .codes-list:not(:last-child) {
    margin-bottom: 15px;
  }
}

.addition-code-item {
  padding: 10px 20px;
  border-radius: 5px;
  background-color: rgba(241, 245, 249, 0.4509803922);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px 1fr 100px 1fr 100px 1fr 100px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 100px;
}
@media (max-width: 1399px) {
  .addition-code-item {
    gap: 70px;
  }
}
@media (max-width: 1199px) {
  .addition-code-item {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .addition-code-item {
    gap: 24px;
    padding: 10px;
  }
}
@media (max-width: 575px) {
  .addition-code-item {
    padding: 8px 4px;
    border-radius: 4px;
    gap: 10px;
    -ms-grid-columns: auto 10px auto 10px auto 10px auto 10px auto;
    grid-template-columns: repeat(5, auto);
  }
}
.addition-code-item:nth-child(even) {
  background-color: #f1f5f9;
}
.addition-code-item:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .addition-code-item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.addition-code-item .code-data {
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
  align-content: center;
}
.addition-code-item .code-data:not(:last-of-type) {
  position: relative;
}
.addition-code-item .code-data:not(:last-of-type)::after {
  content: '';
  width: 1px;
  height: 100%;
  background-color: rgba(4, 3, 73, 0.1490196078);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: -50px;
}
@media (max-width: 1399px) {
  .addition-code-item .code-data:not(:last-of-type)::after {
    left: -35px;
  }
}
@media (max-width: 1199px) {
  .addition-code-item .code-data:not(:last-of-type)::after {
    left: -20px;
  }
}
@media (max-width: 991px) {
  .addition-code-item .code-data:not(:last-of-type)::after {
    left: -12px;
  }
}
@media (max-width: 575px) {
  .addition-code-item .code-data:not(:last-of-type)::after {
    display: none;
  }
}
.addition-code-item .label {
  font-size: 11px;
  font-weight: 400;
  line-height: 19px;
  color: var(--second-color);
  margin-bottom: 2px;
}
@media (max-width: 991px) {
  .addition-code-item .label {
    font-size: 10px;
    line-height: 17px;
    margin-bottom: 0;
    text-wrap: nowrap;
  }
}
@media (max-width: 575px) {
  .addition-code-item .label {
    font-size: 8px;
    line-height: 12px;
  }
}
.addition-code-item .name {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--main-color);
}
@media (max-width: 991px) {
  .addition-code-item .name {
    font-size: 14px;
    line-height: 19px;
  }
}
@media (max-width: 575px) {
  .addition-code-item .name {
    font-size: 9px;
    line-height: 14px;
  }
}
.addition-code-item .code-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .addition-code-item .code-actions {
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .addition-code-item .code-actions {
    gap: 8px;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}
.addition-code-item .action {
  font-size: 18px;
  color: var(--text-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 991px) {
  .addition-code-item .action {
    font-size: 12px;
  }
}
.addition-code-item .action:hover,
.addition-code-item .action.active {
  color: var(--main-color);
}
.addition-code-item .action .copy-alet {
  display: block;
  font-size: 11px;
  font-weight: 400;
  line-height: 19px;
  color: var(--text-color);
  display: none;
  opacity: 0;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.addition-code-item .action .copy-alet.show {
  display: block;
  opacity: 1;
}
@media (max-width: 991px) {
  .addition-code-item .action .copy-alet {
    font-size: 8px;
  }
}

.add-code-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  border-radius: 5px;
  background-color: var(--third-color);
  padding: 16px;
  min-width: 180px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: auto;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .add-code-link {
    padding: 12px;
    min-width: 150px;
    font-size: 12px;
    line-height: 19px;
  }
}
.add-code-link:hover {
  background-color: var(--main-color);
  color: #fff;
}
.add-code-link:hover svg path {
  fill: #fff;
}
.add-code-link svg path {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.add-code-link.width {
  min-width: 140px;
}
@media (max-width: 575px) {
  .add-code-link.width {
    padding: 12px 16px;
    min-width: auto;
  }
}

.add-code-icon {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .add-code-icon {
    margin-bottom: 20px;
  }
}
.add-code-icon img {
  max-width: 160px;
}
@media (max-width: 575px) {
  .add-code-icon img {
    max-width: 120px;
  }
}

/*********************************************************************
  ************************** archives page *****************************
  *********************************************************************/
.archives-section {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px 16px;
}
@media (max-width: 575px) {
  .archives-section {
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }
}

.image.lesson-image {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.image.lesson-image::before {
  width: 100%;
  height: 100%;
  background-color: rgba(4, 3, 73, 0.6509803922);
}
.image.lesson-image::after {
  opacity: 1;
  content: '\f144';
  font-size: 30px;
  width: auto;
  height: auto;
  background: transparent;
  color: #fff;
}
.image.lesson-image:hover {
  opacity: 0.8;
}

/*********************************************************************
  ********************** teacher material page *************************
  *********************************************************************/
.material-accordion {
  max-width: 730px;
  margin: auto;
  --bs-accordion-border-radius: 10px;
}
@media (max-width: 575px) {
  .material-accordion {
    --bs-accordion-border-radius: 5px;
  }
}
.material-accordion .accordion-item {
  border: none;
  background-color: #f8fafc;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .material-accordion .accordion-item {
    border-radius: 5px;
  }
}
.material-accordion .accordion-item:not(:last-child) {
  margin-bottom: 10px;
}
.material-accordion .accordion-item.locked .accordion-header .box svg path {
  fill: var(--red-color);
}
.material-accordion .accordion-header {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 25px 20px;
  cursor: pointer;
}
@media (max-width: 575px) {
  .material-accordion .accordion-header {
    font-size: 14px;
    line-height: 19px;
    padding: 16px 12px;
  }
}
.material-accordion .accordion-header .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}
.material-accordion .accordion-header .box svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 575px) {
  .material-accordion .accordion-header .box svg {
    width: 20px;
    height: 20px;
  }
}
.material-accordion .accordion-header .box svg path {
  -webkit-transition: var(--main-color);
  transition: var(--main-color);
}
.material-accordion .accordion-header > svg {
  font-size: 20px;
  color: var(--main-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .material-accordion .accordion-header > svg {
    font-size: 16px;
  }
}
.material-accordion .accordion-header:not(.collapsed) > svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.material-accordion .accordion-body {
  padding: 0 20px 25px;
}
@media (max-width: 575px) {
  .material-accordion .accordion-body {
    padding: 0 12px 16px;
  }
}

.material-lesson {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  padding: 7px;
  background-color: #fff;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .material-lesson {
    gap: 10px;
    padding: 5px;
    border-radius: 5px;
  }
}
.material-lesson:not(:last-child) {
  margin-bottom: 10px;
}
.material-lesson .image {
  width: 120px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .material-lesson .image {
    width: 90px;
    border-radius: 5px;
  }
}
.material-lesson .image img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.material-lesson .heading {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--main-color);
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .material-lesson .heading {
    font-size: 12px;
    line-height: 17px;
  }
}
.material-lesson .lesson-meta {
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  color: rgba(4, 3, 73, 0.3882352941);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .material-lesson .lesson-meta {
    font-size: 11px;
    gap: 10px;
  }
}
.material-lesson.locked .image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  border-radius: inherit;
}
.material-lesson.locked .image::after {
  content: url(../images/icons/lock.svg);
  font-family: 'Font Awesome 6 Free';
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 24px;
  color: var(--red-color);
}

/*********************************************************************
  *************************** lesson page ******************************
  *********************************************************************/
.student-lesson-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 530px;
  grid-template-columns: 1fr 530px;
  gap: 20px;
}
@media (max-width: 1399px) {
  .student-lesson-layout {
    -ms-grid-columns: 1fr 400px;
    grid-template-columns: 1fr 400px;
  }
}
@media (max-width: 1199px) {
  .student-lesson-layout {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .student-lesson-layout {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 20px;
  }
}

.student-lesson-header {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.student-lesson-header .heading {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--main-color);
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .student-lesson-header .heading {
    font-size: 12px;
    line-height: 17px;
  }
}
.student-lesson-header .lesson-meta {
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  color: rgba(4, 3, 73, 0.3882352941);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .student-lesson-header .lesson-meta {
    font-size: 11px;
    gap: 10px;
  }
}

.lesson-progress {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
  background-color: #f7f8fa;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .lesson-progress {
    width: 50px;
    height: 50px;
  }
}
.lesson-progress .inner-circle {
  position: absolute;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 50%;
  background-color: #fff;
}
@media (max-width: 575px) {
  .lesson-progress .inner-circle {
    width: calc(100% - 5px);
    height: calc(100% - 5px);
  }
}
.lesson-progress .content {
  position: relative;
  text-align: center;
  -webkit-transform: rotateZ(270deg);
  transform: rotateZ(270deg);
}
.lesson-progress .percentage {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  line-height: 17px;
  color: var(--second-color);
}
@media (max-width: 575px) {
  .lesson-progress .percentage {
    font-size: 11px;
  }
}

/*******************************************************************************
  ************************###############################*************************
  ************************### Teacher Dashboard pages ###*************************
  ************************###############################*************************
  *******************************************************************************/
/* teacher heading component */
.teacher-heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: auto;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 575px) {
  .teacher-heading {
    padding-bottom: 12px;
    margin-bottom: 20px;
    gap: 10px;
  }
}
.teacher-heading .heading-box {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.teacher-heading .students-info-actions {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
@media (max-width: 991px) {
  .teacher-heading .students-info-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }
}
.teacher-heading .heading {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: var(--main-color);
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (max-width: 575px) {
  .teacher-heading .heading {
    text-align: unset;
    font-size: 16px;
    line-height: 22px;
  }
}
.teacher-heading .heading-data {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #9cadc3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.heading-desc{
  font-size: 11px;
  font-weight: 400;
  line-height: 14px;
  color: rgba(156, 173, 195, 1);
  }
  .heading-desc.color-black{
    color: rgba(4, 3, 73, 1);
  }
  .heading-desc.color-red{
    color: rgba(255, 0, 0, 1);
  }

  .text .mx-2.mt-1:hover,
.text .mx-2.mt-1:focus,
.text .mx-2.mt-1:active,
.text .mx-2.mt-1.active,
.lable-btn.active{
color: #06d9c8 !important;
cursor: pointer;
}

.custom-checkbox2 .form-check-input {
  margin: 0;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  width: 24px;
  height: 24px;
  cursor: pointer;
  border: 1px solid #9cadc3;
}
.custom-checkbox2 .form-check-input:checked, input[type="checkbox"]:checked, .custom-checkbox3 .form-check-input:checked {
  border: 2px solid #06D9C8;;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%2306d9c8' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

@media (max-width: 575px) {
  .teacher-heading .heading-data {
    text-align: unset;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: 14px;
    line-height: 19px;
    gap: 8px;
  }
}
.teacher-heading .heading-data .code-number {
  color: var(--main-color);
}
.teacher-heading .description {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: #9cadc3;
  text-align: center;
}
@media (max-width: 575px) {
  .teacher-heading .description {
    text-align: unset;
    font-size: 12px;
    line-height: 17px;
  }
}
.teacher-heading .red-color {
  color: var(--red-color);
}

.add-teaching {
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  color: #9cadc3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px dashed #9cadc3;
  border-radius: 5px;
  padding: 12px 16px;
  text-align: center;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .add-teaching {
    padding: 10px 8px;
    font-size: 11px;
    line-height: 17px;
    gap: 4px;
  }
}
.add-teaching:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}

.add-by-excel {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  color: #9cadc3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}
@media (max-width: 575px) {
  .add-by-excel .text {
    display: none;
  }
}
.add-by-excel img {
  width: 32px;
}

/* students info box component */
.students-info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .students-info-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
  }
}
.students-info-box .info-heading {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: #9cadc3;
}
@media (max-width: 575px) {
  .students-info-box .info-heading {
    font-size: 12px;
    line-height: 17px;
  }
}
.students-info-box .info-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0;
}
.students-info-box .info-images .image-item {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 3px solid #fff;
}
.students-info-box .info-images .image-item:not(:first-of-type) {
  margin-right: -10px;
}
.students-info-box .info-images .image-item.end {
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  color: var(--main-color);
  background-color: var(--third-color);
}
.students-info-box .info-images img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* material data component */
.material-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.material-data svg {
  width: 18px;
  height: 18px;
}
.material-data .number {
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  color: var(--main-color);
}
.material-data .text {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  color: #9cadc3;
}

/* student data component */
.student-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  color: var(--main-color);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.student-data svg {
  width: 18px;
  height: 18px;
}
.student-data .number {
  font-weight: bold;
}

/* back home component */
.back-home {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #9cadc3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.back-home:hover {
  color: var(--main-color);
}
@media (max-width: 575px) {
  .back-home {
    font-size: 14px;
    line-height: 19px;
    gap: 5px;
  }
}
.back-home svg {
  font-size: 16px;
}
@media (max-width: 575px) {
  .back-home svg {
    font-size: 12px;
  }
}

/* teacher list component */
.teacher-list {
  overflow-x: auto;
  max-width: 100%;
}
.teacher-list li {
  padding: 14px 30px;
  border-radius: 10px;
  background-color: #f8fafc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-width: 900px;
}
.teacher-list li:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .teacher-list li:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .teacher-list li {
    padding: 8px 12px;
    border-radius: 5px;
    min-width: 750px;
  }
}
.teacher-list .teacher-list-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 60px 1fr 60px 1fr 60px 1fr 60px 1fr 60px 1fr;
  grid-template-columns: 2fr repeat(5, 1fr);
  gap: 60px;
}
@media (max-width: 1199px) {
  .teacher-list .teacher-list-box {
    gap: 40px;
  }
}
@media (max-width: 575px) {
  .teacher-list .teacher-list-box {
    gap: 30px;
  }
}
.teacher-list .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 575px) {
  .teacher-list .box {
    gap: 6px;
  }
}
.teacher-list .list-item {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.teacher-list .list-item:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 100%;
  background-color: rgba(156, 173, 195, 0.368627451);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: -30px;
}
@media (max-width: 1199px) {
  .teacher-list .list-item:not(:last-child)::after {
    left: -20px;
  }
}
@media (max-width: 575px) {
  .teacher-list .list-item:not(:last-child)::after {
    left: -15px;
  }
}
.teacher-list .list-item .image img {
  width: 35px;
}
@media (max-width: 575px) {
  .teacher-list .list-item .image img {
    width: 24px;
  }
}
.teacher-list .list-item .title {
  font-size: 10px;
  font-weight: 400;
  line-height: 17px;
  color: #9cadc3;
  margin-bottom: 2px;
}
@media (max-width: 575px) {
  .teacher-list .list-item .title {
    font-size: 9px;
    line-height: 14px;
  }
}
.teacher-list .list-item .data {
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  color: var(--main-color);
}
@media (max-width: 575px) {
  .teacher-list .list-item .data {
    font-size: 11px;
    line-height: 17px;
  }
}
.teacher-list .list-item .list-action {
  font-size: 10px;
  font-weight: 400;
  line-height: 17px;
  color: #9cadc3;
  text-decoration: underline;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .teacher-list .list-item .list-action {
    font-size: 9px;
    line-height: 14px;
  }
}
.teacher-list .list-item .list-action:hover {
  color: var(--main-color);
}
.teacher-list .list-item .list-action.delete:hover {
  color: var(--red-color);
}

/* completion progress component */
.completion-progress {
  padding-bottom: 24px;
}

.completion-progress .full-progress {
  width: 120px;
  height: 3px;
  background-color: #d9d9d9;
  border-radius: 10px;
  position: relative;
}
.completion-progress .full-progress .inner-progress {
  background-color: var(--red-color);
  position: absolute;
  top: 0;
  right: 0;
  height: 3px;
  border-radius: 10px;
}
.completion-progress .percentage {
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  color: var(--red-color);
  padding-top: 8px;
  text-align: center;
  position: absolute;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}
.completion-progress .range-container {
  position: relative;
}

.completion-progress .range-container {
  position: relative;
}
.completion-progress input[type="range"] {
  -webkit-appearance: none;
  margin: 0 0;
  width: 190px;
  background-color: #b2b2b2;
  overflow: hidden;
  border-radius: 5px;
  
}

.completion-progress input[type="range"]:focus {
  outline: none;
}

.completion-progress input[type="range"] + label {
  color:#38CB89;
  left: 60px;
  padding: 5px 0;
  position: absolute;
  text-align: center;
  top: -25px;
  width: 80px;
  font-size: 11px;
  font-weight: 700;
}
/* Chrome & Safari */
.completion-progress input[type="range"]::-webkit-slider-runnable-track {
  background: #38CB89;
  border-radius: 4px;
  cursor: pointer;
  height: 10px;
  width: 100%;
}
.completion-progress.fail input[type="range"]::-webkit-slider-runnable-track{
  background: red;
}
.completion-progress input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: -210px 0 0 200px #b2b2b2;
  background-color:#38CB89;
  border-radius: 50%;
  cursor: pointer;
  height: 13px;
  margin-top: -2px;
  width: 13px;
}
.completion-progress.fail input[type="range"]::-webkit-slider-thumb {

  background-color:red;

}
.completion-progress.start input[type="range"]::-webkit-slider-thumb {

  background-color:#AFAFCD;

}


/* Firefox */
.completion-progress input[type="range"]::-moz-range-track {
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.completion-progress input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  background: #8e8e8e;
  box-shadow: -1010px 0 0 900px #8e8e8e;
  border-radius: 50%;
  cursor: pointer;
}

/* IE */
.completion-progress input[type="range"]::-ms-track {
  border-radius: 4px;
  cursor: pointer;
  height: 13px;
  width: 100%;
}

.completion-progress input[type="range"]::-ms-thumb {
  -webkit-appearance: none;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  height: 24px;
  margin-top: -7px;
  width: 24px;
}
.completion-progress input[type="range"] + label {
  left: unset;
  right: 0;
  width: unset;
}

.card-body .text-start a svg {
  font-size: 11px !important;
  line-height: 14px !important;
}
.card-body .text-start a:nth-of-type(2) svg {
margin: 0px 5px;
}


/* Sama updates */

.card-container {
  width: 10em;
  text-align: center;
  line-height: 15px;
  margin: 0 auto;
  box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.05);
  padding: 1em;
}

.card-container1 {
  width: 10em;
  text-align: center;
  line-height: 15px;
}

.card-container h1,
.card-container1 h1 {
  font-size: 14px;
  font-weight: 700;
  vertical-align: middle;
  text-align: center;
}

.card-container .descrip,
.card-container1 .descrip {
  font-size: 10px;
  font-weight: 200;
  line-height: 22px;
  color: #9cadc3;
}

.card-container hr,
.card-container1 hr {
  border: 1px solid #9cadc3;
  width: 70%;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 15px;
}
.classess-view  .card-container hr, .classess-view  .card-container1 hr{
  width: 100%;
}
.classess-view .card-container {
  width: 12em;
  /* margin: 0px 9px; */
}
.classess-view .card-container 
.button {
    padding: 8px 0px;
}
.classess-view .card-container 
.button:hover {
  color: #fff;
  background-color: var(--main-color);
}

/*********************************************************************
  **************************** Home pages ******************************
  *********************************************************************/
.teacher-dashboard-brief {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1.35fr 20px 1fr;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .teacher-dashboard-brief {
    gap: 12px;
  }
}
@media (max-width: 991px) {
  .completion-progress input[type="range"] {
    width: 150px;
  }
  .teacher-dashboard-brief {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .teacher-dashboard-brief {
    gap: 8px;
  }
}

.dashboard-brief {
  background-color: var(--second-opacity-color);
  padding: 40px 20px;
  border-radius: 10px;
  text-align: center;
}
@media (max-width: 1199px) {
  .dashboard-brief {
    padding: 30px 15px;
  }
}
@media (max-width: 575px) {
  .dashboard-brief {
    padding: 20px 8px;
    border-radius: 5px;
  }
}
.dashboard-brief:nth-child(2) {
  /* background-color: rgba(0, 255, 56, 0.1490196078); */
}
@media (max-width: 991px) {
  .dashboard-brief:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1/1/2/3;
  }
}
.dashboard-brief .icon {
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .dashboard-brief .icon {
    margin-bottom: 5px;
  }
}
.dashboard-brief .icon svg {
  width: 36px;
  height: 36px;
}
@media (max-width: 575px) {
  .dashboard-brief .icon svg {
    width: 30px;
    height: 30px;
  }
}
.dashboard-brief .number {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: var(--white-color);
}
@media (max-width: 575px) {
  .dashboard-brief .number {
    font-size: 24px;
    line-height: 32px;
  }
}
.dashboard-brief .heading {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--white-color);
}
@media (max-width: 575px) {
  .dashboard-brief .heading {
    font-size: 13px;
    line-height: 19px;
  }
}

/*********************************************************************
  ************************** profile pages *****************************
  *********************************************************************/
.profile-data-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.profile-data {
  font-size: 12px;
  font-weight: 500;
  line-height: 21px;
  color: #fff;
  background-color: var(--main-color);
  padding: 12px 24px;
  min-width: 135px;
  text-align: center;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 575px) {
  .profile-data {
    font-size: 11px;
    line-height: 19px;
    padding: 10px 16px;
    min-width: 90px;
  }
}
.profile-data .remove {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-25%, -25%);
  transform: translate(-25%, -25%);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .profile-data .remove {
    width: 24px;
    height: 24px;
  }
}
.profile-data .remove:hover {
  background-color: #e5e5e5;
}
.profile-data .remove svg {
  width: 14px;
  height: 14px;
}
@media (max-width: 575px) {
  .profile-data .remove svg {
    width: 12px;
    height: 12px;
  }
}

/****************** Start style teacher teaching data ******************/
.teacher-teaching-data {
  border: 1px solid #e5e5e5;
  padding: 25px 15px;
  border-radius: 10px;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .teacher-teaching-data {
    border-radius: 5px;
    padding: 15px 10px;
  }
}

.teaching-data-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 10px;
}
@media (max-width: 575px) {
  .teaching-data-box {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.teaching-section {
  background-color: var(--second-opacity-color);
  border-radius: 10px;
  padding: 15px 10px;
  text-align: center;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
  align-content: center;
}
@media (max-width: 575px) {
  .teaching-section {
    border-radius: 5px;
    padding: 10px 6px;
  }
}
.teaching-section .icon {
  margin-bottom: 4px;
}
.teaching-section .icon svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 575px) {
  .teaching-section .icon svg {
    width: 15px;
    height: 15px;
  }
}
.teaching-section .heading {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: var(--white-color);
}
@media (max-width: 575px) {
  .teaching-section .heading {
    font-size: 12px;
    line-height: 19px;
  }
}

.add-teaching-section {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #9cadc3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px dashed #9cadc3;
  border-radius: 10px;
  padding: 15px 10px;
  text-align: center;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .add-teaching-section {
    border-radius: 5px;
    padding: 15px 8px;
    font-size: 12px;
    line-height: 19px;
  }
}
.add-teaching-section:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}

/****************** End style teacher teaching data ********************/
/****************** Start style coming live ********************/
.coming-live {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 8px 20px;
  background-color: rgba(241, 245, 249, 0.4509803922);
  border-radius: 5px;
}
@media (max-width: 991px) {
  .coming-live {
    gap: 16px;
  }
}
@media (max-width: 575px) {
  .coming-live {
    gap: 12px;
    padding: 6px 12px;
  }
}
.coming-live:not(:last-child) {
  margin-bottom: 10px;
}
.coming-live .coming-live-data {
  display: -ms-grid;
  display: grid;
  gap: 40px;
  -ms-grid-columns: 1fr 40px 1.5fr 40px 2fr;
  grid-template-columns: 1fr 1.5fr 2fr;
}
@media (max-width: 991px) {
  .coming-live .coming-live-data {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .coming-live .coming-live-data {
    gap: 12px;
  }
}
.coming-live .live-data {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
  align-content: center;
}
.coming-live .live-data:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 100%;
  background-color: rgba(156, 173, 195, 0.5019607843);
  position: absolute;
  top: 0;
  left: -10px;
}
@media (max-width: 991px) {
  .coming-live .live-data:not(:last-child)::after {
    left: -5px;
  }
}
.coming-live .live-data .label {
  font-size: 11px;
  font-weight: 400;
  line-height: 19px;
  color: var(--second-color);
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .coming-live .live-data .label {
    font-size: 9px;
    line-height: 14px;
    margin-bottom: 2px;
  }
}
.coming-live .live-data .name {
  font-size: 12px;
  font-weight: 400;
  line-height: 21px;
  color: var(--main-color);
}
@media (max-width: 575px) {
  .coming-live .live-data .name {
    font-size: 11px;
    line-height: 17px;
  }
}
.coming-live .live-data .name.date {
  color: var(--red-color);
}
.coming-live .coming-live-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 35px;
}
@media (max-width: 1199px) {
  .coming-live .coming-live-action {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .coming-live .coming-live-action {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
  }
}
.coming-live .live-action {
  position: relative;
}
.coming-live .live-action svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 575px) {
  .coming-live .live-action svg {
    width: 15px;
    height: 15px;
  }
}
.coming-live .live-action svg path {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.coming-live .live-action:hover svg path {
  fill: var(--main-color);
}
.coming-live .live-action.delete:hover svg path {
  fill: var(--red-color);
}
.coming-live .live-action:hover .action-tooltip {
  display: block;
  opacity: 1;
}

.action-tooltip {
  font-size: 12px;
  font-weight: 400;
  line-height: 21px;
  color: var(--second-color);
  background-color: var(--main-color);
  border-radius: 5px;
  padding: 5px 12px;
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  display: none;
  opacity: 0;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .action-tooltip {
    font-size: 11px;
    line-height: 19px;
    padding: 4px 8px;
  }
}
.action-tooltip::after {
  content: '';
  border: 10px solid;
  border-color: var(--main-color) transparent transparent transparent;
  position: absolute;
  bottom: 5px;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
}

/****************** End style coming live **********************/
/*********************************************************************
  ************************ School Level pages **************************
  *********************************************************************/
.school-level-section {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px 20px;
}
@media (max-width: 991px) {
  .school-level-section {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}
@media (max-width: 575px) {
  .school-level-section {
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

.school-level {
  background-color: #d7f9f6;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
  align-content: center;
  cursor: pointer;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.school-level:hover {
  background-color: var(--main-color);
}
.school-level:hover .heading,
.school-level:hover .student-data {
  color: #fff;
}
@media (max-width: 575px) {
  .school-level {
    border-radius: 5px;
    padding: 16px 10px;
  }
}
.school-level .icon {
  margin-bottom: 10px;
}
.school-level .icon svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 575px) {
  .school-level .icon svg {
    width: 20px;
    height: 20px;
  }
}
.school-level .heading {
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  color: var(--main-color);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.school-level .heading:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .school-level .heading:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .school-level .heading {
    font-size: 14px;
    line-height: 22px;
  }
}
.school-level.special {
  background-color: var(--main-color);
}
.school-level.special .heading {
  color: #fff;
}
.school-level.special .school-level-button {
  color: #fff;
  background-color: var(--third-color);
}
.school-level.special .school-level-button:hover {
  background-color: var(--second-color);
}

.school-level-button {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
  background-color: var(--second-color);
  padding: 12px 24px;
  min-width: 140px;
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: auto;
  border-radius: 5px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .school-level-button {
    min-width: auto;
    padding: 8px 16px;
  }
}
.school-level-button:hover {
  color: #fff;
  background-color: var(--third-color);
}

/*********************************************************************
  ************************** subjects pages ****************************
  *********************************************************************/
.subjects-section-box {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px 20px;
}
@media (max-width: 991px) {
  .subjects-section-box {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}
@media (max-width: 575px) {
  .subjects-section-box {
    gap: 20px;
  }
}

.subjects-button {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
  background-color: var(--second-color);
  padding: 12px 24px;
  min-width: 140px;
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: auto;
  border-radius: 5px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .subjects-button {
    padding: 10px 20px;
    min-width: 110px;
  }
}
.subjects-button:hover {
  color: #fff;
  background-color: var(--main-color);
}

/****************** Start style teacher material lesson ********************/
.teacher-material-lesson {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background-color: #f8fafc;
  border-radius: 10px;
  min-width: 1000px;
}
@media (max-width: 575px) {
  .teacher-material-lesson {
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
    min-width: 800px;
  }
}
.teacher-material-lesson:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .teacher-material-lesson:not(:last-child) {
    margin-bottom: 10px;
  }
}
.teacher-material-lesson .check-recording {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid var(--text-color);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .teacher-material-lesson .check-recording {
    width: 20px;
    height: 20px;
  }
}
.teacher-material-lesson .check-recording svg {
  display: none;
  font-size: 14px;
  color: var(--text-color);
}
@media (max-width: 575px) {
  .teacher-material-lesson .check-recording svg {
    font-size: 12px;
  }
}
.teacher-material-lesson .check-recording.active {
  border-color: var(--second-color);
}
.teacher-material-lesson .check-recording.active svg {
  display: block;
  color: var(--second-color);
}
.teacher-material-lesson .image {
  width: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  border-radius: 10px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
@media (max-width: 575px) {
  .teacher-material-lesson .image {
    width: 80px;
    border-radius: 5px;
  }
}
.teacher-material-lesson .image img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.teacher-material-lesson .actions-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .teacher-material-lesson .actions-box {
    gap: 5px;
  }
}
.teacher-material-lesson .lesson-watch {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  padding: 12px 20px;
  background-color: var(--main-color);
  border-radius: 5px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .teacher-material-lesson .lesson-watch {
    font-size: 11px;
    line-height: 14px;
    padding: 8px 12px;
  }
  .teacher-material-lesson .lesson-watch svg {
    width: 14px;
    height: 14px;
  }
}
.teacher-material-lesson .lesson-watch svg path {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.teacher-material-lesson .lesson-watch:hover {
  background-color: var(--second-color);
}
.teacher-material-lesson .lesson-watch:hover svg path {
  fill: #fff;
}
.teacher-material-lesson .lesson-action {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  padding: 12px 20px;
  background-color: var(--third-color);
  border-radius: 5px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .teacher-material-lesson .lesson-action {
    font-size: 11px;
    line-height: 14px;
    padding: 8px 12px;
  }
  .teacher-material-lesson .lesson-action svg {
    width: 14px;
    height: 14px;
  }
}
.teacher-material-lesson .lesson-action svg path {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.teacher-material-lesson .lesson-action:hover {
  background-color: var(--second-color);
  color: #fff;
}
.teacher-material-lesson .lesson-action:hover svg path {
  fill: #fff;
}

.lesson-list-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 60px 1fr 60px 1fr;
  grid-template-columns: 2fr repeat(2, 1fr);
  gap: 60px;
}
@media (max-width: 1199px) {
  .lesson-list-box {
    gap: 40px;
  }
}
@media (max-width: 575px) {
  .lesson-list-box {
    gap: 30px;
  }
}
.lesson-list-box .list-item {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.lesson-list-box .list-item:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 100%;
  background-color: rgba(156, 173, 195, 0.368627451);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: -30px;
}
@media (max-width: 1199px) {
  .lesson-list-box .list-item:not(:last-child)::after {
    left: -20px;
  }
}
@media (max-width: 575px) {
  .lesson-list-box .list-item:not(:last-child)::after {
    left: -15px;
  }
}
.lesson-list-box .list-item .lesson-badge-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.lesson-list-box .list-item .lesson-badge {
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  color: white;
  margin-bottom: 5px;
  background-color: var(--second-color);
  border-radius: 5px;
  padding: 8px;
  width: 90px;
  text-align: center;
  display: block;
}
@media (max-width: 575px) {
  .lesson-list-box .list-item .lesson-badge {
    font-size: 9px;
    line-height: 14px;
    padding: 6px 12px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.lesson-list-box .list-item .lesson-badge.error {
  background-color: var(--red-color);
}
.lesson-list-box .list-item .lesson-badge.warning {
  background-color: var(--third-color);
  color: var(--main-color);
}
.lesson-list-box .list-item .title {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: var(--main-color);
}
@media (max-width: 575px) {
  .lesson-list-box .list-item .title {
    font-size: 12px;
    line-height: 17px;
  }
}
.lesson-list-box .list-item .lesson-link {
  font-size: 13px;
  font-weight: 400;
  line-height: 17px;
  color: #9cadc3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  text-decoration: underline;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.lesson-list-box .list-item .lesson-link svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 575px) {
  .lesson-list-box .list-item .lesson-link {
    font-size: 11px;
    line-height: 14px;
  }
  .lesson-list-box .list-item .lesson-link svg {
    width: 20px;
    height: 20px;
  }
}
.lesson-list-box .list-item .lesson-link:hover {
  color: var(--main-color);
}

/****************** End style teacher material lesson **********************/
/*********************************************************************
  *********************** addition codes pages *************************
  *********************************************************************/
.add-codes-section {
  max-width: 550px;
  margin: auto;
  background-color: #f8fbff;
  border-radius: 10px;
  padding: 55px;
}
@media (max-width: 575px) {
  .add-codes-section {
    padding: 20px 15px;
    border-radius: 5px;
  }
}
.add-codes-section .register-form label {
  background-color: #f8fbff;
}
.add-codes-section input,
.add-codes-section select,
.add-codes-section textarea {
  background-color: transparent;
}
.add-codes-section input:focus,
.add-codes-section select:focus,
.add-codes-section textarea:focus {
  background-color: transparent;
}

.addition-codes-section {
  max-width: 900px;
  margin: auto;
  max-height: 700px;
  overflow: auto;
}

.teacher-code-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.teacher-code-item:not(:last-child) {
  margin-bottom: 10px;
}
.teacher-code-item .addition-codes-box {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 10px 15px;
  border-radius: 5px;
  background-color: rgba(241, 245, 249, 0.4509803922);
}
@media (max-width: 575px) {
  .teacher-code-item .addition-codes-box {
    padding: 8px 12px;
  }
}
.teacher-code-item .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.teacher-code-item .number {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--main-color);
  width: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .teacher-code-item .number {
    width: 20px;
  }
}
.teacher-code-item .title {
  font-size: 11px;
  font-weight: 400;
  line-height: 19px;
  color: var(--second-color);
  margin-bottom: 4px;
}
@media (max-width: 575px) {
  .teacher-code-item .title {
    font-size: 10px;
    line-height: 14px;
    margin-bottom: 2px;
  }
}
.teacher-code-item .data {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--main-color);
}
@media (max-width: 575px) {
  .teacher-code-item .data {
    font-size: 12px;
    line-height: 17px;
  }
}
.teacher-code-item .data.excluded {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  color: var(--red-color);
}
.teacher-code-item .clipboard {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.fancybox-content {
  max-width: 50% !important;
  max-height: 50% !important;
}
/*********************************************************************
  ********************* materials library pages ************************
  *********************************************************************/
@media (max-width: 575px) {
  .library-heading {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px 12px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.library-heading .heading-box {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.library-taps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .library-taps {
    gap: 50px;
  }
}
@media (max-width: 575px) {
  .library-taps {
    gap: 30px;
  }
}
.library-taps .tap-item {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: #9cadc3;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.library-taps .tap-item:hover {
  color: var(--main-color);
}
.library-taps .tap-item:not(.collapsed) {
  position: relative;
  color: var(--main-color);
}
.library-taps .tap-item:not(.collapsed)::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--main-color);
  position: absolute;
  left: 50%;
  bottom: -5px;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  display: block;
}

.materials-library .image {
  position: relative;
  cursor: pointer;
}
.materials-library .image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .materials-library .image img {
    border-radius: 5px;
  }
}
.materials-library .video {
  position: relative;
  border-radius: 10px;
  cursor: pointer;
  background-color: rgba(4, 3, 73, 0.6980392157);
}
@media (max-width: 575px) {
  .materials-library .video {
    border-radius: 5px;
  }
}
.materials-library .video::before {
  /* content: "";
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background-color: rgba(4, 3, 73, 0.6980392157);
    position: absolute;
    left: 0;
    top: 0; */
}
.materials-library .video::after {
  content: '\f04b';
  font-size: 24px;
  font-family: 'Font Awesome 6 Free';
  font-weight: bold;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.materials-library .video img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.materials-library .library-badge {
  font-size: 12px;
  font-weight: 500;
  line-height: 21px;
  color: var(--main-color);
  background-color: var(--third-color);
  padding: 4px 16px;
  border-radius: 5px;
  position: absolute;
  top: 8px;
  right: 8px;
}
.materials-library .form-check-input {
  width: 16px;
  height: 16px;
  cursor: pointer;
  border: none;
  -webkit-box-shadow: 0px 0px 1px 1px #b6b6b6 inset;
  box-shadow: 0px 0px 1px 1px #b6b6b6 inset;
}
.materials-library .form-check-input.lebrary-checkbox {
  position: absolute;
  top: 10px;
  left: 10px;
}
.materials-library .form-check-input:focus {
  border: none;
}
.materials-library .form-check-input:checked {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%234AD168' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.materials-files {
  max-width: 900px;
  margin: auto;
}
.materials-files li:not(:last-child) {
  margin-bottom: 15px;
}
.materials-files .file-item {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 24px;
  border-radius: 10px;
  background-color: #f8fafc;
}
@media (max-width: 575px) {
  .materials-files .file-item {
    padding: 12px;
    border-radius: 5px;
    font-size: 12px;
    line-height: 17px;
  }
}
.materials-files .file-item svg {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .materials-files .file-item svg {
    width: 20px;
    height: 20px;
  }
}

.materials-library-box {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px 20px;
}
@media (max-width: 575px) {
  .materials-library-box {
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

.uploader-materials .file-field {
  border: 1px dashed #a3a3a3;
  border-radius: 10px;
  padding: 16px 24px;
  margin-bottom: 12px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .uploader-materials .file-field {
    padding: 12px 16px;
    border-radius: 5px;
  }
}
.uploader-materials .file-field.active {
  border-color: var(--main-color);
}
.uploader-materials .file-field.active label {
  color: var(--main-color);
}
.uploader-materials .file-field.active label svg path {
  fill: var(--main-color);
}
.uploader-materials .file-field label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  color: var(--text-color);
  cursor: pointer;
}
@media (max-width: 575px) {
  .uploader-materials .file-field label {
    font-size: 12px;
    line-height: 19px;
    gap: 5px;
  }
}
.uploader-materials .file-field label svg {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .uploader-materials .file-field label svg {
    width: 20px;
    height: 20px;
  }
}
.uploader-materials .file-field input[type='file'] {
  display: none;
}

/*********************************************************************
  ************************** students pages ****************************
  *********************************************************************/
.registered-student-list {
  max-height: 640px;
  overflow: auto;
}

.registered-student {
  padding: 20px;
  background-color: #f8fafc;
  border-radius: 10px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-width: 1050px;
}
@media (max-width: 575px) {
  .registered-student {
    min-width: 850px;
    padding: 10px;
    border-radius: 5px;
  }
}
.registered-student:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .registered-student:not(:last-child) {
    margin-bottom: 12px;
  }
}
.registered-student .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
@media (max-width: 575px) {
  .registered-student .box {
    gap: 8px;
  }
}
.registered-student .image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .registered-student .image {
    width: 40px;
    height: 40px;
  }
}
.registered-student .image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.registered-student .title {
  font-size: 11px;
  font-weight: 400;
  line-height: 19px;
  color: var(--second-color);
  margin-bottom: 4px;
}
@media (max-width: 575px) {
  .registered-student .title {
    font-size: 10px;
    line-height: 14px;
    margin-bottom: 2px;
  }
}
.registered-student .data {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--main-color);
}
@media (max-width: 575px) {
  .registered-student .data {
    font-size: 12px;
    line-height: 17px;
  }
}
.registered-student .data.excluded {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  color: var(--red-color);
}

.registered-student-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 60px 1fr 60px 1fr 60px 1fr 60px 1fr;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 60px;
}
@media (max-width: 1199px) {
  .registered-student-box {
    gap: 40px;
  }
}
@media (max-width: 575px) {
  .registered-student-box {
    gap: 30px;
  }
}
.registered-student-box .registered-student-data {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.registered-student-box .registered-student-data:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 100%;
  background-color: rgba(156, 173, 195, 0.368627451);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: -30px;
}
@media (max-width: 1199px) {
  .registered-student-box .registered-student-data:not(:last-child)::after {
    left: -20px;
  }
}
@media (max-width: 575px) {
  .registered-student-box .registered-student-data:not(:last-child)::after {
    left: -15px;
  }
}

.registered-student-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 575px) {
  .registered-student-actions {
    gap: 15px;
  }
}

.action-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  color: #9cadc3;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .action-link {
    font-size: 11px;
    line-height: 14px;
  }
}
.action-link.exclud {
  color: #9cadc3;
}
.action-link.exclud svg path {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.action-link.exclud:hover {
  color: var(--main-color);
}
.action-link.exclud:hover svg path {
  fill: var(--main-color);
}
.action-link.remove {
  color: var(--red-color);
}
.action-link.remove:hover {
  opacity: 0.6;
}

/*********************************************************************
  ************************** Recording pages ***************************
  *********************************************************************/
.start-recording {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: var(--main-color);
  width: 100%;
  max-width: 280px;
  margin: auto;
  background-color: var(--third-color);
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  padding: 16px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .start-recording {
    padding: 12px;
    max-width: 180px;
    border-radius: 5px;
  }
}
.start-recording svg path {
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.start-recording:hover {
  background-color: var(--main-color);
  color: #fff;
}
.start-recording:hover svg path {
  fill: #fff;
}

.lesson-recording-heading {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: #9cadc3;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 575px) {
  .lesson-recording-heading {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
  }
}

.recording-options-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .recording-options-box {
    gap: 16px;
  }
}

.recording-option {
  width: 190px;
  max-width: 100%;
  border: 1px solid #9cadc3;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
  align-content: center;
  cursor: pointer;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  position: relative;
}
.recording-option:hover,
.recording-option.active {
  background-color: var(--main-color);
  border-color: var(--main-color);
}
.recording-option:hover .heading,
.recording-option.active .heading {
  color: #fff;
}
.recording-option:hover .icon svg path,
.recording-option.active .icon svg path {
  fill: var(--second-color);
}
@media (max-width: 575px) {
  .recording-option {
    border-radius: 5px;
    padding: 20px 10px;
    width: calc((100% - 24px) / 2);
  }
}
.recording-option .icon {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.recording-option .icon svg {
  width: 24px;
  height: 24px;
}
.recording-option .icon svg path {
  fill: #9cadc3;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 575px) {
  .recording-option .icon svg {
    width: 20px;
    height: 20px;
  }
}
.recording-option .heading {
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  color: #9cadc3;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.recording-option .heading:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .recording-option .heading:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .recording-option .heading {
    font-size: 14px;
    line-height: 22px;
  }
}
.recording-option .option-checkbox {
  position: absolute;
  top: 12px;
  left: 12px;
  margin: 0;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border: 1px solid #9cadc3;
}
@media (max-width: 575px) {
  .recording-option .option-checkbox {
    width: 16px;
    height: 16px;
  }
}
.recording-option .option-checkbox:focus {
  border: 1px solid #9cadc3;
}
.recording-option .option-checkbox[type='radio']:checked {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%234AD168'/%3e%3c/svg%3e");
}
.recording-option .option-checkbox[type='checkbox']:checked {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23040349' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.recording-section {
  height: 500px;
  width: 100%;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.0784313725);
  box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.0784313725);
  border-radius: 30px;
}
.recording-section iframe {
  width: 100%;
  height: 100%;
}

/* Sama updates */

.card-container {
  width: 10em;
  text-align: center;
  line-height: 15px;
  margin: 0 auto;
  box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.05);
  padding: 1em;
}

.card-container1 {
  width: 10em;
  text-align: center;
  line-height: 15px;
}

.card-container h1,
.card-container1 h1 {
  font-size: 14px;
  font-weight: 700;
  vertical-align: middle;
  text-align: center;
}

.card-container .descrip,
.card-container1 .descrip {
  font-size: 10px;
  font-weight: 200;
  line-height: 22px;
  color: #9cadc3;
}

.card-container hr,
.card-container1 hr {
  border: 1px solid #9cadc3;
  width: 70%;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 15px;
}

.button {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
  background-color: var(--second-color);
  padding: 12px 0px;
  min-width: 120px;
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: auto;
  border-radius: 5px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}

@media (max-width: 575px) {
  .button {
    min-width: auto;
    padding: 8px 16px;
  }
}

.teacher-heading i {
  color: dark;
}

/* back home component */
.back {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #9cadc3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}

.back:hover {
  color: var(--main-color);
}

@media (max-width: 575px) {
  .back {
    font-size: 14px;
    line-height: 19px;
    gap: 5px;
  }
}

.back svg {
  font-size: 16px;
  color: var(--main-color);
}

@media (max-width: 575px) {
  .back svg {
    font-size: 12px;
  }
}

.descrip span {
  color: var(--main-color);
  font-weight: bold;
  margin-left: 5px;
  margin-right: 9px;
}

.small-item {
  margin-bottom: 10px;
}

.gallery {
  background: #eee;
}

.gallery-cell {
  width: 66%;
  height: 200px;
  margin-right: 10px;
  background: #8c8;
  counter-increment: gallery-cell;
}

/* cell number */
.gallery-cell:before {
  display: block;
  text-align: center;
  content: counter(gallery-cell);
  line-height: 200px;
  font-size: 80px;
  color: white;
}

.slick-teacher .slick-next {
  left: -47px;
  opacity: 0;
}

.slick-teacher .slick-prev {
  right: -46px;
  opacity: 0;
}

.tab-pane-teacher.fade {
  display: none;
}

.tab-pane-teacher.active.show {
  display: block;
}
/*  */
.success-rate .progress {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
}

.success-rate .progress:after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 8px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
}

.success-rate .progress > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.success-rate .progress .progress-left {
  left: 0;
}

.success-rate .progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 5px;
  border-style: solid;
  position: absolute;
  top: 0;
}

.success-rate .progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.success-rate .progress .progress-right {
  right: 0;
}

.success-rate .progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
  animation: loading-1 1.8s linear forwards;
}

.success-rate .progress .progress-value {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: transparent;
  font-size: 11px;
  color: var(--green-color);
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: 5%;
  left: 5%;
}
.registered-student.fail .success-rate .progress .progress-value {
  color: rgba(255, 0, 0, 1);
}
.success-rate .progress.green .progress-bar {
  border-color: #2b7238;
}
.registered-student.fail .success-rate .progress.green .progress-bar {
  border-color: rgba(255, 0, 0, 1);
}
.success-rate .progress.green .progress-left .progress-bar {
  animation: loading-2 1.5s linear forwards 1.8s;
}

.success-rate .progress.pink .progress-bar {
  border-color: #ed687c;
}

.success-rate .progress.pink .progress-left .progress-bar {
  animation: loading-4 0.4s linear forwards 1.8s;
}

.success-rate .progress.green .progress-bar {
  border-color: var(--green-color);
}

.success-rate .progress.green .progress-left .progress-bar {
  animation: loading-5 1.2s linear forwards 1.8s;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(144deg);
    transform: rotate(144deg);
  }
}

@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(36deg);
    transform: rotate(36deg);
  }
}

@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(126deg);
    transform: rotate(126deg);
  }
}

.completion-progress .range-container {
  position: relative;
}
.completion-progress input[type='range'] {
  -webkit-appearance: none;
  margin: 0 0;
  width: 190px;
  background-color: #b2b2b2;
  overflow: hidden;
  border-radius: 5px;
}

.completion-progress input[type='range']:focus {
  outline: none;
}

.completion-progress input[type='range'] + label {
  color: #38cb89;
  left: 60px;
  padding: 5px 0;
  position: absolute;
  text-align: center;
  top: -25px;
  width: 80px;
  font-size: 11px;
  font-weight: 700;
}
.progress-bar-slider .completion-progress input[type='range'] + label {
  color: #38cb89;
  left: unset;
  right: -15px;
  padding: 5px 0;
  position: absolute;
  text-align: center;
  top: -25px;
  width: 80px;
  font-size: 11px;
  font-weight: 700;
}
.progress-bar-slider .completion-progress.fail input[type='range'] + label {
  color: red;
}
.progress-bar-slider .completion-progress.start input[type='range'] + label {
  color: #afafcd;
  right: -32px;
}
/* Chrome & Safari */
.completion-progress input[type='range']::-webkit-slider-runnable-track {
  background: #38cb89;
  border-radius: 4px;
  cursor: pointer;
  height: 10px;
  width: 100%;
}
.completion-progress.fail input[type='range']::-webkit-slider-runnable-track {
  background: red;
}
.completion-progress input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: -210px 0 0 200px #b2b2b2;
  background-color: #38cb89;
  border-radius: 50%;
  cursor: pointer;
  height: 13px;
  margin-top: -2px;
  width: 13px;
}
.completion-progress.fail input[type='range']::-webkit-slider-thumb {
  background-color: red;
}
.completion-progress.start input[type='range']::-webkit-slider-thumb {
  background-color: #afafcd;
}

/* Firefox */
.completion-progress input[type='range']::-moz-range-track {
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.completion-progress input[type='range']::-moz-range-thumb {
  -webkit-appearance: none;
  background: #8e8e8e;
  box-shadow: -1010px 0 0 900px #8e8e8e;
  border-radius: 50%;
  cursor: pointer;
}

/* IE */
.completion-progress input[type='range']::-ms-track {
  border-radius: 4px;
  cursor: pointer;
  height: 13px;
  width: 100%;
}

.completion-progress input[type='range']::-ms-thumb {
  -webkit-appearance: none;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  height: 24px;
  margin-top: -7px;
  width: 24px;
}
.heading-desc {
  font-size: 11px;
  font-weight: 400;
  line-height: 14px;
  color: rgba(156, 173, 195, 1);
}
.heading-desc.color-black {
  color: rgba(4, 3, 73, 1);
}
.heading-desc.color-red {
  color: rgba(255, 0, 0, 1);
}
.text .mx-2.mt-1:hover,
.text .mx-2.mt-1:focus,
.text .mx-2.mt-1:active,
.text .mx-2.mt-1.active,
.lable-btn.active {
  color: var(--second-color) !important;
  cursor: pointer;
}
.comp-test,
.end-test {
  color: #9cadc3;
  padding: 1em;
  padding-top: 1.5em;
}
.comp-test:hover {
  background: #38cb89;
  transition: 0.5s;
  color: #fff;
}
.end-test:hover {
  background: red;
  transition: 0.5s;
  color: #fff;
}

.progress {
  width: 60px;
  height: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
.modal .progress {
  transform: scale(1.5);
}
.progress-bar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#007bff var(--progress, 0%), #e9ecef00 0%);
  z-index: 1;
}

.progress-bar.bg-success::before {
  background: conic-gradient(#7ae582 var(--progress, 0%), #e9ecef00 0%);
}

.fail .progress-bar.bg-success::before {
  background: conic-gradient(#dc3545 var(--progress, 0%), #e9ecef00 0%);
  transform: rotate(100deg);
}

.progress-bar.bg-success::before {
  transform: rotate(70deg);
}

.progress-bar.bg-danger::before {
  background: conic-gradient(#dc3545 var(--progress, 0%), #e9ecef00 0%);
}

.progress-bar span {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: 50px;
  padding: 23px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fail .text-success {
  --bs-text-opacity: 1;
  color: #dc3545 !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: #7ae582 !important;
}
.tab-pane {
  padding-top: 2em;
}
/* circle progress bar */
@property --progress-value {
  syntax: '<integer>';
  inherits: false;
  initial-value: 0;
}

@keyframes html-progress {
  to {
    --progress-value: 50;
  }
}

/* resbonsive */
@media only screen and (max-width: 990px) {
  .success-rate .progress {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .registered-student-data.first-registered::after {
    display: none;
  }
}
@media (max-width: 575px) {
  .teacher-code-item .addition-codes-box {
    padding: 8px 12px !important;
    text-align: center;
  }

  .teacher-code-item .addition-codes-box .form-check {
    padding-right: 5px;
    margin-bottom: 5px;
    padding-left: 5px;
  }

  .teacher-code-item .addition-codes-box .form-check label {
    font-size: 9px;
    margin: 1px 0px 0px 20px !important;
  }
  .teacher-code-item .addition-codes-box .heading {
    font-size: 14px;
  }
  .slick-teacher {
    width: 230px !important;
  }

  .slick-teacher .slick-next {
    left: -26px;
    opacity: 0;
  }

  .slick-teacher .slick-prev {
    right: -26px;
    opacity: 0;
  }
}
@media (max-width: 992px) {
  .completion-progress input[type='range'] {
    width: 150px;
  }
  .teacher-heading {
    padding-bottom: 19px;
    margin-bottom: 20px;
    gap: 10px;
    /* display: block; */
    margin: auto;
    text-align: center;
  }
  .student-heading {
    padding-bottom: 19px;
    margin-bottom: 20px;
    gap: 10px;
    display: block;
    margin: auto;
    text-align: center;
  }
  .teacher-heading a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .lesson-recording-options {
    margin-top: 2em;
  }
  .registered-student .registered-student-data-desc {
    margin-top: 0.5em;
    /* margin-right: -1.5em; */
    text-align: center;
  }
  .registered-student-list {
    text-align: center;
  }
  .registered-student-list li {
    display: block;
  }
}
@media (min-width: 767px) {
  .modal-content {
    width: 600px;
  }
}
.recording-options-box.my-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 575px) {
  .recording-options-box.my-box {
    gap: unset;
    overflow-x: auto;
    gap: 5px;
    margin: 0 !important;
  }
}
#my-tabs .slick-teacher .slick-next {
  left: -47px;
  opacity: 0;
}
#my-tabs .slick-teacher .slick-prev {
  right: -46px;
  opacity: 0;
}
@media (max-width: 575px) {
  #my-tabs .slick-teacher .slick-next {
    left: -26px;
    opacity: 0;
  }
  #my-tabs .slick-teacher .slick-prev {
    right: -26px;
    opacity: 0;
  }
}

/* Sama updates */

.card-container {
  /* width: 10em; */
  text-align: center;
  line-height: 15px;
  margin: 0 auto;
  box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.05);
  padding: 1em;
  min-width: 11em;
  max-width: 11em;
  max-height: 13em;
  /* min-height: 13em; */
  overflow: auto;
}

.card-container1 {
  width: 10em;
  text-align: center;
  line-height: 15px;
}

.card-container h1,
.card-container1 h1 {
  font-size: 14px;
  font-weight: 700;
  vertical-align: middle;
  text-align: center;
}

.card-container .descrip,
.card-container1 .descrip {
  font-size: 10px;
  font-weight: 200;
  line-height: 22px;
  color: #9cadc3;
}

.card-container hr,
.card-container1 hr {
  border: 1px solid #9cadc3;
  width: 70%;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 15px;
}

.button {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
  background-color: var(--second-color);
  padding: 12px 0px;
  min-width: 120px;
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: auto;
  border-radius: 5px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}

@media (max-width: 575px) {
  .button {
    min-width: auto;
    padding: 8px 16px;
  }
}

.teacher-heading i {
  color: dark;
}

/* back home component */
.back {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #9cadc3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}

.back:hover {
  color: var(--main-color);
}

@media (max-width: 575px) {
  .back {
    font-size: 14px;
    line-height: 19px;
    gap: 5px;
  }
}

.back svg {
  font-size: 16px;
  color: var(--main-color);
}

@media (max-width: 575px) {
  .back svg {
    font-size: 12px;
  }
}

.descrip span {
  color: var(--main-color);
  font-weight: bold;
  margin-left: 5px;
  margin-right: 9px;
}

.small-item {
  margin-bottom: 10px;
}

.gallery {
  background: #eee;
}

.gallery-cell {
  width: 66%;
  height: 200px;
  margin-right: 10px;
  background: #8c8;
  counter-increment: gallery-cell;
}

/* cell number */
.gallery-cell:before {
  display: block;
  text-align: center;
  content: counter(gallery-cell);
  line-height: 200px;
  font-size: 80px;
  color: white;
}

.slick-teacher .slick-next {
  left: -47px !important;
  opacity: 0;
}

.slick-teacher .slick-prev {
  right: -46px !important;
  opacity: 0;
}

.tab-pane-teacher.fade {
  display: none;
}

.tab-pane-teacher.active.show {
  display: block;
}
/*  */
.success-rate .progress {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
}

.success-rate .progress:after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 8px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
}

.success-rate .progress > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.success-rate .progress .progress-left {
  left: 0;
}

.success-rate .progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 5px;
  border-style: solid;
  position: absolute;
  top: 0;
}

.success-rate .progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.success-rate .progress .progress-right {
  right: 0;
}

.success-rate .progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
  animation: loading-1 1.8s linear forwards;
}

.success-rate .progress .progress-value {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: transparent;
  font-size: 11px;
  color: var(--green-color);
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: 5%;
  left: 5%;
}
.registered-student.fail .success-rate .progress .progress-value {
  color: rgba(255, 0, 0, 1);
}
.success-rate .progress.green .progress-bar {
  border-color: #2b7238;
}
.registered-student.fail .success-rate .progress.green .progress-bar {
  border-color: rgba(255, 0, 0, 1);
}
.success-rate .progress.green .progress-left .progress-bar {
  animation: loading-2 1.5s linear forwards 1.8s;
}

.success-rate .progress.pink .progress-bar {
  border-color: #ed687c;
}

.success-rate .progress.pink .progress-left .progress-bar {
  animation: loading-4 0.4s linear forwards 1.8s;
}

.success-rate .progress.green .progress-bar {
  border-color: var(--green-color);
}

.success-rate .progress.green .progress-left .progress-bar {
  animation: loading-5 1.2s linear forwards 1.8s;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(144deg);
    transform: rotate(144deg);
  }
}

@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(36deg);
    transform: rotate(36deg);
  }
}

@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(126deg);
    transform: rotate(126deg);
  }
}

.completion-progress .range-container {
  position: relative;
}
.completion-progress input[type='range'] {
  -webkit-appearance: none;
  margin: 0 0;
  width: 190px;
  background-color: #b2b2b2;
  overflow: hidden;
  border-radius: 5px;
}

.completion-progress input[type='range']:focus {
  outline: none;
}

.completion-progress input[type='range'] + label {
  color: #38cb89;
  left: 60px;
  padding: 5px 0;
  position: absolute;
  text-align: center;
  top: -25px;
  width: 80px;
  font-size: 11px;
  font-weight: 700;
}
.progress-bar-slider .completion-progress input[type='range'] + label {
  color: #38cb89;
  left: unset;
  right: -15px;
  padding: 5px 0;
  position: absolute;
  text-align: center;
  top: -25px;
  width: 80px;
  font-size: 11px;
  font-weight: 700;
}
.progress-bar-slider .completion-progress.fail input[type='range'] + label {
  color: red;
}
.progress-bar-slider .completion-progress.start input[type='range'] + label {
  color: #afafcd;
  right: -32px;
}
/* Chrome & Safari */
.completion-progress input[type='range']::-webkit-slider-runnable-track {
  background: #38cb89;
  border-radius: 4px;
  cursor: pointer;
  height: 10px;
  width: 100%;
}
.completion-progress.fail input[type='range']::-webkit-slider-runnable-track {
  background: red;
}
.completion-progress input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: -210px 0 0 200px #b2b2b2;
  background-color: #38cb89;
  border-radius: 50%;
  cursor: pointer;
  height: 13px;
  margin-top: -2px;
  width: 13px;
}
.completion-progress.fail input[type='range']::-webkit-slider-thumb {
  background-color: red;
}
.completion-progress.start input[type='range']::-webkit-slider-thumb {
  background-color: #afafcd;
}

/* Firefox */
.completion-progress input[type='range']::-moz-range-track {
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.completion-progress input[type='range']::-moz-range-thumb {
  -webkit-appearance: none;
  background: #8e8e8e;
  box-shadow: -1010px 0 0 900px #8e8e8e;
  border-radius: 50%;
  cursor: pointer;
}

/* IE */
.completion-progress input[type='range']::-ms-track {
  border-radius: 4px;
  cursor: pointer;
  height: 13px;
  width: 100%;
}

.completion-progress input[type='range']::-ms-thumb {
  -webkit-appearance: none;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  height: 24px;
  margin-top: -7px;
  width: 24px;
}
.heading-desc {
  font-size: 11px;
  font-weight: 400;
  line-height: 14px;
  color: rgba(156, 173, 195, 1);
}
.heading-desc.color-black {
  color: rgba(4, 3, 73, 1);
}
.heading-desc.color-red {
  color: rgba(255, 0, 0, 1);
}
.text .mx-2.mt-1:hover,
.text .mx-2.mt-1:focus,
.text .mx-2.mt-1:active,
.text .mx-2.mt-1.active,
.lable-btn.active {
  color: var(--second-color) !important;
  cursor: pointer;
}
.comp-test,
.end-test {
  color: #9cadc3;
  padding: 1em;
  padding-top: 1.5em;
}
.comp-test:hover {
  background: #38cb89;
  transition: 0.5s;
  color: #fff;
}
.end-test:hover {
  background: red;
  transition: 0.5s;
  color: #fff;
}

.progress {
  width: 60px;
  height: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
.modal .progress {
  transform: scale(1.5);
}
.progress-bar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#007bff var(--progress, 0%), #e9ecef00 0%);
  z-index: 1;
}

.progress-bar.bg-success::before {
  background: conic-gradient(#7ae582 var(--progress, 0%), #e9ecef00 0%);
}

.fail .progress-bar.bg-success::before {
  background: conic-gradient(#dc3545 var(--progress, 0%), #e9ecef00 0%);
  transform: rotate(100deg);
}

.progress-bar.bg-success::before {
  transform: rotate(70deg);
}

.progress-bar.bg-danger::before {
  background: conic-gradient(#dc3545 var(--progress, 0%), #e9ecef00 0%);
}

.progress-bar span {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: 50px;
  padding: 23px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fail .text-success {
  --bs-text-opacity: 1;
  color: #dc3545 !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: #7ae582 !important;
}
.tab-pane {
  padding-top: 2em;
}
/* circle progress bar */
@property --progress-value {
  syntax: '<integer>';
  inherits: false;
  initial-value: 0;
}

@keyframes html-progress {
  to {
    --progress-value: 50;
  }
}
/* new edits 9\6*/
.classess-view h1 {
  font-size: 14px;
}
.classess-view p {
  font-size: 12px;
}
.classess-view .items div {
  border-radius: 15px;
}
.classess-view .items.web .my-3 {
  width: 20%;
}
.classess-view .card-container hr,
.classess-view .card-container1 hr {
  width: 100%;
}
.classess-view .card-container {
  width: 12em;
  /* margin: 0px 9px; */
}
.classess-view .card-container .button {
  padding: 8px 0px;
}
.items.web {
  max-width: 100%;
  flex-wrap: wrap;
}
.classess-view .card-container .button:hover {
  color: #fff;
  background-color: var(--main-color);
}
.recording-options-box.my-box {
  margin-top: -20px !important;
}
.custom-checkbox2 .form-check-input {
  margin: 0;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  width: 24px;
  height: 24px;
  cursor: pointer;
  border: 1px solid #9cadc3;
}
.custom-checkbox2 .form-check-input:checked,
input[type='checkbox']:checked,
.custom-checkbox3 .form-check-input:checked {
  border: 2px solid var(--second-color);
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%2306d9c8' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.my-addition-section ul li img,
.my-addition-section ul li svg {
  max-width: 150px;
  max-height: 100px;
  /* margin: 10px; */
}

.my-box .recording-option:hover .sub-heading,
.my-box .recording-option.active .sub-heading {
  color: var(--second-color);
}
.question-span {
  color: var(--second-color) !important;
}
.teacher-code-item:not(:last-child) {
  margin-bottom: -30px;
}

.popup img {
  cursor: pointer;
}
/*.show{*/
/*  z-index: 999;*/
/*}*/
.showw {
  z-index: 999;
  display: none;
}
.show .overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.66);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
.show .img-show {
  width: 600px;
  height: 400px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  position: fixed;
}
.img-show span {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 99;
  cursor: pointer;
  background: #fff;
  border-radius: 50px;
  padding-top: 5px;
  width: 25px;
  height: 25px;
  text-align: center;
}
.img-show img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  max-width: 100% !important;
  max-height: 100% !important;
  /* object-fit: contain; */
}
body {
  position: relative;
}
@media (max-width: 767px) {
  .show .img-show {
    width: 100%;
    height: 250px;
  }
}
/* new section */
.completion-progress input[type='range'] + label {
  left: unset;
  right: 0;
  width: unset;
}
.card-body .text-start a svg {
  font-size: 11px !important;
  line-height: 14px !important;
}
.card-body .text-start a:nth-of-type(2) svg {
  margin: 0px 5px;
}
.register-form .input-field .icon.chevron {
  position: unset;
  top: unset;
  left: unset;
  font-size: unset;
  color: unset;
}
.ui.popup.calendar {
  direction: ltr;
}
.ui.calendar .ui.table.day {
  min-width: 25em;
}
/* h1,
h2,
h3,
h4,
h5 {
  font-family: 'Monadi', sans-serif !important;
} */
.recording-option .option-checkbox2 {
  position: absolute;
  top: 12px;
  left: 12px;
  margin: 0;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border: 1px solid #9cadc3;
  border-radius: 50%;
}
.recording-option .option-checkbox2[type='checkbox']:checked {
  background-color: #4ad168;
  border: 4px solid #fff;
}
.recording-option:hover .icon svg path,
.recording-option.active .icon svg path {
  fill: var(--second-color);
}
.recording-option .icon svg path,
.recording-option .icon svg path {
  fill: var(--second-color);
}
.recording-option {
  width: 240px;
  height: 217px;
  max-width: 100%;
}
.groups .recording-option {
  width: 192px;
  height: 110px;
  max-width: 100%;
}
.groups .recording-option:hover .heading,
.groups .recording-option.active .heading {
  color: var(--second-color);
}
[dir='rtl'] .slick-prev {
  right: unset !important;
}

.container.py-2.mx-5 .card-body {
  padding-top: 2em;
}

.groups-title {
  display: block;
  text-align: center;
  margin: auto;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: #9cadc3;
  margin-bottom: 10px;
  text-align: center;
}
.select2-container {
  width: 300px !important;
  margin-bottom: -1em;
  max-width: 100%;
}
.select2-container--default .select2-selection--multiple {
  /* border: solid black 1px; */
  border: 1px solid #aaa !important;
  outline: 0;
  border-radius: 10px;
  /* height: 40px; */
  /* width: 500px; */
  margin: auto;
  /* text-align: center; */
  display: block;
}

.register-form {
  max-width: 700px !important;
}
.answers .text-start.mx-2.form-check.custom-checkbox2.lable-btn.w-50.p-2 {
  width: 50px !important;
}
.addition-codes-section.my-addition-section.mt-4 {
  max-width: unset !important;
  margin: auto;
  max-height: unset !important;
  overflow: unset !important;
}
.select2-container--default.select2-container--focus
  .select2-selection--multiple {
  /* min-height: 230px !important; */
}
.card-container .descrip {
  height: 40px;
}
/*End style*/

/* resbonsive */
@media only screen and (max-width: 990px) {
  .success-rate .progress {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .registered-student-data.first-registered::after {
    display: none;
  }
}
@media (max-width: 575px) {
  .teacher-code-item .addition-codes-box {
    padding: 8px 12px !important;
    text-align: center;
  }

  .teacher-code-item .addition-codes-box .form-check {
    padding-right: 5px;
    margin-bottom: 5px;
    padding-left: 5px;
  }

  .teacher-code-item .addition-codes-box .form-check label {
    font-size: 9px;
    margin: 1px 0px 0px 20px !important;
  }
  .teacher-code-item .addition-codes-box .heading {
    font-size: 14px;
  }
  .slick-teacher {
    width: 300px !important;
  }

  .slick-teacher .slick-next {
    left: -26px !important;
    opacity: 0;
  }

  .slick-teacher .slick-prev {
    right: -26px !important;
    opacity: 0;
  }
}
@media (max-width: 992px) {
  .completion-progress input[type='range'] {
    width: 150px;
  }
  .teacher-heading {
    padding-bottom: 19px;
    margin-bottom: 20px;
    gap: 10px;
    /* display: block; */
    margin: auto;
    text-align: center;
  }
  .student-heading {
    padding-bottom: 19px;
    margin-bottom: 20px;
    gap: 10px;
    display: block;
    margin: auto;
    text-align: center;
  }
  .teacher-heading a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .lesson-recording-options {
    margin-top: 2em;
  }
  .registered-student .registered-student-data-desc {
    margin-top: 0.5em;
    /* margin-right: -1.5em; */
    text-align: center;
  }
  .registered-student-list {
    text-align: center;
  }
  .registered-student-list li {
    display: block;
  }
}
@media (min-width: 767px) {
  .modal-content {
    width: 600px;
  }
}
.recording-options-box.my-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 575px) {
  .recording-options-box.my-box {
    gap: unset;
    overflow-x: auto;
    gap: 5px;
    margin: 0 !important;
  }
}
.slick-teacher .slick-next {
  left: -47px !important;
  opacity: 0;
}
.slick-teacher .slick-prev {
  right: -46px !important;
  opacity: 0;
}
@media (max-width: 575px) {
  .slick-teacher .slick-next {
    left: -26px !important;
    opacity: 0;
  }
  .slick-teacher .slick-prev {
    right: -26px !important;
    opacity: 0;
  }
}
/* new responsive 9/6 */
@media (max-width: 575px) {
  .classess-view .card-container .button {
    padding: 8px 40px;
  }
}
@media (max-width: 1300px) {
  .classess-view .items.web .my-3 {
    width: 25%;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .classess-view .card-container .button {
    min-width: 100px;
  }
  .classess-view .card-container {
    width: 9em;
  }
}
@media (max-width: 767px) {
  .teacher-heading.uploader-materials h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .text-center.mt-5 .button {
    padding: 5px 10px 0px 10px;
  }
  .recording-options-box.my-box {
    margin-top: 1.2em !important;
  }
  .my-addition-section ul li img {
    max-width: 90px;
  }
  .show .img-show {
    width: 100%;
  }
  .teacher-code-item .content {
    flex-direction: column;
  }
  .ui.calendar .ui.table.day {
    min-width: 18em;
  }
  .ui.form .fields {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .register-form {
    margin-top: 3em !important;
  }
  .register-form .input-field .icon.srch {
    top: 18px;
  }
  .custom-select label {
    transform: translate(0px, -5px);
  }
}
@media (min-width: 767px) and (max-width: 1300px) {
  .register-form {
    max-width: 100% !important;
  }
}
@media (min-width: 767px) {
  .addition-codes-box.p-4 .box-between .content .text {
    min-width: 500px;
    max-width: 500px;
  }
}
/* new home page */
.home-desc {
  position: absolute;
  top: 44%;
  left: 0;
  width: 519.42px;
  /* height: 351px; */
  border-radius: 11.32px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 4px 57px 0px rgba(0, 0, 0, 0.15);
  padding: 2%;
  text-align: end;
  z-index: -1;
}
.home-shape {
  position: absolute;
  top: 72%;
  left: 8%;
  animation: moving 1.5s linear infinite;
}
.home-banners .image .img-1 {
  mix-blend-mode: luminosity;
}
.home-banners .image {
  position: relative;
}
.home-banners .image .img-2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.home-banners .image .img-3 {
  position: absolute;
  top: -15%;
  right: 0;
  /* z-index: -1; */
}
.video-span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.video-span span:nth-child(1) {
  background: var(--main-color);
  border-radius: 50%;
  width: 50px;
  display: inline-block;
  height: 50px;
  text-align: center;
  /* line-height: 2.3; */
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-span span:nth-child(2) {
  color: rgba(204, 204, 204, 1);
}
.desc-btns {
  margin-bottom: 1.5rem;
}
.desc-btns .second-button {
  font-size: 14px;
  width: 200px;
}
.desc-btns .second-button::after {
  display: none;
}
.home-banners .heading {
  font-size: 55px;
  font-weight: 700;
  line-height: 72px;
  color: var(--main-color);
}
.home-banners p {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-align: right;
  padding-left: 5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.dark .home-banners p {
  color: var(--white-color);
}
.desc-btns2 {
  margin-top: 2rem;
}
.main-heading.two .desc-btns {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-space.two {
  padding: 0;
}
.main-space.two .name {
  font-size: 28px;
  font-weight: 700;
  line-height: 47.32px;
  text-align: right;
  color: var(--main-color);
  margin: 1.5rem 0 0.5rem 0;
}
.dark .main-space.two .name {
  color: var(--white-color);
}
.clients-slider {
  /* width: 754px; */
  /* height: 241px; */
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.32);
  color: var(--white-color);
  padding: 1.5rem 3rem;
}
.clients-slider h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 19.92px;
  text-align: right;
  margin: 0.5rem 0;
  margin-top: 1rem;
}
.clients-slider h6 {
  font-size: 12px;
  font-weight: 700;
  line-height: 19.92px;
  text-align: right;
}
.home-banners.clients-slider p {
  padding-left: unset;
  margin-bottom: unset;
  margin-top: 0.5rem;
}
.clients-slider .banners-slider .swiper-pagination {
  padding: unset;
}
.clients-slider .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: 0;
  left: 0;
  width: unset;
}
.home-statistics.twwo .main-heading.two .special-word {
  margin-bottom: unset;
  color: var(--white-color);
}
.home-statistics.twwo .main-heading.two .desc-btns {
  justify-content: start;
}
.home-statistics.twwo .second-button {
  background: rgba(255, 255, 255, 0.34);
  border: unset;
}
.dark .video-span span:nth-child(1) {
  background: var(--white-color);
}
.dark .video-span span:nth-child(1) svg path {
  fill: var(--main-color);
}
.main-search .register-form {
  max-width: 100% !important;
}
@media (max-width: 991px) {
  .home-heading {
    display: block;
  }
  .main-section {
    padding: 100px 15px;
  }
  .home-header .sign-buttons {
    margin-top: 1.5rem;
    justify-content: start;
  }
  .home-desc {
    width: 60%;
    top: 67%;
    padding-top: 0.5rem;
  }
  .home-scenes {
    width: unset;
  }
  .home-scenes img {
    width: 100%;
    /* margin-top: 5%; */
    /* animation: moving 1.5s linear infinite; */
    margin-right: -3rem;
  }
  .home-heading {
    padding: 0;
  }
  .home-desc .heading,
  .home-desc .special-word2 {
    font-size: 30px;
  }
  .home-desc .special-word3 {
    font-size: 20px;
  }
  .home-scenes svg {
    position: absolute;
    top: -33%;
    /* right: 6%; */
    z-index: -1;
    animation: moving 1.5s linear infinite;
    width: 100%;
  }
  .home-shape {
    display: none;
  }
  .statistics {
    width: 100%;
    text-align: start;
    box-shadow: unset;
  }
  .main-space {
    padding: 30px 0;
    width: 90%;
  }
  .home-statistics::after {
    background-repeat: unset;
    background-position: bottom;
  }
  .home-banners .image.one {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .sign-buttons.desc-btns {
    gap: 2px;
  }
  .sign-buttons.desc-btns li {
    display: inline-block;
    width: 100%;
  }
  .desc-btns .second-button {
    width: unset;
  }
  .video-span {
    gap: 5px;
  }
  .video-span span:nth-child(1) {
    margin: unset;
  }
  .home-banners .heading {
    font-size: 30px;
  }
  .home-banners p {
    padding-left: 0;
  }
  .sign-buttons {
    justify-content: start;
  }
  .home-banners.main-space.two .desc-btns .second-button {
    width: 60%;
  }
  .main-heading {
    text-align: start;
  }
  .main-heading.two .special-word {
    margin-bottom: unset;
  }
  .main-heading.space {
    margin-bottom: unset;
  }
  .desc-btns {
    margin-bottom: unset;
  }
  .main-heading.space.two {
    margin-top: 5rem;
    margin-bottom: 1.5rem;
  }
  .record {
    margin-bottom: 2rem;
  }
  .home-statistics.twwo {
    padding: 20px;
    margin: 50px auto;
  }
  .main-heading.space.two.me-two {
    margin-top: unset;
  }
  .main-heading.space.two.me-two .desc-btns .second-button {
    width: 60%;
    margin-bottom: 1rem;
  }
  .clients-slider {
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
  }
  .swiper {
    padding: 3rem 0;
  }
  .clients-slider .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    top: unset;
    left: unset;
    bottom: 15px;
    right: 0;
    width: unset;
  }
  .banners-slider .swiper-pagination {
    text-align: start !important;
  }
  .home-statistics {
    border-radius: 20px;
  }
  #footer ul.social-footer {
    order: 2;
  }
  #footer .copywrite {
    order: 3;
  }
}
