@import url("https://fonts.cdnfonts.com/css/neo-sans-arabic");

#_preload_div_ {
  height: 90px !important;
  width: 90px !important;
  left: calc(50% - 45px) !important;
  top: calc(50% - 45px) !important;
}

#_preload_div_ > span {
  height: 0 !important;
}

html {
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

* svg {
  transition: all 0.2s linear 0s;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  border-radius: 7px;
}
::-webkit-scollbar-thumb {
  background: #ccc;
}
.show-range-container.cus-hidden {
  position: relative;
  z-index: 0;
  margin-top: -90px;
}

body {
  /* font-family: Montserrat, Tajawal, sans-serif; */
  font-weight: 500;
  color: rgb(51, 51, 51);
  min-height: 100vh;
}

body.ar {
  direction: rtl;
  font-family: "Neo Sans Arabic", sans-serif;
  font-weight: 500;
}

body.ar * {
  letter-spacing: 0px !important;
}

body.subscribe {
  background-color: #eef4f6;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  appearance: none;
}

input::placeholder {
  font-size: inherit;
}

[type="email"] {
  direction: rtl;
}

:root {
  --dark: #f9a91d;
  --green: #086eae;
  --lightSeaBlue: #dcf4f6;
  --darkSeaBlue: #3ec4cc;
  --lightred: #fc8a89;
  --bggray1: #f8f8f8;
  --bcolor2: #b297c7;
}

.main-title {
  text-align: center;
  padding-bottom: 15px;
}

.main-title h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto 30px;
  font-weight: bold;
}

.main-title h2::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../imgs/main-tilte.png) no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  box-shadow: 0 0 0 10px white;
  border-radius: 50%;
}

.main-title h2::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background-color: var(--green);
  border-radius: 20px;
}
@media (min-width: 768px) {
  .main-title p {
    width: 60%;
    margin: 0 auto;
  }
}

.section-title h2 {
  color: var(--green);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.section-title p:not(.alt-title) {
  font-size: 1.5rem;
  line-height: 40px;
}

.float-title {
  position: absolute;
  bottom: -135px;
  left: 10%;
  background-image: linear-gradient(180deg, #43b254, #169e71);
  width: 200px;
  height: 150px;
  padding: 20px;
  border-radius: 15px;
  color: white;
}

.float-title.dark {
  background: var(--dark);
}

.float-title h2 {
  position: relative;
}

.float-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 25%;
  height: 5px;
  background: var(--dark);
  border-radius: 20px;
}

.float-title.dark h2::after {
  background-color: var(--green);
}

p.alt-title {
  padding: 7px 30px;
  background: rgb(39 164 103 / 15%);
  width: fit-content;
  border-radius: 50px;
  color: var(--green);
}
.audio-list {
  max-width: 750px;
  margin-inline: auto;
  margin-block: 2rem;
}
.audio-list .title h5 {
  color: var(--green);
}
.player {
  padding: 20px;
  max-width: 750px;
  margin-inline: auto;
  direction: ltr;
  &:not(:last-child) {
    margin-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
  }
}
.player h4 {
  width: 125px;
  flex-shrink: 0;
  text-align: start;
}

.buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  border-radius: 30px 30px 0 0;
  background-color: #172542;
  color: white;
  margin-top: 20px;
}

.repeat-track,
.random-track,
.playpause-track,
.prev-track,
.next-track {
  padding: 10px 20px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.repeat-track:hover,
.random-track:hover,
.playpause-track:hover,
.prev-track:hover,
.next-track:hover {
  opacity: 1;
  color: #27a467;
}

.slider_container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.seek_slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 95%;
  height: 10px;
  background: #ced7e3;
  border-radius: 50px;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.seek_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: #172542;
  border: 3px solid #172542;
  cursor: grab;
  border-radius: 100%;
}

.seek_slider:hover {
  opacity: 1;
}

.current-time,
.total-duration {
  position: absolute;
  top: -25px;
}

.current-time {
  left: 3%;
}

.total-duration {
  right: 3%;
}

i,
i.fa-play-circle,
i.fa-pause-circle,
i.fa-step-forward,
i.fa-step-backward {
  cursor: pointer;
}

.randomActive,
.fa.fa-pause-circle {
  color: #27a467;
}

.like-btn,
.like-btn path {
  text-decoration: none;
  transition: all 0.18s linear 0s;
}

.absolute {
  position: absolute;
}

.scrollbar-track {
  opacity: 1 !important;
  background: rgb(238, 238, 238) !important;
  width: 12px !important;
  border-radius: 10px;
}

.scrollbar-thumb {
  background: rgb(255, 255, 255) !important;
  border-radius: 20px !important;
  left: 2px !important;
}

.cc-list .scrollbar-track {
  opacity: 1 !important;
  background: rgb(237, 239, 247) !important;
  width: 12px !important;
}

.cc-list .scrollbar-thumb {
  background: var(--green) !important;
  border-radius: 20px !important;
  left: 2px !important;
}

.content--page h1 {
  display: none;
}

.form-floating > label {
  letter-spacing: -0.12px;
  color: rgb(205, 205, 205);
  margin-inline-start: 15px;
}

.light-blue-txt {
  color: var(--green);
}

.dark-blue-txt {
  color: var(--dark);
}

.red-txt {
  color: var(--lightred);
}

.jello:hover {
  animation-name: jello;
  animation-duration: 0.75s;
}

.headShake:hover {
  animation-name: headShake;
  animation-duration: 0.75s;
}

fieldset {
  /* width: 100%; */
  margin-inline: auto;
  margin-bottom: 20px;
  padding: 0 10px 10px;
  border-radius: 10px;
  border: 2px groove rgb(192, 192, 192);
}

legend {
  float: none;
  width: fit-content;
  padding-inline: 10px;
  margin-bottom: 0px;
  font-size: 1rem !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0px;
}

.like-btn,
.like-btn path,
button:focus,
button,
.btn:focus,
.btn,
.form-control:focus,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.input:focus,
.input:hover,
.input:active {
  outline: none;
  box-shadow: none;
}

.form-control:focus {
  background-color: #f9f9fb;
}

.fill-bg {
  position: relative;
}

.fill-bg::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  width: 0px;
  transition: all 0.5s cubic-bezier(0.73, 0, 0.24, 1) 0s;
  z-index: -1;
}

.fill-bg:hover::before {
  width: 100%;
}

.fill-light-blue.fill-bg::before {
  background: var(--dark);
}

.fill-light-blue:hover {
  color: rgb(255, 255, 255) !important;
}

@keyframes nav {
  0% {
    top: -100px;
  }

  100% {
    top: 0px;
  }
}

.fixed-top {
  background: white;
  box-shadow: rgba(0, 0, 0, 0.11) 0px 0px 13px;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.63, 0.29, 0.12, 0.91);
  padding-left: 20px;
  padding-right: 20px;
  animation-name: nav !important;
  position: fixed !important;
  border-bottom: 0px !important;
  height: 100px;
  display: flex;
  align-items: center;
  /* z-index: 1050000000000000 !important; */
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: unset;
  }
}

#toTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  left: auto;
  cursor: pointer;
  background: var(--green);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
}

#whatsapp {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 30px;
  left: 30px;
  cursor: pointer;
  background: var(--green);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  font-size: 30px;
}
#whatsapp a {
  line-height: 0.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

header .filters-links a,
a,
a:hover,
a:focus,
a:active,
.breadcrumb li a::before,
.breadcrumb li a::after {
  text-decoration: none;
  transition: all 0.18s linear 0s;
}

ul {
  list-style: none;
}

p,
ul {
  margin: 0;
  padding: 0;
}

a,
a:hover {
  color: inherit;
}

input,
input:hover {
  transition: all 0.18s linear 0s !important;
}

::placeholder {
  font-size: 13px;
}

.ltr {
  display: inline-block;
  direction: ltr !important;
}

body.en .lang-link .en {
  display: none;
}

body.en .flip-on-lang {
  transform: scale(-1);
}

body.ar .lang-link .ar {
  display: none;
}

body.ar .owl-carousel {
  direction: ltr;
}

body.ar .owl-carousel .item {
  direction: rtl;
}

.relative {
  position: relative;
}

.fa-star.full {
  color: #f7c04d;
}
.primary-text {
  color: var(--green);
}

.light-blue-text {
  color: var(--darkSeaBlue);
}

.dark-blue-text {
  color: var(--dark);
}

.red-text {
  color: var(--lightred);
}

.content {
}

@media (max-width: 991px) {
  .offcanvas-collapse {
    position: fixed;
    top: 56px;
    bottom: 0px;
    left: 100%;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    visibility: hidden;
    background-color: rgb(52, 58, 64);
    transition: transform 0.3s ease-in-out 0s, visibility 0.3s ease-in-out 0s;
  }

  .offcanvas-collapse.open {
    visibility: visible;
    transform: translateX(-100%);
  }
}

iframe {
  width: 100%;
}

.footer-link {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  text-align: center;
  font-size: 15px;
}

.social-links {
  display: flex;
  margin-top: 20px;
}

.social-bar {
  background-color: #015e9b;
}

.social-links a {
  display: flex;
  width: 64px;
  height: 64px;
  background: var(--green);
  border-radius: 500px;
  color: white;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
  margin-inline-end: 9px;
}

.social-links.not-footer a {
  width: 60px;
  height: 60px;
  font-size: 35px;
}

.social-links a:last-child {
  margin-inline-end: 0px;
}

.social-links a:hover {
  background: var(--dark);
  color: rgb(255, 255, 255) !important;
}

.navbar-brand svg {
  width: 80px;
  height: auto;
}

.topbar {
  background-color: var(--green);
  position: relative;
}

.topbar-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.topbar .content {
  width: 93%;
  margin-inline: auto;
}
.topbar select {
  background-color: transparent;
  color: white;
  border: none;
}
.topbar select:focus {
  outline: none;
  border: none;
}
.topbar select option {
  color: var(--green);
}

.language::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1rem;
  width: 1px;
  height: 15px;
  background-color: white;
}

.topbar-icon a:hover,
.topbar-contact a:hover {
  color: white !important;
}

header {
  background-color: var(--dark);
  position: absolute;
  left: 0px;
  right: 0px;
  z-index: 100;
}

header .notification {
  position: relative;
}
header .notification .count {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--green);
  color: white;
  display: grid;
  place-content: center;
}

header .notification svg {
  color: var(--green);
  font-size: 27px;
}
header .notification .notification-list p {
  font-size: 12px;
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}
header .notification .notification-box {
  position: absolute;
  top: 50px;
  left: -50px;
  width: 285px;
  display: none;
}
header .notification .notification-box .notification-list {
  max-height: 280px;
  overflow: auto;
}
header .notification .notification-box .see-all {
  color: var(--green);
}
header .navbar-brand img {
  max-width: 140px;
}
@media (max-width: 576px) {
  header .navbar-brand img {
    max-width: 135px;
  }
}
#my-account {
  position: relative;
}
#my-account button {
  background: transparent;
  border: none;
  color: var(--green);
  font-weight: 500;
}
#my-account button .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  background-color: var(--green);
  display: grid;
  place-content: center;
  font-size: 17px;
  overflow: hidden;
}
#my-account button .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#my-account button span {
  position: relative;
}
#my-account button span::after {
  content: "\f107"; /* استبدل هذا بالرمز الخاص بالإصدار 4.7 الذي تريده */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  font-family: "FontAwesome";
  font-weight: 900;
}
#my-account .account-list {
  position: absolute;
  background: white;
  top: 65px;
  width: 200px;
  left: 0;
  border-radius: 6px;
  padding: 10px;
  display: none;
}
#my-account .account-list .dropdown-item {
  border-radius: 7px;
}
#my-account .account-list .dropdown-item:active {
  background-color: var(--green);
}
.navbar {
  width: 93%;
  margin-inline: auto;
}

.offcanvas-body .box {
  overflow: auto;
}

.offcanvas-body .box::-webkit-scrollbar {
  display: none;
}
.offcanvas-foo .copyright {
  color: white;
  font-size: 14px;
  direction: ltr;
  background-color: var(--green);
}

.navbar-nav {
  width: max-content;
}

/*
.navbar-expand-lg .offcanvas-body {
  overflow: auto;
}
.navbar-expand-lg .offcanvas-body::-webkit-scrollbar {
  display: none;
} */

.subs-btns,
.nav-item {
  flex-shrink: 0;
}

.subs-btns .login {
  border-radius: 200px;
}
.subs-btns .singin {
  color: var(--green);
  border: 1px solid;
  border-radius: 200px;
}

.not-front header {
  position: relative;
  left: 0px;
  right: 0px;
  z-index: 10;
  background: white;
  padding-block: 6px;
  z-index: 22;
  height: 100px;
  display: flex;
  align-items: center;
}

.not-front header .logo {
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
}
.fixed-top .logo {
  top: -30px !important;
}

.nav-container .navbar-nav li a.nav-link.active,
.nav-container a.nav-link,
.nav-container a.nav-link:hover {
  color: var(--dark);
  width: fit-content;
}

/* @media only screen and (max-width: 991px) {
  .offcanvas a.active,
  .offcanvas a {
    color: rgb(17, 17, 17) !important;
  }
} */

.navbar-nav li a {
  position: relative;
  padding-inline: 0px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.navbar-nav li a::before {
  content: "";
  position: absolute;
  height: 3px;
  min-width: 0px;
  width: 0px;
  bottom: 0px;
  border-radius: 10px;
  transition: all 0.22s ease-in-out 0s;
}

.navbar-nav li a.active::before {
  width: 18px;
}

.navbar-nav li a:hover::before {
  width: calc(100% - 16px);
}

.nav-container a::before {
  background: var(--green);
}

.dropdown-menu a,
.dropdown-menu a:hover {
  background: transparent;
  width: calc(100% - 15px);
  color: rgb(51, 51, 51) !important;
  padding: 5px 15px !important;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-toggle svg {
  margin-inline-start: 10px;
}

.fixed-top .dropdown-toggle svg path {
  fill: rgb(66, 155, 213);
}

.offcanvas-header .navbar-brand svg {
  width: 60px;
}

.menu-2 {
  display: flex;
  margin-bottom: 0px;
  align-items: center;
}

.menu-2 a {
  transition: all 0.25s linear 0s;
}

.menu-2.logged-in a {
  margin-inline-end: 9px;
  border-radius: 500px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-2.logged-in li:nth-child(2) a {
  background: var(--green);
}

.menu-2.logged-in li:nth-child(3) a {
  background: var(--lightred);
}

.menu-2.logged-in a svg {
  width: 16px;
}

.menu-2 li:last-child a {
  margin-inline-end: 0px;
}

.menu-2.not-logged-in a {
  font-size: 14px;
  margin-inline-end: 9px;
  padding-block: 6px;
}

.menu-2.not-logged-in li:last-child a {
  margin-inline-end: 0px;
}

.nav-avatar img {
  border-radius: 500px;
  width: 40px;
  height: 40px;
  background: white;
  transition: all 0.2s;
}

.nav-avatar:hover img {
  opacity: 0.8;
}

.login-link {
  display: flex;
  background: var(--green);
  color: rgb(255, 255, 255);
  padding: 8px 15px;
  border-radius: 500px;
}

.login-link:hover {
  background: var(--lightred);
  color: rgb(255, 255, 255);
}

.register-link {
  text-decoration: underline;
}

.register-link:hover {
  color: var(--green) !important;
}

body.en .menu-2 .lang {
  padding-bottom: 8px !important;
}

.dashboard-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-nav-container .menu-2 .lang,
.menu-2 .lang {
  border-radius: 100px;
  border: 1px solid var(--green);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: unset;
  background: rgb(255, 255, 255) !important;
  padding: 0px !important;
  color: var(--green) !important;
}

.carousel-indicators {
  bottom: -100px;
}

.carousel-indicators [data-bs-target] {
  width: 7px;
  height: 7px;
  border: 0px !important;
  border-radius: 20px;
}

.carousel-indicators .active[data-bs-target] {
  background-color: var(--dark);
  width: 30px;
}

.dashboard-nav-container .menu-2 .lang:hover,
.dashboard-nav-container .menu-2 .lang:focus,
.menu-2 .lang:hover,
.menu-2 .lang:focus {
  background: var(--green) !important;
  color: rgb(255, 255, 255) !important;
}

.main-slider {
  /* background-color: #f7f7f7; */
  /* background: url("../imgs/hero-mask.svg") 50% 50% / cover; */
  color: white;
  padding-top: 60px;
  padding-bottom: 50px;
  /* border-radius: 0 0 55px 55px; */
}

.main-slider > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-slider.not-front {
  background-color: white;
  background-image: none;
}

.main-slider .container {
  position: relative;
}

.main-slider h1 span {
  color: var(--green);
  line-height: 1.7;
}

.slider-img-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.slider-img-item img {
  max-width: 100%;
}

.slider-content {
  display: flex;
  align-items: center;
}

.slider-links {
  display: flex;
  margin-top: 25px;
}

.bordered-link,
.slider-links a {
  border-radius: 500px;
  padding: 6px 25px;
  margin-inline-end: 10px;
  margin-bottom: 15px;
  border: 2px solid transparent;
  justify-content: center;
  align-items: center;
  display: flex !important;
  font-size: 18px;
}

/*
.bordered-link:last-of-type,
.slider-links a:last-of-type {
  margin-inline-end: 0;
} */

.slider-links a:hover {
  box-shadow: rgba(255, 255, 255, 0.09) 0px 0px 0px 8px;
}

.btn-shape {
  border-radius: 200px;
  padding: 6px 16px;
}

.slider-links a:last-child {
  margin-inline-end: 0px;
}

.btn.btn-primary,
.green-link {
  color: rgb(255, 255, 255);
  border: 2px solid var(--green);
  background-color: var(--green) !important;
  border-color: var(--green);
}

.yellow-link {
  color: rgb(255, 255, 255);
  border: 2px solid var(--dark);
  background-color: var(--dark) !important;
  border-color: var(--dark);
}

.btn.btn-primary:hover,
.green-link:hover {
  color: var(--green);
  background-color: rgb(255, 255, 255) !important;
}

.yellow-link:hover {
  color: var(--dark);
  background-color: rgb(255, 255, 255) !important;
}
.green-link.disabled {
  color: black !important;
  background-color: #ccc !important;
  border-color: #ccc !important;
  cursor: not-allowed;
}
.course-summery a {
  margin-inline: 10px;
  margin-bottom: 10px;
}

.dark-blue-link {
  background-color: var(--dark);
  color: rgb(255, 255, 255);
  border: 2px solid var(--dark) !important;
  width: max-content;
}

.dark-blue-link:hover {
  background-color: rgb(255, 255, 255);
  color: var(--dark);
  border: 2px solid var(--dark) !important;
}

.red-link {
  background-color: var(--lightred);
  color: rgb(255, 255, 255);
  border-color: var(--lightred);
}

.red-link:hover {
  background-color: rgb(255, 255, 255);
  color: var(--lightred);
  border-color: rgb(255, 255, 255);
}

.white-link {
  background-color: rgb(255, 255, 255);
  color: var(--green);
  border-color: rgb(255, 255, 255);
}

.white-link:hover {
  background-color: var(--green);
  color: rgb(255, 255, 255);
  border-color: var(--green);
}

.sea-link {
  background-color: rgb(39 164 103 / 15%);
  color: var(--green);
  border: 1px solid transparent;
  border-radius: 50px;
}

.sea-link:hover {
  background-color: transparent;
  color: var(--green);
  border: 1px solid rgb(39 164 103 / 15%);
}

.grey-link {
  background-color: rgba(128, 128, 128, 0.15);
  color: black;
  border: 1px solid transparent;
  border-radius: 50px;
}

.grey-link:hover {
  background-color: transparent;
  border: 1px solid rgba(128, 128, 128, 0.15);
}

.slider-video-link {
  display: flex;
  background: rgb(255, 255, 255);
  min-width: 200px;
  border-radius: 200px;
  padding-block: 10px;
  padding-inline: 10px 0px;
  margin-top: -20px;
  justify-content: center;
  position: relative;
  color: var(--dark);
}

.slider-video-link svg {
  position: absolute;
  left: 0px;
  right: 0px;
  margin-inline: 8px auto;
}

.slider-dots-bg {
  position: absolute;
  width: 100%;
  z-index: 0;
  top: 20px;
}

.under-slider {
  margin-top: -100px;
}

.box-block {
  display: flex;
  align-items: center;
  border-radius: 40px;
  background: rgb(255, 255, 255);
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 20px;
}

.box-block .block-title h2 {
  color: rgb(17, 17, 17);
  font-size: 130%;
}

.block-1 {
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.block-1 span {
  font-size: 90%;
}

.title-arrow {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.box-block svg {
  width: 40px;
}

.box-block svg path {
  fill: var(--green);
}

.block-1 img {
  width: 35px;
  height: auto;
}

.block-1 h3 {
  color: var(--green);
  font-size: 110%;
  margin-block: 10px;
}

.float-box {
  position: absolute;
  min-height: 180px;
  min-width: 180px;
  display: flex;
  padding-bottom: 20px;
  flex-direction: column;
  justify-content: space-between;
}

.box2-block {
  border-radius: 15px;
  background: rgb(255, 255, 255);
  align-items: center;
  overflow: hidden;
}

.box2-block-title {
  padding: 3px 7px;
  background: rgb(39, 141, 186);
  width: 100%;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  font-size: 13px;
  display: flex;
}

.float-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding: 6px 15px 5px;
  background: var(--green);
}

.float-header .close svg path {
  transition: all 0.2s linear 0s;
}

.float-header .close:hover {
  cursor: pointer;
}

.float-header .close:hover svg path {
  fill: var(--lightred);
}

.float-body {
  display: flex;
  flex-direction: column;
  margin-block: 12px;
  color: initial;
  align-items: center;
}

.float-body > span:first-child {
  margin-bottom: 15px;
}

.float-header svg {
  width: 14px;
  height: 14px;
}

.section-1 {
  margin-top: 70px;
}

.site-id {
  /* background-image: url("../imgs/mosques.png"); */
  background-size: cover;
}

.achievements {
  /* background-image: url("../imgs/achievements-mask.png"); */
  position: relative;
}

.achievements .container {
  position: relative;
  z-index: 10;
}

.achievements::after {
  content: "  ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff0e5;
  z-index: 0;
}

.achievements.vision::after {
  background-color: rgb(23 37 66 / 0.7);
}

@media (min-width: 1199px) {
  .achievements-item:nth-child(2),
  .achievements-item:nth-child(4) {
    margin-top: -50px;
  }
}

.achievements-item p {
  color: var(--green);
}

.statistics-list {
  background-color: #fafafa;
  font-size: 14px;
}

.levels .row {
  width: 95%;
  max-width: 1600px;
  margin-inline: auto;
}

@media (min-width: 1600px) {
  .levels .row > .custom-col-5 {
    flex: 0 0 auto;
    width: 20%;
  }
}

.level-card {
  border-radius: 10px;
  box-shadow: 0 0 10px #f3f3f3;
}

.level-card-head {
  background-color: var(--dark);
  border-radius: 10px 10px 0 0;
}

.level-title {
  padding: 20px 0 10px;
}

.card-img img {
  margin-top: -55px;
}

.level-title h2,
.level-price h2,
.subject-price h2 {
  color: var(--green);
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  height: 44px;
  line-height: 23px;
  font-size: 15px;
  padding-inline: 32px;
}

.svg-box {
  width: 100px;
  height: 100px;
  margin-inline: auto;
  display: grid;
  place-content: center;
}

.low-price h4 {
  color: #707070;
  text-decoration: line-through;
  margin-right: 1rem;
}

.low-price p {
  background: white;
  border: 3px solid #eee;
  padding: 5px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--green);
  font-weight: bold;
}

.level-btns a {
  padding: 7px 0px;
  border-radius: 50px;
  font-weight: normal;
  text-align: center;
  display: inline-block;
}

.level-card .cc-rate {
  font-size: 100%;
}

.slide-container {
  background: #1f6554;
  border-radius: 30px;
  padding: 20px 30px;
}
@media (max-width: 767px) {
  .slide-container {
    width: 100% !important;
  }
  .testimonials-section .carousel .carousel-control-prev,
  .testimonials-section .carousel .carousel-control-next {
    display: none;
  }
}

.slide-item {
  justify-content: space-evenly;
  background: #27a367;
  border-radius: 40px;
  padding: 30px;
  padding-bottom: 50px;
}

.slide-item .col-lg-3 {
  align-self: center;
}

.slide-item p {
  font-size: 18px;
  line-height: 2.3;
}

@media (min-width: 768px) {
  .carousel-inner {
    width: calc(100% - 80px);
    margin-inline: auto;
  }
}

.carousel-control-next,
.carousel-control-prev {
  background-color: white;
  width: fit-content;
  height: fit-content;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  right: 0%;
}

.carousel-control-next {
  left: 0%;
}

.carousel-control-next span,
.carousel-control-prev span {
  color: black;
  font-size: 40px;
  border: 3px solid;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
}

.carousel-control-next span i,
.carousel-control-prev span i {
  line-height: 25px;
}

.clients {
  background-color: #f3f4f4;
  /* background-image: url(../imgs/clients-overlay.png); */
  background-position: 50% 50%;
  background-size: auto;
  background-repeat: no-repeat;
}

.clients::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -5%;
  width: 110%;
  height: 25px;
  background-image: url(../imgs/wave.png);
  background-size: cover;
  background-position: bottom;
  display: none;
}

.clients::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: -5%;
  width: 110%;
  height: 25px;
  background-image: url(../imgs/wave.png);
  background-size: cover;
  background-position: top;
  display: none;
}

.details-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000084;
  z-index: 20;
}

