/* Titillium */
@font-face {
  font-family: "JannaRegular";
  src: url("../fonts/janna/ArbFONTS-Janna-LT-Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: "JannaBold";
  src: url("../fonts/janna/ArbFONTS-Janna-LT-Bold.ttf");
  font-display: swap;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

::selection {
  color: #fff;
  background-color: #2baae1;
}

/* scrollbar */
body {
  line-height: 1.8;
  font-size: 14px;
  outline: 0;
  font-family: "JannaRegular", sans-serif;
}

body::-webkit-scrollbar {
  scrollbar-width: 0.5rem;
  width: 0.5rem;
}

body::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
}

body::-webkit-scrollbar-thumb {
  background: #2baae1;
  border-radius: 0.5em;
  box-shadow: inset 0.15em 0.1em 0.1em rgba(255, 255, 255, 0.5),
    inset -0.15em -0.15em 0.1em rgba(0, 0, 0, 0.3);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  user-select: none;
}

.JannaBold {
  font-family: "JannaBold", sans-serif;
}

.remove-file,
.closeFilterSidebar,
.closeSearchbar,
.closeSidebar {
  cursor: pointer;
}

img {
  max-width: 100%;
  user-select: none;
}

a {
  text-decoration: none;
}

.toast-close {
  color: transparent;
  background-image: url('../images/x-lg.svg');
  background-size: 18px 18px;
  margin-inline-start: 8px;
  background-position: center;
  background-repeat: no-repeat;
}

.toastify {
  color: #000;
}

.toastify {
  display: flex;
  align-items: center;
  padding: 12px 15px;
}

.toastify.success::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('../images/toastify-success.svg');
  margin-inline-end: 10px;
}

.toastify.error::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('../images/toastify-error.svg');
  margin-inline-end: 10px;
}
section.yellow-bg-section {
  padding: 60px 0;
  background-color: #f3fafd;
}

section.green-bg-section {
  padding: 60px 0;
  background-color: #2fa9e026;
}

section {
  margin-bottom: 100px;
  overflow: hidden;
}

.subtitle {
  display: block;
  font-size: 22px;
  color: #000;
  margin-bottom: 10px;
}

.title {
  font-size: 40px;
  line-height: 50px;
  color: #2baae1;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-family: "JannaBold", sans-serif;
}

.contact-title {
  color: #2baae1;
  font-family: "JannaBold", sans-serif;
  font-size: 28px;
  margin-bottom: 15px;
}

.desc {
  font-size: 16px;
  line-height: 30px;
  color: #636363;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  section {
    margin-bottom: 60px;
  }

  .subtitle {
    font-size: 18px;
  }

  .title {
    font-size: 32px;
    line-height: 40px;
  }

  .desc {
    font-size: 14px;
    line-height: 25px;
  }
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 25px;
  background-color: #2baae1;
  border-radius: 5px;
  color: #fff;
  border: 1px solid #2baae1;
}

.primary-btn.lg {
  display: flex;
  padding: 12px 25px;
}

.primary-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 25px;
  border: 1px solid #2baae1;
  border-radius: 5px;
  color: #2baae1;
}

.primary-outline-btn.lg {
  display: flex;
  padding: 12px 25px;
}

.bg-light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 25px;
  background-color: #2baae11A;
  border-radius: 5px;
  color: #2baae1;
  border: 1px solid #d9d9d9;
  transition: border 0.3s;
}

.bg-light-btn.lg {
  display: flex;
  padding: 12px 25px;
}

.bg-light-btn:hover {
  border-color: #2baae1;
}

.border-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 25px;
  border-radius: 5px;
  color: #000;
  border: 1px solid #f5f5f5;
  transition: border 0.3s;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .015);
}

.border-btn.lg {
  display: flex;
  padding: 12px 25px;
}

.border-btn:hover {
  border-color: #2baae1;
}

@media screen and (max-width: 768px) {

  .bg-light-btn,
  .primary-btn {
    padding: 8px 15px;
  }
}

[disabled] {
  background: rgb(224, 224, 224);
  color: rgb(255, 255, 255);
  cursor: not-allowed;
}
.bnOmHc {
  background: rgb(248, 248, 248);
  border: 1px solid rgb(248, 248, 248);
  border-radius: 5px;
  padding: 15px;
}
header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-block: 15px;
  background-color: #fff;
  border-bottom: 1px solid #a9a9a9;
}

header .menu-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
}

header .logo {
  display: flex;
  align-items: center;
}

header .menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
}

header .menu ul li>a {
  position: relative;
  color: #000;
  border-bottom: 1px solid transparent;
  padding-block: 5px;
  font-family: "JannaRegular", sans-serif;
}

header .menu ul li>.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.2s;
}

header .menu ul li:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

header .menu ul li:hover>a::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 20px;
}

header .menu ul li>a img {
  width: 12px;
  height: auto;
  transform: rotate(180deg);
}

header .menu ul li a.active {
  color: #2baae1;
  border-color: #2baae1;
}

header .menu ul li a.show img {
  transform: rotate(0);
}

header .menu ul li .dropdown-menu.services {
  border-radius: 6px;
  border: 0;
  padding: 0;
  width: 550px;
  margin-top: 15px !important;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, .12), 0 6px 16px 0 rgba(0, 0, 0, .08), 0 9px 28px 8px rgba(0, 0, 0, .05);
  overflow: hidden;
}

header .menu ul li .dropdown-menu.services .services-menu-wrapper {
  display: flex;
}

header .menu ul li .dropdown-menu.services .services-menu-wrapper .services-menu {
  width: 200px;
  box-shadow: 6px 6px 25px 0px #00000017;
  background-color: #fff;
  padding: 15px;
  overflow: auto;
  max-height: 500px;
}

header .menu ul li .dropdown-menu.services .services-menu-wrapper .services-menu a {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  color: #000;
  background-color: #F6F6F6;
  border-radius: 4px;
  margin-bottom: 10px;
}

header .menu ul li .dropdown-menu.services .services-menu-wrapper .services-menu a img {
  display: none;
}

header .menu ul li .dropdown-menu.services .services-menu-wrapper .services-menu a:hover img {
  display: block;
}

header .menu ul li .dropdown-menu.services .services-menu-wrapper .services-megamenu>div {
  display: none;
}

header .menu ul li .dropdown-menu.services .services-menu-wrapper .services-megamenu {
  width: calc(100% - 200px);
  background-color: #2baae1;
  padding: 20px 15px;
  overflow: auto;
  max-height: 500px;
}

header .menu ul li .dropdown-menu.services .services-menu-wrapper .services-megamenu .magamenu-title {
  display: block;
  padding: 5px 10px;
  font-size: 14px;
  color: #fff;
  background-color: #15508a;
  border-radius: 5px;
  margin-bottom: 15px;
}

header .menu ul li .dropdown-menu.services .services-menu-wrapper .services-megamenu .megamenu-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

header .menu ul li .dropdown-menu.services .services-menu-wrapper .services-megamenu .megamenu-list a {
  display: inline-flex;
  gap: 8px;
  width: calc(50% - 10px);
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

header .menu ul li .dropdown-menu.services .services-menu-wrapper .services-megamenu .megamenu-list a::before {
  content: '';
  width: 5px;
  height: 5px;
  min-width: 5px;
  min-height: 5px;
  border-radius: 5px;
  background-color: #057590;
  margin-top: 8px;
}

header .menu ul li .dropdown-menu.services .services-menu-wrapper .services-megamenu .megamenu-list .separator {
  width: 100%;
  border-top: 1px solid #034D33;
}

header .menu ul li .dropdown-menu.services .services-menu-wrapper .services-megamenu .magamenu-view-more {
  display: inline-flex;
  padding: 6px 15px;
  border: 1px solid #15508a;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  margin-top: 20px;
}

header .language-btn>a {
  display: inline-flex;
  gap: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  color: #22252C;
  padding: 6px 15px;
  font-family: "JannaRegular", sans-serif;
}

header .language-btn>a span:nth-child(3) {
  display: none;
}

header .language-btn>a img.arrow-up {
  width: 13px;
  height: auto;
  transform: rotate(180deg);
}

header .language-btn>a.show img.arrow-up {
  transform: rotate(0);
}

header .language-btn .dropdown-menu {
  width: 180px;
  border: 0;
  padding: 15px 10px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, .12), 0 6px 16px 0 rgba(0, 0, 0, .08), 0 9px 28px 8px rgba(0, 0, 0, .05);
  background-color: #fff;
}

header .language-btn .dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgb(246, 246, 246);
  padding: 6px;
  color: rgba(0, 0, 0, .85);
  font-size: 14px;
}

header .language-btn .dropdown-menu a img {
  width: 20px;
  height: 20px;
}

header .search-btn>a {
  position: relative;
  padding: 30px 0;
}

header .search-btn a::before {
  content: '';
  position: absolute;
  top: 82%;
  right: 10px;
  width: 12px;
  height: 12px;
  border-top: 5px solid #fff;
  border-bottom: 5px solid #fff;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, .06);
  transform: translateY(11px) rotate(-135deg);
  background-color: #fff;
  display: none;
  z-index: 10;
}

header .search-btn a.show::before {
  display: block;
}

header .search-btn .dropdown-menu {
  width: 700px;
  padding: 0;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, .12), 0 6px 16px 0 rgba(0, 0, 0, .08), 0 9px 28px 8px rgba(0, 0, 0, .05);
  border: 0;
  border-radius: 6px;
  z-index: 9;
}

