* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;

}

@font-face {
  font-family: Tajawal;
  src: url(../fonts/saira/static/Saira-ExtraBold.ttf);
}
@font-face {
  font-family: Tajawal;
  src: url(../fonts/saira/static/Saira-Bold.ttf);
}
@font-face {
  font-family: Tajawal;
  src: url(../fonts/saira/static/Saira-SemiBold.ttf);
}
@font-face {
  font-family: Tajawal;
  src: url(../fonts/saira/static/Saira-Medium.ttf);
}
@font-face {
  font-family: Tajawal;
  src: url(../fonts/saira/static/Saira-Regular.ttf);
}
@font-face {
  font-family: cairo-Bold;
  src: url(../fonts/Cairo/Cairo-Bold.ttf);
}
@font-face {
  font-family: cairo-semiBold;
  src: url(../fonts/Cairo/Cairo-SemiBold.ttf);
}
:root {
  --neutral-black: #000c17;
  --primary--color: #0884f7;
  --secondary--color: #f77b08;
  --ternary-neutrals--1: #000c17;
  --ternary-neutrals--2: #333d45;
  --ternary-neutrals--3: #a1a8ae;
  --ternary-neutrals--4: #ecf0f3;
  --ternary-neutrals--5: #f9fafa;
  --natural--white: #ffffff;
}

P {
  margin-bottom: 0 !important;
}

.chat-icon {
  position: fixed;
  z-index: 4000;
  bottom: 2rem;
  left: 1rem;
  cursor: pointer;
}
@media (max-width: 767px) {
  .chat-icon {
    height: 50px;
    left: 5px;
  }
}

.top-arrow-icon {
  position: fixed;
  z-index: 4000;
  right: 2rem;
  bottom: 2rem;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: translateY(100px);
}
@media (max-width: 767px) {
  .top-arrow-icon {
    right: 1rem;
  }
}

.top-arrow-icon.show {
  opacity: 1;
  transform: translateY(0);
}

.navigation-bar {
  width: 80%;
  margin: 30px auto;
  height: 65px;
  padding-left: 2.5rem;
  padding-right: 0.5rem;
  position: fixed;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  border-radius: 35px;
  align-items: center;
  /*box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.068);*/
  transition: background-color 5s ease;
  background-color: var(--natural-white);
  transition: box-shadow 0.3s ease;
  z-index: 1000;
}
.navigation-bar #navigation-menu-dropdown {
  display: flex;
  flex-wrap: wrap;
  background-color: white;
  position: absolute;
  top: 100%;
  left: 0;
  width: 50%;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  border-radius: 10px;
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.068);
}
@media (max-width: 1024px) {
  .navigation-bar #navigation-menu-dropdown {
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
  }
}
@media (max-width: 767px) {
  .navigation-bar #navigation-menu-dropdown {
    width: 100%;
  }
}
.navigation-bar #navigation-menu-dropdown p {
  width: 50%;
  padding: 1rem 1rem 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.navigation-bar #navigation-menu-dropdown p a {
  text-decoration: none;
  color: black;
  font-family: Tajawal;
}
.navigation-bar #cities-dropdown,
.navigation-bar #categories-dropdown {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border-radius: 10px;
  width: 60%;
  border: 1px solid #a1a8ae;
  overflow: hidden;
  height: 350px;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.navigation-bar #cities-dropdown::-webkit-scrollbar,