/* .details-video video {
  margin-bottom: -7px;
} */

.play-details-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  border: 2px solid;
  border-radius: 50%;
  font-size: 30px;
  width: 80px;
  height: 80px;
  padding-left: 5px;
  cursor: pointer;
  text-align: center;
  line-height: 80px;
  z-index: 30;
}

.details-video.hide::after {
  display: none;
}

.play-details-video.hide {
  display: none;
}

.details-body,
.write-comment {
  border: 1px solid rgb(202, 202, 202);
  border-radius: 10px;
}

.details-body > div:not(:first-of-type) {
  display: none;
}

.content.expandable p {
  font-size: 18px;
}

.content.expandable p {
  position: relative;
  margin-right: 25px;
}

.content.expandable .row p::before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  color: #5fcf80;
  top: 0;
  right: -12px;
  font-size: 18px;
}

.dashboard-header .navbar-nav .nav-link {
  color: var(--dark);
}
.dashboard-header .navbar-nav .nav-link.active {
  color: var(--green);
}

.subject-item:not(:last-child) {
  border-bottom: 1px solid #dee2e6;
}

.subjects-box {
  direction: ltr;
  max-height: 977.8px;
  overflow-y: auto;
  overflow-x: hidden;
}

::-webkit-scrollbar-thumb {
  background: white;
  border-radius: 10px;
  border: 6px solid #e2e2e2;
}

.subjects-box::-webkit-scrollbar {
  background-color: #e2e2e2;
  width: 20px;
  border-radius: 10px;
}

.subjects-list {
  direction: rtl;
}

.subjects-list::before {
  content: "";
  position: absolute;
  top: 60px;
  right: 1.25rem;
  width: 2px;
  height: calc(100% - 130px);
  background: #aaa;
}

.subject-item::before {
  content: attr(data-rank);
  position: absolute;
  top: 60px;
  right: -47px;
  width: 40px;
  height: 40px;
  background: #e2e2e2;
  text-align: center;
  border-radius: 50%;
  color: 172542;
  font-size: 27px;
  transition: 0.3s;
}

.subject-item:hover::before {
  color: white;
  background-color: var(--green);
}

.owl-item {
  padding: 24px;
}

.item {
  box-shadow: 0 10px 20px 0 #e8e8e8;
  border-radius: 22px;
  padding: 20px;
}

.owl-carousel .owl-item img {
  max-width: 100px;
  display: inline-block;
}

.teacher-profile {
  font-size: 18px;
}

.teacher-avatar img {
  max-width: 100px;
}

.write-comment .rating h5 {
  color: #6f7074;
}

.write-comment .rating-stars {
  direction: ltr;
}

.write-comment .rating-stars label {
  color: #d4e1f4;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.write-comment .rating-stars label:hover {
  color: #fc9d1b;
}

.write-comment .rating-stars #star1:checked ~ label,
.write-comment .rating-stars .star1:hover ~ label {
  color: #fc9d1b;
}

.write-comment .rating-stars #star2:checked ~ label,
.write-comment .rating-stars .star2:hover ~ label {
  color: #fc9d1b;
}

.write-comment .rating-stars #star3:checked ~ label,
.write-comment .rating-stars .star3:hover ~ label {
  color: #fc9d1b;
}

.write-comment .rating-stars #star4:checked ~ label,
.write-comment .rating-stars .star4:hover ~ label {
  color: #fc9d1b;
}

.write-comment .rating-stars #star5:checked ~ label,
.write-comment .rating-stars .star5:hover ~ label {
  color: #fc9d1b;
}

.write-comment input[type="text"]::placeholder {
  font-size: 1.25rem;
}

.write-comment input[type="text"] {
  border: 2px solid #ddd;
}

.write-comment input[type="text"]:focus {
  outline: none;
}

.study-head > div:not(:last-child) {
  position: relative;
}

.study-head > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 2px;
  height: 100px;
  background-color: var(--dark);
}

.icon-boxs img {
  height: 22px;
}

.study-stages {
  width: 95%;
  margin-inline: auto;
  max-width: 1600px;
}

.study-stage {
  margin-bottom: 15px;
}

.stage-head {
  background-color: #f7f7f7;
  border-radius: 15px;
  padding: 15px;
  position: relative;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .study-stage {
    margin-right: 90px;
    position: relative;
  }

  .study-stage:not(:last-of-type)::before {
    content: "";
    position: absolute;
    top: 17%;
    right: -54px;
    width: 3px;
    height: 100%;
    background-color: var(--dark);
  }

  .stage-head img {
    position: absolute;
    width: 75px;
    right: -90px;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 767px) {
  .stage-head img {
    width: 10%;
  }
}

.stage-head h3 {
  color: var(--green);
}

.stage-head .icons-box {
  position: relative;
}

.stage-head .icons-box::before,
.stage-head .icons-box::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 100px;
  background-color: var(--dark);
  display: none;
}

@media (min-width: 1200px) {
  .stage-head .icons-box::after {
    right: 6px;
    display: block;
  }
}

@media (min-width: 768px) {
  .stage-head .icons-box::before {
    left: 6px;
    display: block;
  }
}

@media (max-width: 1399px) {
}
.stage-subjects {
  overflow-y: hidden;
  overflow-x: auto;
  padding: 5px 0 70px 25px;
  height: 560px;
}

.overlay-head {
  background: url(../imgs/about.png) 0% 0% / cover no-repeat;
  position: relative;
}
.main-about {
  background-color: #feeee4;
}

.about-hero {
  margin-bottom: -100px;
}

@media (max-width: 767px) {
  .about-hero {
    margin-bottom: -30px;
  }
}

.about-us {
  background-color: #fcfcfc;
}
.about-us .about-card p {
  color: black;
}
.about-us .about-card:nth-child(1) > div {
  background-color: #eeeefe;
}
.about-us .about-card:nth-child(1) h4 {
  color: #4e4ecc;
}
.about-us .about-card:nth-child(2) > div {
  background-color: #ffebeb;
}
.about-us .about-card:nth-child(2) h4 {
  color: #ff3536;
}
.about-us .about-card:nth-child(3) > div {
  background-color: #d4fef1;
}
.about-us .about-card:nth-child(3) h4 {
  color: #00c48d;
}
.about-us .about-card:nth-child(4) > div {
  background-color: #ffedd4;
}
.about-us .about-card:nth-child(4) h4 {
  color: #c67f1c;
}

.overlay-head::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(39 164 103 / 80%);
}

.social-box .contact-box {
  background: #fff;
  box-shadow: 0 2px 25px #00000011;
  padding: 20px;
  border-radius: 5px;
  min-height: 288px;
  display: grid;
  place-content: center;
}

.social-box .contact-box span {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 48px #00000011;
  display: block;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 30px;
}

.social-box .contact-box a:hover {
  color: var(--green);
}

.overlay-head div {
  position: relative;
  max-width: 500px;
  text-align: center;
  color: white;
  margin-inline: auto;
  z-index: 10;
}

.stage-subjects::-webkit-scrollbar {
  height: 8px;
}

.contact-form {
  max-width: 700px;
  margin-inline: auto;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  outline: none;
  border: 1px solid #ddd;
  padding: 15px;
  margin-block: 10px 15px;
  border-radius: 5px;
}

.form-control,
.form-select {
  padding: 1rem;
}

.form-select:focus {
  border-color: rgb(39 164 103 / 50%);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(39 164 103 / 25%);
}

.subs-card {
  background-color: white;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
}

.subs-card img {
  max-width: 140px;
}

.subs-card h5 {
  width: max-content;
  margin-inline: auto;
}

.plans-box {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
}

.plan-item label {
  background: #f1f7f9;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  user-select: none;
  display: block;
}
.plan-item label span {
  font-size: 13px;
}

.plan-item p span {
  color: red;
}

.plan-item input {
  display: none;
}

.plan-item input:checked + label {
  border: 1px solid var(--green);
}

.plan-item.active h5 {
  color: var(--green);
}

.plan-item > span {
  position: absolute;
  left: 15px;
  top: 10px;
  font-size: 90%;
}

.plan-features li {
  margin-bottom: 20px;
  position: relative;
  margin-right: 25px;
  padding-right: 10px;
}

.plan-features li::before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  color: #5fcf80;
  top: 0;
  right: -25px;
  font-size: 18px;
  background: rgb(39 164 103 / 10%);
  width: 30px;
  text-align: center;
  border-radius: 50%;
  height: 30px;
  line-height: 30px;
}

.statistic {
  background-color: white;
  box-shadow: 0 0 15px 0 #eee;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
}

.statistic h2 {
  color: var(--green);
}

.vision,
.message {
  overflow: hidden;
}

.vision .container > h2 {
  margin-left: 7%;
  color: white;
  width: fit-content;
  margin-inline-start: auto;
}

.values-list li {
  margin: 0 25px 15px 0;
  position: relative;
  font-size: 20px;
}

.values-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background-image: url(../imgs/circle.png);
  width: 13px;
  height: 13px;
}

.message {
  background: url(../imgs/message-bg.png) 0% 50% / cover no-repeat;
}

.message p {
  max-width: 450px;
  line-height: 1.8;
}

.level-item {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 15px;
}

.level-item.dark {
  background-color: var(--dark);
  color: white;
}

.level-item.dark div:nth-child(2) p {
  color: green;
}

.level-item img {
  width: 75px;
  margin-inline-end: 10px;
}

.level-item h3 {
  color: green;
}

.branch {
  display: flex;
  background-color: var(--bggray1);
  border: 3px solid var(--bggray1);
  border-radius: 8px;
  align-items: center;
  padding: 5px 10px;
  margin: 15px 0px;
  justify-content: center;
}

.branch:hover {
  background: rgb(255, 255, 255);
}

.branch img {
  margin-inline-end: 12px;
  width: 44px;
  height: auto;
}

.h-shape-underlined {
  position: relative;
  display: flex;
  margin-bottom: 30px;
  font-size: 220%;
}

.h-shape-underlined span {
  position: relative;
}

.h-shape-underlined span::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 14px;
  background: url(../imgs/line.svg) 0% 0% / 100% no-repeat;
  bottom: -20px;
  left: 0px;
  margin-inline: auto 10px;
}

.center-title .h-shape-underlined {
  display: flex;
  justify-content: center;
}

.watch-video {
  color: var(--green);
}

.watch-video i {
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  background: white;
  box-shadow: 0 0px 10px 0 #e5e5e5;
  border-radius: 50%;
  margin-inline-end: 1rem;
}

.custom-col {
  position: relative;
  margin-block: 5px 10px;
  transition: 0.5s;
}

.course-type {
  position: absolute;
  right: 0px;
  top: 25px;
  font-size: 80%;
  width: 125px;
  height: 30px;
  line-height: 30px;
  padding-right: 10px;
  background: var(--dark);
  color: white;
  z-index: 10;
}