.search-content {
  max-height: 75vh;
  padding: 25px;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.search-content::-webkit-scrollbar {
  width: 0;
}

.search-title {
  font-size: 20px;
  color: #000;
  margin-bottom: 20px;
  font-weight: 500;
}

.search-box {
  display: flex;
  margin-bottom: 20px;
}

.search-box input {
  height: 40px;
  outline: 0;
  padding: 15px;
  width: 100%;
  border: 1px solid #CBCBCB;
  font-size: 14px;
  border-inline-end: 0;
}

.search-box button {
  width: 50px;
  height: 40px;
  background-color: #2baae1;
  outline: 0;
  border: 1px solid #CBCBCB;
  border-inline-start: 0;
}

.search-list {
  margin-bottom: 30px;
}

.search-list .search-list-title {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 500;
}

.search-list a {
  font-size: 14px;
  line-height: 24px;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}

.search-list a img {
  margin-inline-end: 5px;
  width: 24px;
}

.search-view-all {
  display: block;
  background-color: #2baae11A;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  color: #2baae1;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  border-radius: 0 0 6px 6px;
  font-weight: 700;
}

header .sign-in-up-btn {
  display: inline-block;
  font-size: 14px;
  padding: 6px 20px;
  border-radius: 5px;
  font-family: "JannaRegular", sans-serif;
}

header .sign-in-up-btn.in {
  color: #2fa9e0;
  border: 1px solid #d9d9d9;
}

header .sign-in-up-btn.up {
  color: #fff;
  background-color: #2baae1;
  border: 1px solid #2baae1;
}

@media screen and (max-width: 992px) {

  header .logo a img {
    height: 30px;
  }

  header .menu {
    display: none;
  }

  header .sign-in-up-btn {
    display: none;
  }

  header .language-btn>a {
    border: 0;
    padding: 0;
    gap: 4px;
    font-size: 12px;
  }

  header .language-btn>a img:not(.arrow-up) {
    display: none;
  }

  header .language-btn>a span:nth-child(2) {
    display: none;
  }

  header .language-btn>a span:nth-child(3) {
    display: block;
  }
}

.profile-dropdown .profile-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.profile-dropdown .profile-link .profile-img {
  width: 40px;
  height: 40px;
  border: 1px solid rgb(227, 227, 227);
  border-radius: 100%;
  padding: 2px;
  line-height: 0;
  overflow: hidden;
}

.profile-dropdown .profile-link .profile-img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}

.profile-dropdown .profile-link::after {
  content: '';
  position: relative;
}

.profile-dropdown .profile-link .profile-arrow img {
  transform: rotateX(180deg);
  transition: 0.2s;
}

.profile-dropdown .profile-link.show .profile-arrow img {
  transform: rotateX(0);
}

.profile-dropdown .dropdown-menu {
  width: 230px;
  margin-top: 16px !important;
  border: 0;
  background: rgb(255, 255, 255);
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.15) 6px 5px 20px;
  padding: 0;
}

.profile-dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 22px;
  transform: rotate(45deg);
  width: 15px;
  height: 15px;
  border-radius: 3px;
  background: rgb(255, 255, 255);
  z-index: -7;
}

.profile-dropdown .profile-dropdown-sub {
  border-bottom: 1px solid rgb(203, 203, 203);
}

.profile-dropdown .profile-dropdown-name {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
}

.profile-dropdown .profile-img {
  width: 40px;
  height: 40px;
  border: 1px solid rgb(227, 227, 227);
  border-radius: 100%;
  padding: 2px;
  line-height: 0;
  overflow: hidden;
}

.profile-dropdown .profile-img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}

.profile-dropdown .profile-dropdown-name h2 {
  font-size: 16px;
  color: rgb(0, 0, 0);
  margin: 0px;
  line-height: 16px;
  font-family: "JannaRegular";
}

.profile-dropdown .profile-dropdown-name p {
  font-size: 12px;
  color: rgb(122, 122, 122);
  margin: 0px;
  font-family: "JannaRegular";
}

.profile-dropdown .profile-dropdown-links {
  padding: 10px 18px;
}

.profile-dropdown .profile-dropdown-links a {
  color: rgb(0, 0, 0);
  padding: 8px 0px;
  display: block;
  font-size: 14px;
}

.profile-dropdown .profile-dropdown-links a:not(:last-child) {
  border-bottom: 1px solid rgb(233, 233, 233);
}

.filter-sidebar-bg,
.sidebar-bg,
.searchbar-bg {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  background-color: rgba(0, 0, 0, .45);
  transition: 0.3s;
  z-index: 100;
}

.filter-sidebar-bg.show,
.sidebar-bg.show,
.searchbar-bg.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.search-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 100%;
  max-width: 378px;
  height: 100vh;
  background-color: #fff;
  transition-delay: 0s;
  transition: 0.2s;
  box-shadow: -6px 0 16px -8px rgba(0, 0, 0, .08), -9px 0 28px 0 rgba(0, 0, 0, .05), -12px 0 48px 16px rgba(0, 0, 0, .03);
  z-index: 101;
}

.search-sidebar.show {
  right: 0;
  transition: 0.3s;
  transition-delay: 0.2s;
}

.search-sidebar .search-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #f0f0f0;
}

.search-sidebar .search-sidebar-body {
  overflow: auto;
  height: calc(100% - 112px);
}

.sidebar {
  position: fixed;
  top: 0;
  left: -400px;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background-color: #2baae1;
  transition-delay: 0s;
  transition: 0.2s;
  background-image: url('../images/sidebar-bg.svg');
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 170px;
  box-shadow: -6px 0 16px -8px rgba(0, 0, 0, .08), -9px 0 28px 0 rgba(0, 0, 0, .05), -12px 0 48px 16px rgba(0, 0, 0, .03);
  z-index: 101;
}

.sidebar.show {
  left: 0;
  transition: 0.3s;
  transition-delay: 0.2s;
}

.sidebar .sidebar-head {
  padding: 20px 15px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar .sidebar-head span {
  line-height: 0;
}

.sidebar .sidebar-body {
  padding: 20px;
  overflow: auto;
  height: calc(100% - 72px);
}

.sidebar .sidebar-body .separator {
  border-top: 1px solid #d2d2d24d;
  margin: 20px 0;
}

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

.sidebar .sidebar-body ul li a {
  font-size: 14px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.sidebar .sidebar-body ul li.has-dropdown.show>.dropdown {
  display: block;
}

.sidebar .sidebar-body ul li.has-dropdown>a::after {
  content: '';
  width: 8px;
  height: 8px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(255, 255, 255) rgb(255, 255, 255) transparent transparent;
  transform: rotate(135deg);
}

.sidebar .sidebar-body ul li.has-dropdown .dropdown {
  padding-inline-start: 10px;
  display: none;
}

.sidebar .sidebar-body ul li.has-dropdown .dropdown a {
  font-size: 13px;
}

.sidebar .sidebar-body ul li.has-dropdown .dropdown a {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
}

.sidebar .sidebar-body ul li.has-dropdown .dropdown a::before {
  content: '';
  width: 8px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  margin-top: 10px;
}

footer {
  padding-top: 50px;
  background-color: #fbfbfb;
  background-image: url('../images/footer-bg.webp');
  background-repeat: no-repeat;
  background-position: top right;
}

footer .container .row .col:not(:last-child) {
  border-right: 1px solid #D9D9D9;
}

footer .logo {
  margin-bottom: 15px;
}

footer .footer-title {
  font-size: 18px;
  margin-bottom: 20px;
  font-family: "JannaBold";
}

footer .footer-subtitle {
  font-size: 16px;
  color: #101010;
  margin-bottom: 10px;
  font-family: "JannaRegular";
}

footer p {
  font-size: 14px;
  color: #636363;
  margin-top: 20px;
  margin-bottom: 10px;
}

footer ul {
  padding: 0;
  margin-bottom: 20px;
}

footer ul a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #000000d9;
  margin-bottom: 12px;
}

footer .footer-social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

footer .footer-social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 5px;
  background-color: #2baae1;
  padding: 5px;
}

footer .footer-bottom {
  margin-top: 50px;
  text-align: center;
  padding: 16px 0;
  background-color: #fff;
}

@media screen and (max-width: 992px) {
  footer .container .row .col:not(:last-child) {
    border: 0;
  }
}

.home-slider-section {
  position: relative;
  overflow: hidden;
}

#HomeSliderLeft,
#HomeSliderRight {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 6px;
  background-color: #0000004D;
  z-index: 10;
}

#HomeSliderLeft {
  left: 20px;
}

#HomeSliderLeft img {
  width: 10px;
}

#HomeSliderRight {
  right: 20px;
}

#HomeSliderRight img {
  width: 10px;
}

.home-slider .home-slide {
  position: relative;
  height: 100%;
  height: 580px !important;
  display: flex;
  align-items: center;
  padding-inline: 80px;
}

.home-slider .home-slide .container {
  position: relative;
  z-index: 10;
}

.home-slider .home-slide h2 {
  max-width: 400px;
  font-size: 42px;
  color: #fff;
  margin-bottom: 20px;
  font-family: "JannaBold", sans-serif;
}

.home-slider .home-slide p {
  max-width: 400px;
  font-size: 14px;
  color: #FFFFFFCC;
  margin-bottom: 20px;
}

.home-slider .home-slide a {
  display: inline-block;
  padding: 8px 15px;
  color: #fff;
  border-radius: 4px;
}

.home-slider .home-slide a.green {
  background-color: #2baae1;
  border: 1px solid #d9d9d9;
}

.home-slider .home-slide a.brown {
  background-color: #15508a;
  border: 1px solid #fff;
}

.home-slider .home-slide .slide-img-right {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  z-index: 5;
}

.home-slider .home-slide .slide-left-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 183px;
  z-index: 4;
}

.home-slider .home-slide .slide-center-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: 435px;
  z-index: 4;
}

.home-slider .home-slide ul {
  margin-bottom: 20px;
}

.home-slider .home-slide ul li {
  color: #fffc;
  font-size: 16px;
}

.home-slider .home-slide ul.square {
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.home-slider .home-slide ul.square li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home-slider .home-slide ul.square li::before {
  content: '';
  width: 9px;
  height: 9px;
  display: block;
  box-sizing: content-box;
  background-color: rgb(255, 255, 255);
  border-radius: 2px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.23);
}

@media screen and (max-width: 992px) {
  .home-slider .home-slide {
    height: 300px !important;
    padding-inline: 40px;
  }

  #HomeSliderLeft {
    left: 10px;
  }

  #HomeSliderRight {
    right: 10px;
  }

  .home-slider .home-slide h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .home-slider .home-slide .slide-center-img {
    display: none;
  }

  .home-slider .home-slide .slide-left-img {
    width: 100px;
    height: auto;
  }
}