.navigation-bar #categories-dropdown::-webkit-scrollbar {
  width: 8px;
  height: 3px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .navigation-bar #cities-dropdown::-webkit-scrollbar,
  .navigation-bar #categories-dropdown::-webkit-scrollbar {
    width: 2px;
  }
}
.navigation-bar #cities-dropdown::-webkit-scrollbar-track,
.navigation-bar #categories-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  padding: 1rem 0rem;
  overflow: hidden;
  border-radius: 10px;
  margin-block: 0.3rem;
}
.navigation-bar #cities-dropdown::-webkit-scrollbar-thumb,
.navigation-bar #categories-dropdown::-webkit-scrollbar-thumb {
  background-color: #a1a8ae;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #f1f1f1;
}
.navigation-bar #cities-dropdown .city-row,
.navigation-bar #categories-dropdown .city-row {
  display: flex;
  padding-left: 10px;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #ecf0f3;
  padding: 0.5rem 10px;
  cursor: pointer;
}
.navigation-bar #cities-dropdown .city-row img,
.navigation-bar #categories-dropdown .city-row img {
  width: 20px;
  height: 20px;
}
.navigation-bar #cities-dropdown .city-row P,
.navigation-bar #categories-dropdown .city-row P {
  font-family: "Cairo";
  font-weight: 600;
}
.navigation-bar #cities-dropdown .categories-row,
.navigation-bar #categories-dropdown .categories-row {
  border: 1px solid #ecf0f3;
  padding: 0.5rem 10px;
  padding-left: 10px;
  cursor: pointer;
}
.navigation-bar .navigation-left-side {
  display: flex;
  gap: 2rem;
}
.navigation-bar .navigation-left-side .navigation-menu {
  display: none;
}
.navigation-bar .navigation-left-side .navigation-menu a {
  font-family: Tajawal;
  text-decoration: none;
}
.navigation-bar .navigation-left-side .navigation-menu svg {
  transition: 0.3s;
  margin-right: 0.7rem;
}
.navigation-bar .navigation-left-side .navigation-menu #navigation-menu-btn.rotated {
  transform: rotate(90deg);
}
@media (max-width: 1024px) {
  .navigation-bar .navigation-left-side .navigation-menu {
    align-self: center;
    display: flex;
  }
}
@media (max-width: 420px) {
  .navigation-bar .navigation-left-side {
    gap: 1.5rem;
  }
}
.navigation-bar .navigation-right-side {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navigation-bar .navigation-right-side .navbar-search-box {
  position: relative;
}
.navigation-bar .navigation-right-side .navbar-search-box .search-absolute-box {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  height: 40px;
  display: none;
  border-radius: 40px;
  border: 1px solid #ecf0f3;
}
@media (max-width: 767px) {
  .navigation-bar .navigation-right-side .navbar-search-box .search-absolute-box {
    width: 220px;
  }
}
.navigation-bar .navigation-right-side .navbar-search-box .search-absolute-box input {
  width: 100%;
  height: 100%;
  border: 1px solid #ecf0f3;
  outline-color: var(--primary--color);
  border-radius: 40px;
  padding: 0rem 0.7rem;
}
@media (max-width: 767px) {
  .navigation-bar .navigation-right-side .navbar-search-box .search-absolute-box input {
    font-size: 12px;
  }
}
.navigation-bar .navigation-right-side .navbar-search-box .search-absolute-box svg {
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translateY(-50%);
}
.navigation-bar ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  height: 65px;
  align-items: center;
  gap: 2rem;
  position: relative;
}
.navigation-bar ul .active-link {
  color: var(--primary--color);
  font-family: Tajawal;
  border-bottom: 2px solid var(--primary--color);
  font-weight:bold;
}
.navigation-bar ul a {
  color: var(--neutral-black);
  text-decoration: none;
  font-family: Tajawal;
  padding: 1rem 0rem;
}
@media (min-width: 1025px) and (max-width: 1135px) {
  .navigation-bar ul {
    gap: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .navigation-bar ul {
    display: none;
  }
}
.navigation-bar svg {
  cursor: pointer;
}
@media (min-width: 1025px) and (max-width: 1135px) {
  .navigation-bar {
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .navigation-bar {
    width: 93%;
    padding-left: 1.5rem;
  }
}
@media (max-width: 420px) {
  .navigation-bar {
    padding-left: 1rem;
  }
}
@media (max-width: 1200px) and (min-width: 1025px) {
  .navigation-bar {
    width: 90%;
  }
}

.navigation-bar.scrolled {
  transition: background-color 0.5s ease;
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.068);
  background-color: rgba(236, 240, 243, 0.945);
}

.hero-section {
  position: relative;
  width: 85%;
  height: 550px;
  overflow: hidden;
  margin: 120px auto;
  margin-bottom: 2rem;
  border-radius: 35px;
}
.hero-section .content-overlay {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
          width:100%;
}
.hero-section .content-overlay h1 {
  color: #ffffff;
  font-family: Tajawal;
  font-size: 50px;
  width: 100%;
  font-weight: 700;
  text-align: center;
}
hero-search-form .magnifier
{
    transform: rotate(290deg);
}
@media (max-width: 767px) {
  .hero-section .content-overlay h1 {
    font-size: 29px;
  }
}
@media (max-width: 420px) {
  .hero-section .content-overlay h1 {
    font-size: 28px;
        text-wrap-mode: wrap;

  }
}
.hero-section .content-overlay p {
  color: #ffffff;
  font-family: Tajawal;
  font-size: 32px;
}
@media (max-width: 767px) {
  .hero-section .content-overlay p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .hero-section .content-overlay {
    top: 40px;
    white-space: nowrap;
  }
}
.hero-section .mySwiper {
  width: 100%;
  height: 100%;
}
.hero-section .mySwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
}
.hero-section .mySwiper .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.555);
}
.hero-section .mySwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section .mySwiper .swiper-slide .hero-slide-content {
  width: 89%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-section .mySwiper .swiper-slide .hero-slide-content h3 {
  color: var(--natural--white);
  font-family: "Cairo";
  font-size: 40px;
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .hero-section .mySwiper .swiper-slide .hero-slide-content h3 {
    font-size: 23px;
  }
}
.hero-section .mySwiper .swiper-slide .hero-slide-content p {
  font-family: "Cairo";
  text-transform: capitalize;
  color: var(--natural--white);
  font-size: 30px;
}
@media (max-width: 767px) {
  .hero-section .mySwiper .swiper-slide .hero-slide-content p {
    font-size: 18px;
  }
}
.hero-section .mySwiper .swiper-slide .hero-slide-content button {
  margin-top: 1rem;
  background-color: var(--primary--color);
  border: none;
  border-radius: 35px;
  color: var(--ternary-neutrals--5);
  padding: 0.6rem 2.4rem;
  font-family: Tajawal;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 10px 7px rgba(8, 131, 247, 0.315);
}
@media (max-width: 767px) {
  .hero-section .mySwiper .swiper-slide .hero-slide-content {
    padding-bottom: 3rem;
  }
}
.hero-section .swiper-pagination {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 2px;
}
.hero-section .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.hero-section .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  height: 25px;
  border-radius: 1px;
  width: 5px !important;
  background: var(--swiper-pagination-bullet-inactive-color, #fff);
  margin: 0;
}
.hero-section .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet-active {
  border-radius: 1px;
  width: 7px !important;
  background: var(--swiper-pagination-bullet-inactive-color, #0884f7);
}
.hero-section .swiper-button-prev {
  position: absolute;
  right: 10px !important;
  left: unset !important;
  bottom: unset !important;
  top: 30% !important;
}
.hero-section .swiper-button-prev::after {
  content: "";
}
@media (max-width: 767px) {
  .hero-section .swiper-button-prev {
    display: none;
  }
}
.hero-section .swiper-button-next {
  position: absolute;
  right: 10px !important;
  left: unset !important;
  bottom: 23% !important;
  top: unset !important;
}
.hero-section .swiper-button-next::after {
  content: "";
}
@media (max-width: 767px) {
  .hero-section .swiper-button-next {
    display: none;
  }
}
.hero-section .swiper-pagination {
  right: 20px !important;
}
@media (max-width: 767px) {
  .hero-section .swiper-pagination {
    right: 10px !important;
    gap: 5px;
  }
}
.hero-section .social-media {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 40px;
  background-image: url("../assets/social-media/BG.svg");
  background-size: cover;
  padding: 0.7rem 1.5rem;
}
@media (max-width: 767px) {
  .hero-section .social-media {
    flex-direction: row;
    background-image: url("../assets/social-media/BG2.svg");
    background-size: cover;
    padding: 0.4rem 0rem;
    border-radius: 30px;
    padding-bottom: 0.7rem;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    top: unset;
    width: 80%;
    justify-content: center;
  }
}
@media (max-width: 420px) {
  .hero-section .social-media {
    width: 85%;
  }
}
@media (max-width: 380px) {
  .hero-section .social-media {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .hero-section {
    width: 90%;
  }
}

.hero-search-form {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0rem 5rem; 
  z-index: 10;
  position: relative;
}
.hero-search-form .circle1 {
  position: absolute;
  top: 100%;
  left: 0;
}
@media (max-width: 767px) {
  .hero-search-form .circle1 {
    width: 120px;
    top: 99% !important;
  }
}
.hero-search-form .circle2 {
  position: absolute;
  top: 99%;
  transform: rotate(-10deg);
  left: 6%;
}
@media (max-width: 767px) {
  .hero-search-form .circle2 {
    width: 140px;
    left: 7%;
  }
}
@media (max-width: 1024px) {
  .hero-search-form {
    padding: 6rem 0rem;
  }
}
@media (max-width: 1024px) {
  .hero-search-form .magnifier {
    display: none;
  }
}
.hero-search-form .search-container {
  width: 80%;
  /*position: absolute;*/
  top: 50%;
  left: 50%;
  /*transform: translate(-50%, -50%);*/
  display: flex;
      flex-direction:row-reverse;

  justify-content: space-between;
  font-family:Tajawal;
}
@media (max-width: 1024px) {
  .hero-search-form .search-container {
    flex-direction: column;
    position: static;
    top: unset;
    left: unset;
    transform: none;
    width: 90%;
  }
}
.hero-search-form .search-container .search-left-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 45%;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .hero-search-form .search-container .search-left-side {
    width: 100%;
  }
}
.hero-search-form .search-container .search-left-side h3 {
  position: relative;
  margin-bottom: 2rem;
}
.hero-search-form .search-container .search-left-side h3 img {
  position: absolute;
  top: 100%;
  left: 0;
}
.hero-search-form .search-container .search-right-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 45%;
  padding-bottom: 2rem;
  border-radius: 40px;
  border: none;
}
@media (max-width: 1024px) {
  .hero-search-form .search-container .search-right-side {
    width: 100%;
  }
}
.hero-search-form .search-container .search-right-side .form-main-box {
  background-image: url(../assets/form-search/form-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  padding: 3rem 1.5rem;
  z-index: 20;
}
@media (max-width: 767px) {
  .hero-search-form .search-container .search-right-side .form-main-box {
    background-image: url(../assets/form-search/FilteringAreaBG.png);
  }
}
.hero-search-form .search-container .search-right-side .form-main-box input {
  width: 100%;
  margin-bottom: 1rem;
  border: none;
  outline: none;
  padding: 0.8rem 1rem;
  background-color: #f9fafa;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .hero-search-form .search-container .search-right-side .form-main-box input {
    font-size: 14px;
  }
}
.hero-search-form .search-container .search-right-side .form-main-box div {
  position: relative;
}
.hero-search-form .search-container .search-right-side .form-main-box div select {
  width: 100%;
  height: 100%;
  margin-bottom: 1rem;
  border: none;
  outline: none;
  padding: 0.8rem 1rem;
  background-color: #f9fafa;
  padding-right: 2rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  background-image: url("../assets/form-search/select-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .hero-search-form .search-container .search-right-side .form-main-box div select {
    font-size: 14px;
  }
}
.hero-search-form .search-container .search-right-side .form-main-box div select option {
  background-color: #f9fafa; /* Default option background */
  color: var(--neutral-black);
}
.hero-search-form .search-container .search-right-side .form-main-box div select option:disabled:checked {
  background-color: #f9fafa;
  color: gray;
  color: var(--ternary-neutrals--3);
}
.hero-search-form .search-container .search-right-side .form-main-box div.timing {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
}
.hero-search-form .search-container .search-right-side .form-main-box div.timing .duration {
  width: calc(33.3333333333% - 5px);
}
@media (max-width: 767px) {
  .hero-search-form .search-container .search-right-side .form-main-box div.timing .duration {
    width: 100%;
  }
}
.hero-search-form .search-container .search-right-side .form-main-box div.timing .year,
.hero-search-form .search-container .search-right-side .form-main-box div.timing .month {
  width: calc(33.3333333333% - 5px);
}
@media (max-width: 767px) {
  .hero-search-form .search-container .search-right-side .form-main-box div.timing .year,
  .hero-search-form .search-container .search-right-side .form-main-box div.timing .month {
    width: calc(50% - 5px);
  }
}
.hero-search-form .search-container .search-right-side div.search {
  background-color: #000c17;
  height: 90px;
  margin-top: -25px;
  border-radius: 0px 0px 40px 40px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 1rem;
}
.hero-search-form .search-container .search-right-side div.search button {
  border: none;
  background-color: #000c17;
  color: white;
  font-family: Tajawal;
  cursor: pointer;
}
.hero-search-form .search-container .search-right-side div.search button img {
  margin-right: 0.4rem;
  margin-bottom: 0.2rem;
}
.hero-search-form .search-container .search-right-side div.search button span {
  font-size: 24px;
}
@media (max-width: 767px) {
  .hero-search-form .search-container .search-right-side div.search button span {
    font-size: 16px;
  }
}

.coming-courses {
  background-color: #000c17;
  padding-bottom: 10rem;
  position: relative;
}
.coming-courses .upper {
  position: absolute;
  top: 30px;
  right: 40px;
}
@media (max-width: 767px) {
  .coming-courses .upper {
    right: 10px;
  }
}
.coming-courses .down {
  position: absolute;
  bottom: 30px;
  left: 40px;
}
@media (max-width: 767px) {
  .coming-courses .down {
    left: 10px;
    bottom: 10px;
  }
}
.coming-courses .heading-container {
  padding: 4rem 0rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
}
.coming-courses .heading-container .stars {
  position: absolute;
  top: 55%;
  right: 20%;
  width: 30px;
}
.coming-courses .heading-container p:first-child {
  font-family: Tajawal;
  font-size: 30px;
}
.coming-courses .heading-container p {
  font-size: 25px;
}
.coming-courses .heading-container .description {
  margin-top: 3rem;
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .coming-courses .heading-container .description {
    width: 90%;
    margin: 30px auto;
  }
}
.coming-courses .heading-container img {
  width: 100px;
}
.coming-courses .swiper-container {
  width: 70% !important;
  margin: auto;
  width: 300px;
  color: #fff;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .coming-courses .swiper-container {
    width: 85% !important;
  }
}
.coming-courses .swiper-container .swiper-wrapper {
  flex-direction: row !important;
}
.coming-courses .swiper-container .swiper-wrapper .swiper-box {
  cursor: pointer;
  width: 300px;
  background-color: #000c17;
  border-radius: 20px;
  overflow: hidden;
}
.coming-courses .swiper-container .swiper-wrapper .swiper-box .swiper-image {
  border-radius: 20px 20px 0px 0px;
  height: 160px;
  overflow: hidden;
  position: relative;
}
.coming-courses .swiper-container .swiper-wrapper .swiper-box .swiper-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.coming-courses .swiper-container .swiper-wrapper .swiper-box .swiper-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 12, 23, 0.6431372549);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: 0.3s ease;
  opacity: 0;
}
.coming-courses .swiper-container .swiper-wrapper .swiper-box .swiper-image .image-overlay p {
  font-family: Tajawal;
}
.coming-courses .swiper-container .swiper-wrapper .swiper-box .swiper-inner {
  padding: 1rem 1px 0rem;
}
.coming-courses .swiper-container .swiper-wrapper .swiper-box .swiper-inner p {
  font-family: Tajawal;
  font-size: 14px;
  margin-bottom: 2rem !important;
}
.coming-courses .swiper-container .swiper-wrapper .swiper-box .swiper-inner .duration span {
  font-size: 12px;
  font-family: Tajawal;
}
.coming-courses .swiper-container .swiper-wrapper .swiper-box .swiper-inner .duration img {
  margin: 0 0.2rem;
}
.coming-courses .swiper-container .swiper-wrapper .swiper-box .swiper-inner .swiper-box-footer {
  border-radius: 0px 0px 25px 25px;
  overflow: hidden;
  padding: 1rem 0rem 0rem;
  display: flex;
  justify-content: space-between;
}
.coming-courses .swiper-container .swiper-wrapper .swiper-box .swiper-inner .swiper-box-footer p {
  height: 100%;
  flex: 1;
  text-align: center;
  background-color: white;
  color: black;
  margin-bottom: 0 !important;
  padding: 1rem 0rem;
  font-family: "Cairo";
  font-weight: 500;
}
.coming-courses .swiper-container .swiper-wrapper .swiper-box .swiper-inner .swiper-box-footer p.course-status {
  border-radius: 0px 0px 0px 20px;
}
.coming-courses .swiper-container .swiper-wrapper .swiper-box .swiper-inner .swiper-box-footer p.salary {
  font-weight: 700;
  color: var(--primary--color);
  transition: 0.3s;
  border-radius: 0px 0px 20px 0px;
}
.coming-courses .swiper-container .swiper-wrapper .swiper-box:hover .image-overlay {
  opacity: 1;
}
.coming-courses .swiper-container .swiper-wrapper .swiper-box:hover p.salary {
  color: white !important;
  background-color: var(--primary--color);
}
.coming-courses .swiper-container .upcoming-pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
}
.coming-courses .swiper-container .upcoming-pagination span {
  background-color: #4c555d;
  opacity: 1;
  width: 20px;
  border-radius: 1px;
  height: 5px;
  margin: 0px 1px;
}
.coming-courses .swiper-container .upcoming-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary--color);
  height: 7px;
  width: 24px;
}
.coming-courses .upcoming-navigation .swiper-upcoming-prev {
  position: absolute;
  top: 50%;
  left: 6%;
  background-color: transparent;
  border: none;
}
.coming-courses .upcoming-navigation .swiper-upcoming-next {
  position: absolute;
  top: 50%;
  right: 6%;
  background-color: transparent;
  border: none;
}
@media (max-width: 1024px) {
  .coming-courses .upcoming-navigation {
    display: none;
  }
}