.course-type span {
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.course-type::after {
  content: "";
  position: absolute;
  left: -29px;
  top: 0;
  border: 15px solid var(--dark);
  border-left-color: transparent;
}

.course-card {
  background: white;
  box-shadow: rgb(202 202 202 / 20%) 0px 0px 12px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s;
}

.course-card .cc-title a {
  height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}

.stage-subjects .course-card {
  width: 350px;
  flex-shrink: 0;
}
@media (min-width: 1550px) {
  .stage-subjects .course-card {
    max-width: calc(calc(100% - 6rem) / 5);
  }
}
.course-card:hover,
.single-blog:hover,
.trainer-card:hover {
  /* transform: scale(1.02); */
  box-shadow: rgb(202 202 202 / 40%) 0px 0px 12px;
  /* margin-bottom: -65px !important; */
  z-index: 15;
}

.single-blog h3 a {
  transition: 0.3s;
}
.single-blog:hover h3 a {
  color: var(--green);
}

@media (max-width: 767px) {
  .course-card:hover,
  .trainer-card:hover {
    /* margin-bottom: -59px !important; */
  }

  .single-blog:hover {
    /* margin-bottom: -38px !important; */
  }
}

.course-card:hover > a {
  display: block;
}

.cc-image img {
  width: 100%;
}

.course-card .cc-image img {
  height: 250px;
  object-fit: cover;
}

.cc-row-1 {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cc-row-1 > span:first-child {
  display: flex;
  flex-wrap: wrap;
}

.cc-row-1 > span a {
  display: flex;
  font-size: 82%;
  padding: 3px 10px;
  border-radius: 50px;
  margin-inline-end: 10px;
  background: rgb(66, 155, 214);
  color: rgb(255, 255, 255);
  margin-block: 1px 4px;
  flex-shrink: 0;
}

.cc-row-1 > span a:last-child {
  margin-inline-end: 0px;
}

.cc-row-1 > span a:first-child {
  background: var(--green);
  color: rgb(255, 255, 255);
  border: 2px solid var(--green);
}

.cc-row-1 > span a:last-child {
  background: rgb(229, 239, 245);
  color: var(--green);
  border: 2px solid rgb(229, 239, 245);
}

.cc-row-1 > span a:last-child:hover {
  background: rgb(255, 255, 255);
  color: var(--green);
}

.cc-row-1 > span a:first-child:hover {
  background: rgb(255, 255, 255);
  color: var(--green);
}

.cc-title {
  padding-inline: 10px;
  font-size: 84%;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  height: 24px;
  line-height: 23px;
  font-size: 15px;
}

.cc-title h6 {
  color: var(--green);
}

.hide-link {
  display: none !important;
}

/* .course-card > a {
  display: none;
} */

.next-course .cc-row-1 > span a:nth-child(2) {
  background: rgb(229, 239, 245);
  color: var(--green);
  border: 2px solid rgb(229, 239, 245);
}

.next-course .cc-row-1 > span a {
  font-size: 70%;
}

.next-course .cc-row-1 > span a:nth-child(3) {
  background: rgb(220, 244, 246);
  color: rgb(62, 196, 204);
  border: 2px solid rgb(220, 244, 246);
}

.cc-rate {
  display: flex;
  color: rgb(153, 153, 153);
  width: 100%;
  flex-direction: row;
  /* font-size: 80%; */
  padding: 5px 8px;
  align-items: center;
}

.cc-rate .stars {
  display: flex;
}

.cc-rate span:nth-child(2) {
  margin-inline: 5px;
}

.rate-val {
  color: var(--dark);
  font-weight: bold;
}

.cc-rate .stars svg {
  width: 14px;
  margin-inline-end: 2px;
}

.cc-rate .stars svg:last-child {
  margin-inline-end: 0px;
}

.cc-teacher {
  margin-inline: 10px;
  border-top: 1px solid rgba(216, 216, 216, 0.8);
  padding: 12px 0px 10px;
  font-size: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.testi-user img,
.cc-teacher img {
  height: 44px;
  border-radius: 100px;
  width: 44px !important;
}

.teacher-go {
  color: rgb(255, 255, 255);
  background: var(--green);
  width: 44px;
  height: 44px;
  border-radius: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.teacher-go:hover {
  background: var(--dark);
}

.teacher-go.dark {
  background-color: var(--dark);
}

.teacher-go.dark:hover {
  background: var(--green);
}

.circlular-progress {
  position: relative;
  width: 85px;
  height: 85px;
  background-color: #f3f4f4;
  border-radius: 50%;
  margin-inline-end: 20px;
}

.circlular-progress.full {
  background-image: conic-gradient(#0ba893 360deg, transparent 0deg);
  color: #0ba893;
}

.circlular-progress.threeQuarters {
  background-image: conic-gradient(#d9ec2a 270deg, transparent 0deg);
  color: #d9ec2a;
}

.circlular-progress.medium {
  background-image: conic-gradient(#ecb72a 180deg, transparent 0deg);
  color: #ecb72a;
}

.circlular-progress.low {
  background-image: conic-gradient(#a80b39 90deg, transparent 0deg);
  color: #a80b39;
}

.circlular-progress {
  background-image: conic-gradient(#707070 1deg, transparent 0deg);
  color: #707070;
}

.circlular-progress span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  background-color: #f3f4f4;
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-weight: 900;
  font-size: 23px;
  color: inherit;
}

.qout-icon img,
.teacher-go svg {
  transform: scale(-1, 1);
}

body.ar .qout-icon img,
body.ar .teacher-go svg {
  transform: scale(1, 1);
}

.trainer-card {
  background: var(--bggray1);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding: 15px 10px 20px 10px;
  flex-direction: column;
  align-items: center;
  /* margin-top: 70px; */
  position: relative;
  transition: transform 0.5s;
}

.trainer-card .tc-details .text {
  height: 75px;
  overflow: hidden;
}

.multi-view:not(.item-row-style) .trainer-card {
  /* height: calc(100% - 85px); */
}

.trainer-card img {
  width: 120px;
  border: 2px solid var(--green);
  border-radius: 50%;
  margin-top: 10px;
}

.trainer-name {
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: center;
}
.branchs ul::-webkit-scrollbar {
  display: none;
}
.trainer-pp-col {
  max-width: 100%;
}
.trainer-position {
  font-size: 90%;
}

.values {
  background: url(../imgs/values-bg.png) 100% 50% / auto no-repeat;
}

@media (max-width: 991px) {
  .values {
    background-position: 100% 5%;
  }
}

.goal-box {
  background: white;
  border-top: 15px solid var(--green);
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  min-height: 170px;
  display: grid;
  place-content: center;
  box-shadow: 0 0 15px 0 #eee;
  margin-bottom: 25px;
}

.goal-box p {
  font-size: 20px;
}

.tasks {
  background-color: var(--dark);
  margin-bottom: 11rem;
}

.tasks .row {
  position: relative;
  z-index: 5;
}

.circle-half {
  position: absolute;
  z-index: 1;
}

.circle-half-left {
  left: 0;
  top: 0;
}

.circle-half-right {
  bottom: 0;
  right: 0;
}

.branch {
  background: rgb(229, 239, 245);
  color: var(--green);
  border: 2px solid rgb(229, 239, 245);
  border-radius: 200px;
  font-size: 90%;
}

.iti__arrow {
  margin: 0 6px 0 0;
}

.iti__country-list {
  left: 2px;
  text-align: right;
}

.branches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.branches > a {
  margin-inline: 3px;
}

.branch:hover {
  background: rgb(255, 255, 255);
  color: var(--green);
}

.tc-details {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(216, 216, 216, 0.8);
  padding-top: 15px;
  margin-top: 15px;
}

.multi-view:not(.item-row-style) .trainer-card .tc-details {
  width: calc(100% - 30px);
  margin-top: auto;
}

.tc-details .dd {
  display: flex;
  justify-content: flex-start;
  font-size: 86%;
  margin-block: 3px;
}

.tc-details .dd svg {
  width: 20px;
  height: 20px;
  margin-inline-end: 5px;
}

.trainer-card .cc-teacher {
  border-top: 0px;
  margin: 0px;
  padding: 0px;
}
.item-row-style {
  width: 100%;
}
.item-row-style .trainer-card {
  display: flex;
  flex-direction: row;
  padding: 10px;
  justify-content: start;
  padding-inline-end: 25px;
  margin-top: 0px;
}

.item-row-style .trainer-card .trainer-pp-col {
  margin-inline: 20px;
  width: 200px;
  flex-shrink: 0;
}
.item-row-style .trainer-card img {
  width: 155px;
  margin-top: 0px;
}

.item-row-style .trainer-card .tc-details {
  border-top: 0px;
  padding-top: unset;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.item-row-style .trainer-card .tc-details .sep-and-wrap > div {
  padding-block: 3px;
}

.item-row-style .trainer-card .tc-details .cc-teacher {
  width: 80px;
  margin-inline-start: auto;
}

.testimonials-img {
  width: 100%;
}

.testi-user {
  margin-top: 15px;
  font-size: 80%;
  border-top: 1px solid rgb(202, 202, 202);
  padding-top: 10px;
}

.testi-user img {
  margin-inline-end: 10px;
}

.testi-item {
  background: var(--bggray1);
  padding: 15px;
  border-radius: 12px;
}

.testi-txt {
  font-size: 80%;
}

.title--show-all {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title--show-all .h-shape-underlined {
  margin-bottom: 50px;
}

.show-all {
  background: var(--bggray1);
  display: inline-flex;
  padding: 10px 15px;
  border-radius: 5px;
  color: rgb(68, 68, 68);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonials-section > div > div {
  align-items: center;
}

.qout-icon {
  display: flex;
  margin-bottom: 12px;
  justify-content: flex-end;
}

.qout-icon img {
  width: 60px !important;
}

.owl-dots {
  display: flex;
  justify-content: center;
  margin-block: 28px;
}

.owl-dots > button {
  margin-inline: 5px;
}

.owl-dots > button > span {
  width: 15px;
  height: 15px;
  border: 2px solid white;
  box-shadow: 0 0 0 2px #cacfe6;
  background: white;
  display: block;
  border-radius: 50%;
}

.owl-dots > button.active > span {
  background: var(--green);
  box-shadow: 0 0 0 1.5px var(--green);
}

.home-s-6 .h-shape-underlined {
  margin-bottom: 36px;
}

.home-s-6-2 .h-shape-underlined {
  font-size: 205%;
}

.parners-side {
  display: flex;
  align-items: center;
}

.parners-side .v-col {
  width: 50%;
  padding-inline-start: 10px;
}

.parners-side .v-col img {
  width: 100%;
  border-radius: 12px;
}

.parners-side .v-col:first-child img:first-child {
  margin-bottom: 10px;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
}

.single-partner {
  display: flex;
  padding: 10px;
}

.single-partner img {
  width: 98px;
  height: 98px;
}

.related {
  padding-bottom: 8rem;
}

footer section {
  margin-top: -160px;
  margin-bottom: 25px;
}

.newsletter-container {
  background: url("../imgs/ns-bg.png") 50% 50% / cover no-repeat;
  border-radius: 15px;
  color: rgb(255, 255, 255);
  position: relative;
}

.newsletter-container::before {
  content: "";
  position: absolute;
  inset: 0px;
  background: var(--green);
  z-index: 1;
  border-radius: 150px;
}

.newsletter-container > .row > div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px 20px;
  position: relative;
  z-index: 1;
}

.newsletter-container img {
  margin-top: -120px;
  margin-right: 25px;
  /* min-width: 175px; */
}

@media (max-width: 991px) {
  .newsletter-container::before {
    border-radius: 15px;
  }
}

.ns-content {
  position: relative;
}

.ns-content button {
  position: absolute;
}

.ns-desc {
  font-size: 136%;
}

@media (min-width: 992px) {
  .ns-desc::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 50%;
    background-color: var(--dark);
  }

  body.ar .ns-desc::after {
    left: 0px;
  }

  body.ar .ns-desc::after {
    left: 0px;
    right: auto;
  }
}

.ns-form {
  justify-content: flex-start !important;
}

.ns-form input {
  border-radius: 400px;
  background: rgb(244, 248, 250);
  padding-inline: 28px 150px !important;
  height: calc(4rem + 1px) !important;
}

.home-s-7 {
  margin-bottom: -40px;
}

.partners2 .single-partner {
  width: 25%;
}

.partners2 .single-partner img {
  width: 100%;
  height: auto;
}

.home-s-6-2 > div > div {
  display: flex;
  align-items: center;
}

footer {
  background-color: var(--green);
  padding-top: 80px;
  color: white;
  /* margin-top: 12rem; */
}

footer .copyrights bdi {
  font-size: 13px;
}

@media (max-width: 767px) {
  footer .copyrights bdi {
    text-align: center;
  }
}

@media (max-width: 991px) {
  footer {
    /* margin-top: 10rem; */
  }
}
@media (max-width: 576px) {
  footer .list-unstyled {
    display: none;
  }
  footer h4 {
    text-align: center;
    position: relative;
  }
  footer h4::before {
    left: 0;
  }
  footer h4::after {
    right: 0;
  }
  footer h4::before,
  footer h4::after {
    content: "\f107";
    font-family: "FontAwesome";
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green);
    font-size: 17px;
  }
}
.footer-block-con .list-unstyled a:hover {
  color: var(--yellow);
}

.footer-block-con {
  margin-block: 15px;
}

.footer-block-con h3,
.footer-block-con h4 {
  margin-bottom: 20px;
  color: var(--dark);
}

.footer-block-con .list-unstyled li {
  margin-bottom: 20px;
}

.logo-in-footer {
  margin-block: 18px 10px;
  max-width: 180px;
}

.logo-in-footer svg {
  width: 50px;
  height: auto;
  margin-inline-end: 5px;
}

.logo-in-footer strong {
  font-size: 90% !important;
}

.cr {
  color: white;
  font-size: 20px;
  display: flex;
  justify-content: flex-end;
  text-align: end;
  background-color: #0768a5;
}

.cr a {
  color: var(--dark);
  font-weight: 800;
}

.breadcrumb {
  background: #fff;
  color: var(--dark);
  padding-block: 15px;
  font-size: 85%;
  margin-block: 0px;
}

.breadcrumb.green {
  background-color: var(--green);
}

.breadcrumb-list li {
  margin-inline: 5px;
}

body.ar .b-sep {
  transform: scale(-1);
}

.breadcrumb-list li:first-child {
  margin-inline-start: 0px;
}

.breadcrumb-list li:last-child {
  margin-inline-end: 0px;
}

.breadcrumb-list li a {
  color: var(--dard);
}

.breadcrumb-list li a:hover {
  color: var(--dard);
  opacity: 0.5;
}

.b-sep {
  transform: scale(-1);
}

.page-title-style-1 {
  background: var(--bggray1);
  padding-block-start: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--dark);
}

.page-title-style-1 h1 {
  display: flex;
  margin: 0px;
  justify-content: center;
  align-items: center;
}

.categorys {
  width: max-content;
  margin-inline: auto;
}

.page-title-style-1 .container::-webkit-scrollbar {
  /* display: none; */
  height: 5px;
}

.categorys li {
  padding: 10px 25px;
  border-radius: 10px;
  font-weight: bold;
  transition: background 0.4s;
  flex-shrink: 0;
}

.categorys li:is(:hover, .active) {
  background: var(--green);
  color: white;
}

.count-view-row {
  margin-bottom: 20px;
  color: rgb(102, 102, 102);
  font-size: 90%;
}

.count-view-row > .row {
  display: flex;
  align-items: center;
}

.change-view {
  display: flex;
  justify-content: flex-end;
}

.change-view > span {
  margin-inline-end: 8px;
  width: 28px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  color: rgb(153, 153, 153);
  border: 1px solid rgb(153, 153, 153);
  cursor: pointer;
  opacity: 0.7;
}

.change-view > span.active {
  opacity: 1;
  color: var(--green);
  border-color: var(--green);
}

.cus-filter-label {
}
.open-filter {
  padding: 10px 30px;
  border-radius: 50px;
  background-color: var(--green);
  color: white;
  cursor: pointer;
  transition: 0.3s;
  border-color: var(--green);
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  border: 1.5px solid var(--green);
  z-index: 300;
}
.open-filter:hover {
  color: var(--green);
  background-color: rgba(255, 255, 255, 1);
}

.sidebar-filter-con {
  background: rgb(248, 248, 248);
  border-radius: 8px;
}

.sidebar-filter-con {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .sidebar-filter-con {
    position: fixed;
    top: 0;
    z-index: 250;
    right: -250px;
    border-radius: 0;
    width: 250px;
    transition: 0.5s;
    z-index: 2500;
    overflow: auto;
    height: 100vh;
  }
  .sidebar-filter-con.show {
    right: 0;
  }
  .sidebar-filter-con .close-filter {
    cursor: pointer;
  }
  .sidebar-filter-con .head h5 {
    color: var(--green);
  }
}

.col-filter {
  margin-bottom: 0px;
  padding: 15px 20px;
}

.col-filter .card {
  border: 0px;
  padding: 0px;
  background: transparent;
  font-size: 88%;
  margin-top: 15px;
}

.cus-filter-label {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: rgb(102, 102, 102);
  margin-bottom: 11px;
}

.cus-filter-label svg {
  transform: rotate(270deg);
  height: 16px;
  transition: all 0.2s linear 0s;
}

.cus-filter-label.collapsed svg {
  transform: rotate(90deg);
}

.cus-filter-label svg path {
  stroke: rgb(102, 102, 102);
}

.col-cutom-3 hr {
  border-color: rgb(179, 179, 179);
}

.nav-tree .ms-4 {
  margin-inline-start: 15px !important;
}

.nav-tree .mx-1 {
  margin-inline: 0px !important;
}

.nav-tree .nav-link {
  padding-inline-start: 6px;
  color: rgb(102, 102, 102);
}

.nav-tree ::before {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: cursive;
}

.nav-tree i.fa {
  position: relative;
  width: 15px;
  height: 15px;
}

.nav-tree .fa-chevron-down::before {
  content: "-";
  background: rgb(239, 239, 239);
}

.nav-tree .fa-chevron-right::before {
  content: "+";
  background: rgb(239, 239, 239);
}

.nav-tree .fa-link::before {
  content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
}

.nav-tree .collapse.show {
  position: relative;
}

.nav-tree .collapse.show::before {
  content: "";
  width: 1px;
  height: calc(100% + 14px);
  background: rgb(208, 208, 208);
  position: absolute;
  margin-inline-start: 7.5px;
  top: -14px;
}

.form-check .form-check-input {
  border-radius: 1px;
  border-color: rgb(221, 221, 221);
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--green);
  border: 2px solid rgb(255, 255, 255);
  box-shadow: var(--green) 0px 0px 0px 2px;
  padding: 5px;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgb(39 164 103 / 25%);
}

.col-filter .form-check > span {
  margin-inline: auto 0px;
  font-size: 75%;
  color: rgb(123, 123, 123);
}

.col-filter .form-check {
  display: flex;
  margin-bottom: 8px;
  padding-right: 1.7rem;
}

.col-filter .form-check .form-check-input {
  margin-inline-end: 8px;
}

.check-color {
  width: 12px;
  height: 12px;
  border-radius: 50px;
  display: flex;
}

.color-checks .form-check span {
  margin-top: 3px;
}

.check-color.blue {
  background: rgb(11, 175, 222);
}

.check-color.red {
  background: rgb(245, 117, 117);
}

.check-color.green {
  background: rgb(138, 198, 54);
}

.check-color.yellow {
  background: rgb(240, 240, 59);
}

.rang-price-container {
  width: calc(100% - 52px);
  margin: 0px auto 14px;
}

.price-input {
  width: 100%;
  display: flex;
  margin: 10px 0px 18px;
  justify-content: space-between;
}

.price-input .field {
  display: flex;
  width: unset;
  height: unset;
  align-items: center;
}

.field input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 19px;
  margin-left: 12px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid rgb(153, 153, 153);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  appearance: none;
}

.price-input .separator {
  width: 130px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}

.range-slider {
  height: 5px;
  position: relative;
  background: rgb(221, 221, 221);
  border-radius: 5px;
}

.range-slider .progress {
  height: 100%;
  left: 0.001%;
  right: 0.001%;
  position: absolute;
  border-radius: 5px;
  background: rgb(11, 175, 222);
}

.range-input {
  position: relative;
}

.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: rgb(23, 162, 184);
  pointer-events: auto;
  appearance: none;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 6px;
}

.rang-price-container .input-d {
  margin: 0px;
  border: 0px;
  background: rgb(237, 237, 237);
  width: 64px;
  padding: 0px;
  color: rgb(11, 175, 222);
  display: inline-flex;
  height: 30px;
  font-size: 82%;
  font-weight: bold;
  border-radius: 3px;
}

.rang-price-container .input-min {
  margin-inline-start: -24px;
}

.rang-price-container .input-max {
  margin-inline-end: -24px;
}

.hr-filter {
  margin-inline: 15px;
  margin-block: 5px;
  border-color: rgba(0, 0, 0, 0.26);
}

.expand {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.expand .few {
  display: none;
}

.expand .more {
  display: flex;
}

.expand svg {
  margin-inline-start: 8px;
}

.expand.cus-collapse .more {
  display: none;
}

.expand.cus-collapse .few {
  display: flex;
}

.expand.cus-collapse svg {
  transform: rotate(180deg);
}

.more-f-con {
  height: 0px;
  overflow: hidden;
  transition: all 0.3s linear 0s;
}

.more-f-con.cus-collapse {
  height: auto;
}

.item-row-style .course-card {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.multi-view:not(.item-row-style) .course-card {
  display: flex;
  flex-direction: column;
  /* height: calc(100% - 25px); */
}

.multi-view:not(.item-row-style) .course-card .cc-teacher {
  margin-top: auto;
}

.item-row-style .cc-teacher {
  border-top: 0px;
}

.item-row-style .cc-row-1 {
  margin-top: 0px;
}

.item-row-style .course-card > :nth-child(1) {
  width: calc(30% - 26.6667px);
}

.item-row-style .course-card > :nth-child(2) {
  width: calc(40% - 26.6667px);
}

.item-row-style .course-card > :nth-child(3) {
  width: calc(30% - 26.6667px);
}

.item-row-style .course-card > :last-child {
  margin: 0px auto;
}

.item-row-style .extra-div {
  display: flex;
  flex-direction: column;
}

.pager nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 15px;
}

.pager nav li:last-child {
  transform: scale(-1);
}

.pagination {
  display: flex;
  align-items: center;
}

.pagination svg path {
  stroke: rgb(68, 68, 68);
}

.pager nav li {
  border: 0px;
  height: auto;
  font-size: 23px;
}

.pager nav li a,
.pager nav li span {
  width: 45px;
  height: 45px;
  display: flex;
  background: rgba(241, 241, 241, 0);
  place-content: center;
  border: 0px;
  line-height: normal;
  flex-direction: column;
  align-items: center;
  color: var(--dark);
  margin-inline: 6px !important;
  border-radius: 60px !important;
  padding: 0px !important;
}

.active > .page-link,
.page-link.active {
  background-color: var(--green);
  border-color: var(--green);
}

.page-link:is(:hover, .active) {
  color: white;
  background-color: var(--green);
  border: none;
}

.page-link:focus {
  color: var(--dark);
  box-shadow: 0 0 0 0.25rem rgb(39 164 103 / 30%);
}

.colored-banner {
  padding-top: 50px;
  position: relative;
}

.colored-banner .banner-bg {
  background-color: #fff0e5;
  padding: 1rem;
  border-radius: 20px;
  color: black;
}

.colored-banner .container {
  position: relative;
  z-index: 10;
}

.colored-banner .slider-links {
  margin-top: 0px;
}

.details-menu,
.details-menu li {
  display: flex;
}

.details-menu {
  border-bottom: 1px solid rgb(202, 202, 202);
  width: 100%;
  padding-right: 30px;
  overflow: auto;
}

.details-menu::-webkit-scrollbar {
  display: none;
}

.details-menu li {
  cursor: pointer;
  margin: 0 18px;
  padding: 12px 0;
  position: relative;
  transition: 0.3s;
  flex-shrink: 0;
}

.details-menu li:is(:hover, .active) {
  /* background: var(--bggray1); */
  color: var(--green);
}

.details-menu li::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--green);
  transition: 0.3s linear;
}

.details-menu li:is(:hover, .active)::after {
  width: 100%;
}

.cb-title {
  margin-top: 25px;
}

.cb-trainers {
  display: flex;
  margin-block: 15px;
  padding-bottom: 10px;
  /* border-bottom: 1px solid rgb(222, 222, 222); */
}

.per-trainer:hover {
  transform: translateY(-3px);
}

.per-trainer {
  display: flex;
  align-items: center;
  margin-inline-end: 10px;
}

.per-trainer:last-child {
  margin-inline-end: 0px;
}

.per-trainer img {
  width: 50px;
  height: 50px;
  border-radius: 120px;
  margin-inline-end: 6px;
}

.per-trainer span {
  color: rgb(255, 255, 255);
  font-size: 90%;
}

.cb-rating-enrolled {
  display: flex;
  color: rgb(255, 255, 255);
  width: max-content;
  font-size: 80%;
  margin-bottom: 30px;
}

.cb-rating-enrolled .cc-rate {
  color: rgb(255, 255, 255);
}

.cb-enrolled-stds-count {
  margin-inline-start: 10px;
}

.cb-enrolled-stds-count,
.cb-enrolled-stds-count > span {
  display: flex;
  width: max-content;
  align-items: center;
}

.cb-enrolled-stds-count > span > span {
  margin-inline: 10px 5px;
}

.cb-enrolled-stds-count img {
  width: 16px;
  height: 18px !important;
}

.details-sections {
  /* margin-bottom: 30px; */
  padding-inline: 1.5rem;
}

.show-more {
  display: inline-flex;
  padding: 10px 20px;
  font-size: 18px;
  margin-top: 10px;
  border-radius: 800px;
  cursor: pointer;
  color: var(--green);
  transition: all 0.2s linear 0s;
}

.show-more:not(.expand) .less-more {
  display: none;
}

.show-more.expand .case-more {
  display: none;
}

.fixedHeight {
  height: 165px !important;
}

.expandable {
  overflow: hidden;
  /* border-bottom: 2px solid rgb(228, 228, 228); */
  padding-top: 12px;
  position: relative;
  transition: all 0.3s linear 0s;
}

.expandable > div {
  transition: all 0.3s cubic-bezier(0.75, 0.03, 0.28, 0.99) 0s;
}

.expandable.expand {
  overflow: hidden;
  border-bottom: 0px solid rgb(228, 228, 228);
  padding-bottom: 15px;
}

/* .expandable::before {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  content: "";
  width: 100%;
  height: 15px;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0) 80%
  );
} */

.no-shadow .expandable {
  border: 0px;
}

.no-shadow .expandable::before {
  display: none;
}

.mt-cus-5 {
  margin-top: 60px;
}

body.en .div-list > div svg {
  transform: scale(-1);
}

body.en .div-list > div svg {
  width: 28px;
  height: 28px;
  padding: 5px;
  background: rgba(0, 0, 0, 0.01);
  margin-inline-end: 5px;
  display: flex;
}

body .div-list > div {
  display: flex;
  margin-bottom: 8px;
  justify-content: flex-start;
  align-items: center;
}

body .div-list > div span {
  width: calc(100% - 28px);
}

.course-agenda {
  color: rgb(51, 51, 51);
  background: rgb(237, 242, 246);
  padding: 20px 24px;
  font-size: 95%;
  margin-bottom: 22px;
}

.course-agenda h4 {
  font-size: 130%;
  font-weight: 600;
}

.per-trainers-info {
  display: flex;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 0px;
}

.pti {
  padding-block: 10px;
  padding-inline: 15px;
  background: var(--bggray1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pti .position,
.pti a {
  color: var(--green);
}

.pti a:hover {
  color: var(--lightred);
}

.pti a {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
}

.pti a:hover svg path {
  fill: var(--lightred) !important;
}

.pti .position {
  margin-bottom: 5px;
}

.pti a svg {
  margin-inline-end: 5px;
}

.per-trainers-info img {
  width: 200px;
  height: 200px;
  margin: 0px auto;
}

.owl-carousel .owl-item .per-trainers-info img {
  width: 200px;
}

.rating-block-details {
  display: flex;
}

.rating-block-details {
  display: flex;
  width: 100%;
}

.rating-block1 {
  width: 220px;
  height: 220px;
  background: #edeff7;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 12px;
  box-shadow: rgba(202, 202, 202, 0.31) 0px 0px 12px;
}

.rating-b2 {
  width: calc(100% - 220px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 20px 10px 50px;
}

.rating-b2.not-levels {
  padding-inline-end: 0px;
}

.rating-block1 > b {
  font-size: 160%;
}

.rating-block1 > span {
  font-size: 130%;
  color: rgb(168, 168, 168);
}

.rating-block1 .cc-rate {
  display: flex;
  justify-content: center;
}

.progress-bar {
  background: #fc9d1b;
}

.progress.not-levels .progress-bar {
  background: linear-gradient(to left, #ffa200, #f9ca77);
}

.progress,
.progress-bar {
  border-radius: 500px;
}

.rate-bar-container {
  display: flex;
  align-items: center;
  margin-block: 2px;
}

.rate-bar-container .progress {
  width: 100%;
  height: 15px;
}

.rate-bar-container .progress.not-levels {
  height: 7px;
}

.progress {
  background-color: #f3f4f4;
}

.rate-bar-container .cc-rate {
  width: 135px;
}

.percent-number {
  padding: 0px 10px;
}

.grayed path {
  fill: rgb(204, 204, 204) !important;
}

.com-1 .per-trainer span {
  color: rgb(68, 68, 68);
}

.com-2 .cc-rate {
  padding-inline-start: 0px;
  margin-top: 4px;
}

.com-3 {
  font-size: 95%;
}

.per-comment:not(:last-of-type) {
  border-bottom: 1px solid rgb(218, 218, 218);
  margin-bottom: 20px;
}

.per-comment {
  padding-block: 20px;
}

.comment-actions {
  margin-bottom: 30px;
  margin-top: 30px;
}

.shiny-bluen {
  background: var(--green);
  min-width: 210px;
  padding: 12px 24px;
  border-radius: 500px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  box-shadow: rgba(66, 155, 213, 0.16) 0px 10px 15px;
}

.shiny-blue:hover {
  color: rgb(255, 255, 255);
  background: var(--dark);
}

.green-btn {
  background: var(--green);
  min-width: 210px;
  padding: 12px 24px;
  border-radius: 500px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  box-shadow: none;
  transition: all 0.3s linear 0s;
  border: 2px solid var(--green) !important;
}

.green-btn:hover,
.green-btn:focus {
  color: var(--green);
  background: rgb(255, 255, 255);
}

.rating-comment {
  overflow: hidden;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px;
  flex-direction: row-reverse;
}

.cbar .price-row {
  flex-direction: row-reverse;
}

.cbar .price-row .old-rice {
  color: rgb(255, 255, 255);
}

.price-row,
.course-info-col {
  padding-inline: 10px;
}

.cs-price {
  display: flex;
  align-items: center;
}

.cbar .price-row {
  flex-direction: column;
  align-items: flex-start;
  padding: 0px 5px;
  transform: translate(0px, -6px);
}

.discount-price {
  color: var(--green);
  font-size: 16px;
  margin-inline-end: 10px;
  font-weight: 900;
}

.old-rice {
  font-weight: 600;
  color: rgb(123, 123, 123);
  text-decoration: line-through;
  font-size: 14px;
}

.discount-summery {
  font-size: 70%;
  padding: 2px 4px;
  border-radius: 5px;
  border: 2px solid rgb(234, 234, 234);
  color: var(--green);
  background: rgb(255, 255, 255);
  width: max-content;
}

.cic {
  display: flex;
  font-size: 80%;
  justify-content: space-between;
  margin-block: 3px;
  padding-block: 8px;
  border-bottom: 1px solid rgb(241, 241, 241);
}

.cic > div:first-child {
  font-size: 90%;
}

.cic > div:last-child {
  font-size: 84%;
}

.cic img {
  width: 20px;
  height: 20px;
  margin-inline-end: 4px;
}

.course-summery {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 8px;
  border-radius: 12px;
  overflow: hidden;
  background: rgb(255, 255, 255);
}

.course-summery.not-levels {
  margin-top: -185px;
  position: sticky;
  top: 100px;
  z-index: 10;
}

.nav-pills .nav-link {
  background-color: #f3f4f4;
  color: black;
  border-radius: 10px;
}
.nav-pills .nav-link.active {
  color: white !important;
  background-color: var(--dark) !important;
  border: none !important;
  border-radius: 10px !important;
  padding-bottom: 8px !important;
}

.headers-of-pills {
  border: none !important;
  gap: 10px;
}

.course-action {
  margin-top: 15px;
  justify-content: center;
  margin-bottom: 30px;
  flex-direction: column;
  text-align: center;
}

.course-action a {
  font-size: 94%;
  padding-inline: 25px;
  display: inline-flex !important;
}

.course-action span {
  margin-top: 8px;
  display: block;
  font-size: 80%;
}

.accordion-item {
  margin-block: 10px;
  border: 0px;
}

.accordion-item .accordion-button {
  background: var(--green);
  color: rgb(255, 255, 255);
  border-radius: 8px !important;
}

.accordion-item .accordion-button::after {
}

.accordion-item .accordion-button.collapsed {
  background: rgb(237, 239, 247);
  color: rgb(51, 51, 51);
}

.acc-course-row {
  display: flex;
  justify-content: space-between;
  margin-block: 0px;
  padding-block: 12px;
  width: 100%;
  border-bottom: 1px solid rgba(234, 234, 234, 0.8);
  font-size: 84%;
  color: rgb(102, 102, 102);
}

.accordion-body .acc-course-row:last-child {
  border-bottom: 0px;
}

.accp-1 {
  width: calc(100% - 240px);
}

.accp-2 {
  width: 120px;
  text-align: center;
}

.accp-3 {
  width: 120px;
  text-align: center;
}

.per-group h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 8px;
  margin: 0px;
  background: rgb(245, 247, 253);
  font-size: 132%;
}

.course-bar {
  background: var(--dark);
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: space-between;
  font-size: 82%;
  padding-inline: 15px;
  border-radius: 10px;
  padding-block: 25px;
  margin-block: 32px;
  border-bottom: 1px solid rgb(202, 202, 202);
  align-items: center;
}

.cbar {
  display: flex;
}

.cbar img {
  width: 30px;
  margin-inline-end: 6px;
}

.course-bar h5 {
  color: var(--green);
  font-size: 124%;
  margin-bottom: 2px;
}

.per-group {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgb(208, 208, 208);
  margin-bottom: 30px;
}

.pg-content {
  padding: 20px;
}

.pg-trainers a span {
  color: rgb(68, 68, 68);
  font-size: 78%;
}

.pg-trainers img {
  width: 36px;
  height: 36px;
}

.pg-row {
  display: flex;
  justify-content: space-between;
  margin-block: 4px;
  align-items: center;
  font-size: 90%;
}

.pg2 {
  font-size: 94%;
}

.participants-con {
  position: relative;
  margin-block: 10px;
}

.participants-num {
  position: absolute;
  display: flex;
  width: 100%;
  left: 0px;
  right: 0px;
  font-size: 90%;
  top: 4px;
  padding: 0px 15px;
  justify-content: space-between;
}

.closed.per-group .participants-num > .p-p,
.participants-num > .p-p:first-child {
  color: rgb(255, 255, 255);
}

.participants-con .progress {
  height: 28px;
}

.participants-label {
  display: flex;
  justify-content: space-between;
  font-size: 84%;
  margin-top: 6px;
}

.per-group-link {
  text-align: center;
  margin-top: 22px;
}

.per-group-link a {
  margin-inline-end: 0px;
  font-size: 90%;
  display: inline-flex !important;
  padding-inline: 22px !important;
}

.closed.per-group h3 {
  color: rgb(255, 255, 255);
  background: var(--dark);
}

.closed.per-group .per-group-link a {
  background: rgb(187, 186, 186);
  border-color: rgb(187, 186, 186) !important;
  pointer-events: none !important;
}

.ppart1 {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-around;
}

.tbh-info2 .price {
  font-size: 420%;
  font-weight: bold;
  display: flex;
  align-items: center;
  color: var(--green);
}

.tbh-info2 .price span {
  font-size: 30px;
  font-weight: bold;
}

.trainer-bio-heading img {
  width: 165px;
  display: flex;
  height: auto;
  border-radius: 50%;
  border: 2px solid var(--green);
}

.trainer-bio-heading {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 35px;
  margin-top: 25px;
  position: sticky;
  top: 100px;
}
.trainer-bio-heading .datails-share {
  position: absolute;
  top: 15px;
  left: 15px;
}

.tbh-info {
  padding-inline-start: 10px;
  width: calc(100% - 250px);
}

.tbh-info h2 {
  font-size: 150%;
  margin-top: 10px;
}

.tbh-info .position {
  margin-block: 10px 14px;
  color: var(--green);
}

.trainer-branch {
  display: flex;
}

.trainer-branch > a {
  display: inline-flex;
  margin-inline-end: 8px;
}

.trainer-branch > a:last-child {
  margin-inline-end: 0px;
}

.trainer-rating {
  display: flex;
  margin-block: 5px 12px;
}

.trainer-rating .stars {
  display: flex;
}

.trainer-rating > span:last-child {
  margin-inline-start: 5px;
  font-size: 70%;
}

.trainer-rating .stars svg {
  width: 14px;
}

.nnextra {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.nnextra .po {
  display: flex;
  width: 33.3%;
  align-items: center;
  margin-block: 5px;
  font-size: 90%;
}

.nnextra .po svg {
  margin-inline-end: 8px;
}

.tbh-info2 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  height: 100%;
  justify-content: flex-end;
}

.tbh-info2 a {
  font-size: 88%;
}
.main-content.auth {
  padding-bottom: 250px;
}
.login-form-container {
  background-color: var(--dark);
  padding: 45px 15px 28px;
  color: white;
}

.login-form-container .form-container {
  background-color: white;
  border-radius: 20px;
  color: black;
  padding: 1.5rem;
  margin-bottom: -200px;
}
.login-form-container .form-container .title .have-account {
  font-size: 14px;
}

.sign-by .google {
  background-color: #e9f1ff;
}
.sign-by .apple {
  background-color: #f6f6f6;
}

.pw-box {
  position: relative;
}
.pw-box .show-pw {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}

.login-form-container > div {
  display: flex;
  align-items: center;
}

.form-container {
  max-width: 450px;
  margin: 0px auto;
}

.form-label {
  font-size: 14px;
}

.login-desc img {
  margin: 0px auto;
  display: flex;
}

.login-desc h3 {
  margin-block: 15px 18px;
}

input,
textarea,
.btn {
  border-radius: 3px !important;
}

textarea {
  resize: none;
}

form .green-link.btn:hover {
  color: rgb(255, 255, 255);
  background-color: var(--green) !important;
}

.iti__country-list {
  font-size: 12px;
  max-width: 340px !important;
}

.iti--allow-dropdown {
  width: 100%;
  position: relative;
}

.file-drop-area {
  position: relative;
  display: flex;
  width: 450px;
  max-width: 100%;
  padding: 25px 10px;
  border: 1px solid rgb(209, 209, 209);
  border-radius: 3px;
  transition: all 0.2s ease 0s;
  flex-direction: column;
  align-items: center;
}

.file-drop-area .icocn-containr {
  margin-bottom: 10px;
}

.choose-file-button {
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 8px 15px;
  margin-right: 10px;
  font-size: 12px;
  text-transform: uppercase;
}

.file-message {
  font-size: small;
  font-weight: 300;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-input {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
  border: burlywood;
}

.payment-window {
  background: rgb(245, 247, 253);
  padding: 40px;
}

.payment-window h3,
.payment-window form {
  max-width: 450px;
  margin-inline: auto;
}

.payment-window input {
  border: none;
  outline: none;
  background-color: inherit;
  font-size: 23px;
  width: 50%;
  direction: rtl;
}

.payment-window input[name="name"],
.payment-window input[name="card-num"] {
  width: 100%;
}

.reset-margin-top {
  max-width: 400px;
  margin-top: 0px !important;
}

.single-bordred {
  padding: 5px 15px;
  border-radius: 50px;
  display: inline-flex;
}

.font-size-small {
  font-size: 12px;
}

.dark-blue-link-outline {
  border: 1px solid var(--dark) !important;
  color: var(--dark);
}

.dark-blue-link-outline:hover {
  background-color: var(--dark);
  color: white;
}

.green-link-outline {
  background-color: white;
  border: 1px solid var(--green) !important;
  color: var(--green);
  border-radius: 50px;
}

.green-link-outline:hover {
  background-color: var(--green);
  color: white;
}

.yellow-link-outline {
  background-color: white;
  border: 1px solid var(--dark) !important;
  color: var(--dark);
  border-radius: 50px;
}

.yellow-link-outline:hover {
  background-color: var(--dark);
  color: white;
}

.course-summery .course-links a {
  margin-bottom: 5px;
}

.sea-link-outline {
  background-color: rgb(220, 244, 246);
  border: 1px solid rgb(220, 244, 246);
  color: rgb(62, 196, 204);
}

.sea-link-outline:hover {
  background-color: rgb(255, 255, 255);
  color: var(--darkSeaBlue);
}

.cl-title {
  margin-block: 15px;
}

.cl-title h4 {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 0px;
}

.course-summery .cb-trainers {
  flex-wrap: wrap;
  margin-bottom: 16px;
  border-bottom: 0px;
  padding-bottom: 0px;
}

.course-summery .cb-trainers a {
  margin-block: 3px;
}

.course-summery .cb-trainers a span {
  color: rgb(51, 51, 51);
  font-size: 80%;
}

.course-summery .cb-trainers a img {
  width: 40px;
  height: 40px;
}

.course-pricing .cp-row {
  display: flex;
  justify-content: space-between;
  margin-block: 8px;
  color: var(--dark);
}

.course-pricing .cp-row.total {
  font-weight: bold;
}

.course-pricing .cp-row.total span:last-child {
  color: var(--green);
}

.course-summery .form-check {
  font-size: 86%;
  margin-bottom: 20px;
}

.col-header {
  height: 100px;
  background: var(--green);
}

.traniner-image {
  text-align: center;
  margin-top: -45px;
  margin-bottom: 25px;
}

.traniner-image img {
  border-radius: 800px;
  width: 90px;
  height: 90px;
  border: 4px solid rgb(66, 155, 213);
}

.search-label {
  padding-bottom: 7px;
  border-bottom: 1px solid rgb(202, 202, 202);
}

.with-custon-icon {
  position: relative;
}

.with-custon-icon > span {
  position: absolute;
  width: 16px;
  height: auto;
  left: 0px;
  right: 0px;
  margin-inline: auto 22px;
  margin-top: 1rem;
}

.with-custon-icon svg {
  width: 100%;
}

.with-custon-icon input {
  padding-inline-end: 32px;
}

.with-custon-icon input {
  padding-inline-end: 32px;
}

.with-custon-icon input,
.with-custon-icon select {
  font-size: 15px;
}

.full-round {
  border-radius: 800px !important;
}

.activity-view {
  display: flex;
  background: rgb(248, 248, 248);
  border-radius: 6px;
}

.activity-view .av-body,
.activity-view .av-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.activity-view .av-img {
  width: 30%;
  min-height: 175px;
  border-radius: 8px;
  margin-inline-end: 15px;
  overflow: hidden;
}

.activity-view .av-img img {
  width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.activity-view .av-body {
  width: 50%;
  padding-inline: 10px;
  padding-block: 12px;
}

.activity-view .av-body h3 {
  font-size: 128%;
  font-weight: bold;
}

.activity-view .av-body div {
  font-size: 90%;
}

.activity-view .av-info {
  width: 20%;
  padding-block: 10px;
  font-size: 76%;
  color: rgb(119, 119, 119);
  padding-inline: 10px;
}

.avv-row {
  margin-block: 6px;
  display: flex;
  align-items: center;
}

.avv-row svg {
  margin-inline-end: 5px;
}

.avv-row svg path {
  fill: rgb(102, 102, 102);
}

.order-select {
  background-color: rgb(249, 249, 251);
  border: 0px;
  width: min-content;
  padding-block: 15px;
  padding-inline: 20px 50px;
}

.go-end {
  display: flex;
  justify-content: flex-end;
}

.no-bg-title h1 {
  font-size: 200%;
  margin-top: 20px;
}

.post-info-bar > .container > .row {
  display: flex;
  align-items: center;
}

.post-info-bar .post-info-bar {
  display: flex;
  margin-block: 10px 10px;
}

.post-info-bar.share-tool {
  display: flex;
  justify-content: flex-end;
}

.post-body .share-tool {
  margin-top: 35px;
  display: flex;
  justify-content: flex-start;
}

.tool-item {
  margin-inline-end: 5%;
  font-size: 85%;
  display: flex;
  align-items: center;
}

.tool-item a {
  line-height: 1;
}
.tool-item svg {
  height: 16px;
  margin-inline-end: 6px;
}

#shareto {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.svg-container {
  width: 40px;
  height: 40px;
  border-radius: 400px;
  border: 1px solid rgb(202, 202, 202);
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 8px;
}

.svg-container svg {
  width: 100%;
  height: 100%;
  margin-inline-end: 0px;
}

.post-banner img {
  border-radius: 10px;
}

.post-body {
  padding-bottom: 40px;
  margin-top: 30px;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  margin-block: 40px;
}

.post-nav a {
  display: flex;
  background: rgb(241, 243, 248);
  padding: 40px;
  width: calc(50% - 15px);
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
}

.blog-details .post-nav a {
  padding: 25px;
}

.post-nav a:hover {
  color: rgb(255, 255, 255);
  background: var(--green);
}

.post-nav a:hover svg path {
  fill: rgb(255, 255, 255);
}

.post-nav a > span {
  width: calc(100% - 40px);
}

.post-prev {
  display: flex;
  flex-direction: row-reverse;
}

.post-next svg {
  transform: scale(-1);
}

body.ar .post-next svg {
  transform: scale(1);
}

body.ar .post-prev svg {
  transform: scale(-1);
}

.related-activities {
  padding-top: 40px;
  border-top: 1px solid rgb(219, 219, 219);
}

.title-bue > * {
  color: var(--dark);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.grayed-input input {
  background: rgb(249, 249, 251);
  border-color: rgb(249, 249, 251);
  border-radius: 14px;
}

.post-categories ul li a {
  display: flex;
  justify-content: space-between;
  font-size: 86%;
  margin-block: 8px;
}

.post-categories ul li a > span:first-child {
  font-weight: 600;
}

.nt-item {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
}

.nt-item img {
  width: 100%;
  display: block;
}

.nt-item > .img {
  height: 100%;
  width: 100px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.nt-item > .img span {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  text-align: center;
  font-size: 68%;
  background: rgba(0, 0, 0, 0.4);
  color: rgb(255, 255, 255);
}

.nt-content {
  width: calc(100% - 100px);
  padding-inline-start: 8px;
}

.nt-content h5 {
  font-size: 84%;
  margin-bottom: 3px;
}

.nt-content span {
  font-size: 56%;
  color: var(--green);
  font-weight: 500;
}

.keywords {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.keywords a {
  display: flex;
  background: rgb(249, 249, 251);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 80%;
  margin-inline-end: 10px;
  margin-bottom: 10px;
}

.keywords a:hover {
  background: var(--green);
  color: rgb(255, 255, 255);
}

.single-blog {
  /* background: rigb(248, 248, 248); */
  border: 1px solid #eee;
  border-radius: 55px 15px 15px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.5s;
  max-width: 370px;
  margin-inline: auto;
}

.single-blog .play {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #00000090;
  color: var(--dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-size: 20px;
}

.single-blog .voice-file {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
}

.single-blog a img {
  width: 20px;
}

.writer img {
  width: 30px;
  border-radius: 50%;
  margin-left: 5px;
  border: 1px solid var(--green);
}

.single-blog .img {
  position: relative;
  height: 205px;
  overflow: hidden;
}

.single-blog .img::after {
  /* content: ""; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.single-blog .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-blog .padding {
  padding: 15px 15px 25px;
}

.blog-info {
  display: flex;
  color: var(--green);
  justify-content: space-between;
  font-size: 80%;
  margin-bottom: 15px;
}

.course-card:hover .hide-link,
.single-blog:hover .hide-link,
.trainer-card:hover .hide-link {
  display: block !important;
}

.single-blog > a {
  display: none;
}

.blog-info > div {
  display: flex;
  align-items: center;
}

.blog-info svg {
  margin-inline-end: 7px;
}

.single-blog h3 {
  font-weight: 600;
  font-size: 120%;
  margin-bottom: 12px;
  height: 46px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}

.single-blog .txt {
  color: rgb(102, 102, 102);
  height: 73px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
}

.readmore-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}

.read-more {
  background: rgb(255, 255, 255);
  padding: 7px 22px;
  display: flex;
  border-radius: 50px;
  font-size: 85%;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 5px;
}

.read-more:hover {
  background: var(--dark);
  color: rgb(255, 255, 255);
}

.read-more svg {
  margin-inline-start: 9px;
}

.b-padding {
  margin-block: 15px;
}

.b-padding .blog-info {
  margin-block: 15px;
  display: flex;
  justify-content: flex-start;
}

.b-padding .blog-info .date,
.b-padding .blog-info .views {
  margin-inline-end: 20px;
}

.relative {
  position: relative;
}

.category {
  display: flex;
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: var(--dark);
  color: rgb(255, 255, 255);
  font-size: 86%;
  padding: 6px 12px;
  border-radius: 3px;
}

body.ar .category {
  right: auto;
  left: 25px;
}

.category:hover {
  background: var(--green);
  color: rgb(255, 255, 255);
}

.send-comment {
  margin-bottom: 25px;
}

.send-comment .actions-row {
  margin-top: 15px;
}

.send-comment .actions-row button {
  min-width: 150px;
  display: flex;
  border: 0;
  justify-content: center;
}

.send-comment .actions-row button:hover {
  color: rgb(255, 255, 255);
  background: var(--dark) !important;
}

.send-comment h3 {
  font-weight: 600;
  font-size: 120%;
  margin-bottom: 20px;
}

.send-comment textarea {
  background: rgb(248, 248, 248);
  border: 0px;
  border-radius: 8px !important;
}

.student-summery {
  display: flex;
  align-items: center;
  width: 100%;
  margin-block: 20px;
}

.student-summery > a {
  width: 60px;
  display: flex;
}

.student-summery > a path {
  transition: all 0.3s ease 0s;
}

.student-summery > a:hover path {
  fill: var(--green);
}

.student-summery > a:first-child {
  justify-content: flex-start;
}

.student-summery > a:last-child {
  justify-content: flex-end;
}

.student-summery > div {
  width: calc(100% - 120px);
  display: flex;
  align-items: center;
}

.finished-exam .student-summery > div {
  margin-inline: auto;
}

.std-summery-bar > div {
  margin-inline-end: calc(5% + 30px);
}

.std-summery-bar > div:last-child {
  margin-inline: auto 0px;
}

.std-summery-bar {
  background: rgb(245, 247, 253);
  padding: 15px 30px;
  border-radius: 8px;
}

.std-summery-bar .ssb .cc-teacher {
  border: 0px;
  margin: 0px;
}

.std-summery-bar .ssb .cc-teacher > span {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.std-summery-bar .ssb .cc-teacher img {
  height: 54px;
  margin-inline-end: 10px;
  width: 54px !important;
}

span.exam {
  color: var(--green);
  font-size: 84%;
}

.ssb2,
.ssb4 {
  color: rgb(108, 189, 126);
}

.ssb3 {
  color: rgb(252, 138, 137);
}

.ssb-title {
  font-size: 80%;
}

.ssb-mark {
  font-weight: bold;
}

.ssb4 .ssb-mark {
  font-size: 130%;
}

.red-color {
  color: rgb(252, 138, 137);
}

.dark-color {
  color: var(--dark);
}
.green-color {
  color: rgb(108, 189, 126);
}

.single-answer input[type="radio"] {
  border-radius: 200px !important;
}

.single-answer input:not(:checked) {
  border: 1px solid rgb(153, 153, 153);
}

.single-answer {
  border: 2px solid var(--green);
  border-radius: 12px;
  padding: 16px 25px;
  margin-block: 5px 30px;
}

.q-number {
  margin-block: 12px 10px;
}

.q-text {
  font-size: 92%;
  margin-bottom: 5px;
}

.single-answer .form-check {
  border: 1px solid rgb(217, 217, 217);
  padding: 8px 38px;
  border-radius: 6px;
  margin-block: 10px;
}

.single-answer .form-check label {
  width: 100%;
  cursor: pointer;
}

.questions-container {
  margin-bottom: 20px;
  border: 2px solid rgb(233, 233, 233);
  padding: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.qestions > div {
  display: flex;
  flex-wrap: wrap;
}

.single-q {
  display: inline-flex;
  width: 68px;
  padding-block: 8px;
  border: 2px solid rgb(202, 202, 202);
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  margin: 5px;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.finished-exam .single-q {
  border-color: var(--green);
  color: var(--green);
  transition: all 0.2s ease 0s;
}

.finished-exam .single-q:hover {
  background: var(--green);
  color: rgb(255, 255, 255);
}

.start-exam .single-q:hover {
  background: var(--green);
  color: rgb(255, 255, 255) !important;
}

.wrong {
  border-color: rgb(213, 66, 66) !important;
  color: rgb(213, 66, 66) !important;
}

.form-check-input:disabled ~ .form-check-label,
.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled {
  opacity: 1;
}

.form-check.false {
  border-color: rgb(213, 66, 66) !important;
  color: rgb(213, 66, 66) !important;
}

.form-check.true {
  background: rgba(66, 155, 213, 0.08);
  border-color: var(--green) !important;
  color: var(--green) !important;
}

.form-check.false .form-check-input:checked {
  background-color: rgb(213, 66, 66);
  box-shadow: rgb(213, 66, 66) 0px 0px 0px 2px;
}

.finished-exam .single-q.wrong:hover {
  background: rgb(213, 66, 66);
  color: rgb(255, 255, 255) !important;
}

.single-answer.false {
  border-color: rgb(213, 66, 66);
}

.single-answer.not-submitted {
  border-color: rgb(233, 233, 233);
}

.start-exam-row h3 {
  color: var(--green);
}

.start-exam-row h3 {
  color: var(--green);
  margin-bottom: 0px;
}

.start-exam-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  margin-top: 20px;
}

.start-exam-row .exam-countdown {
  color: rgb(0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.start-exam-row .exam-countdown > span:last-child {
  font-size: 200%;
  margin-inline-start: 10px;
}

.single-answer.not-submitted .selected {
  border-color: var(--green);
  background: rgba(11, 175, 222, 0.02);
}

.answer-added {
  border-color: var(--green) !important;
  color: var(--green) !important;
}

.temp-exam > .container > .row {
  position: relative;
}

.content-menu {
  display: flex;
  cursor: pointer;
  font-size: 22px;
}

/* .content-menu svg {
  width: 30px;
  height: 30px;
  opacity: 0.8;
}

.content-menu svg path {
  fill: var(--green);
  transition: all 0.3s linear 0s;
} */
.content-menu span.arrow {
  display: block;
  transition: 0.3s;
}
.content-menu:hover span.arrow {
  width: 0;
  overflow: hidden;
}

.content-menu span.text {
  display: block;
  width: 0;
  overflow: hidden;
  transition: 0.3s;
  margin-inline-start: 5px;
}

/* .content-menu .bars,
.content-menu:hover .arrows {
  display: none;
} */
/* .content-menu:hover .bars {
  display: block;
} */
.content-menu:hover span {
  width: 100px;
}
.content-menu:hover svg path {
  fill: rgb(255, 255, 255);
}

.course-content-list .close-ccl svg {
  width: 18px;
  height: 18px;
  margin-inline-end: 5px;
  opacity: 0.8;
  margin-top: 1px;
}

.list-group-item {
  transition: 0.3s;
}
.list-group-item:hover {
  background-color: var(--green);
  color: white;
}

.resp-course-contents {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 150px;
  z-index: 150;
  right: 0;
}

.course-content-list .title {
  position: relative;
  background: rgb(255, 255, 255);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 12px;
  border-bottom: 1px solid #00000060;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 4px 7px;
}
.course-content-list .title .text {
  font-size: 18px;
  font-weight: bold;
}

.course-content-list .close-ccl {
  /* position: absolute; */
  /* display: flex; */
  /* width: 66px; */
  /* left: 0px; */
  /* right: 0px; */
  /* top: 5px; */
  /* margin-inline: auto 4px; */
  /* justify-content: center; */
  cursor: pointer;
  font-size: 82%;
  /* background: var(--lightred);
  border: 2px solid var(--lightred); */
  padding: 2px 0px;
  /* border-radius: 5px; */
  color: black;
  transition: all 0.3s ease 0s;
  line-height: 1;
}

.course-content-list .close-ccl:hover {
  color: var(--lightred);
}

/* .to-hide {
  position: absolute;
  background: rgb(243, 243, 243);
  width: calc(25.3333% - 5px);
  left: 0px;
  right: 0px;
  margin-inline: 0px auto;
  margin-block-start: 15px;
  transition: margin 1.2s cubic-bezier(0.76, 0.01, 0.2, 0.94) 0s;
  height: calc(100vh - 700px);
   height: 525px;
  height: 100%;
  overflow: hidden;
  padding-inline: 0px;
  z-index: 1;
  margin-top: 0;
} */

.to-hide {
  position: absolute;
  background: rgb(243, 243, 243);
  width: calc(25.3333% - 5px);
  left: 0px;
  right: 0px;
  margin-inline: 0px auto;
  margin-block-start: 15px;
  transition: margin 1.2s cubic-bezier(0.76, 0.01, 0.2, 0.94) 0s;
  height: calc(100% - 67px);
  overflow: hidden;
  padding-inline: 0px;
  z-index: 1;
}

.to-hide.closed {
  /* margin-inline-end: calc(-50% - 5px); */
  right: -100%;
  transition: 0.75s cubic-bezier(0.76, 0.01, 0.2, 0.94) 0s;
}

.course-content-list {
  height: 100%;
}

.cc-list {
  margin-top: 0px;
  overflow: auto;
  height: calc(100% - 40px);
  background: white;
}

.to-expand {
  transition: all 0.8s cubic-bezier(0.82, 0.1, 0.13, 0.9) 0s;
  position: relative;
  margin-inline: auto 0;
}

#item-body .main-content {
  margin-inline: auto 0;
}

.main-content {
  min-height: calc(100vh - 100px);
  position: relative;
}
.content-menu {
  padding: 2px 4px;
  opacity: 1;
  transition: all 0.3s linear 0s;
  border: 2px solid var(--green);
  border-radius: 5px 0 0 5px;
  color: var(--green);
  display: flex;
  align-items: center;
  background-color: white;
}

.content-menu:hover {
  background: var(--green);
  color: rgb(255, 255, 255);
}

.menu-hide {
  opacity: 0;
  pointer-events: none;
}

.course-content-list .accordion-item {
  padding-block: 0px;
  margin-block: 0px;
}

.course-content-list .accordion-button:focus,
.course-content-list .accordion-item .accordion-button {
  background: transparent;
  color: rgb(102, 102, 102);
  box-shadow: none;
  padding-block: 5px;
  border-bottom: 1px solid #ccc;
  border-radius: 0px !important;
}

.course-content-list .accordion-item .accordion-button {
  padding-inline: 6px 22px;
  padding-block: 10px;
}

body.ar .qestions {
  padding-inline-start: 18px;
}

body.ar .course-content-list .accordion-item .accordion-button {
  padding-inline: 22px 6px;
}

body.ar .per-lesson {
  padding-inline: 22px 6px;
}

body.ar .not-allowed-lesson {
  padding-inline: 22px 6px;
}

.course-content-list .accordion-item .accordion-body {
  padding-inline: 0px;
  padding-bottom: 0px;
  padding-top: 0px;
}

.course-content-list .accordion-item .accordion-button::after {
  background-size: 78%;
}

@media (min-width: 1199px) {
  .sec-title {
    margin-bottom: 65px;
  }
}

.sec-title {
  position: relative;
}
.sec-title::before {
  content: "أكاديمية سراج";
  background: var(--dark);
  color: white;
  display: block;
  width: fit-content;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}
.sec-title.why-siraj::before {
  display: block;
  margin-inline: auto;
  content: "مميزاتنا ";
}
.sec-title h2 {
  font-weight: 600;
}

.feature-card {
  margin-top: 60px;
}
.feature-card .icon {
  margin-top: -85px;
}

.acc-heading {
  display: flex;
  flex-direction: column;
  padding-top: 4px;
}

.acc-heading .sec-title {
  margin-bottom: 6px;
  font-size: 17px;
  font-weight: bold;
  color: black;
}
.acc-heading p {
  font-size: 13px;
}

#oldest-courses {
  background-color: #fff0e5;
}

.sec-info {
  font-size: 11px;
  color: rgb(102, 102, 102);
  display: flex;
  align-items: center;
}

.sec-info > span {
  display: inline-flex;
  align-items: center;
}

.sec-info .watched {
  margin-inline-end: 4px;
}

.sec-info .total {
  margin-inline-start: 4px;
}

.acc-heading .course-duration {
  padding-inline-start: 10px;
}

.course-duration > svg {
  margin-inline-end: 4px;
}

.course-duration > span:last-child {
  margin-inline-start: 4px;
}

.cc-list .form-check-input:checked[type="checkbox"] {
  box-shadow: none;
  border: 0px;
}

.per-lesson .form-check {
  display: flex;
}

.not-allowed-lesson .form-check {
  display: flex;
}

.per-lesson .form-check .course-duration {
  font-size: 80%;
  margin-top: 5px;
  color: rgb(119, 119, 119);
}

.not-allowed-lesson .form-check .course-duration {
  font-size: 80%;
  margin-top: 5px;
  color: rgb(119, 119, 119);
}

.per-lesson .form-check .form-check-label {
  display: flex;
  flex-direction: column;
  padding-inline-start: 8px;
  font-weight: 500;
  font-size: 14px;
}

.not-allowed-lesson .form-check .form-check-label {
  display: flex;
  flex-direction: column;
  padding-inline-start: 8px;
  font-weight: normal;
  font-size: 13px;
}

svg.clock {
  width: 12px;
}

.per-lesson {
  display: flex;
  cursor: pointer;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 9px;
  padding-top: 14px;
  padding-inline: 6px 22px;
  transition: 0.4s;
}
.per-lesson:hover {
  background-color: #ddd;
}
.per-lesson.not-allowed-lesson {
  position: relative;
}
.per-lesson.not-allowed-lesson::after {
  content: "\f023";
  font-family: "FontAwesome";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 13px;
  transition: 0.4s;
  color: #ddd;
}
.per-lesson.not-allowed-lesson.has-pdf::after {
  left: 120px;
}

.per-lesson.not-allowed-lesson:hover::after {
  color: #e1306c;
}

.not-allowed-lesson {
  display: flex;
  cursor: not-allowed;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 9px;
  padding-top: 14px;
  padding-inline: 6px 22px;
}

.less-result {
  display: flex;
  flex-direction: column;
  color: var(--green);
}

.less-result > span:last-child {
  font-size: 13px;
}

.download-file {
  border: 2px solid var(--green);
  border-radius: 6px;
  display: inline-flex;
  font-size: 12px;
  min-width: 102px;
  height: 34px;
  align-items: center;
  color: var(--green);
  transition: all 0.3s linear 0s;
  justify-content: center;
  padding-inline: 6px;
}

.download-file svg {
  width: 12px;
  margin-inline-end: 5px;
  transition: all 0.3s linear 0s;
}

.download-file svg path {
  transition: all 0.25s linear 0s;
}

.download-file:hover svg path {
  fill: rgb(255, 255, 255);
}

.download-file:hover {
  color: rgb(255, 255, 255);
  background: var(--green);
}

.final-exam-link a {
  background: var(--green);
  padding: 10px;
  color: rgb(255, 255, 255);
  border-radius: 5px;
  display: flex;
  transition: all 0.2s linear 0s;
  align-items: center;
  justify-content: center;
  /* margin-inline: 5%;
  margin-block: 16px; */
  font-size: 90%;
}

.exam-result-modal .modal-content {
  width: 450px;
  max-width: 95%;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.final-exam-link a:hover {
  background: var(--dark);
}

.active-lesson {
  background-color: #d1d7dc;
}

header .navbar .navbar-toggler {
  order: 4;
  background: rgb(255, 255, 255);
  padding: 0px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

header .navbar .navbar-toggler span {
  font-size: 14px;
}

.dashboard {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.dashboard-header {
  background: var(--dark);
  position: relative;
}

.dashboard-header .navbar-brand {
  display: inline-flex;
  /* border: 1px solid rgba(255, 255, 255, 0.33); */
  margin-top: 10px;
}

.dashboard-header > div > div {
  flex-wrap: nowrap;
  display: flex;
  align-items: center;
}

.dashboard-header > div > div > div:first-child {
  width: calc(25%);
}

.dashboard-header > div > div > div:last-child {
  /* width: calc(75%); */
}

.dashboard-header .navbar {
  display: flex;
  justify-content: flex-end;
}

.dashboard-header .menu-2 {
  margin-inline-end: 25px;
}

.dashboard-body {
  display: flex;
  background: rgb(248, 248, 248);
  flex-grow: 1;
  min-height: 100vh;
  position: relative;
  align-items: start;
}

.dash-menu {
  width: 300px;
  flex-shrink: 0;
  background-position: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: #2d2f31;
  color: white;
  background-image: var(--bs-navbar-toggler-icon-bg);
  /* position: relative; */
  transition: all 0.5s cubic-bezier(0.67, 0.08, 0.34, 0.98) 0s;
  position: sticky;
  top: 0;
  min-height: 100vh;
}

.dash-menu.respnsify {
  width: 40px;
}
.dash-menu .left,
.dash-menu.respnsify .right {
  display: none;
}
.dash-menu.respnsify .left {
  display: block;
}

.dash-content {
  width: calc(100% - 300px);
  /* padding: 40px; */
  padding-inline: 50px 15px;
  transition: all 0.5s cubic-bezier(0.67, 0.08, 0.34, 0.98) 0s;
  flex-grow: 1;
}

.dash-content h1 {
  font-size: 190%;
  margin-block: 15px 25px;
}

.account-pr {
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 10px; */
  flex-shrink: 0;
}

.account-pr img {
  border-radius: 200px;
  width: 70px;
  height: 70px;
  margin-inline-end: 10px;
  transition: all 0.35s linear 0s;
}

.account-pr > span {
  display: flex;
  flex-direction: column;
}

.account-pr > span > span:last-child {
  color: var(--green);
  font-size: 75%;
}

.dash-side-menu {
  margin: 0px;
  padding: 0px;
  /* padding-inline-end: 20px; */
}

.dash-side-menu li {
  list-style-type: none;
}

.dash-side-menu li a {
  display: flex;
  padding: 16px;
  font-size: 95%;
  /* margin-block: 10px; */
  align-items: center;
  gap: 10px;
}

.dash-side-menu li a:hover,
.dash-side-menu li a.active {
  color: rgb(255, 255, 255);
  background: #3e4143;
}

.dash-side-menu li a img {
  width: 20px;
  height: 20px;
  margin-inline-end: 10px;
}

.offcanvas {
  background: white;
}

.btn-close {
  background-color: rgb(255, 255, 255);
  opacity: 0.8;
  margin-inline-end: 5px !important;
}

.nav-container .navbar-light .navbar-nav .nav-link {
  color: var(--green);
}

.nav-container.navbar-light .navbar-nav .nav-link.active,
.nav-container.navbar-light .navbar-nav .show > .nav-link,
.nav-container.navbar-light .navbar-nav .nav-link:focus,
.nav-container.navbar-light .navbar-nav .nav-link:hover {
  color: white;
}

.navbar-nav {
  margin-inline-start: 0px;
}

.bar1,
.bar2,
.bar3 {
  width: 25px;
  height: 2px;
  background-color: rgb(51, 51, 51);
  margin: 6px 0px;
  transition: all 0.4s ease 0s;
}

.cus-toggler.change .bar1 {
  transform: translate(0px, 0px) rotate(0deg);
}

.cus-toggler.change .bar2 {
  opacity: 1;
}

.cus-toggler.change .bar3 {
  transform: translate(0px, 0px) rotate(0deg);
}

.cus-toggler .bar1 {
  transform: translate(0px, 8px) rotate(-45deg);
}

.cus-toggler .bar2 {
  opacity: 0;
}

.cus-toggler .bar3 {
  transform: translate(0px, -8px) rotate(45deg);
}

.cus-toggler {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #2d2f31;
  padding: 5px 8px;
  margin-inline: auto -40px;
  left: 0px;
  right: 0px;
  top: 0px;
  cursor: pointer;
}

.dash-menu.respnsify {
  width: 50px;
}

.account-pr > span,
.dash-side-menu li a > span {
  width: calc(100% - 30px);
  transform: scale(1, 1);
  transition: all 0.5s ease-in-out 0s;
}

.dash-menu.respnsify .account-pr > span,
.dash-menu.respnsify .dash-side-menu li a > span {
  transform: scale(0, 0);
  width: 0px;
  height: 0px;
}

.dash-menu.respnsify .account-pr {
  display: flex;
  flex-direction: column;
}

.dash-menu.respnsify .account-pr img {
  width: 40px;
  height: 40px;
  margin-inline-end: 3px;
}

.dash-menu.respnsify .dash-side-menu {
  padding-inline-end: 0px;
}

.dash-content.respnsify {
  padding-inline-start: 50px;
}

.dash-summery {
  display: flex;
  background: rgb(255, 255, 255);
  padding: 15px;
  border-radius: 8px;
  align-items: center;
  color: rgb(68, 68, 68);
  margin-bottom: 30px;
  font-size: 88%;
}

.dash-summery > img {
  margin-inline-end: 12px;
  width: 68px;
}

.dash-summery > span {
  display: flex;
  flex-direction: column;
}

.dash-summery > span > span:first-child {
  font-weight: 600;
  font-size: 200%;
}

.dash-content-main {
  background: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 35px;
}

.dash-content-main.transparent {
  background: transparent !important;
}

.dash-content-main.slim-no-padding {
  padding: 15px;
}

.dashboard-nav-container .dropdown-toggle svg path {
  fill: rgb(255, 255, 255);
}

@media only screen and (max-width: 991px) {
  .calendar-custom-filteres .row > div {
    display: flex;
  }

  /* .dashboard-body {
    position: relative;
  } */
  .dash-content.respnsify {
    padding-inline: 64px 10px;
  }

  /* .dash-menu {
    position: absolute;
    z-index: 5;
    inset: 0px;
    margin-inline: 0px auto;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.09) 5px 0px 5px;
  } */
  .dash-content-main {
    padding: 20px;
  }

  .dashboard-header .menu-2 {
    margin-inline-end: 15px;
  }
}

.dash-content-main .relative {
  margin-bottom: 20px;
  margin-top: 10px;
}

.dash-content-main .form-select,
.dash-content-main .form-control,
.dash-content-main .select2 {
  padding-block: 12px;
  border: 1px solid rgb(119, 119, 119);
  font-size: 14px;
  border-radius: 10px !important;
}

.select2-selection__rendered,
.select2-selection__rendered {
  height: 58px;
  padding: 1rem;
  background: white;
  border: 1px solid #eee;
  border-radius: 5px;
}

.dash-content-main .form-label {
  margin-bottom: -10px;
  position: absolute;
  margin-inline-start: 18px;
  background: rgb(255, 255, 255);
  margin-top: -10px;
  padding: 0px 10px;
  border-radius: 10px;
  z-index: 1;
}

.upload-img {
  background: rgb(248, 248, 248);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 15px 5px;
}

.image-av-con {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.image-av-con img {
  width: 120px;
  border-radius: 500px;
  height: 120px;
  margin-bottom: 15px;
}

.image-av-con input[type="file"] {
  display: none;
}

.custom-file-upload {
  position: absolute;
  inset: 0px;
  font-size: 215%;
  width: 30px;
  height: 39px;
  margin-inline: auto 3px;
  margin-block: auto 20px;
  cursor: pointer;
}

.custom-file-upload i {
  color: var(--dark);
  transition: all 0.2s linear 0s;
}

.custom-file-upload:hover i {
  color: var(--green);
}

.upload-img .relative {
  width: 100%;
}

.radius-full {
  border-radius: 1000px !important;
}

.filled-light,
.filled-dark {
  display: inline-flex;
  padding: 8px 20px;
  font-size: 90%;
  border: 2px solid !important;
}

.filled-light {
  background-color: var(--green);
  border-color: var(--green);
  color: rgb(255, 255, 255);
}

.filled-light:hover,
.filled-light:focus {
  background-color: transparent;
  border-color: var(--green);
  color: var(--green);
}

.filled-light:hover path,
.filled-light:focus path {
  fill: var(--green);
}

.filled-light:hover path,
.filled-light:focus path {
  stroke: var(--green);
}

.filled-dark {
  background-color: var(--dark);
  border-color: var(--dark);
  color: rgb(255, 255, 255);
}

.filled-dark:hover,
.filled-dark:focus {
  background-color: rgb(255, 255, 255);
  border-color: var(--dark);
  color: var(--dark);
}

.filled-dark:hover path,
.filled-dark:focus path {
  stroke: var(--dark);
}

.bordered-outlined-light,
.bordered-outlined-dark {
  display: inline-flex;
  padding: 8px 20px;
  border: 2px solid;
  font-size: 90%;
}

.bordered-outlined-light {
  background-color: transparent;
  border-color: var(--green);
  color: var(--green);
}

.bordered-outlined-light:hover,
.bordered-outlined-light:focus {
  background-color: var(--green);
  color: rgb(255, 255, 255);
}

.bordered-outlined-dark:hover,
.bordered-outlined-dark:focus {
  background-color: var(--dark);
  color: rgb(255, 255, 255);
}

.actions-row > button:first-child {
  margin-inline-end: 10px;
}

.actions-row > button {
  margin-bottom: 10px;
  display: inline-flex;
}

.join-link a {
  font-size: 80%;
  padding: 5px 14px;
  background: var(--green) !important;
  width: unset !important;
  color: rgb(255, 255, 255) !important;
  border: 2px solid var(--green) !important;
  margin-inline-end: 10px !important;
  border-radius: 5px !important;
}

.join-link a:hover,
.join-link a:focus {
  background: transparent !important;
  color: rgb(255, 255, 255) !important;
  border: 2px solid var(--green) !important;
}

.join-link a > span {
  padding-inline-start: 5px;
}

.dash-content-main .nav.nav-pills {
  border-bottom: 1px solid rgb(202, 202, 202);
}

.nav-pills.details {
  border-bottom: 1px solid rgb(202, 202, 202);
  width: 100%;
  padding-right: 15px;
  overflow: auto;
  flex-wrap: nowrap;
}
.nav-pills.details::-webkit-scrollbar {
  display: none;
}

.nav-pills.details .nav-link {
  position: relative;
  color: var(--dark);
  padding-inline: 0;
  margin-inline: 1rem;
}

.nav-pills.details .nav-link:is(:hover, .active) {
  background-color: initial;
  color: var(--green);
}

.nav-pills.details .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--green);
  transition: 0.4s;
}

.nav-pills.details .nav-link:is(:hover, .active)::after {
  width: 100%;
}

.nav-pills.levels {
  padding-top: 15px;
  border-top: 1px solid rgb(202, 202, 202);
  justify-content: center;
  gap: 15px;
}

.nav-pills.levels .nav-link {
  width: 150px;
  background-color: white;
  color: var(--dark);
  border-radius: 50px;
  border: 1px solid white;
}

.nav-pills.levels .nav-link:is(:hover, .active) {
  color: var(--green);
  border-color: var(--green);
}

.dash-content-main .nav.nav-pills li .nav-link {
  background-color: transparent;
  color: rgb(119, 119, 119);
  border-bottom: 2px solid transparent;
  border-radius: 0px;
  padding-inline: 2px;
  margin-inline-end: 30px;
}

.dash-content-main .nav.nav-pills li:last-child .nav-link {
  margin-inline-end: 0px;
}

.dash-content-main .nav-pills li .nav-link.active {
  color: var(--dark);
  font-weight: 600;
  border-color: var(--dark);
}

.course-itp,
.subject-box {
  background: rgb(255, 255, 255);
  padding: 10px;
  border-radius: 15px;
  margin-bottom: 22px;
}

@media (max-width: 767px) {
  .course-itp {
    max-width: 350px;
    margin: 0 auto 15px;
  }
}

.course-itp img,
.subject-box img {
  width: 100%;
}

.course-itt .cc-rate {
  margin-top: 6px;
}

.course-itt .cc-rate,
.course-itt .cc-rate .stars {
  margin-inline-start: 0px;
  padding-inline-start: 0px;
}

.next-course {
  display: flex;
  justify-content: space-between;
  width: 93%;
}

.next-course .per-trainer img {
  width: 40px;
  height: 40px;
}

.next-course .per-trainer span {
  color: rgb(51, 51, 51);
  font-size: 80%;
}

.date-itt {
  display: flex;
  align-items: center;
}

.date-itt img {
  margin-inline-end: 8px;
}

.next-date {
  display: flex;
  flex-direction: column;
}

.next-date > div:first-child {
  font-size: 80%;
  margin-bottom: 4px;
}

.next-date > div:last-child {
  font-size: 94%;
  margin-bottom: 4px;
}

.course-itt .rate-bar-container {
  display: flex;
  width: 93%;
}

.course-itt .rate-bar-container .progress {
  width: calc(100% - 80px);
  margin-inline-end: auto;
}

.course-itt .cc-teacher {
  margin: 0px;
  display: flex;
  border-top: 0px;
  padding: 2px 0px 0px;
  align-items: center;
  justify-content: flex-end;
}

.course-itp {
  display: flex;
  align-items: center;
  position: relative;
}

.itp-cimg {
  width: 240px;
  margin-inline-end: 20px;
}

.itp-cimg img {
  width: 100%;
  border-radius: 10px;
}

.course-itt {
  width: calc(100% - 260px);
}

.course-itt h3 {
  font-size: 130%;
}

.course-itp.tageem h3 {
  font-size: 100%;
}

.course-itp.tageem .account-pr {
  padding: 0px;
  margin-bottom: 0px;
}

.course-itp.tageem .course-itt > a:nth-of-type(2) {
  padding-inline-start: 54px;
  font-size: 80%;
  color: var(--green);
}

.course-itp.tageem .account-pr > span > span:last-child {
  color: rgb(51, 51, 51);
  font-size: 75%;
}

.account-pr img {
  width: 44px;
  height: 44px;
}

.account-pr .avatar {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background-color: var(--green);
  color: white;
  display: grid;
  place-content: center;
  margin-inline-end: 10px;
  flex-shrink: 0;
}

.course-itp.tageem h3:first-child {
  margin-top: 6px;
  padding-inline-end: 40px;
}

.course-itp .editing {
  position: absolute;
  inset: 0px;
  width: 22px;
  height: 22px;
  margin-inline: auto 15px;
  margin-block: 15px auto;
}

.course-itp .editing svg {
  width: 100%;
}

.succ-percent {
  border: 2px solid rgb(108, 189, 126);
  color: rgb(108, 189, 126);
  display: flex;
  font-weight: bold;
  border-radius: 6px;
  justify-content: center;
  max-width: 100px;
  padding: 2px 1px;
}

.fail-percent {
  border: 2px solid rgb(176, 38, 38);
  color: rgb(176, 38, 38);
  display: flex;
  font-weight: bold;
  border-radius: 6px;
  justify-content: center;
  max-width: 100px;
  padding: 2px 1px;
}

.stacked-stds {
  position: relative;
  width: 100px;
  display: flex;
  justify-content: space-between;
  height: 40px;
  align-items: center;
}

.stacked-stds .teachers-list {
  position: absolute;
  bottom: 50px;
  width: 250px;
  box-shadow: 0 0 10px #00000015;
  z-index: 20;
  display: none;
}
.stacked-stds .teachers-list ul {
  max-height: 200px;
  overflow: auto;
}
.stacked-stds .teachers-list ul::-webkit-scrollbar {
  width: 7px;
}
.stacked-stds .teachers-list .close-list {
  position: absolute;
  top: 5px;
  left: 10px;
  font-size: 17px;
  cursor: pointer;
  color: #00000075;
}

.stacked-stds span {
  position: absolute;
  width: 40px;
  left: 0px;
  right: 0px;
  height: 40px;
  border-radius: 500px;
  overflow: hidden;
  border: 2px solid rgb(255, 255, 255);
}

.stacked-stds span.std1 {
  margin-inline-start: 30px;
  z-index: 4;
}
.stacked-stds span.std1.single {
  margin-inline-start: 0 !important;
}
.stacked-stds p {
  margin-inline-start: 80px;
  width: fit-content;
  text-wrap: nowrap;
  overflow: hidden;
  max-width: 130px;
  text-overflow: ellipsis;
}
.stacked-stds .teacher-name p {
  margin: 0;
}

.stacked-stds span.std1.single + p {
  margin-inline-start: 50px;
}
.stacked-stds span.std2 {
  margin-inline-start: 6px;
  z-index: 8;
}

.stacked-stds span.std3 {
  margin-inline-start: 12px;
  z-index: 12;
}

.stacked-stds span.std4 {
  z-index: 16;
  margin-inline-start: 18px;
}

.stacked-stds span.last-std {
  z-index: 20;
  /* margin-inline-start: 24px; */
  background: var(--green);
  display: flex;
  color: rgb(255, 255, 255);
  font-size: 86%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.stacked-stds a:hover {
  border-color: var(--green);
}

.stacked-stds a > img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.table {
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .table {
    font-size: 14px;
  }
}

.table-responsive thead {
  background: rgb(244, 249, 255);
}

.table-responsive tbody {
  background: rgb(255, 255, 255);
}

.table > :not(:first-child) {
  border-top: none;
}

.table-responsive td,
.table-responsive th {
  vertical-align: middle;
  text-align: center;
}

.table-responsive th {
  border: none;
}

.table-responsive td *,
.table-responsive th * {
  width: max-content;
  display: inline-block;
}

.table-responsive tr:last-child td {
  border: none;
}

.sper-stds {
  display: flex;
  font-size: 80%;
}

.sper-stds img {
  margin-inline-end: 4px;
  width: 44px;
  height: 44px;
  border-radius: 1000px;
}

.success {
  color: rgb(108, 189, 126);
}

.fail {
  color: rgb(252, 138, 137);
}

.cert-tools {
  display: flex;
  padding: 12px 10px;
  justify-content: space-around;
}

.single-cert h5 {
  padding: 8px 12px 5px;
  margin: 0px;
  font-size: 110%;
}

.single-cert {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  background: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 2px inset;
}

.single-cert img {
  width: 100%;
}

.cert-tools a svg {
  margin-inline-end: 5px;
  width: 20px;
  height: 20px;
}

.video-lesson {
  position: relative;
  padding-bottom: 36.25%;
  max-width: 105vh;
  margin-inline: auto;
  height: 0px;
  overflow: hidden;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .video-lesson {
    padding-bottom: 56.25%;
  }
}
.video-lesson iframe,
.video-lesson object,
.video-lesson embed {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.add-note {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border: 1px solid var(--dark);
  cursor: pointer;
}

.textarea-box {
  display: none;
}

.textarea-box.open {
  display: block;
}

#fr-logo {
  display: none;
}

.nots-box select {
  max-width: 300px;
  margin-block: 20px;
}

.start-exam.temp-exam {
  padding-top: 15px;
}

.start-exam-row {
  margin-bottom: 10px;
}

.tabs-style {
  margin-block: 20px;
}

.nav-tabs .nav-link {
  border: 0px;
  padding-inline: 0px;
  margin-inline-end: 25px;
  color: rgb(102, 102, 102);
}

#nav-tabs {
  flex-wrap: nowrap;
  overflow: auto;
}
#nav-tab > * {
  flex-shrink: 0;
}

.nav-tabs .nav-link:last-child {
  margin-inline-end: 0px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;
  border-image: initial;
  border-bottom: 2px solid var(--green);
  color: var(--green);
}

.tab-pane {
  padding-top: 15px;
}

.p-user-q .avatar img {
  border-radius: 800px;
  width: 60px;
  height: 60px;
}

.p-user-q .avatar {
  margin-inline-end: 20px;
}

.p-user-q {
  display: flex;
  border-bottom: 1px solid rgb(238, 238, 238);
  padding-block: 10px 2px;
  margin-bottom: 12px;
}

.q-content > span {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.q-content > span svg {
  margin-inline-start: 5px;
}

body.en .q-content > span svg {
  transform: scale(-1, 1);
}

.q-time {
  margin-right: 10px;
  align-self: center;
}

.q-time p {
  width: max-content;
  padding: 4px 8px;
  background-color: var(--green);
  border-radius: 50px;
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}

.smaller-font h3 {
  font-size: 160%;
}

.date-from {
  margin-top: 5px;
  margin-bottom: 10px;
}

.smaller-font {
  font-size: 90%;
}

.its-reply {
  padding-inline-start: 40px;
}

.avatar.no-image span {
  width: 60px;
  height: 60px;
  border-radius: 600px;
  display: flex;
  background: var(--dark);
  color: rgb(255, 255, 255);
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.question-form {
  border: 1px solid rgb(202, 202, 202);
  padding: 25px;
  border-radius: 10px;
}

.dash-content .trainer-card {
  background: rgb(255, 255, 255);
}

.like-btn {
  position: absolute;
  width: 38px;
  height: 38px;
  background: rgb(255, 255, 255);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 15px;
  left: 0px;
  right: 0px;
  z-index: 0;
  margin-inline: auto 25px;
  border: 0px;
}

.liked path {
  stroke: var(--green);
  fill: rgb(255, 47, 45);
}

.like-btn:hover:not(.liked) {
  background: rgb(228, 228, 228);
}

.like-btn:not(.liked) path,
.like-btn:hover:not(.liked) path {
  stroke: var(--green);
}

@keyframes expand {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }

  90% {
    transform: scale(2.6);
    opacity: 0;
  }

  100% {
    transform: scale(0);
    opacity: 0;
  }
}

.liked::before {
  content: "";
  position: absolute;
  width: 130%;
  height: 130%;
  z-index: -1;
  border-radius: 12px;
}

.liked {
  background: rgb(241, 241, 241);
  animation-name: expand;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
}

.teacher-go.sst-2 {
  border-radius: 8px;
  width: auto;
  padding-inline: 16px;
  margin-top: 8px;
}

.teacher-go.sst-2 svg {
  margin-inline-start: 8px;
}

.sst-2 .light-blue-text {
  font-size: 120%;
  display: flex;
  margin-bottom: 2px;
}

.sst-2 .dd.d-1 {
  margin-bottom: 10px;
}

.select-info > div:first-child svg path {
  fill: var(--green);
}

.select-info {
  margin-top: 20px;
  font-size: 80%;
  margin-bottom: 20px;
}

.select-info > div {
  margin-bottom: 5px;
}

.select-info > div svg {
  width: 14px;
  margin-inline-end: 2px;
}

.myc-date-header {
  display: inline-flex;
  padding: 10px;
  justify-content: center;
  font-weight: bold;
  flex-direction: column;
  align-items: center;
}

.myc-available-time {
  border-radius: 2px;
  color: var(--dark);
  background-color: rgb(243, 248, 252) !important;
}

.myc-available-time:hover {
  border-radius: 2px;
  color: rgb(255, 255, 255);
  background-color: var(--green) !important;
}

#myc-dates-container {
  background-color: transparent;
}

.myc-date-header,
#myc-week-container,
#myc-available-time-container {
  border: 0px;
}

#myc-next-week,
#myc-prev-week,
#myc-next-week:hover,
#myc-prev-week:hover {
  border: 0px;
  color: transparent !important;
}

#myc-next-week {
  background: url("../imgs/arrow.svg") 50% center / 40% no-repeat;
  color: transparent !important;
}

#myc-prev-week {
  background: url("../imgs/arrow.svg") 50% center / 40% no-repeat;
  transform: scale(-1);
}

body.ar #myc-prev-week-container {
  transform: scale(-1);
}

.myc-day-time-container {
  padding: 5px;
}

.myc-date-header:first-of-type {
  padding-left: 10px;
}

.current-time {
  color: var(--dark);
  margin-bottom: 30px;
}

#myc-current-month-year-container {
  font-weight: 600;
  color: var(--dark);
}

.myc-date-number {
  font-weight: 500;
}

.the-date {
  display: inline-flex;
  font-size: 130%;
}

.the-date > span {
  margin-inline-end: 5px;
}

#myc-nav-container {
  margin-bottom: 5px;
}

.book-now {
  background: var(--dark);
  color: rgb(255, 255, 255);
  padding: 6px 15px;
  min-width: 180px;
  display: flex;
  border-radius: 4px;
  justify-content: center;
}

.book-now:hover {
  background: var(--green);
  color: rgb(255, 255, 255);
}

.book-now-con {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 35px;
}

.current-week {
  display: flex;
  background: var(--dark);
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  border-radius: 8px;
  color: rgb(255, 255, 255);
}

.current-week svg {
  width: 26px;
}

.current-week .ppl-1 {
  width: 40px;
  text-align: center;
}

.current-week .ppl-2,
.current-week .ppl-3 {
  width: calc(50% - 20px);
  text-align: center;
}

.current-week .ppl > div:first-child {
  color: var(--green);
}

.current-week .ppl > div:last-child {
  margin-top: -6px;
}

.current-week .ppl > div:first-child {
  margin-bottom: -2px;
  font-size: 90%;
}

.ppl-2 {
  position: relative;
}

.ppl-2::before {
  content: "";
  width: 1px;
  background: rgb(255, 255, 255);
  position: absolute;
  inset: 4px 0px;
  height: calc(100% - 8px);
  margin-inline: auto 0px;
}

.filter-links {
  margin-top: 30px;
  position: relative;
  z-index: 2;
  background: rgb(255, 255, 255);
  margin-bottom: 40px;
}

.filter-links a {
  display: flex;
  padding: 10px;
  border-radius: 2px;
  margin-block: 4px;
}

.filter-links a:hover,
.filter-links a.active {
  background: var(--dark);
  color: rgb(255, 255, 255);
}

.show-range-container {
  transition: all 0.3s linear 0s;
  margin-bottom: 40px;
  margin-top: -28px;
}

.fc-h-event {
  margin-inline-end: 2px;
  width: calc(100% - 2px);
  border-radius: 0px;
  background: transparent;
  border: 0px;
}

.cal-item {
  padding: 5px;
  border-inline-start: 3px solid rgb(202, 202, 202);
  background: rgb(233, 233, 233);
  border-start-end-radius: 5px;
  border-end-end-radius: 5px;
}

.cal-item > div:first-child > img:first-child {
  position: relative;
  z-index: 1;
}

.cal-item > div:first-child > img:not(:first-child) {
  position: absolute;
  margin-inline-start: -20px;
  z-index: 0;
}

.cal-item img {
  width: 38px;
  height: 38px;
  border-radius: 800px;
  border: 1px solid rgb(255, 255, 255);
}

.cal-title {
  font-weight: 600;
  font-size: 90%;
  margin-block: 5px 1px;
}

.cal-date {
  font-size: 80%;
}

.course-color {
  color: rgb(40, 55, 114);
  border-color: rgb(40, 55, 114);
  background: rgba(40, 55, 114, 0.1);
}

.trainer-color {
  color: rgb(108, 189, 126);
  border-color: rgb(108, 189, 126);
  background: rgba(108, 189, 126, 0.1);
}

.program-color {
  color: rgb(66, 155, 213);
  border-color: rgb(66, 155, 213);
  background: rgba(66, 155, 213, 0.1);
}

.multi-color {
  color: rgb(255, 154, 213);
  border-color: rgb(255, 154, 213);
  background: rgba(255, 154, 213, 0.1);
}

.color-hints {
  display: flex;
  font-size: 70%;
  justify-content: flex-end;
  margin-bottom: 15px;
}

.color-hints > div {
  border-radius: 100px;
  color: rgb(255, 255, 255);
  margin-inline-end: 6px;
  padding: 7px 10px;
  font-weight: 600;
}

.color-hints > div:last-child {
  margin-inline-end: 0px;
}

.multi-c {
  background-color: rgb(255, 154, 213);
}

.program-c {
  background-color: rgb(66, 155, 213);
}

.trainer-c {
  background: rgb(108, 189, 126);
}

.course-c {
  background: rgb(40, 55, 114);
}

.fc-header-toolbar button {
  background: rgb(255, 255, 255) !important;
  color: rgb(102, 102, 102) !important;
  border-color: rgb(235, 235, 235) !important;
}

.fc-header-toolbar button:hover,
.fc-header-toolbar button:focus {
  box-shadow: none !important;
  background: rgb(248, 248, 248) !important;
}

.fc-theme-standard td,
.fc-theme-standard th {
  border: 0px;
}

.fc-theme-standard .fc-scrollgrid {
  border: 0px;
}

.fc-daygrid-day-top {
  padding-inline: 10px;
}

.fc-daygrid-day-top a {
  color: rgb(119, 119, 119);
}

.fc-col-header {
  background: rgb(250, 250, 250);
  padding-block: 15px;
}

.fc-col-header th {
  padding-block: 10px;
}

.fc-col-header th div a {
  color: rgb(102, 102, 102);
  font-weight: 600;
}

.fc .fc-toolbar-title {
  font-size: 1.4em;
}

.calendar-custom-filteres {
  margin-top: -10px;
  margin-bottom: 30px;
}

.calendar-custom-filteres .row {
  align-items: center;
  display: flex;
}

.cal--filters {
  display: flex;
  font-size: 80%;
  margin-bottom: 15px;
  align-items: center;
  width: 100%;
}

.cal--filters > div:first-child {
  margin-inline-end: 10px;
}

.cll-filters {
  display: flex;
  border: 1px solid rgb(239, 239, 239);
  border-radius: 8px;
  background: rgb(250, 250, 250);
  overflow: hidden;
}

.cll-filters a:first-child {
  border-inline-start: 0px;
}

.cll-filters a {
  border-inline-end: 0px;
  padding: 7px 14px;
  min-width: 50px;
  border-radius: 6px;
  text-align: center;
}

.cll-filters a.active {
  background: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.07) 0px 0px 5px;
}

.cll-filters a:hover {
  background: var(--green);
  color: rgb(255, 255, 255);
}

.multi-items {
  position: relative;
}

.multi-items > span:not(:first-child) {
  margin-inline-start: 10px;
}

.link-to-multi {
  display: flex;
  width: 44px;
  height: 44px;
  background: rgb(66, 155, 213);
  border-radius: 500px;
  position: absolute;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  font-weight: 600;
}

.link-to-multi:hover,
.link-to-multi:focus {
  background: var(--dark);
  color: rgb(255, 255, 255);
}

.cusOver {
  position: absolute;
  bottom: 60px;
  background: rgb(255, 255, 255);
  opacity: 0;
  left: -5px;
  right: -5px;
  padding: 10px 12px 16px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.11) 0px 2px 5px;
}

.co-header {
  display: flex;
  justify-content: flex-end;
}

.co-header .btn,
.co-header .btn:hover,
.co-header .btn:active,
.co-header .btn:focus {
  border: 0px;
  box-shadow: none;
  padding: 0px;
  margin: 0px;
}

.co-header > .btn img {
  width: 22px !important;
  height: 22px !important;
}

.co-body .cc-teacher {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  margin: 0px;
  border-top: 0px;
}

.co-body .cc-teacher img {
  margin-inline-end: 3px;
}

.co-body .cc-teacher > span {
  margin-bottom: 8px;
  font-size: 110%;
}

.co-body .cc-teacher > span:last-child {
  margin-bottom: 0px;
}

@keyframes cAnim {
  0% {
    bottom: 70px;
    opacity: 0;
  }

  100% {
    bottom: 60px;
    opacity: 1;
  }
}

.cAnim {
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.63, 0.29, 0.12, 0.91);
  opacity: 1;
  animation-name: cAnim !important;
}

.multi-view-content > .row > .item-row-style .course-card .cc-image img {
  border-start-start-radius: 10px;
  border-end-start-radius: 10px;
}

.multi-view-content > .row > .item-row-style .course-card {
  overflow: visible;
}

.multi-view-content > .row > .item-row-style .cusOver {
  top: 60px;
  z-index: 1;
  bottom: unset !important;
}

.back-container {
  margin-top: 15px;
  display: flex;
}

.back-container a {
  background: #429bd5;
  padding: 4px 12px;
  border-radius: 4px;
  color: #ffffff;
  transition: all 0.2s linear;
}

.back-container a svg {
  width: 18px;
  height: 18px;
  margin-inline-end: 4px;
}

.back-container a svg path {
  fill: #fff;
  transition: all 0.2s linear;
}

.back-container a:hover {
  background: #283772;
  color: #429bd5;
}

.back-container a:hover svg path {
  fill: #429bd5;
}

.course-bar.st-2 {
  padding-inline: 35px;
}

.cg-right {
  background: var(--dark);
  padding: 15px;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cg-right .cb-trainers {
  border: 0;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cg-right .cb-trainers a {
  margin-bottom: 15px;
}

.cg-right .cc-rate {
  padding-inline-start: 0;
}

.cg-left .course-itt .rate-bar-container,
.cg-left .course-itt {
  width: 100%;
}

.cg-left .cc-row-1 > span > a:first-child {
  background-color: transparent;
  color: var(--green);
}

.cg-left .cc-row-1 > span > a:nth-child(2) {
  background-color: var(--green);
  color: #fff;
  box-shadow: none;
  font-size: 80%;
  border-color: var(--green);
}

.cg-left .cc-row-1 > span > a:last-child {
  background-color: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.group-timing {
  background: #f5f7fd;
  padding: 20px;
  border-radius: 13px;
  margin-bottom: 11px;
}

.group-timing .title > span {
  padding-bottom: 4px;
  display: inline-flex;
  position: relative;
}

.group-timing .title > span:after,
.group-timing .title > span:before {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  background: #283772;
  bottom: 0;
}

.group-timing .title > span:before {
  bottom: -3px;
}

.group-timing .title {
  margin-bottom: 10px;
}

.group-timing .title,
.group-timing .subtitle {
  font-weight: 600;
}

.group-timing > .row > div:first-child {
  border-inline-end: 1px solid #00000030;
}

.per-time {
  display: flex;
  justify-content: space-between;
  margin-block: 5px;
}

.per-time .time {
  color: var(--dark);
  font-weight: 600;
  font-size: 94%;
}

.single-cg .next-course {
  width: 100%;
}

.single-cg {
  border: 2px solid #d9d9d9;
  padding: 15px;
  border-radius: 24px;
  margin-bottom: 30px;
}

.coursing-date .cd,
.coursing-date .cd > div:first-child {
  display: flex;
  align-items: center;
}

.coursing-date .cd > div:first-child {
  color: #fff;
  font-size: 90%;
  width: 146px;
}

.coursing-date .cd > div:last-child {
  color: #429bd5;
  font-size: 90%;
}

.single-book {
  border: 1px solid #e0e0e0;
  border-radius: 13px;
  overflow: hidden;
  margin-bottom: 25px;
}

.single-book img {
  max-width: 90%;
  margin: 15px auto;
}

.single-book .img-con {
  text-align: center;
}

.single-book a {
  background: var(--dark);
  padding: 8px 18px;
  border-radius: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 85%;
}

.single-book a:hover {
  background: var(--green);
}

.single-book a svg {
  width: 20px;
  margin-inline-end: 8px;
}

.single-book a svg path {
  fill: #fff;
}

.book-title {
  display: flex;
  flex-direction: column;
  background: #f5f7fd;
  padding: 12px;
}

.book-title h2 {
  font-size: 140%;
}

.book-title > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h1.books {
  color: var(--green);
  margin-bottom: 20px;
  margin-top: 25px;
  font-size: 180%;
}

@media screen and (max-width: 1200px) {
  .price-row {
    flex-direction: column;
  }

  .dash-menu {
    position: absolute;
    z-index: 5;
    inset: 0px;
    margin-inline: 0px auto;
    box-shadow: rgba(0, 0, 0, 0.09) 5px 0px 5px;
  }
}

@media screen and (max-width: 1199px) {
  .next-course {
    flex-wrap: wrap;
  }

  .course-bar {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .course-bar > div {
    width: 25%;
    margin-block: 5px;
  }

  .course-bar > div:last-child {
    width: 50%;
  }

  .cbar .price-row {
    transform: translate(0px, 0px);
    flex-direction: row;
    align-items: center;
    display: flex;
  }

  .cbar .discount-summery {
    margin-inline-start: 10px;
  }

  .activity-view-items {
    display: flex;
    flex-wrap: wrap;
  }

  .activity-view {
    flex-direction: column;
    width: calc(50% - 10px);
  }

  .activity-view:nth-child(2n + 1) {
    margin-inline-end: 20px;
  }

  .activity-view .av-info {
    padding-inline: 10px;
  }

  .activity-view > div {
    width: 100% !important;
  }
}

@media screen and (min-width: 992px) {
  .navbar-nav {
    /* margin-inline-start: 40px; */
  }
}

@media screen and (max-width: 991px) {
  .itp-cimg {
    width: 200px;
  }

  .course-itt {
    width: calc(100% - 220px);
  }

  .std-summery-bar > div {
    margin-inline-end: calc(30px);
  }

  .blog-details .post-nav a,
  .post-nav a {
    display: flex;
    background: rgb(241, 243, 248);
    padding: 12px;
    width: calc(50% - 5px);
  }

  .post-info-bar {
    margin-bottom: 15px;
  }

  .ppart1 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tbh-info {
    padding-inline-start: 0px;
    width: calc(100%);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nnextra {
    display: flex;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.83);
    padding: 15px 25px;
    margin-top: 10px;
  }

  .tbh-info2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
  }

  .trainer-bio-heading img {
    width: 160px;
  }

  .course-bar > div {
    width: 50%;
  }

  .course-bar > div:last-child {
    width: 100%;
    justify-content: center;
  }

  header .navbar {
    display: flex;
    justify-content: flex-end;
  }

  .reverse-col {
    flex-direction: column-reverse;
  }

  .course-summery,
  .course-summery.not-levels {
    margin-top: 40px;
    max-width: 480px;
    margin-inline: auto;
    margin-bottom: 40px;
  }

  .partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .single-partner {
    width: 20%;
  }

  .single-partner img {
    width: 100%;
    height: auto;
  }

  .home-s-6 .show-all {
    display: inline-flex;
    margin-inline: auto !important;
  }

  .section-1 {
    margin-top: 50px;
  }

  .slider-img-item img {
    max-width: 75%;
  }

  .offcanvas {
    background-color: white;
  }
  .offcanvas .navbar-nav .nav-link {
    color: rgb(23 37 66 / 75%) !important;
  }
  .offcanvas .navbar-nav .nav-link.active {
    color: var(--dark) !important;
  }

  .offcanvas-body .dropdown-menu {
    border: 0px;
    padding-inline-start: 15px;
  }

  .offcanvas-body .dropdown-menu a {
    padding: 8px 0px;
  }

  .offcanvas-body .dropdown-menu a:hover {
    background: transparent;
  }

  .dropdown-toggle svg path {
    fill: rgb(51, 51, 51);
  }

  .menu-2 {
    margin-inline-end: 40px;
  }

  header .navbar-brand {
    margin-inline: 0px auto;
  }

  .slider-links {
    display: flex;
    flex-wrap: wrap !important;
  }

  .tbh-info2 .slider-links {
    width: 50%;
  }

  .colored-banner .slider-links {
    flex-wrap: nowrap;
  }

  .colored-banner .slider-links a {
    margin-inline-end: 15px;
  }

  .colored-banner .slider-links a:last-child {
    margin-inline-end: 0px;
  }

  .slider-links a {
    width: auto;
    display: flex;
    margin-inline: 0px;
  }

  .box-block {
    flex-wrap: wrap;
    padding: 20px;
  }

  .box-block > div {
    width: 50%;
  }

  .title-arrow {
    margin-top: 10px;
  }

  .box-block .block-title {
    width: 100%;
    background: rgba(202, 202, 202, 0.2);
    border-radius: 20px;
    padding: 14px 20px;
  }

  .testimonials-img {
    max-width: 360px;
    margin: 0px auto 40px;
    display: flex;
  }

  .home-s-6-2 .container .row {
    flex-direction: column-reverse;
  }

  .parners-side {
    max-width: 70%;
    margin: 0px auto 35px;
  }

  .newsletter-container > .row > div {
    text-align: center;
  }

  .newsletter-container > .row > div:first-child {
    padding-bottom: 0px;
  }

  .newsletter-container form {
    width: 80%;
    margin-inline: auto;
  }

  .cr {
    justify-content: center;
  }

  .logo-in-footer {
    display: flex;
    justify-content: center;
  }

  .home-s-6 .container > .row > div:first-child {
    display: flex;
    flex-direction: column;
  }

  .to-hide {
    width: 460px;
    margin-block-start: 0px;
    height: calc(100vh - 40px);
    box-shadow: rgba(0, 0, 0, 0.14) -4px 3px 13px;
    border-start-start-radius: 8px;
    border-end-start-radius: 8px;
  }

  .to-hide.closed {
    /* margin-inline-end: calc(-50% - 460px); */
    right: -100%;
  }

  .start-exam-row {
    display: flex;
    align-items: center;
  }

  .start-exam-row > div {
    display: flex;
    width: 50% !important;
  }

  .start-exam-row > div:first-child {
    display: flex;
    justify-content: flex-start;
  }

  .start-exam-row > div:last-child {
    display: flex;
    justify-content: flex-end;
  }

  .upload-img {
    margin-bottom: 30px;
  }

  .group-timing > .row > div:first-child {
    border-inline-end: 0px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .groups-container .container > .row > div {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .fc-header-toolbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
  }

  .fc-header-toolbar > div {
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .fc-toolbar-chunk:first-child > button {
    margin-inline: auto 0px !important;
  }

  .fc-toolbar-chunk:last-child,
  .fc-toolbar-chunk:last-child > div {
    display: flex;
    width: 100%;
  }

  .course-itp {
    display: flex;
    flex-direction: column;
  }

  .next-course,
  .course-itt .rate-bar-container,
  .course-itt {
    width: 100%;
  }

  .next-course .cc-row-1 {
    padding-inline-end: 0px;
  }

  .itp-cimg {
    width: 100%;
    margin-inline-end: 0px;
  }

  .course-itt .cc-teacher {
    margin-top: 10px;
  }

  .single-q {
    display: inline-flex;
    width: 52px;
  }

  .start-exam-row > div {
    display: flex;
    justify-content: center;
  }

  .student-summery > div {
    display: flex;
    flex-direction: column;
  }

  .std-summery-bar > div {
    margin-inline-end: calc(0px);
    display: flex;
  }

  .std-summery-bar > div:last-child {
    margin-inline: auto;
    display: flex;
    align-items: center;
  }

  .ssb-title {
    margin-inline-end: 15px;
  }

  .post-info-bar {
    flex-wrap: wrap;
  }

  .post-info-bar > div:not(.container) {
    width: calc(50% - 15px);
    margin-inline-end: 5px;
  }

  .post-info-bar .post-info-bar {
    display: flex;
    margin-block: 10px;
  }

  .post-info-bar.share-tool,
  .post-info-bar.share-tool > div {
    display: flex;
    justify-content: center;
    margin-block: 4px -2px;
  }

  .cb-trainers {
    flex-wrap: wrap;
  }

  .login-desc img {
    margin: 0px auto;
    display: flex;
  }

  .tbh-info2 .slider-links {
    width: 75%;
  }

  .cb-trainers a {
    width: 100%;
    margin-block: 5px;
  }

  .per-trainers-info {
    flex-direction: column;
    background: rgb(248, 248, 248);
  }

  .rating-block-details {
    flex-direction: column;
  }

  .rating-block1 {
    height: auto;
    padding: 20px !important;
  }

  .rating-block1,
  .rating-b2 {
    width: 100%;
    padding-inline: 0px;
  }

  .per-trainers-info img {
    margin: 0px auto 15px;
  }

  .register-link > span,
  .change-view {
    display: none !important;
  }

  .navbar-brand svg {
    width: 60px;
  }

  .main-slider .col-md-5 {
    order: 1;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
  }

  .main-slider .col-md-7 {
    order: 2;
  }

  .h-shape-underlined {
    margin-bottom: 45px;
    font-size: 160%;
  }

  .custom-col {
    max-width: 420px;
    margin: 5px auto 10px;
  }

  .login-desc {
    margin-bottom: 30px;
  }

  .form-container {
    max-width: 100% !important;
  }

  .activity-view {
    width: calc(80% - 0px);
    display: flex;
    margin: 6px auto 18px !important;
  }

  .activity-view:nth-child(2n + 1) {
    margin-inline-end: 0px;
  }

  .to-hide {
    width: 420px;
  }

  .to-hide.closed {
    /* margin-inline-end: calc(-50% - 420px); */
    right: -100%;
  }

  .join-link a > span {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .menu-2 {
    margin-inline-end: 12px;
  }

  .newsletter-container form {
    width: 94%;
  }

  .tbh-info2 .slider-links {
    width: 80%;
  }

  .fixed-top {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media screen and (max-width: 500px) {
  .slider-img-item img {
    max-width: 85%;
  }

  .tbh-info2 .slider-links {
    width: 90%;
  }

  .activity-view {
    width: calc(100% - 0px);
  }
}

.modal-dialog {
  max-width: none;
}
.modal-content {
  width: 95%;
  max-width: 1200px;
  margin-inline: auto;
  height: 85vh;
}

.share-popup {
  position: fixed;
  left: 50%;
  background: rgb(255, 254, 254);
  padding: 25px;
  border-radius: 15px;
  top: 50%;
  max-width: 80%;
  width: 380px;
  display: none;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%) scale(1.2);
  z-index: 2500;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 80%);
  display: none;
  z-index: 2000;
}
.share-popup :is(header, .icons, .field) {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.share-popup .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #ebedf9;
}
.share-popup .head span {
  font-size: 21px;
  font-weight: 600;
}
.share-popup .head .close,
.icons a {
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.share-popup .head .close {
  color: #878787;
  font-size: 17px;
  background: #f3f3f3;
  height: 33px;
  width: 33px;
  cursor: pointer;
}
.share-popup .head .close:hover {
  background: #ebedf9;
}
.share-popup .content {
  margin: 20px 0;
}
.share-popup .icons {
  margin: 15px 0 20px 0;
}
.share-popup .content p {
  font-size: 16px;
}
.share-popup .content .icons a {
  height: 50px;
  width: 50px;
  font-size: 20px;
  text-decoration: none;
  color: var(--green);
  border: 1px solid var(--green);
}
.share-popup .icons a i {
  transition: transform 0.3s ease-in-out;
}
/* .share-popup .icons a:nth-child(1) {
  color: #1877f2;
  border-color: #b7d4fb;
}
.share-popup .icons a:nth-child(1):hover {
  background: #1877f2;
}
.share-popup .icons a:nth-child(2) {
  color: #46c1f6;
  border-color: #b6e7fc;
}
.share-popup .icons a:nth-child(2):hover {
  background: #46c1f6;
}
.share-popup .icons a:nth-child(3) {
  color: #e1306c;
  border-color: #f5bccf;
}
.share-popup .icons a:nth-child(3):hover {
  background: #e1306c;
}
.share-popup .icons a:nth-child(4) {
  color: #25d366;
  border-color: #bef4d2;
}
.share-popup .icons a:nth-child(4):hover {
  background: #25d366;
}
.share-popup .icons a:nth-child(5) {
  color: #0088cc;
  border-color: #b3e6ff;
}
.share-popup .icons a:nth-child(5):hover {
  background: #0088cc;
} */
.share-popup .icons a:hover {
  background-color: var(--green);
  color: #fff;
}
.share-popup .icons a:hover i {
  transform: scale(1.2);
}
.share-popup .content .field {
  margin: 12px 0 -5px 0;
  height: 45px;
  border-radius: 4px;
  padding: 0 5px;
  border: 1px solid #757171;
}
.share-popup .field.active {
  border-color: #7d2ae8;
}
.share-popup .field i {
  width: 50px;
  font-size: 18px;
  text-align: center;
}
.share-popup .field.active i {
  color: #7d2ae8;
}
.share-popup .field input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 15px;
}
.share-popup .field button {
  color: #fff;
  padding: 5px 18px;
  border: 1px solid #27a467c7;
  background: #27a467c7;
  border-radius: 5px;
  width: 100px;
  flex-shrink: 0;
}
.share-popup .field button:hover {
  border-color: var(--green);
  background: var(--green);
}

#subs {
  background-color: #eef4f6;
}

.method-list .method-box input {
  display: none;
}
.method-list .method-box label {
  border: 1px solid #ccc;
  padding: 5px;
  border-radius: 7px;
  cursor: pointer;
}
.method-list .method-box input:checked + label {
  border-color: var(--green);
}

.accordion-button:focus {
  box-shadow: none !important;
}

.info-list li h6 {
  flex-shrink: 0;
  width: max-content;
}
.info-list li p {
  word-break: break-all;
}
.info-list li .copy {
  padding: 8px;
  border: 1px solid var(--green);
  display: grid;
  place-content: center;
  border-radius: 8px;
  color: var(--green);
  cursor: pointer;
  transition: 0.3s;
}
.info-list li .copy > div {
  line-height: 1;
}
.info-list li .copy:hover {
  background-color: var(--green);
  color: white;
}
.info-list li .copy .hide {
  display: none;
}

#media .news-card {
  text-align: center;
  padding: 10px 10px 0;
  border-radius: 10px;
  box-shadow: 0 0 10px #00000025;
  transition: 0.3s;
}
#media .news-card .news-img {
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}
#media .news-card h6 {
  margin-bottom: 0;
  padding-block: 10px;
  font-size: 20px;
}
#media .news-card:hover {
  padding: 5px 5px 0;
  /* box-shadow: none; */
}

#media .media .img-box {
}
#media .media .img-box img {
  border-radius: 10px;
  padding: 10px;
  /* width: 250px; */
  width: auto;
  max-width: 600px;
  height: 260px;
  transition: 0.3s;
}
#media .media .img-box img.long {
  max-width: none;
  height: 360px;
}
#media .media .img-box:hover img {
  filter: brightness(0.5) sepia(1) hue-rotate(50deg);
}