@media screen and (max-width: 768px) {

  #HomeSliderLeft,
  #HomeSliderRight {
    width: 35px;
    height: 35px;
  }
}

.about-us-section {
  position: relative;
  margin: 0;
  padding: 70px 0;
}

.about-us-section.bg-light-green {
  background-color: #2fa9e026;
}

.about-us-section .about-us-bg {
  position: absolute;
  top: 5px;
  right: 0;
  width: 360px;
  height: 500px;
  z-index: -1;
  pointer-events: none;
}

.about-us-section .about-us-section-title {
  margin-bottom: 50px;
  text-align: center;
  color: #2baae1;
  font-size: 36px;
  line-height: 52px;
  font-family: "JannaBold", sans-serif;
  padding-inline: 20px;
}

.about-us-section-card {
  text-align: center;
}

.about-us-section-card h5 {
  font-family: "JannaRegular", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 12px;
  color: rgb(0, 0, 0);
  margin-top: 24px;
}

.about-us-section-card p {
  font-weight: 400;
  font-size: 12px;
  line-height: 19px;
  color: rgb(99, 99, 99);
}

.about-us-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-us-section ul li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  margin-left: 12px;
  font-size: 16px;
  color: rgb(99, 99, 99);
  line-height: 28px;
  font-weight: 400;
}

.about-us-section ul li::before {
  content: '';
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  margin-top: 8px;
  background-color: #b1c0ce;
}

@media screen and (max-width: 992px) {
  .about-us-section {
    padding: 30px 0;
  }

  .about-us-section .about-us-section-title {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: start;
  }

  .about-us-section .about-us-bg {
    display: none;
  }
}

.course-card {
  display: block;
  background-color: #fff;
  box-shadow: 6px 6px 25px 0px #00000017;
  padding: 15px;
  border-radius: 8px;
  height: 100%;
  color: inherit;
  transition: box-shadow 0.3s;
}

.course-card.bordered {
  box-shadow: none;
  border: 1px solid #f0f0f0;
}

.course-card.bordered:hover {
  box-shadow: 0 1px 2px -2px rgba(0,0,0,.16),0 3px 6px 0 rgba(0,0,0,.12),0 5px 12px 4px rgba(0,0,0,.09);
}
.course-card .img {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.course-card .img span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 2px 5px;
  border-radius: 3px;
  color: #15508a;
}

.course-card .img img {
  width: 100%;
}

.course-card .content {
  padding-top: 15px;
}

.course-card .content .enrollment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #A5A4A4;
  margin-bottom: 15px;
}

.course-card .content .enrollment span {
  display: inline-block;
  padding: 4px 10px;
  background-color: #f3fafd;
  color: #15508a;
  font-size: 12px;
  border-radius: 4px;
  display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.course-card .content h5 {
  font-size: 18px;
  font-family: "JannaBold", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}

.course-card .content p {
  font-size: 12px;
  color: #A5A4A4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.course-card .content .type {
  color: #15508a;
  margin-bottom: 6px;
}

.course-card .content .rating {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: #FFAA46;
  line-height: 1px;
  margin-bottom: 10px;
}

.course-card .content .rating .icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.course-card .content .rating span {
  display: inline-block;
}

.course-card .content .rating span span {
  color: #A5A4A4;
}

.course-card .content .time {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.course-card .content .time>div {
  display: flex;
  gap: 5px;
  align-items: center;
}

.course-card .content .separator {
  margin: 10px 0;
  border-top: 1px solid #D3D3D3;
}

.course-card .content .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-card .content .price span {
  display: inline-block;
  font-size: 16px;
  font-family: "JannaBold", sans-serif;
}

.course-card .content .price span span {
  font-size: 12px;
}

.course-card .content .price a,
.course-card .content .price div {
  font-size: 14px;
  color: #15508a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.course-card.newsfeed .content h5 {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.course-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.course-slider .swiper-initialized {
  overflow: hidden;
  padding: 40px 1px;
  flex: 1;
}

.course-slider .arrow-right,
.course-slider .arrow-left {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 5px 5px 25px 0px #00000026;
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  border-radius: 4px;
  z-index: 2;
}

.course-slider .arrow-right.swiper-button-disabled,
.course-slider .arrow-left.swiper-button-disabled {
  cursor: not-allowed;
}

.course-slider .arrow-right.swiper-button-disabled img,
.course-slider .arrow-left.swiper-button-disabled img {
  opacity: 0.6;
}


@media screen and (max-width: 992px) {
  .course-slider .swiper-initialized {
    overflow: hidden;
    padding: 40px 10px;
  }

  .course-slider .arrow-right,
  .course-slider .arrow-left {
    display: none;
  }

  .course-card {
    background-color: #fff;
    box-shadow: 0 0 5px 5px #0000000b;
  }
}

@media screen and (max-width: 500px) {
  .course-card {
    padding: 7px;
  }

  .course-card .img {
    border-radius: 2px;
  }

  .course-card .img span {
    font-size: 10px;
    padding: 1px 4px;
  }

  .course-card .content {
    padding-top: 5px;
  }

  .course-card .content .rating .icons img {
    width: 12px;
  }

  .course-card .content .enrollment {
    font-size: 10px;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
  }

  .course-card .content .enrollment span {
    padding: 3px 8px;
  }

  .course-card .content h5 {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }

  .course-card .content .time {
    flex-wrap: wrap;
    gap: 5px;
  }

  .course-card .content .price {
    flex-direction: column;
    align-items: flex-start;
  }

  .course-card .content .price a,
  .course-card .content .price div {
    font-size: 10px;
    text-decoration: none;
  }

  .course-card .content .separator {
    margin: 8px 0;
  }
}

.course-card-horizontal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.course-card-horizontal:not(:last-child) {
  margin-bottom: 20px;
}

.course-card-horizontal .img {
  position: relative;
  width: 120px;
}

.course-card-horizontal-content {
  width: calc(100% - 120px);
}

.course-card-horizontal .img span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0 4px;
  border-radius: 3px;
  color: #15508a;
}

.course-card-horizontal .img img {
  width: 100%;
  height: 100px;
}

.course-card-horizontal .course-card-horizontal-title {
  font-family: "JannaRegular", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: rgb(0, 0, 0);
  margin-bottom: 0px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.course-card-horizontal .price {
  font-size: 14px;
  font-weight: 600;
  font-family: "JannaRegular", sans-serif;
  margin-top: 8px;
}

.course-card-horizontal .price span {
  font-size: 10px;
  font-weight: 600;
  font-family: "JannaRegular", sans-serif;
}

@media screen and (max-width: 992px) {
  .course-card-horizontal .img {
    position: relative;
    width: 50%;
  }

  .course-card-horizontal .img img {
    height: auto;
  }

  .course-card-horizontal-content {
    width: 50%;
  }
}

.swiper-backface-hidden .swiper-slide {
  height: initial;
}

.start-to-success-section {
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  background-image: url('../images/start-to-success-section-bg.webp');
}

#StartToSuccess {
  overflow: hidden;
  padding: 40px 20px;
}

.achieve-card {
  text-align: center;
  background-color: #fff;
  box-shadow: 6px 6px 25px 0px #00000017;
  border-radius: 8px;
  padding: 30px 20px;
}

.achieve-card img {
  margin-bottom: 15px;
}

.achieve-card span {
  display: block;
  font-size: 20px;
  color: #2baae1;
  margin-bottom: 5px;
  font-family: "JannaBold", sans-serif;
}

.achieve-card p {
  margin: 0;
  color: #000;
  font-size: 13px;
  font-family: "JannaRegular";
}

.offers-card {
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 10px;
  height: calc(100% - 25px);
  margin-bottom: 25px;
  box-shadow: rgba(0, 0, 0, 0.09) 6px 6px 25px;
}

.offers-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #000000d9;
}

@media screen and (max-width: 768px) {
  .offers-card {
    text-align: center;
    padding: 20px 15px;
    flex-direction: column;
  }

  .offers-card img {
    width: 50px;
  }

}

.what-we-offering .desc {
  color: #636363;
  line-height: 27px;
}

/* Course Listing Page */
.landing-page-banner {
  position: relative;
  height: 590px;
  display: flex;
  align-items: center;
}

.landing-page-banner.md {
  height: 520px;
}

.landing-page-banner .container {
  position: relative;
  z-index: 6;
}

.landing-page-banner .banner-title {
  font-size: 42px;
  color: #fff;
  line-height: 52px;
  margin-bottom: 20px;
  font-family: "JannaRegular";
  font-weight: 700;
}

.landing-page-banner .banner-search-area {
  padding: 20px;
  border-radius: 10px;
  background-color: #0000004D;
}

.landing-page-banner .banner-search-area .banner-search-box {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  text-align: center;
}

.landing-page-banner .banner-search-area .swiper-slide {
  text-align: center;
}

.landing-page-banner .banner-search-area .banner-search-box input {
  width: 100%;
  padding: 9px 10px;
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid #d9d9d9;
  font-size: 14px;
  outline: 0;
}

.landing-page-banner .banner-search-area .banner-search-box input::placeholder {
  color: #00000048;
}

.landing-page-banner .banner-search-area .banner-search-box a,
.landing-page-banner .banner-search-area .banner-search-box button {
  display: inline-block;
  white-space: nowrap;
  padding: 5px 15px;
  border-radius: 5px;
  background-color: #15508a;
  border: 1px solid #15508a;
  color: #fff;
}

.landing-page-banner .banner-search-area .banner-search-tags {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.landing-page-banner .banner-search-area .banner-search-tags>span {
  display: block;
  padding: 5px;
  font-size: 22px;
  line-height: 20px;
}

.landing-page-banner .banner-search-area .banner-search-tags>span.swiper-button-disabled {
  cursor: not-allowed;
}

.landing-page-banner .banner-search-area .banner-search-tags a {
  font-size: 14px;
  color: #fffc;
}

.landing-page-banner .banner-search-area .swiper-slide {
  position: relative;
}

.landing-page-banner .banner-search-area .swiper-slide:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  height: 100%;
  border-right: 1px solid #fff;
}

