:root {
  --Blue: #005fa8;
  --light-blue: #0084bd;
  --dark-blue: #00367a;
  --white: #fff;
  --skyBlue: #0093c7;
  --gray: #6b7280;
  --text: #111827;

  --fontPath : "../font";
}
@font-face {
  font-family: "Noto Kufi Arabic";
  src: url("/Images/font/NotoKufiArabic-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Noto Kufi Arabic";
  src: url("../font/NotoKufiArabic-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Noto Kufi Arabic";
  src: url("../font/NotoKufiArabic-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Noto Kufi Arabic";
  src: url("../font/NotoKufiArabic-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Kufi Arabic";
  src: url("../font/NotoKufiArabic-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Noto Kufi Arabic";
  src: url("../font/NotoKufiArabic-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Noto Kufi Arabic";
  src: url("../font/NotoKufiArabic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Noto Kufi Arabic";
  src: url("../font/NotoKufiArabic-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Noto Kufi Arabic";
  src: url("../font/NotoKufiArabic-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}







body {
  font-family: "Noto Kufi Arabic", sans-serif !important;
  text-align: right;
  direction: rtl;
  overflow-x: hidden;
}
h1,
p,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
.header {
  border-bottom: 1px solid #e5e7eb;
  background: var(--white);
}
.topheader {
  padding: 20px 0;
}
.logo-section {
  display: flex;
  align-items: center;
  /* gap: 18px; */
}

.logo-divider {
  width: 1px;
  height: 38px;
  background: #b5b5b5;
}
header .navbar {
  padding: 0;
}
.search-container {
  display: flex;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  /* width: 228px; */
}
.search-input {
  font-size: 14px;
  line-height: 20px;
  padding: 9px 17px;
  border: none;
  outline: none;
  max-width: 228px;
}
.search-btn {
  background: var(--Blue);
  color: var(--white);
  border: none;
  border-radius: 6px 0 0 6px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
}
.nav-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav-buttons .whitebutton {
  text-decoration: none;
  padding: 9px 17px;
  border: 1px solid var(--Blue) !important;
  background: white;
  color: var(--Blue);
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
}
.nav-buttons .whitebutton:hover {
  background: var(--Blue);
  color: white;
}

.nav-buttons .bluebutton {
  text-decoration: none;
  background: var(--Blue);
  color: var(--white);
  border: 1px solid var(--Blue) !important;
  white-space: nowrap;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  border-radius: 6px;
  border: none;
}
.menu-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-text {
  color: #374151;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 3px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  padding: 24px;
  z-index: 99;
}
.sidebar.active {
  left: 0;
}
.sidebar h3 {
  font-size: 18px;
  color: #39485a;
  margin-bottom: 16px;
  text-align: left;
}
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar ul li a {
  text-decoration: none;

  color: #39485a;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
  text-align: start;
}
.sidebar ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
h1 {
  color: var(--white);
  font-size: 54px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 24px;
}
h2 {
  color: var(--text);
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  position: relative;
  margin-bottom: 16px;
}
.textbanner {
  color: #dbeafe;
  text-align: center;
}
h3 {
  color: #dbeafe;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 32px;
}
h4 {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
h5 {
  color: var(--text);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  padding-top: 24px;
}
h6 {
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
p {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.banner-swiper {
  height: 772px;
}
.slide {
  position: relative;
  background-size: cover !important;
  background-position: center bottom !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide2 {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-content {
  position: relative;
  display: flex;
  gap: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 690px;
}
.swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  transform: none !important;
  display: flex;
  flex-direction: row;
  gap: 10px;
  z-index: 10;
}
.banner-swiper .swiper-pagination-bullet {
  width: 50px;
  height: 1px;
  background: white;
  border-radius: 20px;
  margin: 0 !important;
  transition: all 0.3s ease;
}
.banner-swiper .swiper-pagination-bullet-active {
  background: var(--white);
  height: 4px;
}
.banner-buttonwhite {
  padding: 18px 34px;
  border-radius: 8px;
  font-size: 18px;
  text-decoration: none;
  background: unset;
  font-weight: 700;
  border: 2px solid var(--white);
  color: var(--white);
  align-items: center;
}
.banner-buttonblue {
  padding: 18px 32px;
  font-weight: 700;
  border-radius: 8px;
  font-size: 18px;
  border: none;
  align-items: center;
  background: var(--light-blue);
  color: var(--white);
}
.button-group {
  margin-bottom: 80px;
}
.educational-section {
  margin: 80px 0;
}
.section-header {
  margin-bottom: 64px;
}
.location-header {
  margin-bottom: 80px;
}
.underline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 4px;
  background-color: var(--light-blue);
}
.bs-gutter-x-32 {
  --bs-gutter-x: 32px;
}
.gap-32 {
  row-gap: 32px;
}
.bs-gutter-x-48 {
  --bs-gutter-x: 48px;
}

.bs-gutter-x-64 {
  --bs-gutter-x: 64px;
}
.department-card,
.programCard {
  border-radius: 24px;
  background: var(--white);

  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.department-card {
  min-height: 426px;
}
.card-image {
  border-radius: 24px 24px 0 0;
  position: relative;
  overflow: hidden;
  height: 192px;
}
.dropdown-menu {
  width: 100%;
}
.card-image {
  border-radius: 24px 24px 0 0;
  position: relative;
  overflow: hidden;
}
.overlay-gradient {
  position: absolute;
  inset: 0;
  opacity: 0.8;
  background: var(
    --2,
    linear-gradient(0deg, #005fa8 0%, rgba(0, 54, 122, 0.2) 100%)
  );
  z-index: 1;
}
.overlay-image {
  z-index: 2;

  display: flex;
  position: absolute;
  justify-content: space-between;
  /* bottom: 88px;
  left: 24px;
*/
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 16px;
  border-radius: 12px;
  background: var(
    --shade,
    linear-gradient(
      135deg,
      rgba(0, 54, 122, 0.8) 0%,
      rgba(0, 95, 168, 0.8) 100%
    )
  );
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
}
.card-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
}
.card-content {
  padding: 32px;
}
.buttonlightblue {
  padding: 12px 24px;
  font-weight: 700;
  line-height: 24px;
  border-radius: 12px;
  font-size: 16px;
  border: 1px solid var(--Blue);
  align-items: center;
  background: var(--light-blue);
  color: var(--white);
}
.mw-content {
  width: max-content;
  margin-bottom: 16px;
}
.max-width {
  max-width: 323.328px;
  margin-bottom: 24px;
}
.programTextContent p,
.max-width {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bluee {
  background: var(--Blue) !important;
}
.darkblue {
  background: var(--dark-blue) !important;
}
.textbluee {
  color: var(--Blue) !important;
}
.textdarkblue {
  color: var(--dark-blue) !important;
}
.text-gray {
  color: var(--text) !important;
}
.text-lightgray {
  color: var(--gray) !important;
}
.text-darkgray {
  color: #4b5563 !important;
}
.lightblue {
  background: var(--light-blue) !important;
}
.number-section {
  padding: 80px 0;
  background: var(
    --Bg-Gradient,
    linear-gradient(135deg, #f9fafb 0%, rgba(239, 246, 255, 0.3) 100%)
  );
}
.icon {
  display: flex;
  width: 64px;
  height: 64px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: var(--1, var(--light-blue));
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.number-card {
  border-radius: 24px;
  background: var(--White, #fff);
  box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1),
    0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 33px;
}

.number-text {
  color: var(--light-blue);
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
}
.towline,
.programText h6,
.programTitle h5,
.cardTitle h4,
.cardTitle h5 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cardTitle h5 {
  padding: 0;
}
.card-meta {
  height: 20px;
}
.cardTitle h4 {
  -webkit-line-clamp: 1;
}
.programTitle {
  height: 50px;
  margin-bottom: 12px;
}
.towline {
  margin-bottom: 24px;
}
.programsLink a,
.buttonlightblue a {
  color: #fff;

  text-decoration: none;
}
.cardTitle {
  height: 28px;
}
.programImage {
  height: 192px;
}
.programImage img.programCardImage {
  object-fit: cover;

  width: 100%;
}
.programText {
  margin-bottom: 16px;
}
.programText h5 {
  text-align: justify;
}

.height,
.programText {
  height: 40px;
}
.timeline-bar {
  height: 8px;
  border-radius: 9999px;
  background: var(--Light-grey, #e5e7eb);
  position: relative;
  overflow: hidden;
}
.timeline-fill {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: var(--light-blue);
  border-radius: 9999px;
  width: 0;
}
.seconed-banner {
  padding: 80px 0px;
  background-repeat: no-repeat;
  /* background: linear-gradient(
      0deg,
      rgba(0, 95, 168, 0.8) 0%,
      rgba(0, 54, 122, 0.6) 100%
    ),
    url(/Images/Seconed-banner.jpg) lightgray 0px -786px / 100% 244.898% no-repeat; */
  background-size: cover;
  background-position: center bottom, center 92%;
  display: flex;

  min-height: 588px;
}

.max {
  max-width: 284px;
}
.location {
  padding: 80px 0;
}
.location-title {
  padding: 12px 24px;
  width: 272px;
  border-radius: 9999px;
  background: var(
    --Bg-Gradient,
    linear-gradient(135deg, #f9fafb 0%, rgba(239, 246, 255, 0.3) 100%)
  );
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 0 auto 24px auto;
}
.map-card {
  padding: 33px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: var(--White, #fff);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  height: 100%;
  align-items: center;
  justify-content: center;
}
#Jordanmap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.programTextContent {
  height: 70px;
  margin-bottom: 24px;
}
.map-icon {
  height: 32px;
  width: 32px;
  background-color: var(--Blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .filter-card {
  padding: 32px;
  margin-top: 24px;
  border-radius: 24px;
  background: var(--Blue);
} */
.select {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  color: var(--white);
  padding: 12px 16px;
  width: 100%;
  border: none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.gap-12 {
  gap: 12px;
}
.size {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}
.city {
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  max-height: 589px;
}
.cities-list {
  padding: 24px 33px;
  min-height: 725px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: var(--White, #fff);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
}
.city-item {
  min-height: 148px;
  padding: 16px 21px;
  border-radius: 16px;
  border: 1px solid rgba(219, 234, 254, 0.5);
  background: var(
    --Bg-Gradient,
    linear-gradient(135deg, #f9fafb 0%, rgba(239, 246, 255, 0.3) 100%)
  );
  margin-bottom: 16px;
}
.fz-12 {
  font-size: 12px;
  line-height: 16px;
  color: var(--gray);
  font-weight: 400;
}
.m-12 {
  margin-bottom: 12px;
}
.map-button {
  color: var(--White, #fff);
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-weight: 500;
  border: none;
  line-height: 20px;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--2, #005fa8);
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1),
    0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.related-site {
  padding: 80px 0;
}
.partner-pag {
  display: flex;
  border-radius: 9999px;
  color: var(--2, #005fa8);
  margin-top: 32px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.related-header {
  margin-bottom: 36px;
  position: relative;
}
.pratner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.partnersSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: #bfdbfe;
  margin: 0 !important;
  transition: all 0.3s ease;
}
.partnersSwiper .swiper-pagination-bullet-active {
  background: var(--2, #005fa8);
}
.footer-content {
  display: flex;
  padding: 12px 0;
}
.footer-top-divider {
  margin-top: 0px;
  height: 1px;
  background: #e5e7eb;
}
.footer-nav {
  display: flex;
  gap: 47px;
  scrollbar-width: none;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  align-items: center;
}
.footer-nav a {
  color: var(--gray);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-decoration: none;
}
.footer-nav a.active {
  font-size: 18px;
  color: var(--text);
  font-weight: 700;
  line-height: 28px;
}
.footer-divider {
  margin-bottom: 0px;
  height: 4px;
  background: linear-gradient(90deg, var(--light-blue) 0%, #00367a 100%);
  opacity: unset;
}
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
}
.governorate {
  cursor: pointer;
  transition: 0.3s ease;
}
.governorate:hover {
  fill: #005fa8;
  transform-origin: center;
}
.marker-front {
  position: relative;
  fill: var(--light-blue);
  width: 32px;
  height: 32px;
  border-radius: 8039.196px;
  box-shadow: 0 6.432px 8.04px -4.824px rgba(0, 0, 0, 0.1),
    0 16.08px 20.1px -4.02px rgba(0, 0, 0, 0.1);
}
.marker-back {
  border-radius: 8039.196px;
  fill: rgba(0, 132, 189, 0.3) !important;
}
.marker text {
  fill: white;
  font-weight: bold;
  font-size: 9.64px;
  line-height: 12.864;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
}
.governorate.active {
  fill: var(--Blue);
}
.custom-select-wrapper {
  position: relative;
}
.custom-select {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  font-size: 14px;
  color: var(--white);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-weight: 500;
}
.custom-select option {
  padding: 12px;
  background: white;
  color: #1e293b;
}
.select-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.location-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}
.custom-select.has-icon {
  padding-right: 45px;
}
.dev-link {
  color: var(--gray);
}
/* progrms-page */
.program-banner {
  /* background: linear-gradient(
      0deg,
      rgba(0, 95, 168, 0.8) 0%,
      rgba(0, 54, 122, 0.6) 100%
    ),
    url(/Images/IMG-56.svg); */
  background-size: cover;
  background-position: center bottom;
  align-items: center;
  display: flex;
  height: 368px;
}
.search-wrapper {
  position: relative;
  min-width: 576px;
  margin-bottom: 60px;
}
.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-content h1 {
  display: flex;
  height: 80px;
  font-size: 48px;
  line-height: 48px;
  margin-bottom: 16px;
}
.sea-input {
  display: flex;
  width: 100%;
  padding: 12px 48px 12px 24px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1),
    0 20px 25px -5px rgba(0, 0, 0, 0.1);
  outline: none;
  border: none;
}
.search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.programms {
  margin: 64px 0;
}
.bg-gray {
  background-color: #f9fafb;
  padding: 64px 0;
}
.shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  line-height: 20px;
}
.fw-500 {
  font-weight: 500;
}
.rating {
  position: absolute;
  bottom: 19px;
  right: 16px;
  display: flex;
  align-items: center;

  z-index: 2;
}
.star {
  width: 14.016px;
  height: 14px;
  margin-left: 8px;
}
.fs-12 {
  font-size: 12px;
  line-height: 16px;
  margin-right: 8px;
  color: var(--white);
}
.filter {
  font-size: 14px;
  line-height: 29px;
  color: var(--text);
  min-width: 214px;
  height: 36px;
  padding: 9px 33px 9px 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--Light-grey, #e5e7eb);
  background: #efefef;
}
.filter:hover {
  background-color: unset;
  color: unset;
  border-color: var(--text);
}
.filter-cardd {
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.filter-options {
  display: flex;
  padding: 16px;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  background: #f9fafb;
}
.bg-darkgray {
  background: #f3f4f6;
}
.filter-options.active {
  background: linear-gradient(86deg, #005fa8 0%, #00367a 99.28%);
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.filter-icon {
  display: flex;
  width: 38.2px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #dbeafe;
}
.filter-icon.active {
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
}
.filter-icon.active img {
  filter: brightness(0) invert(1);
}
.filter-count {
  border-radius: 9999px;
  background: #dbeafe;
  display: flex;
  width: 22.891px;
  height: 24px;
  justify-content: center;
  align-items: center;
  color: var(--Blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}
.filter-count.active {
  width: 29.781px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.filter-options h6 {
  color: #374151;
  max-width: 155.828px;
}
.filter-options h6.active {
  color: var(--white);
}
.status-options {
  display: flex;
  padding: 12px;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  background: #f9fafb;
}
.status-options.active {
  border: 1px solid #e5e7eb;
  background: var(--4, #dbeafe);
}
.status-icon {
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #e5e7eb;
}
.status-icon.active {
  background: #bfdbfe;
}
.status-icon.active img {
  filter: invert(19%) sepia(96%) saturate(2020%) hue-rotate(190deg)
    brightness(89%) contrast(102%);
}
.status-options h6 {
  color: #374151;
  font-weight: 500;
}
.status-options h6.active {
  color: var(--Blue);
}
.filter-status {
  border-radius: 9999px;
  background: #d1d5db;
  width: 8px;
  height: 8px;
}
.filter-status.active {
  background: var(--Blue);
}
.gradinet {
  background: linear-gradient(
    0deg,
    rgba(0, 95, 168, 0.7) 0%,
    rgba(0, 54, 122, 0.14) 100%
  );
  opacity: unset;
}
.progrms-buttom {
  border-radius: 12px;
  border: 2px solid var(--2, #005fa8);
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.tranningSectionProgram .tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.breadcrumb {
  overflow-x: auto;
  scrollbar-width: none;
  overflow-y: hidden;
}
.tab-contentt {
  display: none;
}
.tab-contentt.active {
  display: block;
}
.breadcrumb a {
  font-size: 14px;
  color: var(--Blue);
  white-space: nowrap;
  line-height: 20px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
}
.tranningSectionProgram .tab-content {
  padding: 32px;
  border-radius: 16px;
  background: var(--White, #fff);
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.breadcrumb a.active {
  /* font-size: 14px; */
  color: var(--text);
  /* line-height: 20px;
  font-weight: 400;
  text-align: center;
  text-decoration: none; */
}
.Program1-image img {
  border-radius: 16px;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.babyblue {
  border-radius: 9999px;
  padding: 4px 12px;
  background: var(--4, #dbeafe) !important;
}
.green {
  color: #15803d;
  font-weight: 700;
  border-radius: 9999px;
  background: #dcfce7;
  padding: 4px 12px;
}
.Program1-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.program1 h1 {
  color: var(--text);
  font-size: 40px;
  line-height: 120%;
}
.date {
  font-size: 12px;
  padding-top: 32px;
  color: var(--text);
  line-height: 24px;
}
.detail {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.detail-icon {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: var(--4, #dbeafe);
}
.radius {
  border-radius: 12px;
  background: var(--2, #005fa8);
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.no-shadow {
  position: static;
  width: 100%;
}
.no-shadow span {
  color: #d1d5db;
}
.tab-navigation {
  padding: 8px;
  margin-bottom: 48px;
  border-radius: 16px;
  background: var(--White, #fff);
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.tab-item {
  border-radius: 12px;
  white-space: nowrap;
  padding: 12px 24px;
  background-color: var(--white);
  border: none;
  font-weight: 700;
  line-height: 20px;
}
.tab-item.active {
  background: var(--2, #005fa8);
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: var(--white);
}
.tab-item.active img {
  filter: invert(1);
}

/* .program-articles {
  display: flex;
  flex-direction: column;
  gap: 32px;
} */
.article-time {
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cir-32 {
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: bold;
  height: 32px;
  background-color: var(--Blue);
}
.first {
  border-radius: 8px;
  background: #f9fafb;
  padding: 12px;
  width: 100%;
}
.program-articles img {
  height: 128px;
  width: 128px;
  border-radius: 50%;
  margin: 0 auto;
}
.mar {
  margin: 0 75px;
}
.help {
  margin-top: 32px;
  border-radius: 12px;
  background: rgba(219, 234, 254, 0.5);
  padding: 24px;
}

.bs-gutter-x-48 {
  --bs-gutter-x: 48px;
}
.mapBox {
  border-radius: 12.864px;
  padding: 33px;
  box-shadow: 0 1.608px 3.216px 0 rgba(0, 0, 0, 0.05) inset;
}
.mapSection {
  padding: 80px 0;
}
.chooseGover {
  width: 100%;
  padding: 32px;
  background: #005fa8;
  /* opacity: 0.5; */
  border-radius: 12.864px;
}
.chooseGover p,
.chooseGover .dropdown-toggle,
.goToTheCorses,
.govemenceCard p,
.goverData a {
  margin: 0;
  color: #fff;
  color: var(--White, #fff);
  font-family: "Noto Kufi Arabic";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
.chooseGover .dropdown-toggle::after {
  content: unset;
}
.govemenceCard p,
.goverData a {
  color: var(--Text, #111827);
}
.goverData a {
  direction: ltr;
  text-decoration: none;
}
.goverData i {
  font-weight: 600;
  color: var(--Blue);
}
.govemenceCard h5 {
  color: var(--Text, #111827);
  font-weight: 700;
  margin: 0;
}
.numberOfCourses h5 {
  color: var(--2, #005fa8);
}
.gap-12 {
  gap: 12px;
}
.chooseGover .dropdown-toggle {
  width: 100%;
  text-align: start;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  padding: 12px;
  font-weight: 500;
  border: 1px solid #fff;
}
.chooseGover .dropdown-menu {
  width: 100%;
}
.allGovermence {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: var(--White, #fff);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  /* margin-top: 24px; */
  padding: 24px 33px;
  height: 100%;
}
.govemenceCard {
  border-radius: 16px;
  border: 1px solid rgba(219, 234, 254, 0.5);
  background: var(
    --Bg-Gradient,
    linear-gradient(135deg, #f9fafb 0%, rgba(239, 246, 255, 0.3) 100%)
  );
  padding: 16px 22px;
}
.govemenceCard span {
  color: var(--Grey, #6b7280);
  font-family: "Noto Kufi Arabic";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
  margin: 0;
}

.goToTheCorses {
  border-radius: 12px;
  background: var(--2, #005fa8);
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1),
    0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 10px 16px;
  text-align: center;

  text-decoration: none;
  font-weight: 500;
}
.govemencesBoxes {
  margin-top: 24px;
  max-height: 588px;
  overflow-y: auto;
  scrollbar-width: none;
}
.filter-card .dropdown-item.active,
.filter-card .dropdown-item:active {
  background-color: var(--Blue) !important;
}
.tspan {
  color: var(--White, #fff);
  font-family: "Helvetica Neue LT Arabic";
  font-size: 11.256px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.allGovermence h3 {
  color: var(--Text, #111827);
  margin: 0;
}
.allGovermence h5 {
  padding: 0;
}
/* .map-number {
  border-radius: 8039.196px;
  background: var(--1, var(--light-blue));
  box-shadow: 0 6.432px 8.04px -4.824px rgba(0, 0, 0, 0.1),
    0 16.08px 20.1px -4.02px rgba(0, 0, 0, 0.1);
  color: #fff;
} */

.selectedMap {
  fill: var(--2, #005fa8);
}

.banner {
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.greyBox {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
}

.greyBox1 {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 32px;
}
.greyBox h5,
.greyBox span {
  color: #fff;
}

span,
.userName a {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

.greyBox h5 {
  padding: 0;
}

.greyBox2 {
  border-radius: 9999px;
  /* max-width: 243px; */
  padding: 8px 24px;
}

.bannerTitle h1 {
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin: 0;
}

.whiteBox {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  width: 150px;
  height: 168px;
  justify-content: center;
}
.whiteBox span {
  font-weight: 400;
  color: var(--Text, #111827);
}
.blueImage {
  border-radius: 12px;
  background: var(--4, #dbeafe);
  padding: 16px;
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  margin-bottom: 8px;
  align-items: center;
}
.whiteBox:nth-child(1) {
  transform: rotate(3deg);
  height: 200px;
}
.whiteBox:nth-child(2) {
  margin-top: 32px;
  transform: rotate(-3deg);
}
.whiteBox:nth-child(3) {
  transform: rotate(2deg);
  height: 184px;
}
.whiteBox:nth-child(4) {
  transform: rotate(-2deg);
}
.bannerBoxs {
  display: grid;
  gap: 24px;
  grid-template-columns: auto auto;
}
.bannerData {
  padding: 100px 0 80px;
}
.iradaBox {
  border-radius: 24px;
  padding: 49px;
  border: 1px solid #f3f4f6;
  background: var(--White, #fff);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.iradaBox h4 {
  font-weight: 400;
  text-align: center;
}
.aboutIrada,
.traningSectionAbout {
  padding: 80px 0;
}
.blueSection {
  background: var(--Bg, #f5faff);
  padding: 64px 0;
}

.sectionTitle h1,
.traningSectionAbout h1 {
  color: var(--Text, #111827);
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.traningSectionAbout h1 {
  text-align: start;
  margin: 0;
  line-height: 120.833%;
}
.traningSectionAbout h5 {
  padding-top: 8px;
}
.sectionTitle {
  margin-bottom: 92px;
}

.blueText {
  padding: 8px 24px;
  border-radius: 9999px;
  background: var(--2, #005fa8);
  /* max-width: 184px; */
}
.blueText span {
  color: #fff;
}

.whiteBoxMsg {
  padding: 36px 32px 32px 32px;
  border-radius: 16px;
  background: var(--White, #fff);
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.whiteBoxMsg h3 {
  color: var(--Text, #111827);
  margin: 0;
}
.circleBlue {
  display: flex;
  width: 64px;
  height: 64px;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background: var(--4, #dbeafe);
}

.iradaValues {
  padding: 64px 0;
}
.rowGap {
  row-gap: 32px;
}

.iradaPrograms h2,
.iradaValues h2 {
  margin: 0;
}
.iradaPrograms h4 {
  font-weight: 400;
}
.iradaValues .circleBlue {
  width: 80px;
  height: 80px;
}

.whiteBtn,
.blueBtn {
  padding: 18px 34px;
  border-radius: 8px;
  border: 2px solid var(--2, #005fa8);
  text-decoration: none;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
}
.whiteBtn {
  color: var(--2, #005fa8);
}
.blueBtn {
  background-color: var(--2, #005fa8);
  color: #fff;
}
.logo-section img {
  padding: 0 18px;
}
.logo-section a:not(:last-child) img {
  border-left: 0.5px solid #b5b5b5;
}
.border-16 {
  border-radius: 16px;
}
/* .program-articles {
  display: flex;
  flex-direction: column;
  gap: 32px;
} */
.article-time {
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cir-32 {
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: bold;
  height: 32px;
  background-color: var(--Blue);
}
.first {
  border-radius: 8px;
  background: #f9fafb;
  padding: 12px;
  width: 100%;
}
.program-articles img {
  height: 128px;
  width: 128px;
  border-radius: 50%;
  margin: 0 auto;
}
.mar {
  margin: 0 75px;
}
.help {
  margin-top: 32px;
  border-radius: 12px;
  background: rgba(219, 234, 254, 0.5);
  padding: 24px;
}
.condition {
  padding: 80px 0 64px 0;
  margin: 0 auto;
  max-width: 896px;
}
.condition-content {
  padding: 0 32px;
  flex-direction: column;
  display: flex;
  gap: 24px;
  border-radius: 8px;
  background: var(--White, #fff);
}

.IradaAboutImage {
  border-radius: 16px;
  background: var(--2, #005fa8);
  box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1),
    0 20px 25px -5px rgba(0, 0, 0, 0.1);
  position: absolute;

  display: flex;
  width: 56px;
  padding: 16px;
  justify-content: flex-end;
  align-items: flex-start;
}
.bottomImage {
  bottom: 36px;
  left: -4px;
}
.topImage {
  right: 6px;
  top: 126px;
}

footer {
  padding-bottom: 15px;
}
.pageBreadCump {
  padding: 16px 0 17px;
  border-bottom: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
  /* background: var(--White, #FFF); */
}
.work {
  padding: 80px 0;
}
.w-80 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  width: 80px;
  height: 80px;
  box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1),
    0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.work-divider {
  display: flex;
  width: 4px;
  height: 128px;
  background: linear-gradient(0deg, #d1d5db 0%, rgba(0, 0, 0, 0) 100%);
}
.faq {
  padding: 80px 0;
  margin: 0 auto;
}
.faq-tab {
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  color: var(--text);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 9999px;
  background: var(--White, #fff);
  border: none;
}
.faq-tab.active {
  background: var(--Blue);
  color: var(--white);
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 10px 15px rgba(0, 0, 0, 0.1);
}
.faq-content {
  margin: 0 168px;
  padding: 24px 32px;
  align-items: center;
  border-radius: 16px;
  background: var(--White, #fff);
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1),
    0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.faq-question {
  display: flex;
  justify-content: space-between;
}
.faq-icon {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background: rgba(219, 234, 254, 0.5);
}
.faq-answer {
  display: none;
}
.faq-content.active .faq-answer {
  display: block;
  padding-top: 40px;
}
.faq-content.active .faq-arrow {
  transform: rotate(180deg);
}
.scrool {
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
  max-width: 100%;
}
.contact {
  display: flex;
  padding: 24px;
  gap: 16px;
  border-radius: 12px;
  background: var(--White, #fff);
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1),
    0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.contact a {
  color: var(--Text, #111827);
  font-size: 16px;
  direction: ltr;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  text-decoration: none;
}
.form-container {
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1),
    0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-label {
  color: #374151;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
.required {
  color: #ef4444 !important;
}
.form-input {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #fff;
  padding: 13px 17px;
  align-items: center;
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 500 !important;
}
.char-count,
.char-count span {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
.login-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  background: var(
    --shade,
    linear-gradient(
      135deg,
      rgba(0, 54, 122, 0.8) 0%,
      rgba(0, 95, 168, 0.8) 100%
    )
  );
}
.login-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  margin: 0 auto;
}
.divider {
  display: flex;
  align-items: center;
  gap: 8px;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #d1d5db;
}
.alt-login {
  background-color: var(--white);
  display: flex;
  padding: 13px 17px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  color: #374151;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.reg {
  color: #4b5563;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  padding-top: 17px;
  border-top: 1px solid #e5e7eb;
}

.nameText span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
}

.signInLink {
  font-weight: 400;
  color: #6b7280;
}
.skyBlueBtn {
  border-color: var(--light-blue);
  background: var(--light-blue);
}
.signUpSection input[type="checkbox"] {
  width: 9.6px;
  height: 9.6px;
}
.login-section span {
  color: #374151;
}

.conditionLinks a {
  color: var(--2, #005fa8);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

.contactLink,
.conditionLinks a {
  text-decoration: none;
}

.buttonlightblue:hover a {
  color: var(--Blue);
}

.department-card .buttonlightblue {
  border: 1px solid !important;
}
.department-card .buttonlightblue:hover,
.buttonlightblue:hover,
.nav-buttons .bluebutton:hover {
  border: 1px solid var(--Blue) !important;
  background-color: unset !important;
  color: var(--Blue);
}

.mapSectionGrey iframe {
  border-radius: 16px;
  box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1),
    0 20px 25px -5px rgba(0, 0, 0, 0.1);
  filter: grayscale(4);
}
.model-close {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background: var(--Bg, #f5faff);
  border: none;
  position: absolute;
  left: 18px;
  top: 16.5px;
}
.model {
  border-radius: 16px;
  background: var(--White, #fff);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 32px;
}
.erorr-title {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: rgba(0, 95, 168, 0.1);
  text-align: center;
  font-size: 220px;
  font-weight: 700;
  line-height: 220px;
}
.erorr-bg {
  display: flex;
  width: 128px;
  height: 128px;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background: var(
    --shade,
    linear-gradient(
      135deg,
      rgba(0, 54, 122, 0.8) 0%,
      rgba(0, 95, 168, 0.8) 100%
    )
  );
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.erorr-section {
  display: flex;
  justify-content: center;
  padding: 80px 0;
  min-height: 665px;
}
.erorr-section h1 {
  margin: 0;
  color: var(--Text, #111827);
  font-size: 48px;
  line-height: 48px;
}
.fw-600 {
  font-weight: 600;
}
.form-input::placeholder {
  font-size: 14px;
  color: #9ca3af;
}

.erorr-blue-button {
  color: var(--White, #fff);
  text-align: center;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 10px 15px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  border-radius: 12px;
  background: var(--2, #005fa8);
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.erorr-white-button {
  color: var(--Text, #111827);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  display: flex;
  padding: 18px 34px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  border: 2px solid var(--borders, #d1d5db);
  background: var(--White, #fff);
  text-decoration: none;
}

::placeholder {
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 500 !important;
}

.error {
  position: absolute;
  font-size: 11px;
  color: red;
  bottom: -18px;
}
.errorBorder {
  border: 1px solid red;
}

.formInput {
  position: relative;
}
.userNameDiv {
  padding: 9px 17px;
}
.userNameDiv a {
  text-decoration: none;
  font-size: 14px;
}
.userNameDiv li:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}
.userNameDiv li:last-child a {
  color: red;
}
.userNameDiv a:hover,
.userNameDiv a:focus {
  background-color: var(--light-blue);
  color: #fff;
}
.userNameDiv a span {
  color: var(--Text, #111827);
}
span.userName {
  width: 120px;
  overflow: hidden;
  color: var(--Blue) !important;
  font-weight: 700;
}

.userNameDiv .dropdown-toggle::after {
  content: unset;
}

.searchData {
  border-bottom: 1px solid #000;
  padding: 10px;
}

.training-center-top-section {
  background-color: #33639f;
  text-align: center;
  padding: 20px 0;
}

.traningBanner h3,
.traing-center-calender span {
  color: #fff;
  margin: 0;
}

.traningBox {
  background-color: #fff;
  border: 1px solid #e8e8e8;
  padding: 30px 20px;
}

.training-center-main-section {
  padding: 35px 0;
  background-color: #efefef;
}

.training-center-main-section .nav-tabs {
  padding-bottom: 10px;
  border-bottom: 0.5px solid #f0f0f0;
}
.training-center-main-section .nav-tabs .nav-link {
  font-weight: bold;
  color: #8c8c8c;
  border-radius: 30px;
  padding: 10px 40px;
  border: unset;
}
.training-center-main-section .User .nav-tabs .nav-link {
  color: #000;
}

.training-center-main-section .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #f0ae10;
}
.training-center-main-section .User .nav-tabs .nav-link.active {
  background-color: var(--skyBlue);
}

.training-center-main-section .User .nav-tabs {
  margin-bottom: 30px;
}
.training-center-main-section .User h4 {
  border-bottom: 1px solid #dddcdc;
  padding-bottom: 5px;
  margin: 1rem 0;
}
table {
  width: 100%;
  color: #212529;
}
table th {
  padding: 10px 15px;
  font-weight: bold;
}

table tr {
  padding-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
}
table td {
  padding: 10px 0;
  vertical-align: middle;
}
.training-center-main-section table td {
  text-align: center;
  max-width: 300px;
}
.training-center-main-section table th {
  text-align: center;
}
.training-center-main-section table {
  margin: 20px 0;
}
.training-center-main-section table td:last-child {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: start;
}

.orange-btn-default,
.orangeBtn,
.deleteCoruseBTN {
  padding: 8px 40px;
  cursor: pointer;
  color: #fff !important;
  text-decoration: none;
  border-radius: 23px !important;
  padding-top: 3px !important;
  border: 1px solid #f0ae10 !important;
  background-color: #f0ae10;
}
.orangeBtn {
  background-color: unset;
  color: #000 !important;
}
.orange-btn-default:hover {
  background-color: unset;
  color: #f0ae10 !important;
}
.btn-default {
  font-size: 14px !important;
}

.training-center-body {
  padding: 15px;
  background-color: #fff;
  height: 210px;
  border: 1px solid #e8e8e8;
}

.training-center-header {
  background-color: #216eb5;
  padding: 20px 15px;
}

.training-center-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.courseModal {
  max-width: 50vw;
}
.courseModal input,
.courseModal textarea,
.courseModal select,
.uploadLabel {
  border-radius: 25px;
  padding: 10px 15px;

  /* height: calc(1.5em + 0.75rem + 2px); */
  font-size: 14px;
  color: #495057;
  line-height: 1.15;
  margin: 0;
}
textarea {
  font-size: 14px;
  padding: 0.375rem 0.75rem;
  border: 1px solid #d1d5db !important;
}
.courseModal textarea {
  height: auto;
}
.descriptionText {
  height: 100px;
}
.courseModal label {
  color: #474646;
}

.FileIconStyle {
  color: #ffffff !important;
}

.FileIconBackground {
  margin-left: 5px;
  width: 2em !important;
  height: 2em !important;
  /* padding: 10px; */

  background-color: var(--skyBlue) !important;
  border-radius: 50px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uploadFile input {
  opacity: 0;
  padding: 0 !important;
  pointer-events: none;
}
.uploadLabel {
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  border: 1px solid #d1d5db !important;
}

#myModal .modal-header {
  padding-top: 0;
  border: 0;
}

.selectDay {
  color: #fff;
  text-decoration: unset;
  text-align: center;
}
.callenderNext:after,
.callenderPrev:after {
  content: unset !important;
}

.callenderPrev svg {
  transform: rotate(180deg);
}
.callenderNext svg,
.callenderPrev svg {
  fill: #fff;
  width: 15px;
}

.courseModal .form-label {
  font-weight: 400;
  color: #474646;
}

.modalBtn button {
  padding: 5px 50px;
}
.lightBtnBlue,
.lightBtn {
  background-color: #fff;
  border-radius: 25px;
  font-weight: bold;

  color: #232424 !important;
  border: 1px solid var(--skyBlue) !important;
}
.lightBtnBlue,
.lightBtn:hover {
  color: #fff !important;
  background-color: var(--skyBlue);
}

.lightBtnBlue:hover {
  background-color: unset;
  color: var(--skyBlue) !important;
}

.traningCourseBanner {
  background-color: var(--light-blue);
  padding: 20px 0;
}
.traningCourseBanner a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  /* padding-bottom: 13px; */
  text-decoration: none;
}

.traningCourseBanner a.active {
  border-bottom: 3px solid #f0ae10;
}

.courseContent,
.traningCourseContent,
.seachPage {
  padding: 40px 0;
}

.courseContent label {
  /* white-space: nowrap; */
  font-weight: 500;
  min-width: 140px;
  color: #474646;
}

.courseBtn button {
  border-radius: 0 !important;
  font-size: 14px !important;
}
.deleteCoruseBTN {
  background-color: #ff4646;
  color: #fff;
}
input[type="checkbox"] {
  accent-color: var(--Blue);
}

.courseModal .modal-header .btn-close {
  padding: 0;
  opacity: 1;
  width: 30px;
  height: 30px;
  background-image: unset;
  position: absolute;
  left: 10px;
  top: 10px;
}

.traningCourseContent,
.courseTraningImage {
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
}
.traningCourseContent::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 50%);
  position: absolute;
  width: 100%;
  height: 100%;
}
.traningCourseContent * {
  z-index: 2;
  color: #fff;
}

.image {
  height: 80px;
}

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

/* .seachPage tr {
  vertical-align: middle;
} */

table td a,
.seachPage a {
  color: var(--text);
  text-decoration: unset;
}

.searchContent h4 {
  /* line-height: 10px; */
  font-weight: bold;
  text-transform: uppercase;
  color: #fd9002;
}

.courseTraningImage {
  margin: auto;
  width: 200px;
  margin-bottom: -50px;
  position: relative;
  height: 180px;
  z-index: 2;
  border-radius: 110% 70% 60% 100% / 100% 100% 45% 70%;
}

.courseDesc {
  background-color: #fff;
  box-shadow: 0 5px 15px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 0%);
  position: relative;
  -webkit-box-shadow: 0 5px 15px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 0%);
  -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.19), 0 6px 6px rgb(0 0 0 / 0%);
  padding: 60px 20px 20px;
}

.courseDesc .dropdown-menu {
  max-width: max-content;
}
.courseDesc .dropdown {
  position: absolute;
  top: 20px;
  cursor: pointer;
  left: 20px;
  background-color: transparent;
  border: 0;
  padding: 0;
}
.courseDesc p {
  font-weight: 600;
  color: grey;
}
.courseName {
  height: 40px;
}
.courseDesc a {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 400;
}

.traningTextData {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 10px;
  width: 100%;
  align-items: center;
}
.accountPage {
  background-color: #efefef;
  padding: 35px 0;
}

.accountTitle {
  border-bottom: 1px solid #dddcdc;
}
.accountTitle h3 {
  color: var(--text);
  margin-bottom: 10px;
}

.accountData {
  background-color: #fff;
  padding: 20px;
}
.accountData span {
  color: #201d1d;
  font-weight: 600;
}
.userText span,
.accountPage .comment span {
  color: #b7b7b7 !important;
  line-height: 120%;
  font-weight: 400;
}
.row-section-gap {
  row-gap: 16px;
}

.editAccount a {
  color: var(--skyBlue) !important;
  text-decoration: none;
}
.editAccount a:hover {
  text-decoration: underline;
}
.accountData .lightBtnBlue {
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 50px;
  text-decoration: none;
}
/* .accountData .lightBtnBlue:hover {
  background-color: #3dbfec;
  color: #fff;
} */

.changePassword ::placeholder,
.accountDesc span,
.accoutPageEdit label {
  font-weight: 400;
}

.changePassTitle h5 {
  font-weight: 700;
}
.changePassword input,
.changePassword button,
.accoutPageEdit input,
.accoutPageEdit button {
  text-align: right !important;
  border-radius: 0 !important;
}

.accountPage .comment span {
  font-size: 11px;
}

.accountPage .comment {
  height: 25px;
}

header .userNameDiv .dropdown-menu:before,
header .userNameDiv .dropdown-menu:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: 20px;
  border-width: 12px 9px;
  border-style: solid;
  border-color: transparent;
}
header .userNameDiv .dropdown-menu::after {
  top: -23px;
  /* z-index: 20000; */
  border-bottom-color: #fff;
  /* box-shadow: 0px 5px 16px 0px rgba(8, 15, 52, 0.06); */
}

header .userNameDiv .dropdown-menu::before {
  top: -24px;
  /* z-index: 3000; */
  border-bottom-color: rgba(0, 0, 0, 0.1);
}



.programCard  .cardTitle h5 {-webkit-line-clamp: 1;}

a{
  text-decoration:none;

}

.work-btn{
  height: 57px;
}

.work-content{
  padding: 0 32px 32px;
}