#features ol {
  padding: 0;
}
#features ol li {
  position: relative;
  list-style: none;
  padding-inline-start: 20px;
}
#features ol li::after {
  content: "\f00c";
  position: absolute;
  top: 0;
  right: 0;
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 13px;
  color: var(--green);
}

.modal-dialog modal-lg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.sups-modal {
  max-width: 350px;
  height: auto;
}

/* New Style */
#trainer-page .ppart1 {
  flex-direction: column;
}
#trainer-page .ppart1 img {
  border-radius: 50%;
  margin-inline: auto;
}
#trainer-page .ppart1 .tbh-info {
  text-align: center;
  width: 100%;
}
#trainer-page .ppart1 .trainer-branch {
  overflow: auto;
}
#trainer-page .ppart1 .trainer-branch::-webkit-scrollbar {
  display: none;
}
#trainer-page .ppart1 .trainer-branch > a {
  flex-shrink: 0;
}
#trainer-page .ppart1 .trainer-rating {
  justify-content: center;
}
@media (min-width: 992px) {
  .page-row .col-lg:first-child {
    max-width: 400px;
  }
}
#trainer-page .ppart1 .price-box {
  background-color: #ebeff8;
}
#trainer-page .ppart1 .price-box .price h2 {
  color: var(--green);
}
#trainer-page .ppart1 .price-box .time h2 {
  color: var(--dark);
}