.landing-page-banner .slide-img-right {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 90%;
  object-fit: contain;
  object-position: bottom;
  z-index: 5;
}

.landing-page-banner .slide-left-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 183px;
  z-index: 4;
}

.landing-page-banner .slide-center-img {
  position: absolute;
  left: 70%;
  transform: translateX(-70%);
  bottom: 0;
  height: 530px;
  max-height: 90%;
  z-index: 4;
}

@media screen and (max-width: 768px) {
  .landing-page-banner {
    height: 320px !important;
  }

  .landing-page-banner .slide-left-img {
    height: 100px;
  }

  .landing-page-banner .slide-center-img {
    height: 200px;
    object-fit: contain;
  }

  .landing-page-banner .slide-img-right {
    width: 70%;
  }

  .landing-page-banner .banner-title {
    font-size: 26px;
    line-height: unset;
  }
}

.banner-sm {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background-color: #15508a;
}

.banner-sm .slide-left-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 120px;
}

.banner-sm h1 {
  margin-inline: auto;
  color: #fff;
  max-width: 650px;
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
  color: rgb(255, 255, 255);
  font-family: "JannaRegular", sans-serif;
}

@media screen and (max-width: 992px) {
  .banner-sm h1 {
    padding-inline: 40px;
    font-weight: 700;
    font-size: 20px;
    line-height: unset;
  }
}

.banner-after {
  padding: 15px 0;
  background-color: #2baae10f;
}

.banner-after-slider {
  position: relative;
}

.banner-after #BannerAfter {
  overflow: hidden;
}

.banner-after #BannerAfterRight,
.banner-after #BannerAfterLeft {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(165, 164, 164);
}

.banner-after #BannerAfterRight {
  right: -20px;
}

.banner-after #BannerAfterLeft {
  left: -20px;
}

.banner-after #BannerAfter .banner-after-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
}

.banner-after #BannerAfter .swiper-slide:not(:last-child) .banner-after-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  height: 100%;
  border-right: 1px solid #D3D3D3;
}

.banner-after #BannerAfter .banner-after-card img {
  width: 45px;
}

.banner-after #BannerAfter .banner-after-card span {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.banner-after #BannerAfter .banner-after-card p {
  margin: 0;
  font-size: 12px;
  color: #717171;
}

@media screen and (max-width: 992px) {
  .banner-after #BannerAfter .swiper-slide:not(:last-child) .banner-after-card::after {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .banner-after {
    padding-inline: 20px;
  }
}

.about-banner-after {
  background-color: #15508a;
}

.about-banner-after #BannerAfter {
  overflow: hidden;
  background-color: #2fa9e0;
}

.about-banner-after .swiper-slide:nth-child(even) .about-banner-after-card {
  background-color: #15508a;
}

.about-banner-after .swiper-slide .about-banner-after-card {
  padding: 15px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 0px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  font-family: "JannaRegular", sans-serif;
  height: 100%;
}

.about-banner-after .swiper-slide .about-banner-after-card img {
  width: 30px;
}

@media screen and (max-width: 992px) {

  .about-banner-after,
  .about-banner-after .swiper-slide:nth-child(even) .about-banner-after-card {
    background-color: #2fa9e0;
  }
}

.breadcrumbs {
  padding: 20px 0;
  border-bottom: 1px solid #dddddd;
  color: rgba(0, 0, 0, .45);
}

.breadcrumbs a {
  display: inline-block;
  color: rgba(0, 0, 0, .45);
  margin-right: 4px;
  transition: color .2s;
}

.breadcrumbs a:hover {
  color: #000000d9;
}

.breadcrumbs span {
  color: #000000d9;
  margin-left: 4px;
}

@media screen and (max-width: 992px) {
  .breadcrumbs {
    padding: 10px 0;
  }
}

.landing-page-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #0000000f;
}

.landing-page-list-head h4 {
  font-size: 28px;
  color: #2baae1;
  margin: 0;
  font-family: "JannaBold", sans-serif;
}

.landing-page-list-head .total-show {
  font-weight: 500;
}

.landing-page-list-head a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  color: #636363;
  padding: 5px 20px;
}

/* Course Listing Page End */


.landing-page-filter {
  background: rgb(250, 250, 250);
  padding: 20px;
  border-radius: 15px;
}

.landing-page-filter .filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.landing-page-filter .separator {
  border-bottom: 1px solid #0000000f;
  margin: 20px 0
}

.landing-page-filter .filter-header h4 {
  margin-bottom: 0px;
  font-size: 20px;
  font-weight: 500;
}

.landing-page-filter .filter-header a {
  display: flex;
  gap: 4px;
  align-items: center;
  color: #000000d9;
}

.landing-page-filter .filter-box {
  transition: 0.3s;
}

.landing-page-filter .filter-box:not(:last-child).show {
  margin-bottom: 20px;
}

.landing-page-filter .filter-box.show .filter-box-body {
  overflow: auto;
  max-height: 400px;
  transition: 0.5s;
}

.landing-page-filter .filter-box .filter-box-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.landing-page-filter .filter-box .filter-box-body::-webkit-scrollbar {
  width: 4px;
}

.landing-page-filter .filter-box .filter-box-body::-webkit-scrollbar-track {
  background: #E6E6E6;
}

.landing-page-filter .filter-box .filter-box-body::-webkit-scrollbar-thumb {
  background-color: #939393;
}

.landing-page-filter .filter-box .filter-box-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  color: rgba(0, 0, 0, .85);
  cursor: pointer;
}

.landing-page-filter .filter-box .filter-box-label::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-90deg);
  transition: 0.3s;
  background-image: url('data:image/svg+xml,<svg width="16" height="10" viewBox="0 0 16 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15 1L8 8L1 1" stroke="%23636363" stroke-width="1.5"/></svg>');
}

.landing-page-filter .filter-box.show .filter-box-label::after {
  transform: rotate(0deg);
}

.landing-page-filter .filter-box .filter-box-body .input input {
 padding: 10px; 
 border: 1px solid #636363;
 background-color: rgb(250, 250, 250);
}

.checkbox-label {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.checkbox-label.scholarship-checkbox a {
  color: #15508a;
  font-weight: 500;
}
.checkbox-label input {
  margin-top: 2px;
}

.checkbox-label.JannaRegular {
  font-family: "JannaRegular", sans-serif;
}
.checkbox-label.JannaRegular a {
  color: #15508a;
  font-weight: 400;
}

.checkbox-label a {
  font-weight: 700;
  color: #000;
}

.checkbox-label input[type="checkbox"] {
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  background-color: #fff;
  transition: 0.2s;
  outline: 0;
}

.checkbox-label:hover input[type="checkbox"] {
  border-color: #2baae1;
}

.checkbox-label input[type="checkbox"]:checked {
  background-color: #2baae1;
  border-color: #2baae1;
}

.checkbox-label input[type="checkbox"]::before {
  content: " ";
  position: absolute;
  display: table;
  top: 50%;
  left: 21%;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  width: 5px;
  height: 9px;
  transform: rotate(45deg) scale(1) translate(-50%, -50%);
  opacity: 1;
  transition: all .2s cubic-bezier(.12, .4, .29, 1.46) .1s;
}

.checkbox-label input[type="radio"] {
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  border-radius: 16px;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  transition: 0.2s;
  outline: 0;
}

.checkbox-label:hover input[type="radio"] {
  border-color: #2baae1;
}

.checkbox-label input[type="radio"]:checked {
  border-color: #2baae1;
}

.checkbox-label input[type="radio"]::before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #2baae1;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.1s;
}

.checkbox-label input[type="radio"]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}

.filter-sidebar {
  position: fixed;
  top: 0;
  left: -400px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #fff;
  transition-delay: 0s;
  transition: 0.2s;
  box-shadow: -6px 0 16px -8px rgba(0, 0, 0, .08), -9px 0 28px 0 rgba(0, 0, 0, .05), -12px 0 48px 16px rgba(0, 0, 0, .03);
  z-index: 101;
}

.filter-sidebar.show {
  left: 0;
  transition: 0.3s;
  transition-delay: 0.2s;
}

.filter-sidebar .filter-sidebar-header {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: space-between;
  padding: 20px 15px;
  background: rgb(255, 255, 255);
}