.course-categories {
  position: relative;
  padding: 5rem 0rem 5rem;
  z-index: 10;
}
.course-categories .circle1 {
  position: absolute;
  bottom: 99%;
  right: 80px;
  transform: rotate(-8deg);
}
@media (max-width: 767px) {
  .course-categories .circle1 {
    width: 120px !important;
    bottom: 98%;
    right: 74px;
    transform: rotate(-6deg);
  }
}
.course-categories .circle2 {
  position: absolute;
  bottom: 98%;
  right: 0px;
}
@media (max-width: 767px) {
  .course-categories .circle2 {
    width: 130px !important;
  }
}
@media (max-width: 1024px) {
  .course-categories .categories-navigation {
    display: none;
  }
}
.course-categories .categories-navigation .swiper-categories-prev {
  position: absolute;
  top: 55%;
  left: 10%;
  border: none;
  background-color: transparent;
}
.course-categories .categories-navigation .swiper-categories-next {
  position: absolute;
  top: 55%;
  right: 10%;
  border: none;
  background-color: transparent;
}
.course-categories .categories-container {
  width: 80%;
  margin: auto;
}
@media (max-width: 767px) {
  .course-categories .categories-container {
    width: 95% !important;
  }
}
.course-categories .categories-container .categories-heading {
  position: relative;
}
.course-categories .categories-container .categories-heading p:first-child {
  font-family: Tajawal;
  font-weight: 900;
  font-size: 25px;
}
.course-categories .categories-container .categories-heading p:nth-of-type(2) {
  font-size: 27px;
  font-family: Tajawal;
  padding-left: right;
}
.course-categories .categories-container .categories-heading img {
  margin-right: 2rem;
  margin-top: -15px;
}
.course-categories .categories-container .categories-heading p:nth-of-type(3) {
  width: 70%;
  margin: 50px auto;
  text-align: center;
  font-family: 'Tajawal';
}
@media (max-width: 767px) {
  .course-categories .categories-container .categories-heading p:nth-of-type(3) {
    width: 95% !important;
  }
}
.course-categories .categories-container .categories-heading p:nth-of-type(3) span {
  color: #f77b08;
  font-weight: 800;
}
.course-categories .categories-container .categories-heading button {
  color: var(--primary--color);
  border-radius: 20px;
  padding: 0.2rem 2rem;
  border: 1px solid var(--primary--color);
  background-color: #fff;
  position: absolute;
  top: 10%;
}
@media (max-width: 767px) {
  .course-categories .categories-container .categories-heading button.lab {
    display: none;
  }
}
.course-categories .categories-container .swiper-categories {
  width: 80%;
  margin: 30px auto;
  padding: 2rem 0rem;
  overflow: hidden;
}
.course-categories .categories-container .swiper-categories .swiper-wrapper {
  flex-direction: row !important;
}
.course-categories .categories-container .swiper-categories .swiper-wrapper .swiper-slide {
  padding: 0rem 0.5rem;
}
.course-categories .categories-container .swiper-categories .swiper-wrapper .swiper-slide .swiper-slide-box {
  box-shadow: 1px 1px 10px 2px rgba(179, 183, 184, 0.288);
  border-radius: 25px 25px 40px 5px;
  position: relative;
  padding-bottom: 1rem;
  background-color: white;
}
.course-categories .categories-container .swiper-categories .swiper-wrapper .swiper-slide .swiper-slide-box .back-border {
  position: absolute;
  top: -15px;
  left: -17px;
  z-index: -1;
}
.course-categories .categories-container .swiper-categories .swiper-wrapper .swiper-slide .swiper-slide-box .image-box {
  height: 200px;
  border-radius: 5px 5px 0px 0px;
  overflow: hidden;
}
.course-categories .categories-container .swiper-categories .swiper-wrapper .swiper-slide .swiper-slide-box .image-box img {
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 0px 0px;
  -o-object-fit: cover;
     object-fit: cover;
}
.course-categories .categories-container .swiper-categories .swiper-wrapper .swiper-slide .swiper-slide-box .swiper-inner {
  background-color: white;
  padding: 2rem 0rem 0rem;
  overflow: hidden;
  width: 90%;
  margin: auto;
  direction:rtl;
}
.course-categories .categories-container .swiper-categories .swiper-wrapper .swiper-slide .swiper-slide-box .swiper-inner p:first-child {
  font-family: Tajawal;
  text-align: center;
  color: var(--neutral-black);
  font-size: 18px;
}
.course-categories .categories-container .swiper-categories .swiper-wrapper .swiper-slide .swiper-slide-box .swiper-inner p:nth-of-type(2) {
  text-align: center;
  margin-top: 0.5rem;
  color: var(--primary--color);
  font-family: Tajawal;
  font-size: 15px;
}
.course-categories .categories-container .swiper-categories .categories-pagination {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  margin-top: 3rem;
}
.course-categories .categories-container .swiper-categories .categories-pagination span {
  width: 20px;
  border-radius: 1px;
  margin: 0px 1px;
  height: 5px;
}
.course-categories .categories-container .swiper-categories .categories-pagination .swiper-pagination-bullet-active {
  height: 7px;
  width: 30px;
}
.course-categories button.mobile {
  margin: 20px auto;
  border: 1px solid var(--primary--color);
  background-color: white;
  color: var(--primary--color);
  padding: 0.5rem 4rem;
  border-radius: 30px;
  font-family: Tajawal;
  margin-bottom:4rem;
  display: none;
}
@media (max-width: 767px) {
  .course-categories button.mobile {
    display: block;
  }
}
.course-categories .separator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0rem 0rem 3rem;
}