#trainer-page .nnextra .po {
  /* width: 50%; */
}
#trainer-page .order-now a {
  background-color: var(--green);
  border: 1px solid var(--green);
  color: white;
  transition: 0.3s;
}
#trainer-page .order-now a:hover {
  color: var(--green);
  background-color: white;
}

#trainer-page .order-now.disable a {
  background-color: #ccc !important;
  color: white !important;
  border-color: #ccc !important;
  cursor: no-drop;
}
#trainer-page .myc-day-time-container {
  max-height: 380px;
  overflow: auto;
}
#trainer-page .myc-day-time-container::-webkit-scrollbar {
  display: none;
}
#trainer-page .trainer-bio-heading img {
  width: 125px;
}
#trainer-page .modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: 350px;
  max-width: 95%;
  direction: rtl;
}

#calendar-bicker {
  width: 100%;
  border-radius: 8px !important;
  box-shadow: 0 0 10px #00000015;
  height: 40px;
  border: 1px solid #999;
  text-align: left;
  padding-inline: 20px;
}
.jcalendar-container {
  top: 35px !important;
  left: 50% !important;
  transform: translateX(-50%);
  right: auto !important;
}
.jcalendar-content {
  width: 100%;
  border-radius: 10px;
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/
#overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark);
  opacity: 0.85;
  z-index: 1100;
  display: none;
}