.filter-sidebar .filter-sidebar-body {
  height: calc(100% - 72px);
  padding: 32px 20px;
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url('data:image/svg+xml,<svg width="111" height="120" viewBox="0 0 111 120" fill="none" xmlns="http://www.w3.org/2000/svg" ><path d="M42.7457 77.6363C42.7457 87.8629 42.8945 98.2356 42.7457 108.462C42.5969 113.283 40.6623 117.52 35.7514 119.273C33.3704 120.15 30.2454 120.15 27.7156 119.711C19.9772 118.543 12.3877 116.936 4.64942 115.475C-3.38653 114.014 -11.4225 112.699 -19.4584 111.238C-24.2205 110.361 -26.3039 107.001 -24.6669 102.472C-16.631 79.6816 -1.15438 65.0722 23.1023 60.3971C27.2691 59.6667 31.4359 59.2284 35.6027 59.0823C39.4718 58.9362 42.0016 61.4198 42.0016 65.3643C42.0016 69.455 42.5969 71.7925 42.5969 75.8831C42.7458 76.7597 42.7457 77.198 42.7457 77.6363Z" fill="%23105F43" fill-opacity="0.07" /><path d="M86.4956 58.0598C89.4719 57.9137 93.0434 57.6215 96.615 57.3293C104.502 56.745 111.496 60.3973 110.603 70.3317C109.264 84.0646 108.222 97.6514 107.181 111.384C106.734 116.644 104.056 118.689 98.6983 117.958C87.8349 116.498 77.7156 112.845 68.7868 106.563C58.965 99.5506 52.1197 90.3467 48.5481 78.9513C47.3576 75.1528 46.4647 71.3544 45.5718 67.5559C44.5301 63.1731 46.6135 60.1051 51.2267 59.3746C51.5244 59.3746 51.9708 59.2286 52.2685 59.2286C63.4295 58.7903 74.5905 58.4981 86.4956 58.0598Z" fill="%23105F43" fill-opacity="0.07" /><path d="M31.7341 56.8921C16.7039 57.1843 1.67377 57.4765 -13.3564 57.7687C-14.6958 57.7687 -16.1839 57.7687 -17.5232 57.7687C-22.7317 57.4765 -24.3686 52.5093 -23.9222 49.1491C-22.5828 39.653 -21.3924 30.1569 -19.9042 20.6607C-19.309 16.1318 -18.7137 11.4568 -17.5232 7.07396C-16.3327 2.54504 -12.7612 0.645812 -8.14794 1.66847C6.73344 4.88255 19.6802 11.4568 29.5019 23.2904C35.9009 31.1795 39.026 40.3835 40.663 50.1718C41.407 54.2624 39.1748 56.6 35.0081 56.8921C33.9664 57.0382 32.9247 56.8921 31.883 56.8921C31.7342 56.8921 31.7341 56.8921 31.7341 56.8921Z" fill="%23105F43" fill-opacity="0.07" /><path d="M43.4894 28.1108C43.4894 21.6826 43.6382 15.2545 43.4894 8.82633C43.3405 1.9599 48.6978 -0.231519 53.6087 0.498953C68.7877 2.83646 84.1155 5.32007 99.2946 7.80367C105.694 8.82633 108.521 13.3553 106.289 19.199C101.973 30.3022 94.8302 39.3601 84.7108 46.0804C75.0379 52.6546 64.0256 55.2843 52.567 56.4531C46.7632 57.0375 43.787 54.5539 43.6381 48.7101C43.4893 41.9897 43.4894 35.1233 43.4894 28.1108Z" fill="%23105F43" fill-opacity="0.07" /></svg>');
  overflow: auto;
}

/* Range Input */
.range-input-wrapper {
  padding-block: 10px;
}

.range-input-wrapper .range-input-slider {
  position: relative;
  height: 4px;
  background-color: #0000001A;
}

.range-input-wrapper .range-input-slider .range-input-progress {
  position: absolute;
  height: 4px;
  background-color: #424242;
}

.range-input-wrapper .range-input {
  position: relative;
  user-select: none;
}

.range-input-wrapper .range-input input {
  position: absolute;
  top: -4px;
  height: 4px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: none;
  pointer-events: none;
  outline: 0;
}

.range-input-wrapper .range-input input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background-color: #424242;
  border: 2px solid #424242;
  pointer-events: auto;
  cursor: pointer;
}

.range-input-wrapper .range-input input[type="range"]::-moz-slider-thumb {
  appearance: none;
  -moz-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background-color: #424242;
  border: 2px solid #424242;
  pointer-events: auto;
  cursor: pointer;
}

.range-input-vals {
  position: relative;
  width: 100%;
}

.range-input-vals>span {
  position: absolute;
  width: max-content;
  bottom: 15px;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: #ececec;
  font-family: "ArchivoMedium", sans-serif;
}

.range-input-vals>span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 5px;
  height: 8px;
  background-color: #ececec;
}

.range-input-vals span.range-input-min-val {
  transform: translateX(-50%);
}

.range-input-vals span.range-input-max-val {
  transform: translateX(50%);
}

.range-input-vals span {
  font-size: 19px;
  color: #838383;
  margin-left: 4px;
}

.range-input-vals {
  font-size: 12px;
  color: #838383;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

/* Range Input End */

.banner {
  position: relative;
  height: 390px;
  display: flex;
  align-items: center;
}

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

.banner .banner-title {
  font-size: 40px;
  font-family: "JannaRegular", sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.banner .course-info {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.banner .course-info .course-info-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.banner .course-info span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.banner .course-info span span {
  color: #ffaa46;
}

.banner .banner-left {
  position: absolute;
  top: -8px;
  left: 0;
  width: 120px;
  z-index: 0;
}

.banner .banner-rigth {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 750px;
  max-width: 80%;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .banner {
    height: 300px;
  }
}

.course-detail-side-links {
  position: sticky;
  top: 100px;
  box-shadow: rgba(0, 0, 0, 0.09) 6px 6px 25px;
  padding: 25px 20px;
  border-radius: 9px;
}

.course-detail-side-links a {
  display: block;
  color: #000;
  padding-left: 15px;
}

.course-detail-side-links a:not(:last-child) {
  margin-bottom: 14px;
}

.course-detail-side-links a.active {
  color: #15508a;
  border-left: 3px solid #15508a;
}


.course-detail-overview-card {
  border: 1px solid rgb(209, 209, 209);
  border-radius: 9px;
  padding: 20px;
}

.course-detail-overview-card:not(:last-child) {
  margin-bottom: 25px;
}

.overview-card-title {
  padding: 10px;
  margin-bottom: 20px;
  background: #f3fafd;
  border-radius: 9px;
  font-family: "JannaBold", sans-serif;
  margin-bottom: 0px;
  font-size: 17px;
  color: #2baae1;
  margin-bottom: 15px;
}

.course-detail-overview-card p {
  color: #636363;
  font-weight: 400;
}

.summer-card {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgb(255, 255, 255);
  padding: 20px 15px;
  border: 1px solid rgb(234, 234, 234);
  border-radius: 9px;
  margin-bottom: 15px;
}

.summer-card img {
  width: 40px;
}

.summer-card h5 {
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 500;
  font-family: "JannaRegular", sans-serif;
}

.summer-card p {
  font-size: 13px;
  color: #15508a;
  font-family: "JannaRegular", sans-serif;
  margin: 0;
}

.curriculum-card {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.curriculum-card .icon {
  width: 45px;
  height: 45px;
  border: 1px solid #154f8a92;
  background-color: #15508a14;
  display: flex;
  justify-content: center;
  align-items: center;
}

.curriculum-card span {
  display: block;
  color: #15508a;
  margin-bottom: 0px;
  font-weight: 600;
  font-size: 15px;
  font-family: "JannaRegular", sans-serif;
}

.curriculum-card p {
  margin-bottom: 0px;
  font-weight: 400;
  font-size: 14px;
}

.module-collapse {
  margin-top: 20px;
}

.module-collapse .module-collapse-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background-color: #f6f5f5;
  cursor: pointer;
  font-family: "JannaRegular", sans-serif;
}

.module-collapse .module-collapse-head::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
  background-image: url('data:image/svg+xml,<svg width="16" height="10" viewBox="0 0 16 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15 1L8 8L1 1" stroke="%23636363" stroke-width="1.5"/></svg>');
}

.module-collapse.show .module-collapse-head::after {
  transform: rotate(-90deg);
}

.module-collapse .module-collapse-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease-out;
}

.module-collapse.show .module-collapse-body {
  max-height: 500px;
  overflow: auto;
  transition: 0.3s ease-in;
}

.module-collapse .module-collapse-body .collapse-body-content {
  padding: 12px 16px;
}

.module-collapse .module-collapse-body a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #636363;
  font-weight: 400;
  padding: 5px 0;
  margin-bottom: 5px;
}

.course-detail-right-card {
  box-shadow: rgba(0, 0, 0, 0.09) 6px 6px 25px;
  padding: 20px;
  border-radius: 9px;
  margin-bottom: 40px;
}

.course-detail-right-card .card-title {
  font-family: "JannaBold", sans-serif;
  font-size: 18px;
  line-height: 22px;
  color: #2baae1;
  margin-bottom: 10px;
}

.course-detail-register-card>img {
  margin-bottom: 10px;
  width: 100%;
  max-height: 300px;
}

.course-detail-register-card .price {
  display: block;
  font-weight: 600;
  margin-bottom: 0px;
  font-size: 28px;
  font-family: "JannaRegular", sans-serif;
  margin-bottom: 5px;
}

.course-detail-register-card .price span {
  font-size: 18px;
  font-weight: 600;
}

.course-detail-register-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 10px;
}

.course-detail-register-card ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.course-detail-register-card ul li:not(:last-child) {
  border-bottom: 1px solid #dddddd;
}

.course-detail-right-card .course-detail-price-detail-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-detail-right-card .course-detail-price-detail-card ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.course-detail-right-card .course-detail-price-detail-card ul li:not(:last-child) {
  border-bottom: 1px solid #dddddd;
}

.course-detail-right-card .course-detail-price-detail-card ul li>span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.course-detail-right-card .course-detail-price-detail-card ul li>span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #2baae1;
}

.course-detail-right-card .course-detail-price-detail-card .price {
  font-size: 18px;
  font-weight: 400;
  font-family: "JannaBold", sans-serif;
}

.course-detail-right-card .course-detail-price-detail-card .price span {
  font-size: 10px;
}

@media screen and (max-width: 992px) {
  .banner .banner-title {
    font-size: 22px;
  }

  .banner .course-info {
    gap: 15px;
  }

  .course-detail-overview-card {
    border: 0;
    padding: 0 10px;
  }

  .summer-card {
    flex-direction: column;
    text-align: center;
  }
}

.detail-video-modal video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.share-modal .modal-dialog {
  max-width: 700px;
}

.share-modal .share-modal-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #181818;
  font-family: "JannaBold", sans-serif;
  margin-bottom: 15px;
  font-size: 22px;
}

.share-modal .copy-link-input {
  display: flex;
  margin-bottom: 25px;
}

.share-modal .copy-link-input input {
  height: 50px;
  flex: 1;
  border: 1px solid #d9d9d9;
  outline: 0;
  padding: 4px 11px;
}

.share-modal .copy-link-input button {
  height: 50px;
  display: block;
  padding: 4px 15px;
  background-color: #2baae1;
  color: #fff;
  border: 1px solid #2baae1;
}

.share-modal .share-social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.share-modal .share-social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 45px;
  padding: 10px;
  border: 1px solid #15508a;
  font-size: 24px;
  color: #15508a;
}

.share-modal .share-social-links a:hover {
  background-color: #15508a1a;
}