.top-courses {
  width: 80%;
  margin: auto;
  border: 5px solid #ecf0f3;
  border-radius: 40px;
  padding: 4rem 2rem;
  position: relative;
}
@media (max-width: 767px) {
  .top-courses {
    width: 90% !important;
  }
}
.top-courses .star-border {
  position: absolute;
  bottom: 95%;
  left: -25px;
}
@media (max-width: 420px) {
  .top-courses .star-border {
    width: 50px;
    height: 50px;
    bottom: 96%;
    left: -13px;
  }
}
.top-courses .rectangle {
  position: absolute;
  top: 94.5%;
  right: -1px;
}
@media (max-width: 420px) {
  .top-courses .rectangle {
    top: 95%;
  }
}
.top-courses .top-heading {
  text-align: center;
}
.top-courses .top-heading p:first-child {
  font-family: Tajawal;
  font-size: 32px;
  color: var(--neutral-black);
}
.top-courses .top-heading p:nth-of-type(2) {
  font-family: Tajawal;
  font-size: 30px;
  color: var(--neutral-black);
}
.top-courses .top-heading p:nth-of-type(3) {
  margin-top: 3rem;
}
.top-courses .swiper-top-courses {
  margin-top: 3rem;
  width: 90%;
  margin: 3rem auto;
  overflow: hidden;
}
.top-courses .swiper-top-courses .swiper-wrapper {
  flex-direction: row !important;
}
.top-courses .swiper-top-courses .swiper-wrapper .swiper-box {
  cursor: pointer;
  width: 300px;
  background-color: #ffffff;
  border-radius: 30px;
  overflow: hidden;
}
.top-courses .swiper-top-courses .swiper-wrapper .swiper-box .swiper-image {
  border-radius: 20px 20px 0px 0px;
  height: 160px;
  overflow: hidden;
  position: relative;
}
.top-courses .swiper-top-courses .swiper-wrapper .swiper-box .swiper-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-courses .swiper-top-courses .swiper-wrapper .swiper-box .swiper-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 12, 23, 0.6431372549);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: 0.3s ease;
  opacity: 0;
  color: white;
}
.top-courses .swiper-top-courses .swiper-wrapper .swiper-box .swiper-image .image-overlay p {
  font-family: Tajawal;
}
.top-courses .swiper-top-courses .swiper-wrapper .swiper-box .swiper-inner {
  padding: 1rem 3px 0.4rem;
  color: var(--neutral-black);
}
.top-courses .swiper-top-courses .swiper-wrapper .swiper-box .swiper-inner p {
  font-family: Tajawal;
  font-size: 14px;
  margin-bottom: 2rem !important;
  text-align:right;
}
.top-courses .swiper-top-courses .swiper-wrapper .swiper-box .swiper-inner .duration span {
  font-size: 12px;
  font-family: Tajawal;
}
.top-courses .swiper-top-courses .swiper-wrapper .swiper-box .swiper-inner .duration img {
  margin: 0 0.2rem;
}
.top-courses .swiper-top-courses .swiper-wrapper .swiper-box .swiper-inner .swiper-box-footer {
      box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.041);
  margin-top: 1rem;

    border-radius: 0px 0px 25px 25px;
    overflow: hidden;
    padding: 1rem 0rem 0rem;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    
}
.top-courses .swiper-top-courses .swiper-wrapper .swiper-box .swiper-inner .swiper-box-footer p {
  height: 100%;
  flex: 1;
  text-align: center;
  background-color: white;
  color: black;
  margin-bottom: 0 !important;
  padding: 1rem 0rem;
  font-family: "Cairo";
  font-weight: 500;
}
.top-courses .swiper-top-courses .swiper-wrapper .swiper-box .swiper-inner .swiper-box-footer p.course-status {
  border-radius: 0px 0px 0px 20px;
}
.top-courses .swiper-top-courses .swiper-wrapper .swiper-box .swiper-inner .swiper-box-footer p.salary {
  font-weight: 700;
  color: var(--primary--color);
  transition: 0.3s;
  border-radius: 0px 0px 20px 0px;
}
.top-courses .swiper-top-courses .swiper-wrapper .swiper-box:hover .image-overlay {
  opacity: 1;
}
.top-courses .swiper-top-courses .swiper-wrapper .swiper-box:hover p.salary {
  color: white !important;
  background-color: var(--primary--color);
}
.top-courses .swiper-top-courses .top-courses-pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
}
.top-courses .swiper-top-courses .top-courses-pagination span {
  background-color: #cccccc;
  opacity: 1;
  width: 20px;
  border-radius: 1px;
  height: 5px;
  margin: 0px 1px;
}
.top-courses .swiper-top-courses .top-courses-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary--color);
  height: 7px;
  width: 30px;
}

.separator-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5rem auto;
}

.cities-venues {
  width: 80%;
  margin: auto;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cities-venues {
    width: 90%;
    padding-bottom: 0rem;
  }
}
.cities-venues .cities-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cities-venues .cities-heading .cities-heading-left p:first-child {
  font-size: 30px;
  font-family: Tajawal;
  color: var(--neutral-black);
}
.cities-venues .cities-heading .cities-heading-left p:nth-of-type(2) {
  font-family: Tajawal;
  font-size: 28px;
  color: var(--neutral-black);
  padding-right: 2rem;
}
.cities-venues .cities-heading .cities-heading-left img {
  margin-right: 2rem;
}
.cities-venues .cities-heading .cities-heading-right {
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .cities-venues .cities-heading .cities-heading-right {
    display: none;
  }
}
.cities-venues .cities-heading .cities-heading-right button.training {
  border: 1px solid #f77b08;
  padding: 0.4rem 1.5rem;
  background-color: white;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.cities-venues .cities-heading .cities-heading-right button.training a {
  color: #f77b08;
  font-family: Tajawal;
  text-decoration: none;
}
.cities-venues .cities-heading .cities-heading-right button.view {
  border: 1px solid var(--primary--color);
  padding: 0.4rem 1.5rem;
  background-color: white;
  border-radius: 30px;
}
.cities-venues .cities-heading .cities-heading-right button.view a {
  color: var(--primary--color);
  font-family: Tajawal;
  text-decoration: none;
}
.cities-venues .cities-venues-description {
  text-align: center;
  width: 70%;
  margin: 3rem auto;
  margin-bottom: 3rem;
  font-family:'Tajawal';
}
@media (max-width: 767px) {
  .cities-venues .cities-venues-description {
    width: 95%;
  }
}
.cities-venues .cities-venues-description span {
  color: #f77b08;
  font-family: Tajawal;
  font-size: 18px;
}
.cities-venues .cities-container {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 25px;
  overflow: hidden;
}
.cities-venues .cities-container .single-city {
  position: relative;
  margin-right: 1px;
  margin-bottom: 1px;
  height: 200px;
  width: calc(20% - 1px);
  cursor: pointer;
}
@media (max-width: 1024px) {
  .cities-venues .cities-container .single-city {
    width: calc(33.3333333333% - 1px);
  }
}
@media (max-width: 767px) {
  .cities-venues .cities-container .single-city {
    width: 100%;
  }
}
.cities-venues .cities-container .single-city img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cities-venues .cities-container .single-city img.overlay {
  z-index: 2;
}
.cities-venues .cities-container .single-city .city-details {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  z-index: 10;
  color: white;
  padding-bottom: 1rem;
  direction:rtl;
}
.cities-venues .cities-container .single-city .city-details p:first-child {
  font-family: Tajawal;
  font-size: 20px;
}
.cities-venues .cities-container .single-city .city-details p:nth-of-type(2) {
  font-family: Tajawal;
  font-size: 12px;
}
.cities-venues .cities-container .single-city .view-city {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 10;
  font-family: "Cairo";
  font-weight: 700;
}
.cities-venues .cities-container .single-city .view-city p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.cities-venues .cities-container .single-city .view-city p img {
  width: 12px;
  height: 12px;
  position: relative;
  margin-top: 2px;
}
.cities-venues .cities-container .single-city:hover .city-details {
  background-color: rgba(8, 131, 247, 0.2745098039);
  transition: 0.3s;
}
.cities-venues .cities-container .single-city:hover .view-city {
  display: flex;
  transition: 0.3s;
}
.cities-venues .cities-mobile-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  gap: 2rem;
  display: none;
}
@media (max-width: 767px) {
  .cities-venues .cities-mobile-buttons {
    display: flex;
  }
}
.cities-venues .cities-mobile-buttons button.training {
  border: 1px solid #f77b08;
  padding: 0.4rem 1.5rem;
  background-color: white;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 250px;
}
.cities-venues .cities-mobile-buttons button.training a {
  color: #f77b08;
  font-family: Tajawal;
  text-decoration: none;
}
.cities-venues .cities-mobile-buttons button.view {
  border: 1px solid var(--primary--color);
  padding: 0.4rem 1.5rem;
  background-color: white;
  border-radius: 30px;
  width: 250px;
}
.cities-venues .cities-mobile-buttons button.view a {
  color: var(--primary--color);
  font-family: Tajawal;
  text-decoration: none;
}