.ltr {
  direction: ltr !important;
}

.arrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.close {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.close:hover {
  color: indianred;
  -webkit-transform: rotate(180deg) scale(1.1);
  transform: rotate(180deg) scale(1.1);
}

.overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.85;
  position: fixed;
  z-index: 1050;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: none;
  cursor: pointer;
}

/*.fa-star {*/
/*  color: #dedfe0;*/
/*}*/
.fa-star.full {
  color: #ff9800;
}

.multi-ele {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.justify {
  text-align: justify;
}

.social-links .icon {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.social-links .icon.whats:hover {
  color: #25d366;
}
.social-links .icon.face:hover {
  color: #1877f2;
}
.social-links .icon.insta:hover {
  color: #833ab4;
}
.social-links .icon.snap:hover {
  color: #fffc00;
}
.social-links .icon.youtube:hover {
  color: #ff0000;
}

@media (min-width: 1400px) {
  .container-fluid {
    max-width: 1650px;
  }
}

.row {
  margin-inline: 0;
}

.slick-dotted .slick-dots {
  bottom: -35px;
}
.slick-dotted .slick-dots li {
  width: 35px;
}
.slick-dotted .slick-dots button {
  width: 35px;
  height: 2px;
  background-color: #f5f8fa;
  border: 2px solid #eeeeee;
  position: relative;
  position: relative;
  padding: 0;
}
.slick-dotted .slick-dots button::before {
  display: none;
}
.slick-dotted .slick-dots .slick-active button {
  border-color: var(--green) !important;
}
.slick-dotted .slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  /* border: 1px solid var(--green); */
  display: -ms-grid;
  display: grid;
  place-content: center;
  z-index: 10;
  box-shadow: 0 4px 1px #00000070;
  top: auto;
}

.slick-dotted .slick-arrow::before {
  font-family: FontAwesome;
  font-weight: 900;
  color: black;
  font-size: 22px;
}
.slick-dotted .slick-arrow.slick-prev {
  right: -175px;
  left: auto;
}
.slick-dotted .slick-arrow.slick-prev::before {
  content: "\f105";
}
.slick-dotted .slick-arrow.slick-next {
  right: -125px;
  left: auto;
}
.slick-dotted .slick-arrow.slick-next::before {
  content: "\f104";
}
.slick-dotted.light .slick-dots button {
  border-color: black;
}

.special-cards.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.main-btn {
  background-color: var(--main) !important;
  color: white !important;
  border: 1px solid var(--main) !important;
  -webkit-transition: 0.3s !important;
  transition: 0.3s !important;
}
.main-btn path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-btn:hover {
  background-color: white !important;
  color: var(--main) !important;
}
.main-btn:hover path {
  fill: var(--main) !important;
}

.main-title h2::after {
  display: none;
}
.main-color {
  color: var(--green);
}
.main-title h2::before {
  content: "";
  position: absolute;
  bottom: -20px;
  width: 250px;
  height: 12px;
  background: url("./img/main-title-shape.svg");
}

main {
  position: relative;
}
main .mask {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 95%;
}
@media (max-width: 991px) {
  main .mask {
    max-width: none;
    height: 115%;
  }
  main .mask img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
main .container {
  position: relative;
  z-index: 14;
}

.distinctive-courses {
  background-color: var(--dark);
  position: relative;
}
.distinctive-courses .mask {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  z-index: 0;
  opacity: 0.09;
  height: 80%;
}
.distinctive-courses .mask img {
  max-width: 100%;
  height: 100%;
}

.banners .banner-box {
  height: 600px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 385px;
  margin-inline: auto;
}
.banners .banner-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 45%;
  width: 100%;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(39, 164, 103, 0.7294117647)),
    to(transparent)
  );
  background: linear-gradient(
    to top,
    rgba(39, 164, 103, 0.7294117647),
    transparent
  );
}
.banners .banner-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}
.banners .banner-title {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 90%;
  text-align: center;
  color: white;
  z-index: 15;
}
.banners .banner-title h6 {
  font-size: 22px;
}