/* Sign In */
.sign-in-section {
  position: relative;
  padding: 25px 0;
  overflow: hidden;
}

.sign-in-section .sign-in-section-img {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.5;
  width: 360px;
  height: 500px;
  pointer-events: none;
}

.sign-in-section .separator {
  border-bottom: 1px solid #a9a9a9;
  margin: 25px 0;
}

.sign-in-section .sign-in-title {
  font-family: "JannaBold", sans-serif;
  font-size: 28px;
  color: rgb(24, 24, 24);
  margin-bottom: 10px;
  line-height: 51px;
}

.sign-in-section .sign-in-desc {
  color: #8c8c8c;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}

.sign-in-section .scholarship-desc {
  color: #8c8c8c;
  font-size: 12px;
  line-height: 24px;
  font-weight: 400;
  font-family: "JannaRegular", sans-serif;
  margin-bottom: 10px;
}

.sign-in-section .sign-in-desc a {
  color: #2baae1;
}

.sign-in-tab {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.sign-in-tab a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 30px;
  height: 40px;
  gap: 10px;
  color: #b7b7b7;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  min-width: 186px;
  transition: 0.4s;
}

.sign-in-tab a::before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  border: 3px solid #B7B7B7;
}

.sign-in-tab a:hover {
  border-color: #15508a;
}

.sign-in-tab a.active {
  background-color: #15508a;
  color: #fff;
}

.sign-in-tab a.active::before {
  border-color: #fff;
}

.sign-in-tab-item .code-txt {
  color: rgb(74, 74, 74);
  font-weight: 400;
  font-size: 14px;
  font-family: "JannaRegular";
  line-height: 19px;
  margin-bottom: 15px;
}

.input-label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: rgb(0, 0, 0);
  font-family: "InterNormal", sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
}

.input-label span {
  color: red;
}

.input {
  position: relative;
  margin-bottom: 20px;
}

.input input,
.input textarea {
  width: 100%;
  background: #f8f8f8;
  border: 1px solid #c1c1c1;
  border-radius: 5px;
  padding: 15px 20px;
  outline: 0;
  color: #000000d9;
}

.input textarea::placeholder,
.input input::placeholder {
  color: rgba(0, 0, 0, .30);
}

.input.icon-right .icon,
.input.icon-right .pass-eye {
  position: absolute;
  top: 16px;
  right: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
}

.input.icon-right .icon {
  top: 14px;
  pointer-events: none;
}

.input.icon-right input {
  padding-inline-end: 30px;
}

.checkbox-label .error-txt,
.input-file-uploader .error-txt,
.input .error-txt {
  width: 100%;
  font-size: 12px;
  color: #fa4947;
  display: none;
}

.checkbox-label.error .error-txt,
.input-file-uploader.error .error-txt,
.input.error .error-txt {
  display: block;
}

.input.borderless input,
.input.borderless textarea {
  border-color: transparent;
  transition: border 0.3s;
}

.input.borderless input:focus,
.input.borderless textarea:focus,
.input.borderless input:hover,
.input.borderless textarea:hover {
  border-color: #c1c1c1;
}

.tracking-label {
  color: #8c8c8c;
  font-weight: 700;
  margin-bottom: 15px;
}

.sign-in-tab-item a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #15508a;
}