.partner-ship {
  background-image: url(../assets/partner-ship/Section-BG.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 1rem 0rem;
  padding-bottom: 8rem;
  z-index: 10;
  position: relative;
}
.partner-ship .circle2 {
  position: absolute;
  top: 98%;
  right: 50px;
  transform: rotate(9deg);
}
@media (max-width: 767px) {
  .partner-ship .circle2 {
    width: 150px !important;
  }
}
.partner-ship .partner-heading {
  text-align: center;
}
.partner-ship .partner-heading p:first-child {
  font-family: Tajawal;
  font-size: 32px;
  font-weight: 800;
}
.partner-ship .partner-heading p:nth-of-type(2) {
  width: 70%;
  margin: auto;
  margin-top: 3rem;
  font-family: "Cairo";
  font-weight: 500;
}
@media (max-width: 767px) {
  .partner-ship .partner-heading p:nth-of-type(2) {
    width: 90%;
  }
}
.partner-ship .partner-heading p:nth-of-type(2) span {
  color: #f77b08;
  font-size: 18px;
  font-weight: 900;
}
.partner-ship .swiper-container {
  width: 70%;
  margin: 100px auto;
  height: 200px;
  margin-bottom: 0px;
  padding-top: 4rem;
  background-image: url(../assets/partner-ship/swiper-bg.png);
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 1024px) {
  .partner-ship .swiper-container {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .partner-ship .swiper-container {
    background-image: url(../assets/partner-ship/mobile-bg.png);
    height: 350px;
    padding-top: 2rem;
  }
}
@media (max-width: 767px) {
  .partner-ship .swiper-container .partner-navigation {
    position: absolute;
    bottom: 5%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}
.partner-ship .swiper-container .partner-navigation button.left {
  position: absolute;
  left: 20px;
  bottom: 25%;
  border: none;
  background-color: transparent;
}
@media (max-width: 767px) {
  .partner-ship .swiper-container .partner-navigation button.left {
    left: 25%;
  }
}
.partner-ship .swiper-container .partner-navigation button.right {
  position: absolute;
  right: 20px;
  bottom: 25%;
  border: none;
  background-color: transparent;
}
@media (max-width: 767px) {
  .partner-ship .swiper-container .partner-navigation button.right {
    right: 25%;
  }
}
.partner-ship .swiper-container .partner-swiper {
  width: 80%;
  margin: 0px auto;
  overflow: hidden;
}
.partner-ship .swiper-container .partner-swiper .swiper-wrapper {
  flex-direction: row !important;
  align-items: center;
}
.partner-ship .swiper-container .partner-swiper .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.partner-ship .swiper-container .partner-swiper .swiper-wrapper .swiper-slide img {
  width: 104px;
  height: 104px;
}
@media (max-width: 767px) {
  .partner-ship .swiper-container .partner-swiper .swiper-wrapper .swiper-slide img {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .partner-ship .swiper-container .partner-swiper .swiper-wrapper .swiper-slide {
    margin-bottom: 10px;
    margin-right: 5px;
  }
}

.training-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000c17;
  padding: 10rem 0rem;
  position: relative;
  overflow: hidden;
  direction:rtl;
}
@media (max-width: 1024px) {
  .training-gallery {
    flex-direction: column;
  }
}
.training-gallery .circle1 {
  position: absolute;
  top: -20px;
  right: -5px;
  transform: rotate(-2deg);
}
@media (max-width: 767px) {
  .training-gallery .circle1 {
    width: 120px !important;
  }
}
.training-gallery .arrow1 {
  position: absolute;
  bottom: 0;
  left: 35%;
}
.training-gallery .arrow2 {
  position: absolute;
  top: 15px;
  right: 35%;
}
.training-gallery .bg-vector {
  position: absolute;
  left: -50px;
  top: -50px;
  overflow-x: hidden;
}
.training-gallery .border-vector {
  position: absolute;
  left: 0px;
  bottom: 0px;
}
.training-gallery .training-left-side {
  color: white;
  padding: 0rem 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
}
@media (max-width: 1024px) {
  .training-gallery .training-left-side {
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .training-gallery .training-left-side {
    padding: 0rem 2rem;
  }
}
.training-gallery .training-left-side p:first-child {
  font-family: Tajawal;
  font-size: 32px;
}
.training-gallery .training-left-side p:nth-of-type(2) {
  font-family: "Cairo";
  margin-top: 3rem;
  font-weight: 500;
  line-height: 40px;
}
.training-gallery .training-left-side p:nth-of-type(2) span {
  font-weight: 800;
  color: var(--primary--color);
}
.training-gallery .training-right-side {
  width: 50%;
  position: relative;
}
@media (max-width: 1024px) {
  .training-gallery .training-right-side {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }
}
.training-gallery .training-right-side img {
  width: 100%;
}
@media (max-width: 1024px) {
  .training-gallery .training-right-side img {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .training-gallery .training-right-side img {
    width: 90%;
  }
}

.certificates {
  padding: 5rem 0rem;
  width: 85%;
  margin: 0rem auto;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1025px) and (max-width: 1210px) {
  .certificates {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .certificates {
    width: 90%;
    padding: 3rem 0rem;
  }
}
.certificates .certificates-left-side {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.certificates .certificates-left-side img {
  width: 90%;
  height: 80%;
}
@media (max-width: 1024px) {
  .certificates .certificates-left-side {
    display: none;
  }
}
.certificates .certificates-right-side {
  width: 50%;
}
@media (max-width: 1024px) {
  .certificates .certificates-right-side {
    width: 100%;
  }
}
.certificates .certificates-right-side p.heading {
  font-family: Tajawal;
  font-size: 30px;
}
@media (max-width: 767px) {
  .certificates .certificates-right-side p.heading {
    font-size: 22px;
  }
}
.certificates .certificates-right-side img {
  margin-bottom: 3rem;
}
.certificates .certificates-right-side p:nth-of-type(2) {
  width: 90%;
}
@media (max-width: 767px) {
  .certificates .certificates-right-side p:nth-of-type(2) {
    width: 100%;
  }
}
.certificates .certificates-right-side .image-container {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 3rem 0rem 0rem;
}
@media (max-width: 1024px) {
  .certificates .certificates-right-side .image-container {
    display: flex !important;
  }
}
.certificates .certificates-right-side .search-container {
  width: 100%;
  padding: 1rem 1.5rem;
  position: relative;
  border-radius: 14px;
  border: 1px solid #ecf0f3;
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .certificates .certificates-right-side .search-container {
    margin-top: 0rem !important;
  }
}
@media (max-width: 767px) {
  .certificates .certificates-right-side .search-container {
    padding: 1.4rem 0.6rem;
  }
}
.certificates .certificates-right-side .search-container .search-input {
  height: 50px;
  position: relative;
  width: 100%;
  border-radius: 10px;
}
.certificates .certificates-right-side .search-container .search-input form {
  height: 100%;
}
.certificates .certificates-right-side .search-container .search-input form input {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #f9fafa;
  border-radius: 10px;
  padding: 0rem 1rem;
  outline-color: var(--primary--color);
}
.certificates .certificates-right-side .search-container .search-input form button {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  height: 70%;
  border: none;
  background-color: var(--primary--color);
  display: flex;
  padding: 0.5rem;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.certificates .certificates-right-side .search-container .search-input form button a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.certificates .certificates-right-side .search-container .search-input form button a img {
  height: 100%;
  width: 100%;
  margin: 0px !important;
}
.certificates .certificates-right-side .search-container .certificate-search-result {
  border-top: 1px solid #ecf0f3;
  margin-top: 1rem;
}
.certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner {
  border-radius: 10px;
  border: 1px solid #a1a8ae;
  padding: 0rem 1rem;
  padding-bottom: 1rem;
}
.certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-inner-heading {
  position: relative;
}
.certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-inner-heading p.title {
  padding: 1rem 0rem;
  text-align: center;
  font-size: 17px;
  font-family: Tajawal;
  border-bottom: 1px solid #ecf0f3;
}
.certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-inner-heading p.result-number {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-family: Tajawal;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  background-color: #fef1f1;
  color: #ea2a2a;
}
@media (max-width: 767px) {
  .certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-inner-heading p.result-number {
    font-size: 11px;
    padding: 0.5rem 0.8rem;
  }
}
@media (max-width: 420px) {
  .certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-inner-heading p.result-number {
    font-size: 10px;
    padding: 0.5rem 0.6rem;
  }
}
.certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box {
  height: 200px;
  overflow: auto;
  margin-top: 2rem;
}
.certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
@media (max-width: 767px) {
  .certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box::-webkit-scrollbar {
    width: 2px;
  }
}
.certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box::-webkit-scrollbar-thumb {
  background-color: var(--primary--color);
  border-radius: 10px;
}
.certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box .crtificate-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0.5rem 1rem 0;
}
.certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box .crtificate-item .certificate-item-left {
  width: 70%;
}
.certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box .crtificate-item .certificate-item-left p.certificate-code {
  font-family: Tajawal;
  border-radius: 20px;
  background-color: #fef2e6;
  color: #f77b08;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1rem;
  font-size: 13px;
}
@media (max-width: 767px) {
  .certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box .crtificate-item .certificate-item-left p.certificate-code {
    font-size: 10px;
  }
}
.certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box .crtificate-item .certificate-item-left p.certificate-gained {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 12px;
  width: 100%;
  margin-top: 0.7rem;
  color: #a1a8ae;
}
@media (min-width: 1025px) and (max-width: 1210px) {
  .certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box .crtificate-item .certificate-item-left p.certificate-gained {
    font-size: 8px;
  }
}
@media (max-width: 767px) {
  .certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box .crtificate-item .certificate-item-left p.certificate-gained {
    font-size: 7px;
  }
}
.certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box .crtificate-item .certificate-item-left p.certificate-gained .link {
  color: var(--primary--color);
}
.certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box .crtificate-item .certificate-item-left p.certificate-gained img {
  margin: 0rem;
  width: 25px;
  margin-left: 4px;
}
@media (max-width: 767px) {
  .certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box .crtificate-item .certificate-item-left p.certificate-gained img {
    width: 20px;
  }
}
.certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box .crtificate-item .certificate-item-right {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  font-size: 12px;
  height: 100%;
}
@media (max-width: 767px) {
  .certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box .crtificate-item .certificate-item-right p:first-child {
    font-size: 8px;
  }
}
.certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box .crtificate-item .certificate-item-right P {
  text-align: left;
  width: 100%;
  color: #a1a8ae;
}
.certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box .crtificate-item .certificate-item-right P img {
  margin: 0 !important;
  cursor: pointer;
  margin-left: 5px !important;
}
@media (max-width: 767px) {
  .certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box .crtificate-item .certificate-item-right P img {
    width: 20px;
  }
}
.certificates .certificates-right-side .search-container .certificate-search-result .certificate-result-inner .certificates-box .crtificate-item .certificate-item-right .certificate-date {
  font-family: Tajawal;
  color: #a1a8ae;
}
.certificates .certificates-right-side .search-container .rectangle1 {
  position: absolute;
  left: 0;
  top: 0;
}
.certificates .certificates-right-side .search-container .rectangle2 {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0px !important;
}

.professional-crew {
  width: 85%;
  margin: auto;
  padding-bottom: 6rem;
  direction:rtl;
  
}
@media (max-width: 767px) {
  .professional-crew {
    width: 90%;
    padding-bottom: 5rem;
  }
}
.professional-crew .professional-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.professional-crew .professional-heading .professional-left-side p:first-child {
  font-size: 30px;
  font-family: Tajawal;
  color: var(--neutral-black);
}
.professional-crew .professional-heading .professional-left-side p:nth-of-type(2) {
  font-family: Tajawal;
  font-size: 28px;
  color: var(--neutral-black);
  padding-left: 2rem;
}
.professional-crew .professional-heading .professional-left-side img {
  margin-left: 2rem;
  margin-top: -10px;
}
@media (max-width: 767px) {
  .professional-crew .professional-heading .professional-right-side {
    display: none;
  }
}
.professional-crew .professional-heading .professional-right-side button {
  background-color: white;
  border-radius: 20px;
  border: 1px solid var(--primary--color);
  color: var(--primary--color);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.professional-crew .professional-heading .professional-right-side button a {
  font-family: Tajawal;
  text-decoration: none;
  border-radius: 20px;
  color: var(--primary--color);
  width: 100%;
  height: 100%;
  padding: 0.5rem 3rem 0.5rem 4rem;
  display: block;
  transition: all 0.3s ease;
}
.professional-crew .professional-heading .professional-right-side button a img {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  transform: 0.3s;
}
.professional-crew .professional-heading .professional-right-side button a .join-icon {
  opacity: 1;
}
.professional-crew .professional-heading .professional-right-side button a .join-icon-hover {
  opacity: 0;
}
.professional-crew .professional-heading .professional-right-side button a:hover {
  background-color: var(--primary--color);
  color: white;
}
.professional-crew .professional-heading .professional-right-side button a:hover .join-icon {
  opacity: 0;
}
.professional-crew .professional-heading .professional-right-side button a:hover .join-icon-hover {
  opacity: 1;
}
.professional-crew .professional-paragraph {
  width: 70%;
  margin: 3rem auto;
  text-align: center;
  font-family: "Cairo";
}
@media (max-width: 767px) {
  .professional-crew .professional-paragraph {
    width: 100%;
  }
}
.professional-crew .professional-paragraph .professional-span {
  font-size: 17px;
  font-family: "Cairo";
  font-weight: 800;
}
.professional-crew .professional-paragraph .professional-number {
  color: #f77b08;
  font-size: 17px;
  font-family: "Cairo";
  font-weight: 800;
}
.professional-crew .crew-container {
  width: 90%;
  margin: 80px auto;
  overflow: hidden;
}
.professional-crew .crew-container .swiper-wrapper .swiper-slide {
  position: relative;
  border-radius: 25px;
  transition: background-color 0.3s ease-in-out;
  min-height: 330px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}
.professional-crew .crew-container .swiper-wrapper .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom right, #5fb1fd, rgba(8, 132, 247, 0.1));
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 0;
  border-radius: 25px;
}
.professional-crew .crew-container .swiper-wrapper .swiper-slide:hover::before {
  opacity: 1;
}
.professional-crew .crew-container .swiper-wrapper .swiper-slide > * {
  position: relative;
  z-index: 1;
}
.professional-crew .crew-container .swiper-wrapper .swiper-slide img.swiper-img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  min-height: 330px;
  margin-top: 2px;
  border-radius: 20px;
}
.professional-crew .crew-container .swiper-wrapper .swiper-slide .crew-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.719);
  width: 80%;
  margin: auto;
  padding: 0.7rem 0.7rem;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 20px;
}
.professional-crew .crew-container .swiper-wrapper .swiper-slide .crew-inner p:first-child {
  font-size: 15px;
  font-family: Tajawal;
}
.professional-crew .crew-container .swiper-wrapper .swiper-slide .crew-inner p:nth-of-type(2) {
  font-size: 12px;
  font-family: Tajawal;
  line-height: 18px;
  margin-top: 3px;
}
@media (max-width: 767px) {
  .professional-crew .crew-container .swiper-wrapper .swiper-slide .crew-inner p:nth-of-type(2) {
    line-height: 16px;
  }
}
.professional-crew .crew-container .swiper-wrapper .swiper-slide .crew-inner img {
  cursor: pointer;
}
.professional-crew .crew-container .crew-container-pagination {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 3rem;
}
.professional-crew .crew-container .crew-container-pagination span {
  background-color: #cccccc;
  opacity: 1;
  width: 20px;
  border-radius: 1px;
  height: 5px;
  margin: 0px 1px;
}
.professional-crew .crew-container .crew-container-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary--color);
  height: 7px;
  width: 30px;
}
.professional-crew .join-mobile-btn {
  background-color: white;
  border-radius: 25px;
  border-color: var(--primary--color);
  display: none;
  margin: auto;
  padding: 0.6rem 3rem;
}
.professional-crew .join-mobile-btn a {
  color: var(--primary--color);
  text-decoration: none;
  font-family: Tajawal;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
}
@media (max-width: 767px) {
  .professional-crew .join-mobile-btn {
    display: block;
  }
}

.partners {
  height: 400px;
  background-image: url(../assets/partners/bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 0rem 1rem 0rem;
  margin-bottom: -10rem;
}
@media (max-width: 767px) {
  .partners {
        margin-bottom: 3rem;

    background-image: url(../assets/partners/Bright-bg.png);
  }
}
@media (max-width: 1024px) {
  .partners {
    flex-direction: column;
    height: auto;
    padding: 5rem 0rem;
  }
}
.partners .partners-left-side {
  width: 35%;
  padding-left: 5rem;
  padding-right: 3rem;
}
@media (max-width: 1024px) {
  .partners .partners-left-side {
    width: 100%;
  }
}
.partners .partners-left-side img {
  width: 100px;
}
.partners .partners-left-side p:first-child {
  font-family: Tajawal;
  font-size: 32px;
  margin-top: -3rem;
}
@media (max-width: 767px) {
    .partners .partners-left-side {
        padding: 0rem 2rem;
    }
}

@media (max-width: 1024px) {
  .partners .partners-left-side p:first-child {
    margin-top: 0rem;
  }
}
.partners .partners-left-side p:nth-of-type(2) {
  font-family: Tajawal;
  font-size: 14px;
  margin-top: 2rem;
}
.partners .partners-left-side p:nth-of-type(2) .partners-title-span {
  font-family: Tajawal;
  font-size: 16px;
  color: black;
}
.partners .partners-left-side p:nth-of-type(2) .partners-number-span {
  font-family: Tajawal;
  font-size: 16px;
  color: #f77b08;
}
.partners .partners-right-side {
  width: 60%;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .partners .partners-right-side {
    width: 95%;
    margin-top: 3rem;
  }
}
.partners .partners-right-side .partners-swiper {
  position: relative;
  overflow: hidden;
}
.partners .partners-right-side .partners-swiper::before {
  content: "";
  position: absolute;
  top: 0;
  right: -5px;
  width: 20%;
  height: 100%;
  background: linear-gradient(to left, #f9fafa 0%, #f9fafa 0%, transparent, transparent 100%);
  opacity: 1;
  z-index: 2;
}
@media (max-width: 767px) {
  .partners .partners-right-side .partners-swiper::before {
    opacity: 0;
  }
}
.partners .partners-right-side .partners-swiper .swiper-wrapper {
  align-items: center !important;
  justify-content: center;
}
@media (max-width: 767px) {
  .partners .partners-right-side .partners-swiper .swiper-wrapper {
    justify-content: unset;
  }
}
.partners .partners-right-side .partners-swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  min-height: 165px;
}

.testimoials {
  width: 85%;
  margin: 20px auto;
}
.testimoials .testimonials-heading {
  text-align: center;
  direction:rtl;
}
.testimoials .testimonials-heading p:first-child {
  font-size: 32px;
  font-family: Tajawal;
}
.testimoials .testimonials-heading p:nth-of-type(2) {
  font-size: 16px;
  font-family: "Cairo";
  font-weight: 500;
  width: 70%;
  margin: 4rem auto;
}
@media (max-width: 767px) {
  .testimoials .testimonials-heading p:nth-of-type(2) {
    width: 100% !important;
  }
}
.testimoials .testimonials-swiper {
  overflow: hidden;
  padding: 5rem 0rem;
}
.testimoials .testimonials-swiper .swiper-wrapper {
  padding: 2rem 0rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .testimoials .testimonials-swiper .swiper-wrapper {
    margin: auto;
    justify-content: flex-start;
  }
}
.testimoials .testimonials-swiper .swiper-wrapper .swiper-slide {
  padding: 0rem 1rem;
  position: relative;
}
.testimoials .testimonials-swiper .swiper-wrapper .swiper-slide .testimonial-image {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -38px;
  height: 70px;
}
.testimoials .testimonials-swiper .swiper-wrapper .swiper-slide .swiper-slide-inner {
  height: 100%;
  padding: 1rem;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.068);
  border-radius: 10px;
  width: 100%;
}
.testimoials .testimonials-swiper .swiper-wrapper .swiper-slide .swiper-slide-inner p:first-child {
  font-family: Tajawal;
  font-size: 11px;
}
.testimoials .testimonials-swiper .swiper-wrapper .swiper-slide .swiper-slide-inner .testimonial-info {
  margin-top: 1rem !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 2rem;
}
.testimoials .testimonials-swiper .swiper-wrapper .swiper-slide .swiper-slide-inner .testimonial-info img {
  margin-bottom: 1rem;
}
.testimoials .testimonials-swiper .swiper-wrapper .swiper-slide .swiper-slide-inner .testimonial-info p.testimonial-name {
  font-size: 14px;
  font-family: "cairo";
  font-weight: 700;
}
.testimoials .testimonials-swiper .swiper-wrapper .swiper-slide .swiper-slide-inner .testimonial-info p.testimonial-title {
  font-size: 12px;
  font-family: "cairo";
  font-weight: 5000;
  color: #959ba1;
}
.testimoials .testimonials-swiper .swiper-wrapper .swiper-slide-active {
  height: 320px;
  border-radius: 10px;
  border-bottom: 3px solid var(--ternary-neutrals--1);
  padding: 0rem;
}
@media (max-width: 767px) {
  .testimoials .testimonials-swiper .swiper-wrapper .swiper-slide-active {
    height: auto;
    width: 98% !important;
    margin-left: 5px;
  }
}
.testimoials .testimonials-swiper .swiper-wrapper .swiper-slide-active .swiper-slide-inner {
  height: 100%;
  width: 100%;
  padding-top: 1.5rem;
}
.testimoials .testimonials-swiper .swiper-wrapper .swiper-slide-active .swiper-slide-inner .testimonial-info {
  margin-bottom: 3rem;
}
.testimoials .testimonials-swiper .swiper-wrapper .swiper-slide-active .swiper-slide-inner .testimonial-info img {
  margin-top: 3rem;
}
.testimoials .testimonials-swiper .testimonials-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.testimoials .testimonials-swiper .testimonials-pagination span {
  background-color: #cccccc;
  opacity: 1;
  width: 20px;
  border-radius: 1px;
  height: 5px;
  margin: 0px 1px;
}
.testimoials .testimonials-swiper .testimonials-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary--color);
  height: 7px;
  width: 30px;
}