.old-price {
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.3764705882);
}

.cc-row-1 > span:first-child::-webkit-scrollbar {
  display: none;
}

.testimonials-sec {
  background-color: #fcfcfc;
  padding-block: 70px;
  position: relative;
  overflow: hidden;
}

.testimonials-sec .slick-dotted .slick-arrow {
  bottom: 80px;
}

.testimonials-sec .mask {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0%;
  max-width: 100%;
  max-height: 70%;
}
.testimonials-sec .mask img {
  height: 250px;
}
.testimonials-sec .top-mask,
.testimonials-sec .bottom-mask {
  position: absolute;
  left: 0;
  width: 100%;
  height: 70px;
}
.testimonials-sec .top-mask img,
.testimonials-sec .bottom-mask img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.testimonials-sec .top-mask.top-mask,
.testimonials-sec .bottom-mask.top-mask {
  top: 0;
}
.testimonials-sec .top-mask.bottom-mask,
.testimonials-sec .bottom-mask.bottom-mask {
  bottom: 0;
}
.testimonials-sec .testimonial-card {
  background: white;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  max-width: 500px;
  height: 300px;
  border-radius: 30px !important;
}
.testimonials-sec .testimonial-card:hover {
  background-color: var(--green);
  color: white;
}
.testimonials-sec .testimonial-item .testimonial-mask {
  margin-inline-start: -250px;
  height: 400px;
}