.otp-inputs {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.otp-inputs .otp-input input {
  border-width: 1px;
  border-style: solid;
  border-color: rgb(255, 255, 255) rgb(255, 255, 255) rgb(0, 0, 0);
  border-image: initial;
  margin-right: 10px;
  font-size: 18px;
  width: 50px;
  outline: none;
  text-align: center;
}

.otp-inputs-placeholder {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.otp-inputs-placeholder div {
  width: 50px;
  height: 30px;
  background-color: #efeff1;
}

.iti {
  width: 100%;
}

/* Sign In End */

/* Register Cards */
.register-cards {
  display: flex;
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.register-cards .register-card {
  padding: 24px 30px;
  background: rgb(255, 255, 255);
  cursor: pointer;
  border: 2px solid rgb(193, 193, 193);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  transition: all 0.3s ease 0s;
  max-width: 160px;
}

.register-cards .register-card h4 {
  font-size: 18px;
  font-weight: 600;
  font-family: "JannaRegular", sans-serif;
  color: rgb(46, 46, 46);
  line-height: 27px;
  text-align: center;
  margin-block: 10px;
}

.register-cards .register-card:hover {
  border-color: #2baae1;
  background: #fafeff;
}

@media screen and (max-width: 768px) {
  .register-cards {
    flex-direction: column;
  }

  .register-cards .register-card {
    max-width: 100%;
  }
}

/* Register Cards End */

/* Our Stories Section */
.our-stories-section {
  padding: 60px 0;
  background-color: #2fa9e026;
}

.our-stories-section .our-stories-card-slider {
  display: flex;
  align-items: center;
  gap: 25px;
}

.our-stories-section .our-stories-card-slider .swiper-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 5px 5px 25px 0px #00000026;
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  border-radius: 4px;
  z-index: 2;
}

.our-stories-card {
  display: flex;
  align-items: center;
  gap: 30px;
}

.our-stories-card .our-stories-card-txt {
  width: 50%;
}

.our-stories-card .our-stories-card-txt h3 {
  font-family: "JannaBold", sans-serif;
  color: #2baae1;
  font-size: 40px;
  line-height: 46px;
  margin-bottom: 20px;
}

.our-stories-card .our-stories-card-txt p {
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: rgb(99, 99, 99);
}

.our-stories-card .our-stories-card-img {
  width: 50%;
  text-align: center;
}

@media screen and (max-width: 992px) {
  .our-stories-card {
    flex-direction: column-reverse;
  }

  .our-stories-card .our-stories-card-txt,
  .our-stories-card .our-stories-card-img {
    width: 100%;
  }
}

/* Our Stories Section End */

/* Our Accreditation Card */
.our-accreditation-card {
  padding: 50px 0;
  text-align: center;
  border: 1px solid #12604347;
  border-radius: 24px;
}

/* Our Accreditation Card End */

/* Associate Executive Administration Section */
.associate-executive-administration-section {
  padding: 60px 0;
  background-image: url('../images/aeas-bg.webp');
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
}

.aeas-card {
  background: #2baae11A;
  padding: 35px;
  border-radius: 9px;
}

.aeas-card h5 {
  font-family: "JannaBold", sans-serif;
  font-size: 30px;
  line-height: 46px;
  color: #2baae1;
  margin-block: 14px;
}

.aeas-card p {
  line-height: 28px;
}

.aeas-card a {
  border-radius: 5px;
}

/* Associate Executive Administration Section End */

/* Associate Executive Administration Section End */
.contact-info-card {
  margin: 35px 0;
  padding: 10px 0;
  border-right: 1px solid #dddddd;
  text-align: center;
}

.contact-info-card img {
  margin-bottom: 15px;
}

.contact-info-card h5 {
  font-family: "JannaBold", sans-serif;
  font-size: 24px;
  line-height: 22px;
  color: #2baae1;
  margin: 15px 0px 12px;
}

.contact-info-card span {
  display: block;
  font-family: "JannaBold", sans-serif;
}

@media screen and (max-width: 768px) {
  .contact-info-card {
    margin: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid #dddddd;
  }
}

/* Associate Executive Administration Section End */

/* Service Request Title */
.service-request-section {
  position: relative;
  padding: 60px;
}

.service-request-section .offers-card {
  border: 1px solid #e7e7e7;
  transition: 0.2s;
}

.service-request-section .offers-card:hover {
  box-shadow: rgba(0, 0, 0, 0.09) 6px 6px 25px;
}

.service-request-section .service-request-section-bg {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 480px;
  pointer-events: none;
}

.service-request-title {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
}

/* Service Request Title End */

/* Service Request Modal */
.service-request-modal .modal-dialog {
  max-width: 700px;
}

.service-request-modal .service-request-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 5px;
  padding-bottom: 15px;
}

.service-request-modal .service-request-head h4 {
  color: rgb(24, 24, 24);
  font-family: "JannaBold", sans-serif;
  font-size: 22px;
  margin-bottom: 0;
}

.service-request-modal .service-request-head a {
  color: rgb(24, 24, 24);
  font-size: 22px;
}

.service-request-modal .modal-dialog .modal-body {
  padding: 20px;
}

.service-request-modal .desc {
  font-size: 14px;
}

.service-request-modal .select2-container--bootstrap-5 .select2-selection--single,
.service-request-modal .input input {
  padding: 11px 10px;
}

/* Service Request Modal End */

/* Input File Uploader */
.input-file-uploader {
  margin-bottom: 20px;
}

.input-file-uploader .input-file-label {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  padding: 11px 10px;
  color: #000000d9;
  margin: 0;
  cursor: pointer;
}

.input-file-uploader .input-file-label input {
  display: none;
}

.input-file-uploader .input-file-label .input-file-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.input-file-uploader .input-file-preview {
  display: none;
  justify-content: space-between;
  align-items: center;
}

.input-file-uploader .input-file-preview>img {
  width: 100px;
}

.input-file-uploader.show .input-file-preview {
  display: flex;
}

.input-file-uploader.show .input-file-label {
  display: none;
}

/* Input File Uploader End */

/* Label Text Radio */
.label-text-radio {
  margin-inline-end: 6px;
}

.label-text-radio span {
  display: inline-block;
  position: relative;
  display: inline-block;
  height: 32px;
  margin: 0;
  padding: 0 15px;
  color: rgba(0, 0, 0, .85);
  font-size: 14px;
  line-height: 30px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  cursor: pointer;
  transition: .3s;
}

.label-text-radio input {
  display: none;
}

.label-text-radio input:checked+span {
  border-color: #2baae1;
  color: rgb(255, 255, 255);
  background-color: #2baae1;
}

/* Label Text Radio End */

/* News Listing Horizontal Card */
.news-listing-section {
  background-position: top right;
  background-size: 360px 500px;
  background-repeat: no-repeat;
  background-image: url('../images/news-listing-bg.webp');
}

.news-listing-horizontal-card {
  margin-bottom: 30px;
}

.news-listing-horizontal-card .img {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.news-listing-horizontal-card .img img {
  width: 100%;
  border-radius: 8px;
}

.news-listing-horizontal-card .category {
  display: inline-block;
  color: #2baae1;
  font-family: "TitilliumMedium", sans-serif;
  padding: 6px 10px;
  border-radius: 4px;
  background: #2baae11A;
}

.news-listing-horizontal-card .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-listing-horizontal-card-title {
  font-size: 28px;
  font-family: "JannaBold", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 15px;
  margin-bottom: 10px;
}

.news-listing-horizontal-card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-listing-vertical-card-list {
  border-radius: 7px;
  box-shadow: rgba(0, 0, 0, 0.09) 6px 6px 25px;
  padding: 20px;
  background-color: #fff;
}

.news-listing-vertical-card-list-title {
  font-size: 22px;
  color: #2baae1;
  font-family: "JannaBold", sans-serif;
  margin-bottom: 0px;
  border-bottom: 1px solid #0000001a;
  margin-bottom: 25px;
}

.news-listing-vertical-card {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-listing-vertical-card:not(:last-child) {
  border-bottom: 1px solid #0000001a;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.news-listing-vertical-card .img {
  width: 80px;
}

.news-listing-vertical-card .img img {
  border-radius: 4px;
}

.news-listing-vertical-card .content {
  width: calc(100% - 80px);
}

.news-listing-vertical-card .content span {
  display: block;
  font-family: "TitilliumMedium", sans-serif;
  color: #2baae1;
}

.news-listing-vertical-card .content p {
  font-size: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

/* News Listing Horizontal Card End */

/* Terms Section */
.terms-section {
  padding: 50px 0;
}

.terms-section h4 {
  font-size: 14px;
  color: #000000d9;
}

.tracking-label {
  color: #8c8c8c;
  font-weight: 700;
  margin-bottom: 15px;
}
/* Terms Section End */

/* Scholarship Form */
.scholarship-success-message {
  background: #f8f8f8;
  border: 1px solid #f8f8f8;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
  color: #2baae1;
  font-size: 12px;
  line-height: 24px;
  font-weight: 400;
  font-family: "JannaRegular", sans-serif;
}

.scholarship-underline-txt {
  color: #181818;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  font-family: "JannaRegular", sans-serif;
  margin-block: 15px;
  text-decoration: underline;
}

.confirm-modal.alert .modal-dialog {
  max-width: 460px;
}

.confirm-modal .modal-content {
  border-radius: 15px;
}

.confirm-modal .modal-dialog {
  max-width: 610px;
}

.confirm-modal-title {
  color: rgb(24, 24, 24);
  font-family: "JannaBold", sans-serif;
  margin-bottom: 0px;
  margin-top: 10px;
  font-size: 22px;
  margin-bottom: 10px;
}

.confirm-modal-desc {
  font-family: "InterNormal", sans-serif;
  font-weight: 400;
  color: #8c8c8c;
  margin-bottom: 10px;
}

.confirm-phone-email {
  margin-bottom: 0px;
  font-family: "InterNormal", sans-serif;
  font-weight: 400;
  color: #000;
  margin-bottom: 10px;
}

.confirm-phone-email img {
  width: 30px;
  object-fit: contain;
}

.send-otp-no {
  color: rgb(140, 140, 140);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 15px;
}

.security-code {
  color: rgb(140, 140, 140);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  font-family: "JannaRegular", sans-serif;
  margin-bottom: 10px;
}

.resend-otp {
  color: rgb(140, 140, 140);
  font-size: 16px;
  line-height: 24px;
  margin-top: 15px;
  font-weight: 400;
}

.resend-otp .circle-loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: 3px solid #15508a;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
  margin-inline-end: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.resend-otp span,
.resend-otp a {
  color: #15508a;
  font-weight: 400;
}

/* Scholarship Form End */

/* Application For Scholarship Section */
.application-for-scholarship-section {
  padding: 90px 0 50px 0;
}

.application-for-scholarship-card {
  padding: 30px;
  background: rgb(255, 255, 255);
  cursor: pointer;
  border: 2px solid rgb(193, 193, 193);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  transition: all 0.3s ease 0s;
}

.application-for-scholarship-card h4 {
  font-size: 16px;
  font-weight: 600;
  font-family: "JannaRegular", sans-serif;
  color: rgb(46, 46, 46);
  line-height: 27px;
  text-align: center;
  margin-block: 20px;
}

.application-for-scholarship-card:hover {
  border-color: #2baae1;
  background-color: #fafeff;
}

/* Application For Scholarship Section End */


/* Select2 CSS */
.select2-container--bootstrap-5 .select2-dropdown,
.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus,
.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
  border-color: #ced4da;
  box-shadow: none;
}

.select2-container--bootstrap-5 .select2-selection--single {
  width: 100%;
  background-color: #f8f8f8;
  border: 1px solid #c1c1c1;
  border-radius: 5px;
  padding: 15px 20px;
  outline: 0;
  color: #000000d9;
  height: auto;
  font-size: 14px;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
  background-color: #e9ecef;
  color: #000;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
  font-size: 14px;
}

/* Select2 CSS End */

/* Registeration Step Section */
.registeration-steps-section {
  padding: 50px 0;
}

.registeration-steps-section .registeration-step-title {
  font-family: "JannaBold", sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 51px;
  color: rgb(24, 24, 24);
  margin-bottom: 5px;
}

.registeration-steps-section .registeration-step-desc {
  font-size: 16px;
  line-height: 24px;
  color: rgb(140, 140, 140);
  font-family: "InterNormal", sans-serif;
  font-weight: 400;
}

.registeration-step-card {
  display: block;
  box-shadow: rgba(0, 0, 0, 0.05) 5px 5px 31px 6px;
  background: rgb(255, 255, 255);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
}

.registeration-step-card.inactive {
  opacity: 0.20;
  pointer-events: none
}

.registeration-step-card .step-card-title {
  margin-bottom: 0px;
  font-size: 15px;
  color: #000000d9;
  font-weight: 500;
}

.registeration-step-card .step-card-arrow {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid rgb(193, 193, 193);
  background: rgb(248, 248, 248);
  color: #2baae1;
  font-size: 20px;
}

.registeration-step-card .step-card-progress {
  flex: auto;
  height: 4px;
  background-color: #f5f5f5;
  border-radius: 2px;
}

.registeration-step-card .step-card-progress span {
  background-color: #15508a;
  height: 4px;
  display: block;
  border-radius: 2px;
}

.registeration-step-card .step-card-progress-percentage {
  border-radius: 40px;
  cursor: pointer;
  border: 1px solid #2baae126;
  background: #2baae10f;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
  color: #2baae1;
  font-size: 10px;
}

.registeration-step-section {
  display: flex;
  flex-wrap: wrap;
}

.registeration-step-list {
  width: 33.33%;
  padding: 50px 30px 50px 50px;
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.registeration-step-list .application-number p {
  color: #8c8c8c;
  font-size: 16px;
  margin: 0;
}

.registeration-step-list .application-number span {
  color: #8c8c8c;
  font-weight: 700;
}

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

.registeration-step-list ul li {
  display: block;
  border-left: 3px solid #e7e7e7;
  padding-left: 15px;
  line-height: 35px;
  font-family: "InterNormal", sans-serif;
  font-size: 13px;
  color: #8c8c8c;
  font-weight: 400;
}

.registeration-step-list ul li.active {
  border-left-color: #15508a;
  font-weight: 700;
}

.registeration-step-form {
  width: 54%;
  padding: 40px 80px 30px 80px;
}

.registeration-form-title {
  color: #8c8c8c;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.registeration-form-sub-title {
  font-family: "JannaBold", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  color: rgb(24, 24, 24);
  margin-bottom: 10px;
}

.registeration-step-form label {
  font-family: "JannaRegular", sans-serif;
  margin-bottom: 15px;
}

.registeration-step-form .input input,
.registeration-step-form .select2-container--bootstrap-5 .select2-selection--single {
  padding: 12px 11px;
}

@media screen and (max-width: 768px) {
  .registeration-step-list {
    display: none;
  }

  .registeration-step-form {
    padding: 40px 15px 20px 10px;
    width: 100%;
  }
}

/* Registeration Step Section End */

/* Scholarship Request Finish Section */
.scholarship-request-finish-section {
  position: relative;
  padding: 140px 0;
}

.scholarship-request-finish-section h1 {
  font-family: "JannaBold", sans-serif;
  color: rgb(24, 24, 24);
  font-size: 28px;
  margin-bottom: 15px;
}

.scholarship-request-finish-section img {
  margin-block: 25px;
  height: 80px;
}

.scholarship-request-finish-section .scholarship-request-finish-section-bg {
  position: absolute;
  top: -70px;
  right: 0;
  margin: 0;
  width: 360px;
  height: 500px;
}

.scholarship-request-finish-section h2 {
  color: rgba(0, 0, 0, .85);
  font-weight: 500;
  font-size: 21px;
  margin-bottom: 15px;
}

.scholarship-request-finish-section a {
  color: #15508a;
}

/* Scholarship Request Finish Section End */

/* Empty Data */
.empty-data {
  text-align: center;
}

.empty-data span {
  display: block;
  margin-top: 5px;
}

/* Empty Data End */

/* Pagination */
.pagination {
  display: inline-flex;
  padding: 5px;
  color: #fff;
  box-shadow: 6px 6px 25px 0px #00000017;
  gap: 5px;
  border-radius: 4px;
  margin: 20px 0;
}

.pagination a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #F8F8F8;
  color: #ADADAD;
  font-family: "JannaRegular";
}

.pagination a.active {
  color: #fff;
  background-color: #2baae1;
}

/* Pagination End */

/* Track Your Application Section */
.track-your-application-section {
  position: relative;
  padding: 60px 0;
}

.track-your-application-section .track-your-application-title {
  font-family: "JannaBold";
  color: rgb(24, 24, 24);
  font-size: 28px;
  margin-bottom: 15px;
}

.track-your-application-section .track-your-application-desc {
  margin-bottom: 30px;
  color: #000000d9;
}

.track-your-application-section .track-your-application-card {
  margin-bottom: 20px;
  background: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.05) 5px 5px 31px 6px;
  border-radius: 14px;
  padding: 20px;
}

.track-your-application-card .track-your-application-card-title {
  margin-bottom: 0px;
  font-family: "JannaRegular";
  font-weight: 600;
  color: #181818;
  font-size: 22px;
  margin-bottom: 20px;
}

.track-your-application-card .track-your-application-card-info-item {
  border-bottom: 1px solid #eaeaea;
}

.track-your-application-card .track-your-application-card-info-item span {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
  color: #8c8c8c;
}

.track-your-application-card .track-your-application-card-info-item p {
  color: rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: "InterNormal", sans-serif;
}

.track-your-application-card .track-your-application-card-status-item {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.track-your-application-card .track-your-application-card-status-item .input {
  min-width: 100px;
}

.track-your-application-card .track-your-application-card-status-item .status-info-upload {
  width: 100%;
  display: none;
}

.track-your-application-card .track-your-application-card-status-item .status-info-upload .input-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.track-your-application-card .track-your-application-card-status-item .status-info-upload .input-label a {
  color: #15508a;
  font-size: 12px;
}

.track-your-application-card .track-your-application-card-status-item .status-info-upload .input-file-label {
  padding: 8px 10px;
}

.track-your-application-card .track-your-application-card-status-item .date {
  width: 150px;
  min-width: 150px;
}

.track-your-application-card .track-your-application-card-status-item .date span {
  display: block;
  padding: 4px 5px;
  border-radius: 6px;
  background-color: #f0f0f0;
  text-align: center;
  color: #000000;
  font-family: "InterNormal", sans-serif;
  font-weight: 400;
}

.track-your-application-card .track-your-application-card-status-item .status-color span {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 10px;
  margin-top: 8px;
}

.track-your-application-card .track-your-application-card-status-item .status-info {
  padding-bottom: 15px;
  border-bottom: 1px solid #c1c1c1;
  flex: 1;
}

.track-your-application-card .track-your-application-card-status-item .status-info.has-cols {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.track-your-application-card .track-your-application-card-status-item .input {
  flex: 1;
}

.track-your-application-card-status-item .status-info.has-cols .select2-container--bootstrap-5 .select2-selection--single {
  padding: 10px;
  padding-inline-end: 30px;
  background-color: transparent;
  font-size: 12px;
}

.track-your-application-card-status-item .status-info.has-cols a {
  display: inline-block;
  color: #2baae1;
  margin-inline-end: 5px;
  font-size: 12px;
  margin-top: 10px;
}

.track-your-application-card .track-your-application-card-status-item .status-info h6 {
  font-size: 12px;
  margin-bottom: 4px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

.track-your-application-card .track-your-application-card-status-item .status-info h6 span {
  font-size: 12px;
  color: #15508a;
  font-weight: 400;
}

.track-your-application-card .track-your-application-card-status-item .status-info p {
  font-size: 12px;
  margin-bottom: 0px;
}

@media screen and (max-width: 768px) {
  .track-your-application-card .track-your-application-card-status-item .date {
    width: auto;
    min-width: max-content;
  }
  .track-your-application-card .track-your-application-card-status-item .date span {
    padding: 1px 3px;
  }
}

/* Track Your Application Section End */

/* RTL */
[dir="rtl"] header .search-btn a::before {
  right: auto;
  left: 10px;
}

[dir="rtl"] .home-slider .home-slide .slide-img-right {
  right: auto;
  left: 0;
}

[dir="rtl"] .home-slider .home-slide .slide-left-img {
  left: auto;
  right: 0;
}

[dir="rtl"] .about-us-section .about-us-bg {
  right: auto;
  left: 0;
}

[dir="rtl"] .course-card .img span {
  left: auto;
  right: 10px;
}

[dir="rtl"] .application-for-scholarship-card img,
[dir="rtl"] .register-cards .register-card img {
  transform: rotateY(190deg);
}

[dir="rtl"] .input.icon-right .pass-eye {
  right: auto;
  left: 10px;
}

[dir="rtl"] .about-us-section .about-us-bg,
[dir="rtl"] .home-slider .home-slide .slide-left-img,
[dir="rtl"] .home-slider .home-slide .slide-img-right,
[dir="rtl"] .course-slider .arrow-right img,
[dir="rtl"] .course-slider .arrow-left img,
[dir="rtl"] header .menu ul li .dropdown-menu.services .services-menu-wrapper .services-menu a img {
  transform: rotateY(180deg);
}

[dir="rtl"] .banner-after #BannerAfter .swiper-slide:not(:last-child) .banner-after-card::after {
  right: auto;
  left: -10px;
}

[dir="rtl"] .landing-page-banner .slide-img-right {
  left: 0;
  right: auto;
  transform: rotateY(180deg);
}

[dir="rtl"] .landing-page-banner .slide-center-img {
  position: absolute;
  left: auto;
  right: 70%;
  transform: translateX(70%);
  bottom: 0;
}

[dir="rtl"] .landing-page-banner .slide-left-img {
  position: absolute;
  right: 0;
  transform: rotateY(180deg);
}

[dir="rtl"] .summer-card {
  padding: 20px 5px;
}

[dir="rtl"] .course-detail-right-card .card-title {
  font-weight: bold;
}

[dir="rtl"] .contact-info-card {
  border-left: 1px solid #dddddd;
  border-right: none;
}

[dir="rtl"] .input input,
[dir="rtl"] .input textarea {
  text-align: right;
}

[dir="rtl"] .primary-btn img {
  transform: rotateY(180deg);
}

[dir="rtl"] .course-detail-side-links a {
  padding-left: 0;
  padding-right: 15px;
}

[dir="rtl"] .course-detail-side-links a.active {
  border-left: 0;
  border-right: 3px solid #15508a;
}

[dir="rtl"] .module-collapse .module-collapse-head::after {
  transform: rotate(90deg);
}

[dir="rtl"] .module-collapse.show .module-collapse-head::after {
  transform: rotate(0);
}

[dir="rtl"] .select2-container--bootstrap-5 .select2-selection--single {
  background-position: left 0.75rem center;
}

[dir="rtl"] .pagination a img {
  transform: rotateY(180deg);
}

/* RTL End */

/* Font Family */
[dir="rtl"] header .sign-in-up-btn,
[dir="rtl"] header .menu ul li>a,
[dir="rtl"] header .language-btn>a,
[dir="rtl"] footer .footer-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-weight: 500;
}

[dir="rtl"] .course-card .content .enrollment span {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

[dir="rtl"] .sign-in-tab-item .code-txt {
  font-family: "HacenSaudiArabiaRegular", sans-serif;
}

[dir="rtl"] .checkbox-label.JannaRegular,
[dir="rtl"] .scholarship-underline-txt,
[dir="rtl"] .scholarship-success-message,
[dir="rtl"] .sign-in-section .scholarship-desc {
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

[dir="rtl"] .register-cards .register-card h4 {
  font-size: 14px;
  font-family: "JannaBold", sans-serif;
}

[dir="rtl"] .service-request-modal .service-request-head h4,
[dir="rtl"] .scholarship-request-finish-section h1,
[dir="rtl"] .confirm-modal-title,
[dir="rtl"] .news-listing-vertical-card-list-title,
[dir="rtl"] .contact-title,
[dir="rtl"] .sign-in-section .sign-in-title,
[dir="rtl"] .course-card-horizontal .price,
[dir="rtl"] .course-detail-right-card .course-detail-price-detail-card .price,
[dir="rtl"] .course-detail-right-card .card-title,
[dir="rtl"] .course-detail-register-card .price,
[dir="rtl"] .curriculum-card span,
[dir="rtl"] .overview-card-title,
[dir="rtl"] .aeas-card h5,
[dir="rtl"] .landing-page-list-head h4,
[dir="rtl"] .our-stories-card .our-stories-card-txt h3,
[dir="rtl"] .about-us-section .about-us-section-title,
[dir="rtl"] .news-listing-horizontal-card-title,
[dir="rtl"] footer .footer-title,
[dir="rtl"] .achieve-card span,
[dir="rtl"] .course-card .content .price span,
[dir="rtl"] .title,
[dir="rtl"] .course-card .content h5 {
  font-family: "JannaBold", sans-serif;
}

[dir="rtl"] .input,
[dir="rtl"] .application-for-scholarship-card h4,
[dir="rtl"] .send-otp-no,
[dir="rtl"] .confirm-phone-email,
[dir="rtl"] .otp-inputs .otp-input input,
[dir="rtl"] .course-detail-register-card ul li,
[dir="rtl"] .module-collapse .module-collapse-head,
[dir="rtl"] .curriculum-card p,
[dir="rtl"] .summer-card p,
[dir="rtl"] .banner .course-info .course-info-item,
[dir="rtl"] .banner .banner-title,
[dir="rtl"] .banner-sm h1,
[dir="rtl"] .banner-after #BannerAfter .banner-after-card span,
[dir="rtl"] .landing-page-banner .banner-title,
[dir="rtl"] .about-us-section-card h5,
[dir="rtl"] .about-banner-after .swiper-slide .about-banner-after-card,
[dir="rtl"] .contact-info-card span,
[dir="rtl"] footer .footer-bottom,
[dir="rtl"] .achieve-card p,
[dir="rtl"] .course-card .content .time>div:nth-child(1),
[dir="rtl"] .course-card .content .rating,
[dir="rtl"] .course-card .content .enrollment,
[dir="rtl"] .home-slider .home-slide h2,
[dir="rtl"] .course-card .img span {
  font-family: "JannaRegular", sans-serif;
}

[dir="rtl"] .input-label,
[dir="rtl"] .security-code,
[dir="rtl"] .confirm-modal-desc,
[dir="rtl"] .summer-card h5,
[dir="rtl"] .contact-info-card h5 {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color emoji;
}

/* Font Family End */