.head-quarters {
  width: 85%;
  margin-bottom: 4rem;
  margin: 8rem auto;
  position: relative;
}
.head-quarters .absolute-location {
  position: absolute;
  top: 5%;
  right: 0px;
}
@media (max-width: 767px) {
  .head-quarters .absolute-location {
    height: 90px;
    top: 3%;
  }
}
.head-quarters .quarters-heading p:first-child {
  font-size: 32px;
  font-family: Tajawal;
}
.head-quarters .quarters-heading p:nth-of-type(2) {
  font-size: 30px;
  font-family: Tajawal;
  margin-left: 1.5rem;
}
.head-quarters .quarters-heading img {
  margin-top: -10px;
  margin-left: 1.5rem;
}
.head-quarters .quarters-description {
  width: 70%;
  text-align: center;
  margin: 50px auto;
  font-family: "Cairo";
  font-weight: 500;
}
@media (max-width: 767px) {
  .head-quarters .quarters-description {
    width: 100%;
  }
}
.head-quarters .quarters-description .quarters-span {
  color: #f77b08;
  font-family: "Cairo";
  font-weight: bold;
  font-size: 18px;
}
.head-quarters .quarters-swiper {
  display: flex;
  margin: 3rem 0rem;
  height: 340px;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .head-quarters .quarters-swiper {
    height: 550px;
    width: 80%;
    margin: 3rem auto;
  }
}
@media (max-width: 767px) {
  .head-quarters .quarters-swiper {
    height: 1030px;
    width: 90%;
    padding-bottom: 5rem;
  }
}
.head-quarters .quarters-swiper .navigation-pagination {
  position: relative;
  width: 5%;
}
@media (max-width: 767px) {
  .head-quarters .quarters-swiper .navigation-pagination {
    display: none;
  }
}
.head-quarters .quarters-swiper .navigation-pagination .headquarter-pagination {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .head-quarters .quarters-swiper .navigation-pagination .headquarter-pagination {
    display: none;
  }
}
.head-quarters .quarters-swiper .navigation-pagination .headquarter-pagination span {
  height: 16px;
  border-radius: 1px;
  width: 5px;
  margin: 2px 0rem;
}
.head-quarters .quarters-swiper .navigation-pagination .headquarter-pagination .swiper-pagination-bullet-active {
  height: 24px;
  width: 6px;
}
.head-quarters .quarters-swiper .navigation-pagination .quarter-navigation {
  position: relative;
  width: 100%;
  height: 100%;
}
.head-quarters .quarters-swiper .navigation-pagination .quarter-navigation button {
  background-color: white;
  color: var(--primary--color);
  border-radius: 30px;
  border: 1px solid var(--primary--color);
  padding: 1rem 0.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.head-quarters .quarters-swiper .navigation-pagination .quarter-navigation button svg {
  position: absolute;
}
.head-quarters .quarters-swiper .navigation-pagination .quarter-navigation button svg.down-hover {
  opacity: 0;
}
.head-quarters .quarters-swiper .navigation-pagination .quarter-navigation button svg.up-hover {
  transform: rotate(180deg);
  opacity: 0;
}
.head-quarters .quarters-swiper .navigation-pagination .quarter-navigation .quarter-up:hover {
  background-color: var(--primary--color);
}
.head-quarters .quarters-swiper .navigation-pagination .quarter-navigation .quarter-up:hover svg.up-hover {
  opacity: 1;
}
.head-quarters .quarters-swiper .navigation-pagination .quarter-navigation .quarter-up:hover svg.up-arrow {
  opacity: 0;
}
.head-quarters .quarters-swiper .navigation-pagination .quarter-navigation .quarter-down:hover {
  background-color: var(--primary--color);
}
.head-quarters .quarters-swiper .navigation-pagination .quarter-navigation .quarter-down:hover svg.down-hover {
  opacity: 1;
}
.head-quarters .quarters-swiper .navigation-pagination .quarter-navigation .quarter-down:hover svg.down-arrow {
  opacity: 0;
}
.head-quarters .quarters-swiper .navigation-pagination .quarter-navigation button.quarter-up {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.head-quarters .quarters-swiper .navigation-pagination .quarter-navigation button.quarter-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.head-quarters .quarters-swiper .navigation-pagination-mobile {
  position: absolute;
  width: 100%;
  left: 0;
  top: 230px;
  z-index: 15;
  display: none;
}
@media (max-width: 767px) {
  .head-quarters .quarters-swiper .navigation-pagination-mobile {
    display: flex;
  }
}
.head-quarters .quarters-swiper .navigation-pagination-mobile .quarter-pagination {
  position: absolute;
  top: 10px;
  width: 50%;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  display: flex;
  justify-content: center;
}
.head-quarters .quarters-swiper .navigation-pagination-mobile .quarter-pagination span {
  width: 16px;
  height: 4px;
  border-radius: 1px;
  margin: 0px 2px;
}
.head-quarters .quarters-swiper .navigation-pagination-mobile .quarter-navigation {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.head-quarters .quarters-swiper .navigation-pagination-mobile .quarter-navigation button {
  background-color: rgba(136, 140, 145, 0.3568627451);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 25px;
  padding: 0.4rem 0.7rem;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.head-quarters .quarters-swiper .swiper-wrapper {
  width: 95%;
  flex-direction: column;
  position: relative;
}
@media (max-width: 767px) {
  .head-quarters .quarters-swiper .swiper-wrapper {
    flex-direction: row !important;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .head-quarters .quarters-swiper .swiper-wrapper .swiper-slide {
    width: 100% !important;
  }
}
.head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  gap: 5px;
}
@media (max-width: 1024px) {
  .head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide {
    flex-direction: column;
  }
}
.head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  width: 50%;
  height: 100%;
}
@media (max-width: 1024px) {
  .head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide {
    flex-direction: column;
  }
}
.head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide .city-image {
  position: relative;
  height: 100%;
  width: 270px;
  border-radius: 10px 0px 0px 10px;
  overflow: hidden;
}
.head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide .city-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.521);
  z-index: 10;
  border-radius: 10px 0px 0px 10px;
}
@media (max-width: 1024px) {
  .head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide .city-image {
    width: 350px;
  }
}
@media (max-width: 767px) {
  .head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide .city-image {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
    min-height: 270px;
  }
}
.head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide .city-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px 0px 0px 10px;
}
@media (max-width: 767px) {
  .head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide .city-image img {
    border-radius: 10px 10px 0px 0px;
  }
}
.head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide .city-image .city-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-family: Tajawal;
  color: white;
}
.head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide .city-details {
  width: 270px;
  padding: 0.8rem;
  border: 1px solid #a1a8ae;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide .city-details {
    width: 350px;
  }
}
@media (max-width: 767px) {
  .head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide .city-details {
    width: 100%;
  }
}
.head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide .city-details .address-details {
  border: 1px dashed #a1a8ae;
  border-radius: 10px;
  padding: 3px;
}
.head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide .city-details .address-details p.address {
  padding: 0.7rem 0.5rem;
  font-size: 12px;
  font-family: "Cairo";
  font-weight: 500;
  color: black;
}
.head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide .city-details .address-details .address-details-upper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide .city-details .address-details .address-details-upper span {
  color: var(--primary--color);
  font-family: "Cairo";
  font-weight: 700;
}
.head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide .city-details .address-details .address-details-upper .copy {
  position: absolute;
  right: 7px;
  top: 7px;
  cursor: pointer;
}
.head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide .city-details .address-contacts {
  border-top: 1px solid #ecf0f3;
  padding: 0.8rem 0rem;
}
.head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide .city-details .address-contacts .address-contacts-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Cairo";
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 10px;
}
.head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide .city-details .address-contacts .address-contacts-row a {
  color: black;
  text-decoration: none;
}
.head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide .city-details .address-preview a {
  border-top: 1px solid #ecf0f3;
  padding: 0.8rem 0rem;
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
  font-family: "Cairo";
  font-weight: 500;
  font-size: 12px;
  color: black;
  text-decoration: none;
}
.head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .left-side-slide .city-details .address-preview a .view-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .right-side-slide {
  width: 50%;
  flex-grow: 1;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .right-side-slide {
    width: 100%;
  }
}
.head-quarters .quarters-swiper .swiper-wrapper .swiper-slide .inner-swiper-slide .right-side-slide iframe {
  width: 100%;
  height: 100%;
  border: 10px;
}