.testimonials-sec .testimonial-card .auther {
  margin-top: -75px;
}
.testimonials-sec .testimonial-card .auther .avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: relative;
}
.testimonials-sec .testimonial-card .auther .avatar > img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.testimonials-sec .testimonial-card .auther .avatar .qout-icon-box {
  width: 23px;
  height: 23px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  bottom: -10px;
  right: -10px;
}
.testimonials-sec .testimonial-card .auther .avatar .qout-icon-box img {
  -webkit-transform: none;
  transform: none;
  width: 12px;
}

/* New Style */
#trainer-page .ppart1 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#trainer-page .ppart1 img {
  border-radius: 50%;
  margin-inline: auto;
}

#trainer-page .ppart1 .tbh-info {
  text-align: center;
  width: 100%;
}

#trainer-page .ppart1 .trainer-branch {
  overflow: auto;
}

#trainer-page .ppart1 .trainer-branch::-webkit-scrollbar {
  display: none;
}

#trainer-page .ppart1 .trainer-branch > a {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

#trainer-page .ppart1 .trainer-rating {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .page-row .col-lg:first-child {
    max-width: 400px;
  }
}
#trainer-page .ppart1 .price-box {
  background-color: #ebeff8;
}

#trainer-page .ppart1 .price-box .price h2 {
  color: var(--green);
}

#trainer-page .ppart1 .price-box .time h2 {
  color: var(--dark);
}

#trainer-page .nnextra {
  background-color: transparent !important;
}
#trainer-page .nnextra .po {
  /* width: 50%; */
}

#trainer-page .order-now a {
  background-color: var(--green);
  border: 1px solid var(--green);
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#trainer-page .order-now a:hover {
  color: var(--green);
  background-color: white;
}

#trainer-page .order-now.disable a {
  background-color: #ccc !important;
  color: white !important;
  border-color: #ccc !important;
  cursor: no-drop;
}

#trainer-page .myc-day-time-container {
  max-height: 380px;
  overflow: auto;
}

#trainer-page .myc-day-time-container::-webkit-scrollbar {
  display: none;
}

#trainer-page .modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  width: 350px;
  max-width: 95%;
  direction: rtl;
}

#calendar-bicker {
  width: 100%;
  border-radius: 8px !important;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.0823529412);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.0823529412);
  height: 40px;
  border: 1px solid #999;
  text-align: left;
  padding-inline: 20px;
}

#latest-blogs .slick-dotted .slick-arrow {
  bottom: 50px;
}

#online-courses .slick-arrow {
  bottom: 50px;
}

#oldest-courses .slick-arrow {
  bottom: -20px;
}
#category-list {
  background-color: #fcfcfc;
}
#category-list .slick-arrow {
  bottom: -80px;
}
.feature-card {
  box-shadow: 0px 0px 20px #eee;
}
.jcalendar-container {
  top: 35px !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  right: auto !important;
}

.jcalendar-content {
  width: 100%;
  border-radius: 10px;
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/
#overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark);
  opacity: 0.85;
  z-index: 1100;
  display: none;
}

.ltr {
  direction: ltr !important;
}

.arrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.close {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.close:hover {
  color: indianred;
  -webkit-transform: rotate(180deg) scale(1.1);
  transform: rotate(180deg) scale(1.1);
}

@media (min-width: 767px) {
  .about-title {
    margin-bottom: -100px;
  }
}

.overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.85;
  position: fixed;
  z-index: 1050;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: none;
  cursor: pointer;
}

/*.fa-star {*/
/*  color: #dedfe0;*/
/*}*/
.fa-star.full {
  color: #ff9800;
}

.multi-ele {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.justify {
  text-align: justify;
}

.social-links .icon {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.social-links .icon.whats:hover {
  color: #25d366;
}
.social-links .icon.face:hover {
  color: #1877f2;
}
.social-links .icon.insta:hover {
  color: #833ab4;
}
.social-links .icon.snap:hover {
  color: #fffc00;
}
.social-links .icon.youtube:hover {
  color: #ff0000;
}

@media (min-width: 1400px) {
  .container-fluid {
    max-width: 1650px;
  }
}

.row {
  margin-inline: 0;
}

.slick-dotted .slick-dots {
  bottom: -35px;
}
.slick-dotted .slick-dots li {
  width: 35px;
}
.slick-dotted .slick-dots button {
  width: 35px;
  height: 2px;
  background-color: #f5f8fa;
  border: 2px solid #eeeeee;
  position: relative;
  position: relative;
  padding: 0;
}
.slick-dotted .slick-dots button::before {
  display: none;
}
.slick-dotted .slick-dots .slick-active button {
  border-color: var(--green) !important;
}

.slick-dotted.light .slick-dots button {
  border-color: black;
}

.special-cards.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.main-btn {
  background-color: var(--main) !important;
  color: white !important;
  border: 1px solid var(--main) !important;
  -webkit-transition: 0.3s !important;
  transition: 0.3s !important;
}
.main-btn path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-btn:hover {
  background-color: white !important;
  color: var(--main) !important;
}
.main-btn:hover path {
  fill: var(--main) !important;
}

.main-title h2::after {
  display: none;
}
.main-title h2::before {
  content: "";
  position: absolute;
  bottom: -20px;
  width: 250px;
  height: 12px;
  background: url("./img/main-title-shape.svg");
}

main {
  position: relative;
}
main .mask {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 95%;
}
@media (max-width: 991px) {
  main .mask {
    max-width: none;
    height: 115%;
  }
  main .mask img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
main .container {
  position: relative;
  z-index: 14;
}

.distinctive-courses {
  background-color: var(--dark);
  position: relative;
}
.distinctive-courses .mask {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  z-index: 0;
  opacity: 0.09;
  height: 80%;
}
.distinctive-courses .mask img {
  max-width: 100%;
  height: 100%;
}

.banners .banner-box {
  height: 600px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 385px;
  margin-inline: auto;
}
.banners .banner-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 45%;
  width: 100%;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(39, 164, 103, 0.7294117647)),
    to(transparent)
  );
  background: linear-gradient(
    to top,
    rgba(39, 164, 103, 0.7294117647),
    transparent
  );
}
.banners .banner-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}
.banners .banner-title {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 90%;
  text-align: center;
  color: white;
  z-index: 15;
}
.banners .banner-title h6 {
  font-size: 22px;
}

.old-price {
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.3764705882);
}

.cc-row-1 > span:first-child::-webkit-scrollbar {
  display: none;
}

.testimonials-sec .mask {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -50%;
}
.testimonials-sec .top-mask,
.testimonials-sec .bottom-mask {
  position: absolute;
  left: 0;
  width: 100%;
  height: 70px;
}
.testimonials-sec .top-mask img,
.testimonials-sec .bottom-mask img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.testimonials-sec .top-mask.top-mask,
.testimonials-sec .bottom-mask.top-mask {
  top: 0;
}
.testimonials-sec .top-mask.bottom-mask,
.testimonials-sec .bottom-mask.bottom-mask {
  bottom: 0;
}
.testimonials-sec .testimonial-card {
  background: white;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.testimonials-sec .testimonial-card:hover {
  background-color: var(--dark);
  color: white;
}
.testimonials-sec .testimonial-card .auther .avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: relative;
}
.testimonials-sec .testimonial-card .auther .avatar > img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.testimonials-sec .testimonial-card .auther .avatar .qout-icon-box {
  width: 23px;
  height: 23px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  bottom: -10px;
  right: -10px;
}
.testimonials-sec .testimonial-card .auther .avatar .qout-icon-box img {
  -webkit-transform: none;
  transform: none;
  width: 12px;
}

.categories-list ul {
  padding-block: 5px;
  cursor: grab;
}
.categories-list ul::-webkit-scrollbar {
  display: none;
}
.categories-list ul a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.categories-list ul a .category-img {
  width: 100%;
  margin-inline: auto;
  padding-top: 77%;
  position: relative;
  background-color: var(--bggray1);
  margin-bottom: 1rem;
  transition: 0.3s;
}
.categories-list ul a .category-img:is(:hover, .active) {
  background-color: var(--lightSeaBlue);
}
.categories-list ul a .category-img img {
  width: 40px;
}
.categories-list ul a .category-img.icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.categories-list ul a h6 {
  font-size: 13px;
  margin-bottom: 0;
  text-align: center;
  max-width: 100px;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* @media (min-width: 577px) {
  #category-list .container {
    width: -moz-fit-content;
    width: fit-content;
  }
} */

.features .feature-box {
  background-color: white;
  border-radius: 4px;
  border-inline-end: 3px solid #161264;
}

.features .feature-item:nth-child(odd) .feature-box {
  border-color: #833838;
}
.features .feature-box .icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-content: center;
  margin-inline: auto;
}
.features .feature-box .icon img {
  max-width: 100%;
}
.live-course-group.active .group-head {
  background-color: #f5f7fd;
  color: var(--green);
}
.live-course-group .group-head {
  background-color: var(--green);
  color: white;
}
.course-info .avatar {
  width: 45px;
  height: 45px;
  overflow: hidden;
  border-radius: 50%;
}
.course-info .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.time-list .time-box {
  background-color: rgb(39 164 103 / 10%);
  color: var(--green);
  border: 1px solid var(--green);
  padding: 7px 25px;
  border-radius: 7px;
  transition: 0.3s;
  flex-shrink: 0;
}
.time-list .time-box:hover {
  background-color: var(--green);
  color: white;
}
.time-list::-webkit-scrollbar {
  display: none;
}
.proggress-line {
  flex-grow: 1;
  background: #f5f7fd;
  border-radius: 100px;
  position: relative;
  height: 25px;
  width: 450px;
  max-width: 100%;
}
.proggress-line .min,
.proggress-line .max {
  font-size: 13px;
}
.proggress-line .min {
  color: white;
}
.proggress-line .num {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.proggress-line .min .num {
  right: 10px;
}
.proggress-line .max .num {
  left: 10px;
}
.proggress-line .label {
  position: absolute;
  bottom: -22px;
  color: var(--green);
}

.proggress-line .min .label {
  right: 10px;
}
.proggress-line .max .label {
  left: 10px;
}
.proggress-line .total-count {
  color: var(--green);
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
}
.proggress-line .line {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(to left, var(--green), rgb(39 164 103 / 50%));
}

.proggress-line.single {
  padding: 5px;
  border: 1px solid var(--green);
  height: 35px;
  color: white;
}
.proggress-line.single .line {
  background-color: #0ba893;
  text-align: center;
}
.live-course-group .group-footer button {
  background-color: #d6d6d6;
  color: black;
  border-radius: 50px;
  border: 1px solid #d6d6d6;
  transition: 0.3s;
  padding: 5px 22px;
}

@media (max-width: 576px) {
  .live-course-group .foo-actions {
    flex-grow: 1;
  }
}
@media (max-width: 576px) {
  .live-course-group .course-actions a {
    flex-grow: 1;
  }
}

.live-course-group .foo-actions a {
  font-size: 12px;
  flex-grow: 1;
  text-align: center;
}
.live-course-group .group-footer button:hover {
  background-color: #d6d6d6;
  color: black;
}
.live-course-group.active .group-footer button {
  background-color: var(--green);
  color: white;
  border: 1px solid var(--green);
}
.live-course-group.active .group-footer button:hover {
  background-color: white;
  color: var(--green);
}

.tab-content::-webkit-scrollbar {
  display: none;
}
html {
  scroll-padding-top: 180px;
  scroll-behavior: smooth;
}
.sec-navs {
  position: sticky;
  top: 86px;
  background: white;
  z-index: 20;
  border-radius: 10px 10px 0 0;
}
.details-body {
  border-radius: 0 0 10px 10px;
}
.sec-navs ul {
  overflow: auto;
}
.sec-navs ul::-webkit-scrollbar {
  display: none;
}

.sec-navs li {
  flex-shrink: 0;
}
.sec-navs a {
  position: relative;
}

.sec-navs a::before {
  content: "";
  position: absolute;
  bottom: -17.5px;
  left: 0;
  height: 0.5px;
  width: 0%;
  transition: 0.3s;
  background-color: var(--green);
}
.sec-navs a.active {
  color: var(--green);
}

.sec-navs a.active::before {
  width: 100%;
}

.courses-count {
  font-size: 13px;
  flex-shrink: 0;
  padding-inline-end: 10px;
}

.select2-container .select2-selection--single {
  height: 20px;
}
.course-list {
  height: 100%;
  background: white;
  position: relative;
}
@media (max-width: 576px) {
  .course-list {
    max-width: 93%;
  }
}
.course-list .close-ccl {
  position: absolute;
  width: 30px;
  height: 80px;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
  background: var(--green);
  border-radius: 15px 0 0 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 5px;
}

.course-list .close-ccl img {
  max-width: 95%;
  transform: rotate(180deg);
}
.course-list .list-tabs {
  height: calc(100% - 55px);
}
.course-list .list-tabs .list-tab {
  display: none;
  height: 100%;
}
.course-list .list-tabs .list-tab.active {
  display: block;
}
.course-list .list-tabs .list-tab .tab-body {
  overflow: auto;
  height: calc(100% - 55px);
}
.course-list .list-navs li {
  color: var(--green);
  transition: 0.3s;
  cursor: pointer;
}
.course-list .list-navs li:is(:hover, .active) {
  background-color: var(--green);
  color: white;
}

.course-list [data-tab="content"] .tab-head {
  background-color: var(--lightSeaBlue);
  border-inline-start: 10px solid var(--green) !important;
}
.course-list .list-tabs .activity button,
.course-list .list-tabs .files button {
  width: 135px;
  font-size: 14px;
}
.course-list .list-tabs .student-count .dot {
  width: 15px;
  height: 15px;
  border: 1px solid #00000025;
  background: #bcbcbc;
  border-radius: 50%;
}
.course-list .list-tabs .student-count h4 {
  color: #bcbcbc;
}
.course-list .list-tabs .student-count.attending h4 {
  color: #6cbd7e;
}
.course-list .list-tabs .student-count.absent h4 {
  color: #ff2d2d;
}
.course-list .list-tabs .student-count.attending .dot {
  background: #6cbd7e;
}
.course-list .list-tabs .student-count.absent .dot {
  background: #ff2d2d;
}
.course-list .list-tabs .students-list .status-line {
  background: #6cbd7e;
  color: white;
  padding: 4px 1rem;
  font-size: 16px;
}
.course-list .list-tabs .students-list .status-line.offline {
  background: #ff6174;
}

.course-list .list-tabs .students-list .student-box .student-avatar {
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--lightSeaBlue);
  display: grid;
  place-content: center;
  background: var(--green);
  font-size: 20px;
  font-weight: bold;
  position: relative;
  overflow: visible;
}
.course-list
  .list-tabs
  .students-list
  .student-box
  .student-avatar
  .status-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid white;
  position: absolute;
  top: 0px;
  right: 1px;
  background: #00ba00;
}
.course-list
  .list-tabs
  .students-list
  .student-box
  .student-avatar
  .status-dot.offline {
  background: #ff6174;
}
.course-list .list-tabs .students-list .student-box .student-name p {
  text-wrap: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 120px;
}

.course-list .list-tabs .students-list .student-status > div {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  background: #bcbcbc;
  color: white;
}

.course-list .list-tabs .students-list .student-status > div.online {
  background: #00ba00;
}
.course-list .list-tabs .students-list .student-status > div.offline {
  background: #ff6174;
}

.live-courses .course-info {
  background-color: #f5f7fd;
}
.live-courses .course-info .categories::-webkit-scrollbar {
  display: none;
}
.live-courses .course-info .categories a {
  font-size: 12px;
}
.live-courses .course-info .description p {
  font-size: 12px;
}

.live-courses > .row > div:first-child {
  max-width: 300px;
}

.live-course-group-list::-webkit-scrollbar {
  height: 8px;
}
.live-course-group-list::-webkit-scrollbar-thumb {
  padding: 10px;
  background-color: var(--green) !important;
}
@media (max-width: 400px) {
  .live-course-group-list .live-course-group {
    max-width: 260px;
  }
}

.table-box {
  overflow: auto;
}
.table-box .table {
  min-width: max-content;
}
.table-box .table .attendance span {
  position: relative;
  padding-inline-start: 25px;
}
.table-box .table .attendance span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  border-radius: 50%;
  padding: 2px;
  border: 1px solid;
  box-shadow: inset 0 0 0 3px white;
}
.table-box .table .attendance span.attending::before {
  background-color: #00ba00;
  border-color: #00ba00;
}
.table-box .table .attendance span.absenteeism::before {
  background-color: #a80b39;
  border-color: #a80b39;
}
#call-page {
  min-height: 100vh;
  position: relative;
  padding-bottom: 32px;
}
#call-page .head {
  background-color: #282d40;
}
@media (max-width: 991px) {
  #call-page .head img {
    height: 35px;
  }
}
#call-page .body {
  height: calc(100vh - 119px);
  overflow: auto;
}
@media (min-width: 768px) {
  #call-page .body .small-video {
    max-width: 265px;
  }
}
@media (min-width: 1199px) {
  #call-page .body .container {
    max-width: 950px;
  }
}
#call-page .body .small-video {
  width: 265px;
  height: 165px;
}
#call-page .body .large-video,
#call-page .body .small-video {
  background-color: #eee;
}
@media (min-width: 992px) {
  #call-page .body .large-video .toggle-small-video {
    display: none;
  }
}
@media (max-width: 767px) {
  #call-page .body {
    height: calc(100vh - 83px);
  }
  #call-page .body .small-video {
    position: absolute;
    top: -210px;
    left: 0;
    max-width: 140px;
    height: 195px;
    border: 1px solid #ccc;
    transition: 0.3s;
  }
  #call-page .body .small-video.hide-video {
    max-width: 0;
    overflow: hidden;
    border: none;
  }
}
#call-page .body .large-video {
  position: relative;
}

#call-page .body .large-video .toggle-small-video {
  position: absolute;
  left: 0;
  bottom: 160px;
  background: white;
  border-radius: 0 7px 7px 0;
  z-index: 20;
  padding: 5px 10px;
}
#call-page .body .large-video .toggle-small-video .show {
  display: none;
}

#call-page .body .no-video img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 65px;
}
#call-page .body .no-video span {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--green);
  color: white;
  display: grid;
  place-content: center;
  font-size: 23px;
}
#call-page .body .video-info {
  color: #282d40;
}
#call-page .body .video-actions .action {
  cursor: pointer;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid #cbcbcb;
  background-color: white;
  display: grid;
  place-content: center;
}
#call-page .body .video-actions .action#stop-screen-share {
  display: none;
}
#call-page .body .video-actions .action img {
  max-width: 24px;
}
@media (max-width: 767px) {
  #call-page .body .video-actions .action img {
    max-width: 20px;
    max-height: 20px;
  }
  #call-page .body .video-actions .action {
    width: 48px;
    height: 48px;
  }
}
#call-page .body .video-actions .action.end-call {
  background-color: #f06060;
  border-color: #f06060;
}
#call-page .body .video-actions .action .hide-icon {
  display: none;
}
#call-page .body .video-actions .action.active {
  border-color: #09e5ab;
}
#call-page .body .video-actions .action.active img {
  display: none;
}
#call-page .body .video-actions .action.active img.hide-icon {
  display: block;
}
#call-page .footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #282d40;
  font-size: 9px;
}
#call-page #startCall .modal-dialog {
  margin: 0;
  width: 350px;
  max-width: 95vw;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.eye-i,
.student-i,
.book-i,
.lang-i,
.graduation-i {
  font-size: 18px;
  color: var(--green);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  background: var(--green);
  color: white;
}
.accordion-button:not(.collapsed)::after {
  filter: brightness(0);
}

.page-section ul {
  margin-top: calc(-50px + -3rem);
}

.page-section ul li a {
  background: #f7f5ed;
  padding: 1rem !important;
  border: 1px solid var(--green);
  transition: 0.3s;
  min-width: 150px;
}
.page-section ul li a .icon {
  margin-bottom: 7px;
}
.page-section ul li a img {
  width: 35px;
}
.logos .logo-box img {
  display: block;
  max-width: 125px;
  margin-inline: auto;
}

.logos .slick-arrow {
  bottom: -60px;
}

@media (max-width: 767px) {
  .hello-week .day {
    font-size: 12px;
  }
}

#pills-tabContent ul {
  list-style: disc !important;
  padding-inline-start: 20px;
}
#pills-tabContent {
  border: none !important;
}

.tab-title {
  position: relative;
  margin-bottom: 15px;
  color: var(--green);
}

.tab-title::after {
  content: "";
  background-image: url(../../assets/imgs/new/title-shape.png);
  width: 80px;
  height: 9.5px;
  display: block;
}

.mute {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #00000030;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  cursor: pointer;
  font-size: 20px;
}

.session-ended-card {
  margin-top: 200px;
  border: 1px solid var(--green);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1254901961);
  width: 920px;
  max-width: 85%;
  border-radius: 40px;
}
.session-ended-card .icon {
  margin-top: -200px;
}
@media (max-width: 576px) {
  .session-ended-card {
    margin-top: 100px;
  }
  .session-ended-card .icon {
    margin-top: -100px;
  }
  .session-ended-card .icon img {
    width: 115px;
  }
} /*# sourceMappingURL=style.css.map */