.footer {
  width: 95%;
  margin: 30px auto;
  margin-top: 13rem;
  padding: 2rem 2rem 0rem 2rem;
  background-color: var(--ternary-neutrals--1);
  border-radius: 32px;
  position: relative;
}
@media (max-width: 767px) {
  .footer {
    padding: 1rem 1rem 0rem 1rem;
    margin-bottom: 0px;
    margin-top: 0;
    width: 100%;
  }
}
.footer .border-icon {
  position: absolute;
  top: 0px;
  left: 0px;
}
.footer .footer-upper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .footer .footer-upper {
    flex-direction: column;
  }
}
.footer .footer-upper .footer-left-side {
  width: 33.3333333333%;
  position: relative;
  padding-left: 1rem;
  padding-top: 2rem;
  border-right: 1px solid #0f1b25;
  align-self: stretch;
}
@media (max-width: 1024px) {
  .footer .footer-upper .footer-left-side {
    width: 100%;
  }
}
.footer .footer-upper .footer-left-side .logo {
  width: 100px;
}
.footer .footer-upper .footer-left-side .protected {
  position: absolute;
  bottom: 2rem;
  left: -0.5rem;
}
@media (max-width: 1024px) {
  .footer .footer-upper .footer-left-side .protected {
    right: 1rem;
    top: 1rem;
    left: unset;
  }
}
.footer .footer-upper .footer-left-side p {
  color: #e4f1fe;
  font-family: "Cairo";
  font-size: 16px;
  line-height: 30px;
  margin-top: 2rem;
  width: 90%;
}
@media (max-width: 767px) {
  .footer .footer-upper .footer-left-side p {
    width: 100%;
  }
}
.footer .footer-upper .footer-middle {
  padding-left: 2rem;
  padding-top: 0.5rem;
  border-right: 1px solid #0f1b25;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .footer .footer-upper .footer-middle {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 3rem;
  }
}
@media (max-width: 767px) {
  .footer .footer-upper .footer-middle {
    padding-left: 0px;
  }
}
.footer .footer-upper .footer-middle .middle-inner {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .footer .footer-upper .footer-middle .middle-inner {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .footer .footer-upper .footer-middle .middle-inner {
    width: 100%;
  }
}
.footer .footer-upper .footer-middle .middle-inner .heading-box p {
  font-family: Tajawal;
  color: #e4f1fe;
  font-size: 17px;
}
.footer .footer-upper .footer-middle .middle-inner .heading-box svg {
  margin-top: -10px;
}
.footer .footer-upper .footer-middle .middle-inner p.page {
  margin: 0.5rem 0rem;
}
.footer .footer-upper .footer-middle .middle-inner p.page a {
  font-family: "Cairo";
  font-size: 14px;
  text-decoration: none;
  color: #e4f1fe;
  font-weight: normal;
}
.footer .footer-upper .footer-middle .middle-inner p.page a:hover {
  color: var(--primary--color);
}
.footer .footer-upper .footer-right-side {
  width: 33.3333333333%;
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .footer .footer-upper .footer-right-side {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (max-width: 1024px) {
  .footer .footer-upper .footer-right-side {
    width: 100%;
  }
}
.footer .footer-upper .footer-right-side .inner-box {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: #e4f1fe;
  border-bottom: 1px solid #19242e;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .footer .footer-upper .footer-right-side .inner-box .inner-right-box .heading-box {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
  }
}
.footer .footer-upper .footer-right-side .inner-box .inner-right-box .heading-box p {
  font-family: Tajawal;
  color: #e4f1fe;
}
.footer .footer-upper .footer-right-side .inner-box .inner-right-box .heading-box svg {
  margin-top: -10px;
}
.footer .footer-upper .footer-right-side .inner-box .inner-right-box .heading-box .mobile-recieve-svg {
  display: none;
}
@media (max-width: 767px) {
  .footer .footer-upper .footer-right-side .inner-box .inner-right-box .heading-box .mobile-recieve-svg {
    display: block;
    margin-top: 0px;
  }
}
.footer .footer-upper .footer-right-side .inner-box .inner-right-box p.description {
  margin-top: 2rem;
  font-family: "Cairo";
  font-size: 14px;
  font-weight: 400;
}
.footer .footer-upper .footer-right-side .inner-box .inner-right-box .email-box {
  margin-top: 2.5rem;
  position: relative;
}
.footer .footer-upper .footer-right-side .inner-box .inner-right-box .email-box input {
  width: 100%;
  padding: 0.6rem 1rem;
  border-radius: 30px;
  border: 1px solid #19242e;
  outline: none;
  font-family: "Cairo";
  background-color: #19242e;
  color: white;
}
.footer .footer-upper .footer-right-side .inner-box .inner-right-box .email-box input::-moz-placeholder {
  color: #697177;
}
.footer .footer-upper .footer-right-side .inner-box .inner-right-box .email-box input::placeholder {
  color: #697177;
}
@media (max-width: 767px) {
  .footer .footer-upper .footer-right-side .inner-box .inner-right-box .email-box input {
    font-size: 12px;
  }
}
.footer .footer-upper .footer-right-side .inner-box .inner-right-box .email-box button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 20px;
  background-color: var(--primary--color);
  border: 1px solid var(--primary--color);
  padding: 0.2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: white;
}
@media (max-width: 767px) {
  .footer .footer-upper .footer-right-side .inner-box .inner-right-box .email-box button {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .footer .footer-upper .footer-right-side .inner-box .inner-left-box {
    display: none;
  }
}
.footer .footer-upper .footer-right-side .contact-us {
  color: #e4f1fe;
  border-bottom: 1px solid #19242e;
  padding-bottom: 2rem;
  padding-top: 1.5rem;
}
.footer .footer-upper .footer-right-side .contact-us .heading {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.footer .footer-upper .footer-right-side .contact-us .heading .contact-head p {
  font-family: Tajawal;
  color: #e4f1fe;
}
.footer .footer-upper .footer-right-side .contact-us .heading .contact-head svg {
  margin-top: -10px;
}
.footer .footer-upper .footer-right-side .contact-us .contact-row {
  margin-bottom: 1rem !important;
  display: flex;
  font-family: "Cairo";
  font-size: 14px;
  gap: 0.5rem;
}
.footer .footer-upper .footer-right-side .contact-us .contact-row a {
  text-decoration: none;
  color: #e4f1fe;
}
.footer .footer-upper .footer-right-side .contact-us .contact-row span {
  display: block;
}
.footer .footer-upper .footer-right-side .contact-us .contact-row svg {
  width: 40px;
}
.footer .footer-upper .footer-right-side .contact-us .social {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2.5rem;
  margin-left: 1rem;
}
@media (max-width: 767px) {
  .footer .footer-upper .footer-right-side .contact-us .social {
    justify-content: center;
    gap: 2rem;
    margin-left: 0px;
  }
}
.footer .footer-upper .footer-right-side .contact-us .social svg {
  cursor: pointer;
}
.footer .footer-upper .footer-right-side .payment-method {
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: #e4f1fe;
}
@media (max-width: 1024px) {
  .footer .footer-upper .footer-right-side .payment-method {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .footer .footer-upper .footer-right-side .payment-method {
    display: block;
  }
}
.footer .footer-upper .footer-right-side .payment-method .payment-heading {
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 1024px) {
  .footer .footer-upper .footer-right-side .payment-method .payment-heading {
    align-items: end;
    width: 45%;
  }
}
@media (max-width: 767px) {
  .footer .footer-upper .footer-right-side .payment-method .payment-heading {
    width: 100%;
    align-items: flex-start;
  }
}
.footer .footer-upper .footer-right-side .payment-method .payment-heading .payment-heading-text p {
  font-family: Tajawal;
  color: #e4f1fe;
}
.footer .footer-upper .footer-right-side .payment-method .payment-ways {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .footer .footer-upper .footer-right-side .payment-method .payment-ways {
    justify-content: center;
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .footer .footer-upper .footer-right-side .payment-method .payment-ways {
    gap: 1rem;
  }
}
.footer .copyright {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #0f1b25;
  color: #e4f1fe;
  margin-top: 1rem;
  font-family: "Cairo";
  font-size: 12px;
  font-weight: 400;
}/*# sourceMappingURL=style.css.map */
/*CUSTOM HEADER*/
#cityList
{
        z-index: 100;
    width: 90%;
    color: black;
    line-height: 30px;
    overflow-y: scroll;
    padding-right: 9px;
    max-height: 150px;
    font-size: 13px;
    background: white;
    width: 100%;
    color: inherit;
    text-decoration: none;
    padding: 0 10px;
}
#search-course-dropdown-container2
{
    max-height:100px;
    margin-bottom:10px;
}
#cityList a  , #search-course-dropdown-container2 a 

{
        text-decoration: none !important;
    color: inherit;
    display: block;
    width: 100%;
}
/* END CUSTOM HEADER*/

