@import url("https://fonts.googleapis.com/css2?family=var(--nav-font):ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=var(--nav-font):ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --nav-color: #073655;
  --nav-font: "Roboto", sans-serif;
  --nav-dropdown-background-color: white;
  --Mulish-font-family: "Mulish", sans-serif;
}
.dropdown-toggle::after {
  display: none !important;

}

/* RTL (Arabic etc.) */
html[dir="rtl"] #courses_tabs .tab_content ul li {
    padding-left: 0;
    padding-right: 25px; /* space on right */
}
html[dir="rtl"] #courses_tabs .tab_content ul li::before {
    left: auto;
    right: 0;
    transform: scale(-1);
}
.two-colum-layout b::before {
  content: "\A";   /* line break */
  white-space: pre; /* ensure \A works as a line break */
}

.two-colum-layout b::after {
  content: "\A";
  white-space: pre;
}
/*clients css starts here */

#banner_about .client {
  position: absolute;
  top: 30%;
  right:10%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}
.two-colum-layout{
    column-count:2;
    column-gap: 40px;
}
.our-clients-logos {
    display: grid;
    gap: 20px;
}
.feesbox{
    font-family: Roboto;
    color: white !important;
    font-weight: 500;
    font-size: 13px !important;
    margin-bottom:0px !important;
}
.fees-box p{
    font-size:13px !important;
}
.fees-box {
      background: #517fa2;
      padding: 5px;
      color:white;
      border: 2px dashed #fff;
      border-radius: 8px;
      text-align: center;
      width:60%;
      margin:0 auto;
    }
    .fees-title {
      font-size: 1.2rem;
      font-weight: 600;
    }
    .fees-amount {
      font-size: 2rem;
      font-weight: 700;
    }

@media (min-width: 1200px) {
    .our-clients-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .our-clients-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .our-clients-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .our-clients-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .our-clients-logos {
        grid-template-columns: 1fr;
    }
}
.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px; /* You can adjust height */
    padding: 10px;
    background-color: #fff; /* Optional */
    border: 1px solid #eee;  /* Optional */
    box-sizing: border-box;
    text-align: center;
}
p{
    font-weight:300 !important;
}
li>span{
    font-weight:300 !important;
}
b , strong{
    font-weight:600 !important;
}
.client-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* RTL and LTR alignment utility classes */
.rtl-align {
    direction: rtl !important;
    text-align: right !important;
}

.ltr-align {
    direction: ltr;
    text-align: left;
}

/* Optional fix for breadcrumb slash positioning */
.rtl-align .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 5px;
    direction: rtl !important;
}

/* Fix the breadcrumb if it's inline display */
.breadcrumb-item {
    display: inline-block;
}


/*client css end here  */

.mainheading h2 {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 500;
  font-size: 29px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.mainheading h2 span {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 800;
  font-size: 29px;
  line-height: 100%;
  letter-spacing: 0%;
}
.mainheading p {
  font-family: var(--nav-font);
  color: #828282;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
}
.searchboxheading{
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
/* Top Navigation Bar */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.logo img {
  /*height: 40px;*/
}
.social-icons a,
.utility-links a {
  color: var(--nav-color);
  margin: 0 8px;
  color: var(--nav-color);
  font-family: var(--nav-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-decoration: none;
  transition: 0.3s;
}
.social-icons a:hover,
.utility-links a:hover {
  color: #f4a632;
}

/* Bottom Navbar */
.bottom-nav {
  border-top: 1px solid #ddd;
  padding: 10px 0;
}
.navmenu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.navmenu li {
  position: relative;
}
.navmenu a {
  color: var(--nav-color);
  padding: 18px 15px;
  font-size: 16px;
  font-family: var(--nav-font);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  text-decoration: none;
  transition: 0.3s;
}
.navmenu a.active, 
.navmenu a:hover, 
.navmenu .current-menu-item > a, 
.navmenu .current_page_item > a {
    color: var(--nav-color);
    font-weight: 700;
}

.navmenu .dropdown ul {
  margin: 0;
  padding: 6px 0;
  background: var(--nav-dropdown-background-color);
  display: block;
  position: absolute;
  visibility: hidden;
  left: 0;
  top: 100%;
  opacity: 0;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.navmenu .dropdown:hover ul {
  visibility: visible;
  opacity: 1;
  top: 80%;
}
.navmenu .dropdown ul li {
  padding: 1px 20px;
  list-style: none;
}

.navmenu .dropdown ul a {
  display: block;
  padding: 6px;
}
/* Contact Button */
.btn-contact {
  border: 2px solid #fab963;
  color: var(--nav-color);
  border-radius: 25px;
  padding: 12px 34px;
  font-family: var(--nav-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  transition: 0.5s ease-in-out;
}
.btn-contact:hover {
  background-color: #fab963;
  color: white;
}
.search_text {
  display: inline-block;
  color: var(--nav-color);
  margin: 0 8px;
  font-family: var(--nav-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-decoration: none;
}
.search_text a:hover {
  color: #f4a632;
}
.navbar-toggler {
  display: none;
}

@media (max-width: 991px) {
  .navmenu {
    flex-direction: column;
  }
  .search_text {
    display: none;
  }
  .navbar-toggler {
    display: inline-block;
    vertical-align: middle;
    color: var(--nav-color);
    font-weight: 400;
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .navmenu .dropdown ul {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    padding: 0;
    width: 100%;
  }

  .navmenu .dropdown.active ul {
    padding: 1px 0; /* Add padding when open */
  }

  .navmenu .dropdown i {
    transition: transform 0.3s ease-in-out;
  }

  .navmenu .dropdown.active i {
    transform: rotate(180deg);
  }

  .vline {
    display: none;
  }
}

@media (max-width: 600px) {
  .social-icons {
    display: none;
  }
  .utility-links a {
    display: none;
  }
}

@media (min-width: 1300px) {
  .manueswidth {
    max-width: 1200px;
    margin: 0 auto; /* Centers the container */
  }
}
@media (min-width: 1200px) {
  .manueswidth {
    max-width: 1130px;
    margin: 0 auto; /* Centers the container */
  }
}

/********************************************** SECTION 2  *******************************************/

.carousel-item {
  position: relative;
  padding: 10px 20px;
  color: #fff;
  height: 665px;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}
.herobanimg {
  height: 550px;
    object-fit: cover;
    width: 90%;
}

.carousel-content {
  position: relative;
  z-index: 2;
}
.carousel-content {
    min-height: auto; /* ya desired height like 300px */
    display: flex;
    align-items: center; /* vertical center */
}

.customBannerMargin > .row {
    align-items: center !important; /* override bootstrap */
    margin-top:15% !important;
    margin-left: calc(1 * var(--bs-gutter-x)) !important;
}

.slider-text h2 {
  font-family: var(--nav-font);
  font-weight: 700;
  font-size: 49px;
  line-height: 122%;
  letter-spacing: 0%;
  text-transform: capitalize;
  margin-right: -50px;
}

.slider_text_ar h2{
  margin-right: 0px;
}

.slider-text p {
  font-family: var(--nav-font);
  font-weight: 400;
  font-size: 28px;
  line-height: 170%;
  letter-spacing: 0%;
  margin-right: -50px;
}
.slider_text_ar p{
  margin-right: 0px;
}

.btn-register {
  border: 2px solid var(--nav-color);
  color: white;
  background-color: var(--nav-color);
  border-radius: 40px;
  padding: 13px 34px;
  font-family: var(--nav-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  transition: 0.5s ease-in-out;
  text-decoration: none;
}

.btn-register:hover {
  background-color: white;
  color: var(--nav-color);
}
.carousel-control-next,
.carousel-control-prev {
  opacity: 1;
  width: 5%;
}

/******************************************************* SECTION 2  **************************************************/

#section_2nd {
  position: relative;
  z-index: 99;
  background: white;
  margin-top: -155px;
  border-bottom: 1px solid #d7d7d7;
}
#section_2nd .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#section_2nd .card img {
  width: 90px;
  height: 90px;
}
#section_2nd .public_t_text h6 {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 700;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}
#section_2nd .public_t_text p {
  font-family: var(--nav-font);
  font-weight: 500;
  color: #828282;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-align:justify;
}
/* Center the dots */
.custom-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each dot */
.custom-dots li {
    margin: 0 8px;
}

/* Dot button styling */
.custom-dots li button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: none;
    background: #ccc;           /* default color */
    cursor: pointer;
    transition: background 0.3s;
}

/* Active dot */
.custom-dots li.active button {
    background: #000;           /* active color */
}


#section_6th .slider img{
    width:auto !important;
    height:150px !important;
    object-fit:contain;
}
/******************************************************* SECTION 3  **************************************************/
#section_3rd .image-container {
  width: 370px;
  height: 370px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #dfdfdf;
}

#section_3rd .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

/******************************************************* SECTION 4  **************************************************/
#section_4rth {
  background: #efefef;
}
/* Service Box Styling */
#section_4rth .service-box {
  text-align: center;
}

#section_4rth .service-box .service-img {
  width: 90px;
  height: 90px;
}

#section_4rth .service-box h6 {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 900;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  margin-top: 15px;
}

#section_4rth .service-box p {
  font-family: var(--nav-font);
  color: #000;
  font-weight: 600;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: justify;
  margin-top: 15px;
}

#section_4rth .view-more {
  color: #000;
  text-decoration: none;
  font-family: var(--Mulish-font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 5px; /* Space between text and icon */
  margin-top: 2px;
  transition: color 0.3s ease-in-out;
}

#section_4rth .view-more img {
  width: 22px; /* Adjust SVG size */
  height: 22px;
  transition: filter 0.3s ease-in-out;
}

#section_4rth .view-more:hover {
  text-decoration: underline;
  color: #f8a33a;
}

/* Change SVG color on hover */
#section_4rth .view-more:hover img {
  filter: brightness(0) saturate(100%) invert(49%) sepia(89%) saturate(464%)
    hue-rotate(2deg) brightness(97%) contrast(96%);
}

/******************************************************* Search Section  **************************************************/
/* Background Image */
.search-section {
  position: relative;
  height: 560px;
  /* display: flex;
      align-items: center;
      justify-content: center; */
  padding: 50px;
  padding-top: 100px;
}

/* White Box */
.search-section .search-box {
  background: white;
  padding: 30px;
  /* border-radius: 10px; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 500px;
  text-align: center;
}

/* Input Box */
.search-section .search-input {
  display: flex;
  align-items: center;
  background: transparent;
  border-radius: 40px;
  padding: 0px 5px;
  border: 1px solid #ddd;
}

/* Input field styling */
.search-section .search-input input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  padding: 8px;
  font-family: var(--Mulish-font-family);
  font-weight: 600;
  font-size: 13px;
  line-height: 25px;
  letter-spacing: 0%;
  color: #000; /* Normal text color */
}

/* Placeholder styling */
.search-section .search-input input::placeholder {
  font-family: var(--Mulish-font-family);
  font-weight: 600;
  font-size: 13px;
  line-height: 25px;
  letter-spacing: 0%;
  color: #959595;
  vertical-align: middle;
}

.search-section .search-icon {
  color: #f8a33a;
  padding: 8px;
  border-radius: 5px;
}

/* Contact Info Box */
.search-section .contact-box {
  background: #0e2a47;
  color: white;
  padding: 15px;
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  /* border-radius: 0 0 10px 10px; */
  width: 500px;
}
.search-section .search-box h6 {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 900;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.search-section .search-box p {
  font-family: var(--Mulish-font-family);
  color: #000000;
  font-weight: 600;
  font-size: 13px;
  line-height: 25px;
  letter-spacing: 0%;
  vertical-align: middle;
}
/******************************************************* SECTION 5  **************************************************/
/* General Styles */
#section_5th {
  background-color: #fff;
  padding: 5px 0;
}
#section_5th .border_b {
  border-bottom: 1px solid #a4a4a4;
  padding-bottom: 60px !important;
}

/* Accordion Styles */
#section_5th .accordion-item {
  border: none;
  background: transparent;
}

#section_5th .accordion-button {
  background-color: #fab963;
  color: #000;
  font-family: var(--nav-font);
  font-weight: 900;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  padding: 20px 20px;
  border-radius: 50px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#section_5th .accordion-button:not(.collapsed) {
  color: var(--nav-color);
  background-color: #fab963;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
    var(--bs-accordion-border-color);
}
#section_5th .accordion-button:focus {
  box-shadow: none;
}

/* Remove Bootstrap's default accordion icon */
#section_5th .accordion-button::after {
  display: none !important;
}

/* Custom + and - for accordion */
#section_5th .accordion-button {
  position: relative;
}

#section_5th .accordion-button::before {
  content: "\002B"; /* Plus sign */
  font-size: 26px;
  font-weight: bold;
  color: #000;
  position: absolute;
  right: 20px;
}
 .accordion-buttonarabic::before{
  left: 20px !important;
  right: 0px !important;
}
#section_5th .accordion-button:not(.collapsed)::before {
  content: "\2212"; /* Minus sign */
}

#section_5th .accordion-body {
  background: var(--nav-color);
  color: #fff;
  padding: 15px 20px;
  border-radius: 25px;
  margin-top: 5px;
  font-family: var(--nav-font);
  font-weight: 400;
  font-size: 14px;
}

/* Right Section - Value Proposition */
#section_5th .right_text h6 {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 900;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
#section_5th .right_text p {
  font-family: var(--nav-font);
  color: #828282;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0%;
}
.right_text .view-more {
  color: #d98400;
  text-decoration: none;
  font-family: var(--Mulish-font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 5px; /* Space between text and icon */
  margin-top: 2px;
  transition: color 0.3s ease-in-out;
}

.right_text .view-more img {
  width: 22px; /* Adjust SVG size */
  height: 22px;
  transition: filter 0.3s ease-in-out;
}

.right_text .view-more:hover {
  text-decoration: underline;
  color: #000;
}

/* Change SVG color on hover */
.right_text .view-more:hover img {
  filter: brightness(0) saturate(100%);
}
#section_5th .number_knowledge h4 {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 900;
  font-size: 51px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
#section_5th .number_knowledge p {
  font-family: var(--nav-font);
  color: #d98400;
  font-weight: 900;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}

/******************************************************* SECTION 6  **************************************************/
#section_6th .logo-slider {
  padding: 8px 0;
  text-align: center;
}

#section_6th .slider img {
  max-width: 150px; /* Adjust size */
  height: auto;
  margin: 0 auto;
  display: block;
}
#section_6th .slick-dots li button:before {
  font-size: 13px;
  opacity: 0.5;
  color: black;
}
#section_6th .slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--nav-color);
}
/******************************************************* SECTION 7  **************************************************/
#section_7th .blog-card {
  border: none;
  transition: transform 0.3s ease-in-out;
}
#section_7th .blog-card:hover {
  transform: translateY(-5px);
}
#section_7th .blog-img {
  position: relative;
  overflow: hidden;
}
#section_7th .blog-img img {
  width: 100%;
  height: 195px;
}
#section_7th .blog-date {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--nav-color);
  color: #fab963;
  padding: 8px 12px;
  font-family: var(--nav-font);
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: center;
}
#section_7th .blog-content {
  padding: 15px 0;
}
#section_7th .blog-title {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 1%;
  vertical-align: middle;
}
#section_7th .blog-meta {
  font-family: var(--nav-font);
  color: #828282;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 18%;
  vertical-align: middle;
  text-transform: uppercase;
  margin-top: 7px;
  margin-bottom: 10px;
}
#section_7th .blog-content a{
  text-decoration: none;
}
#section_7th .blog-description {
  font-family: var(--nav-font);
  color: #000;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;

  margin-bottom: 10px;
}
#section_7th .blog-link {
  color: #d17a00;
  font-weight: bold;
  text-decoration: none;
}
#section_7th .blog-link:hover {
  text-decoration: underline;
}
/******************************************************* SECTION 8  **************************************************/
#section_8th {
  background: var(--nav-color);
}
#section_8th .location_text h6 {
  font-family: var(--nav-font);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
}
.ratio-16x9 {
  --bs-aspect-ratio: 42.25%;
}
/******************************************************* Footer  **************************************************/

.footer {
  background: #fff;
  padding: 40px 0;
}
.footer .f_mainheading {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 800;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 20px;
}
.footer a {
  color: var(--nav-color);
  text-decoration: none;
  font-family: var(--nav-font);
  font-weight: 500;
  font-size: 15px;
  line-height: 36px;
  letter-spacing: 0%;
}
.footer a:hover {
  color: #D98400;
  text-decoration: underline;
}
.footer .social-icons a {
  font-size: 18px;
  margin-right: 15px;
  color: #000;
}
.footer .social-icons a:hover {
  color: #D98400;
}

.footer .logo_descrip {
  font-family: var(--Mulish-font-family);
  color: #828282;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
}
.footer .ftaxheading {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 900;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0%;
}
.footer .ftaxheading span {
  font-family: var(--nav-font);
  color: #000;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0%;
}
.footer .footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 40px;
  font-size: 13px;
  text-align: center;
}
.footer .footer-bottom p {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 400;
  font-size: 13px;
  line-height: 27px;
  letter-spacing: 0%;
}
.footer .footer-bottom p a {
  font-family: var(--nav-font);
  font-weight: 700;
  font-size: 13px;
  line-height: 27px;
  letter-spacing: 0%;
}
.search-section  .search_email a{
  font-family: var(--nav-font);
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}
.search-section  .search_number a{
  font-family: var(--nav-font);
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}

@media (max-width: 300px) {
}
@media (min-width: 301px) and (max-width: 600px) {
  .carousel-control-next,
  .carousel-control-prev {
    display: none;
  }
  .carousel-item {
    padding: 20px 10px;
    height: 300px;
  }
  .herobanimg {
    height: 400px;
    width: 100%;
  }
  .slider-text h2 {
    font-size: 28px;
    margin-right: 0px;
  }

  .slider-text p {
    font-size: 18px;
    margin-right: 0px;
  }
  .btn-register {
    font-size: 13px;
  }

  /******************************************************* SECTION 2  **************************************************/
#section_2nd {
  margin-top: -40px;
}
#section_2nd .card img {
  width: 60px;
  height: 60px;
}

.mainheading h2 {
  font-size: 20px;
 
}
.mainheading h2 span {
  font-size: 20px;
}
.mainheading p {
  font-size: 14px;
}
#section_2nd .public_t_text h6 {
  font-size: 18px;
}
#section_2nd .public_t_text p {
  font-size: 12px;
}
#section_3rd .image-container {
  width: 100%;
  height: 100%;
}
.btn-contact {
  font-size: 13px;
}
/******************************************************* SECTION 4  **************************************************/
#section_4rth .service-box .service-img {
  width: 80px;
  height: 80px;
}
#section_4rth .service-box h6 {
  font-size: 18px;
}

#section_4rth .service-box p {
  font-size: 14px;
}
/******************************************************* Search-Section  **************************************************/
.search-section .search-box {
  background: white;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 345px;
  text-align: center;
}

.search-section .search-box h6 {
  font-size: 18px;
}
.search-section .search-box p {
  font-size: 12px;
}
/* Placeholder styling */
.search-section .search-input input::placeholder {
  font-size: 12px;
}
.search-section .search-input input {
  font-size: 12px;
}
.search-section .contact-box {
  padding: 10px;
  width: 345px;
}
.search-section  .search_email a{
  font-size: 12px;
}
.search-section  .search_number a{
  font-size: 12px;
}

/******************************************************* SECTION 5  **************************************************/
#section_5th {
  padding: 10px 0;
}

#section_5th .accordion-button {
  font-size: 15px;
}
#section_5th .accordion-body {
  font-size: 13px;
}
#section_5th .right_text h6 {
  font-size: 16px;
}
#section_5th .right_text p {
  font-size: 13px;

}
#section_5th .number_knowledge h4 {
 font-size: 30px;
}
#section_5th .number_knowledge p {
  font-size: 13px;
}
#section_5th .accordion-button::before {
  font-size: 24px;
}
#section_5th .border_b {
  padding-bottom: 15px !important;
}
#section_6th .logo-slider {
  padding: 15px 0;
  text-align: center;
}
#section_6th .slick-dots li button:before {
  font-size: 10px;
}
/******************************************************* SECTION 7  **************************************************/
#section_7th .blog-img img {
  width: 100%;
  height: 160px;
}
#section_7th .blog-date {
  font-size: 12px;
}
#section_7th .blog-title {
  font-size: 16px;
}
#section_7th .blog-description {
  font-size: 13px;
}
#section_8th .location_text h6 {
  font-size: 15px;
}

.right_text .view-more {
  font-size: 12px;
}
/******************************************************* FOOTER  **************************************************/
.footer {
  background: #fff;
  padding: 20px 0;
}

.footer .logo_descrip {
  font-size: 15px;
}
.footer .f_mainheading {
  font-size: 16px;
  margin-bottom: 10px;
}
.footer a {
  font-size: 13px;
}
.footer .ftaxheading {
  font-size: 15px;
}
.footer .ftaxheading span {
  font-size: 15px;
}
.footer .footer-bottom p {
  font-size: 12px;
}
.footer .footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  text-align: center;

}
#section_7th .blog-content {
  padding: 15px 0  0px 0px;
}
}

@media (min-width: 601px) and (max-width: 991px) {
  .carousel-control-next,
  .carousel-control-prev {
    display: none;
  }
  .carousel-item {
    padding: 10px 20px;
    height: 590px;
  }
  .herobanimg {
    height: 430px;
  }
  .slider-text h2 {
    font-size: 38px;
    margin-right: -50px;
  }

  .slider-text p {
    font-size: 22px;
    margin-right: -50px;
  }
  .slider_text_ar h2{
    margin-right: 0px;
  }
  .slider_text_ar p{
    margin-right: 0px;
  }
  
  .btn-register {
    font-size: 14px;
  }
/******************************************************* SECTION 2  **************************************************/
#section_2nd {
  margin-top: -172px;
}
#section_2nd .card img {
  width: 80px;
  height: 75px;
}

.mainheading h2 {
  font-size: 26px;
 
}
.mainheading h2 span {
  font-size: 26px;
}
.mainheading p {
  font-size: 15px;
}
#section_2nd .public_t_text h6 {
  font-size: 22px;
}
#section_2nd .public_t_text p {
  font-size: 14px;
}
#section_3rd .image-container {
  width: 100%;
  height: 275px;
}
.btn-contact {
  font-size: 14px;
}

/******************************************************* SECTION 4  **************************************************/
#section_4rth .service-box p {
  font-size: 15px;
}
/******************************************************* SECTION 5  **************************************************/
#section_5th .accordion-button {
  font-size: 18px;
}
#section_5th .accordion-body {
  font-size: 13px;
}
#section_5th .right_text h6 {
  font-size: 18px;
}
#section_5th .right_text p {
  font-size: 15px;

}
#section_5th .number_knowledge h4 {
 font-size: 35px;
}
#section_5th .number_knowledge p {
  font-size: 16px;
}
#section_5th .accordion-button::before {
  font-size: 24px;
}
/******************************************************* SECTION 7  **************************************************/
#section_7th .blog-img img {
  width: 100%;
  height: 160px;
}
#section_7th .blog-date {
  font-size: 12px;
}
#section_7th .blog-title {
  font-size: 18px;
}
#section_7th .blog-description {
  font-size: 14px;
}
#section_8th .location_text h6 {
  font-size: 15px;
}
/******************************************************* FOOTER  **************************************************/
.footer .logo_descrip {
  font-size: 15px;
}
.footer .f_mainheading {
  font-size: 18px;
}
.footer a {
  font-size: 14px;
}
.footer .ftaxheading {
  font-size: 14px;
}
.footer .ftaxheading span {
  font-size: 14px;
}
}

@media (min-width: 992px) and (max-width: 1028px) {
  .carousel-control-next,
  .carousel-control-prev {
    display: none;
  }
  .carousel-item {
    padding: 10px 20px;
    height: 630px;
  }
  .herobanimg {
    height: 510px;
  }
  .slider-text h2 {
    font-size: 42px;
    margin-right: -50px;
  }
  .slider_text_ar h2{
    margin-right: 0px;
  }

  .slider-text p {
    font-size: 24px;
    margin-right: -50px;
  }
  .slider_text_ar p{
    margin-right: 0px;
  }
  
  .btn-register {
    font-size: 16px;
  }
  #section_5th .number_knowledge h4 {
    font-size: 46px;
}
}
@media (min-width: 1029px) and (max-width: 1400px) {
}

@media (min-width: 1401px) and (max-width: 1440px) {
}
@media (min-width: 1441px) {
  
}

/*********************************************** Start page About Us *************************************************/

#banner_about .about_header {
  position: relative;
  height: 230px;
  overflow: hidden;
}
#banner_about .about_header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    } */
#banner_about .breadcrumb-content {
  position: absolute;
  top: 30%;
  left: 38%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}
#banner_about .breadcrumb-contentarabic  {
 /*right: 11%;*/
 left: unset;
}
#banner_about .breadcrumb-contentBOD {
  position: absolute;
  top: 30%;
  left: 58%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 100%;
}
#banner_about .about_heade_heading_detailsBOD h1 {
  font-family: var(--nav-font);
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-align: left;
}
#banner_about .breadcrumb-item {
  font-family: var(--nav-font);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}

#banner_about .about_heade_heading h1 {
  font-family: var(--nav-font);
  color: #fff;
  font-weight: 800;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}

/******************************************** SECTION 2  *****************************************************/
#aboutheader_2 .aboutheader_back_2 {
  background: #fff;
  position: relative;
  margin-top: -85px;
}
#aboutheader_2 .aboutheader_2_text h2 {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 800;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
  padding-top: 10px;
  padding-bottom: 10px;
}
#aboutheader_2 .aboutheader_2_text p {
  font-family: var(--nav-font);
  color: #484848;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align:justify;
}
#aboutheader_2 .aboutheader_2_text ul li {
  font-family: var(--nav-font);
  color: #484848;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
}

#aboutheader_2 .stats-box {
  background-color: #517fa2;
  border: 1px solid var(--nav-color);
  color: white;
  text-align: left;
  padding: 20px 28px;
  border-radius: 20px;
}
#aboutheader_2 .stats-number {
  font-family: var(--nav-font);
  font-weight: 900;
  font-size: 51px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
#aboutheader_2 .stats-text {
  font-family: var(--nav-font);
  font-weight: 900;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  padding-top: 15px;
}
/******************************************** SECTION 3 OUR HISTORY *****************************************************/
#our_history {
  background: #f7f7f7;
}
#our_history .our_history_text p {
  font-family: var(--nav-font);
  color: #484848;
  font-weight: 500;
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0%;
}
#our_history .our_history_text h4 {
  font-family: var(--Mulish-font-family);
  color: var(--nav-color);
  font-weight: 500;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
#our_history .our_history_text h4 span {
  font-family: var(--Mulish-font-family);
  color: var(--nav-color);
  font-weight: 900;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0%;
}
#our_history .nav-pills {
  border-right: 1px solid #fab963;
}
#our_history .nav-pills .nav-link {
  color: var(--nav-color);
  font-family: var(--nav-font);
  font-weight: 900;
  font-size: 29px;
  line-height: 46px;
  letter-spacing: 0%;
  vertical-align: middle;
  border-radius: 0;
  padding: 8px 20px;
  border-right: 2px solid transparent;
  border-bottom: 1px solid #d6d6d6; /* Keeps border for all except last */
  text-align: center;
}

#our_history .nav-pills .nav-link.active {
  color: #d98400;
  background: transparent;
  border-right-color: #fab963;
}
#our_history .milestone-content {
  padding-left: 20px;
}
#our_history .milestone-content h6 {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 900;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
#our_history .milestone-content p {
  font-family: var(--nav-font);
  color: #484848;
  font-weight: 500;
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0%;
  padding-top: 10px;
}
#our_history .milestone-content img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}
#our_history .milestone-contentarabic img {
  margin-right: 0px;
	margin-left: 15px;
}
#our_history .content-wrapper {
  display: flex;
  align-items: flex-start;
}
/******************************************** SECTION 4  *****************************************************/
/* Accordion Styles */
#aboutheader_4 .accordion-item {
  border: none;
  background: transparent;
}

#aboutheader_4 .accordion-button {
  background-color: #fab963;
  color: #000;
  font-family: var(--nav-font);
  font-weight: 900;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  padding: 20px 20px;
  border-radius: 50px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#aboutheader_4 .accordion-button:not(.collapsed) {
  color: var(--nav-color);
  background-color: #fab963;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
    var(--bs-accordion-border-color);
}
#aboutheader_4 .accordion-button:focus {
  box-shadow: none;
}

/* Remove Bootstrap's default accordion icon */
#aboutheader_4 .accordion-button::after {
  display: none !important;
}

/* Custom + and - for accordion */
#aboutheader_4 .accordion-button {
  position: relative;
}

#aboutheader_4 .accordion-button::before {
  content: "\002B"; /* Plus sign */
  font-size: 26px;
  font-weight: bold;
  color: #000;
  position: absolute;
  right: 20px;
}

#aboutheader_4 .accordion-button:not(.collapsed)::before {
  content: "\2212"; /* Minus sign */
}

#aboutheader_4 .accordion-body {
  background: var(--nav-color);
  color: #fff;
  padding: 15px 20px;
  border-radius: 25px;
  margin-top: 5px;
  font-family: var(--nav-font);
  font-weight: 400;
  font-size: 14px;
}

@media (max-width: 300px) {
}
@media (min-width: 301px) and (max-width: 600px) {
  #banner_about .breadcrumb-content {
    left: 38%;
}
#banner_about .breadcrumb-contentarabic  {
  right: 0%;
  left: unset;
 }
  #banner_about .breadcrumb-item {
    font-size: 9px;
}
#banner_about .about_heade_heading h1 {
  font-size: 20px;
}
#aboutheader_2 .aboutheader_2_text p {
  font-size: 13px;
}
#aboutheader_2 .aboutheader_2_text h2 {
  font-size: 18px;
  padding-top: 5px;
  padding-bottom: 5px;
}
#aboutheader_2 .aboutheader_2_text ul li {
  font-size: 13px;
}
#aboutheader_2 .stats-box {
  padding: 25px 15px;

}
#aboutheader_2 .stats-number {
  font-size: 30px;
}
#aboutheader_2 .stats-text {
  font-size: 16px;
  padding-top: 25px;
}
#our_history .our_history_text p {
  font-size: 13px;
}
#our_history .our_history_text h4 {
  font-size: 18px;
}
#our_history .our_history_text h4 span {
  font-size: 18px;
}
#our_history .milestone-content p {
  font-size: 13px;
  padding-top: 8px;
}
#our_history .nav-pills .nav-link {
  font-size: 20px;
  border-right: 1px solid transparent;
}
#our_history .milestone-content {
  padding-left: 0px;
}
#our_history .milestone-content h6 {
  font-size: 16px;
}
#our_history .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
#our_history .milestone-content img {
  width: 100%;
  height: 360px;
  margin-right: 0px;
}
	#our_history .milestone-contentarabic img {
    margin-right: 0px;
    margin-left: 0px;
}
#aboutheader_4 .accordion-button {
  font-size: 15px;
}
#aboutheader_4 .accordion-button::before {
  font-size: 20px;
}
#aboutheader_4 .accordion-body {
  font-size: 12px;
}
#banner_about .about_heade_heading_detailsBOD h1 {
  font-size: 17px;
}
}

@media (min-width: 601px) and (max-width: 991px) {
  #banner_about .breadcrumb-content {
    left: 38%;
}
#banner_about .breadcrumb-contentarabic  {
  right: 1%;
  left: unset;
 }
  #banner_about .breadcrumb-item {
    font-size: 10px;
}
#banner_about .about_heade_heading h1 {
  font-size: 26px;
}
#aboutheader_2 .aboutheader_2_text p {
  font-size: 15px;
}
#aboutheader_2 .aboutheader_2_text h2 {
  font-size: 24px;
  padding-top: 5px;
  padding-bottom: 5px;
}
#aboutheader_2 .aboutheader_2_text ul li {
  font-size: 15px;
}
#aboutheader_2 .stats-box {
  padding: 28px 28px;

}
#aboutheader_2 .stats-number {
  font-size: 36px;
}
#aboutheader_2 .stats-text {
  font-size: 16px;
  padding-top: 25px;
}
#our_history .our_history_text p {
  font-size: 15px;
}
#our_history .our_history_text h4 {
  font-size: 23px;
}
#our_history .our_history_text h4 span {
  font-family: var(--Mulish-font-family);
  color: var(--nav-color);
  font-weight: 900;
  font-size: 23px;
}
#our_history .milestone-content p {
  font-size: 15px;
  padding-top: 8px;
}
#our_history .nav-pills .nav-link {
  font-size: 24px;
}
#our_history .milestone-content img {
  width: 190px;
  height: 190px;
  margin-right: 15px;
}
#aboutheader_4 .accordion-button {
  font-size: 18px;
}
#aboutheader_4 .accordion-button::before {
  font-size: 23px;
}
#banner_about .about_heade_heading_detailsBOD h1 {
  font-size: 20px;
}
}

@media (min-width: 992px) and (max-width: 1028px) {
  #banner_about .breadcrumb-content {
    top: 30%;
    left: 38%;
}
#banner_about .breadcrumb-contentarabic  {
  right: 6%;
  left: unset;
 }
#banner_about .breadcrumb-contentBOD {
  top: 30%;
  left: 60%;
}
  #banner_about .breadcrumb-item {
    font-size: 10px;
}
#banner_about .about_heade_heading h1 {
  font-size: 26px;
}
#our_history .nav-pills .nav-link {
  font-size: 26px;
}
#aboutheader_2 .stats-number {
  font-size: 46px;
}
}
@media (min-width: 1029px) and (max-width: 1400px) {

}

@media (min-width: 1401px) and (max-width: 1440px) {
  #banner_about .breadcrumb-content {
    top: 30%;
    left: 38%;
}
#banner_about .breadcrumb-contentBOD {
  top: 30%;
  left: 57%;
}
#banner_about .breadcrumb-contentarabic  {
  /*right: 38%;*/
  left: unset;
 }
}
@media (min-width: 1441px) {
  #banner_about .breadcrumb-content {
    top: 30%;
    left: 38%;
}
#banner_about .breadcrumb-contentBOD {
  top: 30%;
  left: 56%;
}
#banner_about .breadcrumb-contentarabic  {
  /*right: 38%;*/
  left: unset;
 }

}
/*********************************************** END PAGE About Us *************************************************/

/*********************************************** START PAGE SERVICES *************************************************/

#aboutheader_2 .service-box {
    text-align: center;
    padding: 30px;
}
#aboutheader_2  .service-box .servicesimg {
    max-width: 110px; 
    height: 88px;
    margin-bottom: 22px;
}
#aboutheader_2  .service-box h6 {
    font-family: var(--nav-font);
    color: var(--nav-color);
    font-weight: 900;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform:capitalize;
}
#aboutheader_2 .service-box p {
    font-family: var(--Mulish-font-family);
    color: #484848;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0%;
    text-align: justify;
}

@media (max-width: 300px) {
}
@media (min-width: 301px) and (max-width: 600px) {
 
#aboutheader_2 .service-box {
  padding: 5px;
}
#aboutheader_2 .service-box .servicesimg {
  max-width: 80px;
  height: 65px;
  margin-bottom: 15px;
}
#aboutheader_2 .service-box h6 {
  font-size: 17px;
}
#aboutheader_2 .service-box p {
  font-size: 13px;
}
}

@media (min-width: 601px) and (max-width: 991px) {
  #aboutheader_2 .service-box h6 {
    font-size: 20px;
}
#aboutheader_2 .service-box {
  padding: 15px;
}
#aboutheader_2 .service-box p {
  font-size: 15px;
}

}

@media (min-width: 992px) and (max-width: 1028px) {
  #aboutheader_2 .service-box h6 {
    font-size: 20px;
}
#aboutheader_2 .service-box {
  padding: 15px;
}
}
@media (min-width: 1029px) and (max-width: 1400px) {

}

@media (min-width: 1401px) and (max-width: 1440px) {
}
@media (min-width: 1441px) {


}
/*********************************************** END PAGE SERVICES *************************************************/


/*********************************************** START PAGE SERVICES DETAILS  *************************************************/
#banner_about .breadcrumb-contents {
    position: absolute;
    top: 30%;
    left: 38%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
  }
  #banner_about .about_heade_heading_details h1{
    font-family: var(--nav-font);
    color: #fff;
    font-weight: 800;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  #aboutheader_2 .services_detailsimg img {
    height: 285px;
    object-fit: cover;
  }

  @media (max-width: 300px) {
  }
  @media (min-width: 301px) and (max-width: 600px) {
    #banner_about .breadcrumb-contents {
      position: absolute;
      top: 30%;
      left: 51%;
      width: 90%;
  }
  #banner_about .about_heade_heading_details h1 {
    font-size: 17px;
    text-align: left;
}
  }

  @media (min-width: 601px) and (max-width: 991px) {
    #banner_about .breadcrumb-contents {
      position: absolute;
      top: 30%;
      left: 55%;
      width: 100%;
  }
  #banner_about .about_heade_heading_details h1 {
    font-size: 20px;
    text-align: left;
}

  }

  @media (min-width: 992px) and (max-width: 1028px) {
  }
  @media (min-width: 1029px) and (max-width: 1400px) {

  }

  @media (min-width: 1401px) and (max-width: 1440px) {
  }
  @media (min-width: 1441px) {
    #banner_about .breadcrumb-contents {
      top: 30%;
      left: 40%;
     
  }

  }
 /*********************************************** END PAGE SERVICES DETAILS  *************************************************/
 /*********************************************** START PAGE OUR COURSES  *************************************************/
 #aboutheader_2  .search-container {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}
#aboutheader_2 .filter-options {
  display: none;
}
#aboutheader_2 .search-input {
  flex-grow: 1;
  border-radius: 25px;
  padding: 8px 20px;
  border: 1px solid #cccccccc;
  font-family: var(--nav-font);
  font-weight: 600;
  color: #000;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
}
#aboutheader_2  .search-input::placeholder {
  font-family: var(--nav-font);
  color: #b7adad;
  font-weight: 700;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
}
#aboutheader_2 .filter-btn {
  border: 1px solid transparent;
  padding: 6px 15px;
  background: transparent;
}
#aboutheader_2 .filterimg {
  height: 25px;
}
#aboutheader_2 .search-btn {
  border: 1px solid #f9a825;
  border-radius: 25px;
  padding: 10px 45px;
  background: transparent;
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
}
#aboutheader_2 .search-btn:hover {
  background: #f9a825;
  color: white;
}
#aboutheader_2 .dropdown-select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 30px;
  background-color: white;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  appearance: none; /* Hides default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Set custom SVG arrow as background */
  background-image: url("../images/weui_arrow-filled.svg");

  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px; /* Adjust as needed */
  cursor: pointer;
}

#ourcourses_3  .course-card {
  background-color: #fab963; /* Orange background */
  padding: 20px 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--nav-color);
  min-height: 120px;
  border: 1px solid #d98400;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}
#ourcourses_3 .course-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#ourcourses_3 .course-title {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
#ourcourses_3 .course-detail {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
#ourcourses_3 .course-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  text-decoration: none;
  color: var(--nav-color);
  font-weight: bold;
}
#ourcourses_3  .course-link img {
  width: 18px;
}
#ourcourses_3  .divider {
  height: 100px;
  width: 1px;
  background-color: var(--nav-color);
  margin: 0 15px;
}
#ourcourses_3  .course-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#ourcourses_3    .course-icon img {
  width: 70px;
  height: 70px;
}

#ourcourses_3  .course-link .Courses_Detail {
  color: var(--nav-color);
  text-decoration: none;
  font-family: var(--Mulish-font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 5px; /* Space between text and icon */
  margin-top: 2px;
  transition: color 0.3s ease-in-out;
}

#ourcourses_3  .course-link .Courses_Detail img {
  width: 22px; /* Adjust SVG size */
  height: 22px;
  transition: filter 0.3s ease-in-out;
}

#ourcourses_3 .course-link .Courses_Detail:hover {
  text-decoration: underline;
  color: #fff;
}

/* Change SVG color on hover */
#ourcourses_3 .course-link .Courses_Detail:hover img {
  filter: brightness(0) invert(1);
}
#ourcourses_3  .course-hartim {
  width: 30px;
  height: 28px;
}
#ourcourses_3  .course-hartimg:hover {
  filter: brightness(0) invert(1);
}


@media (max-width: 300px) {
}
@media (min-width: 301px) and (max-width: 600px) {
  #aboutheader_2 .search-btn {
    font-size: 13px;
}
#ourcourses_3 .course-title {
  font-size: 14px;
}
#ourcourses_3 .course-detail {
font-size: 12px;
}
#ourcourses_3 .course-link .Courses_Detail {
  font-size: 12px;
}
#aboutheader_2  .search-input::placeholder {
  font-size: 13px;
}
#aboutheader_2 .search-input {
  font-size: 13px;
  padding: 5px 20px;

}
#aboutheader_2 .search-container {
  flex-wrap: wrap;
  gap: 15px; /* Adjust spacing */
}

#aboutheader_2 .search-input,
#aboutheader_2 .filter-btn {
  flex-grow: 1; /* Make input and filter button take full width */
}

#aboutheader_2 .search-btn {
  width: 100%; /* Search button on a new line with full width */
}
#aboutheader_2 .dropdown-select {
  font-size: 12px;
}
#ourcourses_3 .course-icon img {
  width: 55px;
  height: 55px;
}
#ourcourses_3 .course-card {
  padding: 15px 10px;
}
#ourcourses_3 .course-link .Courses_Detail img {
  width: 18px;
  height: 18px;
  transition: filter 0.3s ease-in-out;
}
}

@media (min-width: 601px) and (max-width: 991px) {
  #ourcourses_3 .course-title {
    font-size: 16px;
}
#ourcourses_3 .course-detail {
  font-size: 13px;
}

}

@media (min-width: 992px) and (max-width: 1028px) {
  #ourcourses_3 .course-title {
    font-size: 16px;
}
}
@media (min-width: 1029px) and (max-width: 1400px) {

}

@media (min-width: 1401px) and (max-width: 1440px) {
}
@media (min-width: 1441px) {


}
/*********************************************** END PAGE OUR COURSES  *************************************************/
/*********************************************** START PAGE OUR COURSES TBS PGAE  *************************************************/
#aboutheader_2 .instructor-info .course-price {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 900;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
}
#aboutheader_2 .instructor-info p {
  font-family: var(--nav-font);
  color: #000000;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}
#aboutheader_2 .instructor-info h5 {
  color: #000000;
  font-family: var(--Mulish-font-family);
  font-weight: 800;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
}
#aboutheader_2 .instructor-info h6 {
  color: #000000;
  font-family: var(--Mulish-font-family);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0%;
}
#aboutheader_2 .instructor-info .instructor-img {
  width: 45px;
  height: 45px;
	object-fit: cover;
  border-radius: 50%;
}
img.course-image {
  height: 190px;
}
#aboutheader_2 .course-meta {
  background: #fab963;
  padding: 7px;
  text-align: center;
}
#aboutheader_2 .course-meta h6 {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 600;
  font-size: 14px;
  line-height: 18.67px;
  letter-spacing: 0%;
  text-align: center;
}
#aboutheader_2 .course-meta p {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}



#courses_tabs .nav-tabs {
  background: #517fa2;
  border-radius: 20px;
  border: none !important;
  overflow: hidden; /* Ensures rounded edges work properly */
}

#courses_tabs .nav-tabs .nav-link {
  background: transparent;
  color: white;
  border-radius: 0px;
  padding:  8px 30px;
  border-right: 1px solid var(--nav-color) !important;
  font-family: var(--nav-font);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
}

/* ✅ Only applies border-radius to the FIRST active tab */
#courses_tabs .nav-tabs .nav-item:first-child .nav-link.active {
  border-top-left-radius: 20px;
}

/* ✅ Ensures the last tab has a clean edge */
#courses_tabs .nav-tabs .nav-item:last-child .nav-link {
  border-right: none; /* Removes extra border on last tab */
}
#courses_tabs .nav-tabs .nav-link:hover {
  background: var(--nav-color);
  color: #fff;
  border: 1px solid var(--nav-color) !important;
}
#courses_tabs .nav-tabs .nav-link.active {
  background: var(--nav-color);
  color: #fff;
  border: 1px solid var(--nav-color) !important;
}

#courses_tabs .tab-content {
  border: none;
  padding: 25px 5px;
  background: white;
}
#courses_tabs .tab_content h6 {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 800;
  font-size: 23px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
#courses_tabs .tab_content p, #courses_tabs .tab_content span  {
  font-family: var(--nav-font);
  color: #484848;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
}
#courses_tabs .tab_content ul {
  list-style: none; /* Removes default list bullets */
  padding: 0;
}

#courses_tabs .tab_content ul li {
  position: relative;
  padding-left: 30px; /* Space for the custom icon */
  margin-bottom: 8px; /* Adjust spacing */
  font-family: var(--nav-font);
  color: #484848;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
}

#courses_tabs .tab_content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px; /* Adjust positioning */
  width: 15px; /* Adjust icon size */
  height: 15px;
  background-image: url("../images/Layer_1\ \(5\).svg"); /* Replace with your SVG */
  background-size: contain;
  background-repeat: no-repeat;
}
 .bord_bottm {
  border-bottom: 1px solid #d7d7d7;
}

/**************************** Tab Location *************************************/

#courses_tabs .tab_content .contact-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  color: #fab963; /* Matching icon color */
}

#courses_tabs .tab_content .contact-item h5 {
  color: var(--nav-color);
  font-family: var(--nav-font);
  font-weight: 600;
  font-size: 15px;
  line-height: 16px;
  letter-spacing: 0%;
}
#courses_tabs .tab_content .contact-item p {
  color: #000000 !important;
  font-family: var(--nav-font) !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  line-height: 16px !important;
  letter-spacing: 0% !important;
}
#aboutheader_2 .date h6{
  font-family: var(--nav-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;

}
@media (max-width: 300px) {
}
@media (min-width: 301px) and (max-width: 600px) {
  #aboutheader_2 .instructor-info .course-price {
    font-size: 20px;
}
#aboutheader_2 .instructor-info p {
  font-size: 13px;
}
#aboutheader_2 .instructor-info h5 {
  font-size: 13px;
}
#aboutheader_2 .instructor-info h6 {
  font-size: 15px;
}
#courses_tabs .nav-tabs .nav-link {
  padding: 5px 18px;
   font-size: 10px;
}
#courses_tabs .tab_content h6 {
  font-size: 18px;
}
#courses_tabs .tab_content p {
  font-size: 13px;
}
#courses_tabs .tab_content ul li {
  font-size: 12px;
}
#aboutheader_2 .course-meta h6 {
  font-size: 12px;
}
#aboutheader_2 .course-meta p {
  font-size: 10px;
}
#courses_tabs .tab-content {
  border: none;
  padding: 5px 5px;
}
#courses_tabs .tab_content .contact-item h5 {
  font-size: 13px;
}
#courses_tabs .tab_content .contact-item p {
  font-size: 11px !important;
}
#courses_tabs .nav-tabs {
  border-radius: 10px;
}
#courses_tabs .nav-tabs .nav-item:first-child .nav-link.active {
  border-top-left-radius: 10px;
}
#aboutheader_2 .date h6{
  font-size: 14px;

}
	#courses_tabs .nav-tabs .nav-item{
		width:50%;
	}
}

@media (min-width: 601px) and (max-width: 991px) {
  #aboutheader_2 .instructor-info .course-price {
    font-size: 24px;
}
#aboutheader_2 .instructor-info p {
  font-size: 15px;
}
#aboutheader_2 .instructor-info h6 {
  font-size: 15px;
}
#courses_tabs .nav-tabs .nav-link {
  padding: 8px 15px;
  font-size: 14px;
}
#courses_tabs .tab_content h6 {
  font-size: 21px;
}
#courses_tabs .tab_content p {
  font-size: 15px;
}
#courses_tabs .tab_content ul li {
  font-size: 15px;
}
img.course-image {
    height: 160px;
    object-fit: cover;
}
#courses_tabs .tab_content .contact-item h5 {
    font-size: 14px;
}


#courses_tabs .tab_content .contact-item p {
    font-size: 12px !important;
}

}

@media (min-width: 992px) and (max-width: 1028px) {
}
@media (min-width: 1029px) and (max-width: 1400px) {

}

@media (min-width: 1401px) and (max-width: 1440px) {
}
@media (min-width: 1441px) {


}



/*********************************************** START PAGE CONTACT US PGAE  *************************************************/

#form_section_lr .form_heading {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 900;
  font-size: 26px;
  line-height: 25px;
  letter-spacing: 0%;
}
#form_section_lr .form_description {
  font-family: var(--nav-font);
  color: #484848;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
}
#form_section_lr .form-control {
  border-radius: 40px;
  border: 1px solid #cccccc;
  padding: 0.65rem 0.75rem;
}
#exampleFormControlTextarea1 {
  border-radius: 20px !important;
}

#form_section_lr .form-label {
  font-family: var(--nav-font);
  color: #000;
  font-weight: 700;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  padding-left: 20px;
  margin-bottom: 0px;
}
#form_section_lr .radiolable {
  font-family: var(--nav-font);
  color: #000;
  font-weight: 400;
  font-size: 17px;
  line-height: 38px;
  letter-spacing: 0%;
  text-transform: capitalize;
}

#form_section_lr .vr {
  height: 85%;
  margin-top: 60px;
  width: 2px;
  background-color: #ddd;
}

#form_section_lr .forgetpass {
  font-family: var(--nav-font);
  color: #000;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
}
#form_section_lr .forgetpass:hover {
  color: #fab963;
}

/************************************************ SECTION 2 ****************************************/

#contact_us_sec .contact-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  color: #fab963; /* Matching icon color */
}

 #contact_us_sec .contact-item h5 {
  color: var(--nav-color);
  font-family: var(--nav-font);
  font-weight: 600;
  font-size: 15px;
  line-height: 16px;
  letter-spacing: 0%;
}
 #contact_us_sec .contact-item p {
  color: #000000 !important;
  font-family: var(--nav-font) !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  line-height: 16px !important;
  letter-spacing: 0% !important;
}
#contact_us_sec .ratio_location iframe{
  height: 530px;
  width: 100%;
}
#contact_us_sec .mainlocationheading{
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 900;
  font-size: 21px;
  line-height: 16px;
  letter-spacing: 0%;
	text-transform:capitalize;

}
#contact_us_sec .social-icons_contact a {
  color: #D98400; 
  font-size: 20px;
  margin: 0 8px;
  text-decoration: none;
  transition: 0.3s;
}
#contact_us_sec .social-icons_contact a:hover {
  color: var(--nav-color); 
}

@media (max-width: 300px) {
}
@media (min-width: 301px) and (max-width: 600px) {
  #form_section_lr .form-label {
    font-size: 14px;
}
#contact_us_sec .mainlocationheading {
  font-size: 16px;
}
#contact_us_sec .ratio_location iframe{
height: 460px;
}
#contact_us_sec .contact-item h5 {
font-size: 13px;
}
#contact_us_sec .contact-item p {
font-size: 11px !important;
}
#contact_us_sec .contact-icon {
  width: 16px;
  height: 16px;
}
#contact_us_sec .social-icons_contact a {
  font-size: 16px;
}

#form_section_lr .form_heading {
  font-size: 18px;
}
#form_section_lr .form_description {
  font-size: 12px;
}
#form_section_lr .radiolable {
  font-size: 14px;
}
#form_section_lr .forgetpass {
  font-size: 14px;
}
}

@media (min-width: 601px) and (max-width: 991px) {
  #contact_us_sec .mainlocationheading {
    font-size: 18px;
}
#contact_us_sec .ratio_location iframe{
  height: 535px;
}
#contact_us_sec .contact-item h5 {
  font-size: 14px;
}
#contact_us_sec .contact-item p {
  font-size: 12px !important;
}
#form_section_lr .form_heading {
  font-size: 22px;
}
#form_section_lr .form_description {
  font-size: 13px;
}
#form_section_lr .radiolable {
  font-size: 16px;
}
}

@media (min-width: 992px) and (max-width: 1028px) {
  #contact_us_sec .ratio_location iframe{
    height: 585px;
  }
  #form_section_lr .form_heading {
    font-size: 24px;
}
}
@media (min-width: 1029px) and (max-width: 1400px) {

}

@media (min-width: 1401px) and (max-width: 1440px) {
}
@media (min-width: 1441px) {


}

/*********************************************** START MY COURSES PGAE  *************************************************/
#mycourses .tabsheading {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0%;
  vertical-align: middle;
}
/* #mycourses .nav-pills .nav-link.active,
#mycourses .nav-pills .show > .nav-link,
#mycourses .nav-pills .nav-link:hover {
    background-color: #d98400;
    border-radius: 0;
    transition: 0.3s all;
} */

#mycourses .nav-pills .nav-link {
  display: block;
  border-bottom: 1px solid #d98400;
  text-decoration: none;
  background: #fab963;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
  text-align: start;
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 700;
  font-size: 13px;
  line-height: 25px;
  letter-spacing: 0%;
  vertical-align: middle;
}

#mycourses .nav-pills .nav-link:nth-last-child() {
  margin-top: 30px;
}

#mycourses .nav-pills {
  background-color: #fab963;
  border-radius: 12px;
  /* height: 375px; */
}

#mycourses .course-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 15px;
  border: 2px solid #fab963;
}

#mycourses .course-card .course-img {
  border-radius: 20px;
  width: 100px;
  height: 120px;
  object-fit: contain;
}

#mycourses .course-content {
  margin-left: 15px;
}

#mycourses .course-card .course-content h5 {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 700;
  font-size: 23px;
  line-height: 35px;
  letter-spacing: 0%;
}
#mycourses .course-card p {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0%;
  margin: 5px 0 0;
}

@media (min-width: 301px) and (max-width: 600px) {
  #mycourses .course-card {
  padding: 10px 10px;
}
#mycourses .course-card .course-img {
  width: 95px;
  height: 100%;
}
#mycourses .course-card .course-content h5 {
font-size: 18px;
line-height: 25px;
margin-bottom: 0;
}
#mycourses .course-card p {
font-size: 12px;
margin: 2px 0 0;
}
}
@media (min-width: 601px) and (max-width: 991px) {
  #mycourses .course-card .course-img {
    height: 100%;
  }
  #mycourses .course-card .course-content h5 {
    font-size: 22px;
    line-height: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1028px) {
  #mycourses .course-card .course-content h5 {
    font-size: 20px;
    margin-bottom: 0px;
  }
  #mycourses .course-card p {
    font-size: 13px;
    margin: 2px 0 0;
  }
}
@media (min-width: 1029px) and (max-width: 1280px) {
}
@media (min-width: 1281px) and (max-width: 1400px) {
}
@media (min-width: 1401px) and (max-width: 1440px) {
}
@media (min-width: 1441px) {
}

.calenderimg {
  width: 19px;
  height: 23px;
}
#mycourses .tabs-icon {
  width: 17.29px;
  height: 22px;
}

/*********************************************** START Executive PGAE  *************************************************/
.executivetext p {
  font-family: var(--nav-font);
  color: #484848;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0%;
}
#teams .card-img-top {
  object-fit: cover;
  height: 250px;
  border-radius: 20px;
}
#teams .card-body i {
  color: #000;
  font-size: 26px;
}
#teams .card-text {
  font-family: var(--nav-font);
  color: #484848;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
}
#teams .card-title {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 700;
  font-size: 21px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
}
#teams .card-subtitle {
  font-family: var(--nav-font);
  color: #d98400;
  font-weight: 400;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
}
@media (min-width: 301px) and (max-width: 600px) {
  #teams .card-img-top {
    object-fit: cover;
    height: 100%;
  }
  #teams .card-title {
    font-size: 18px;
  }
  #teams .card-subtitle {
    font-size: 15px;
  }
  #teams .card-body i {
    color: #000;
    font-size: 22px;
  }
  #teams .card-text {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .executivetext p {
    font-size: 16px;
  }
}
@media (min-width: 601px) and (max-width: 991px) {
  #teams .card-img-top {
    object-fit: cover;
    height: 310px;
  }
  .executivetext p {
    font-size: 17px;
  }

}
@media (min-width: 992px) and (max-width: 1028px) {
  #teams .card-img-top {
    object-fit: cover;
    height: 232px;
  }
  #teams .card-text {
    font-size: 12px;
  }
  #teams .card-title {
    font-size: 18px;
  }
  #teams .card-subtitle {
    font-size: 13px;
  }
  .executivetext p {
    font-size: 18px;
}
}
@media (min-width: 1441px) {
  #teams .card-img-top {
    object-fit: cover;
    height: 270px;
  }
}


/****************************************** Payment Details Page ***********************************************/

#aboutheader_2 .course-card_pay {
  background-color: #ffffff;
  /* Blue background */
  border-radius: 15px;
  padding: 20px 15px;
  color: rgb(11, 2, 59);
  border: 2px solid #fab963;
}

#aboutheader_2 .course-card_pay .paycardimg {
  border-radius: 6px;
  width: 100px;
  height: 135px;
  object-fit: contain;
}

#aboutheader_2 .course-content {
  margin-left: 15px;
}

#aboutheader_2 .course-card_pay h5 {
  font-family: Roboto;
  color: #073655;
  font-weight: 700;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0%;
  margin: 0;
}
#aboutheader_2 .course-card_pay h6 {
  font-family: Roboto;
  color: #d98400;
  font-weight: 900;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
}

#aboutheader_2 .course-card_pay p {
  font-family: Roboto;
  color: #073655;
  font-weight: 500;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0%;
  margin: 5px 0 0;
  width: 75%;
}

#aboutheader_2 .course-card_pay .datetext,
#aboutheader_2 .course-card_pay .arabictext {
  font-family: Roboto;
  color: #073655;
  font-weight: 500;
  font-size: 13px;
  line-height: 25px;
  letter-spacing: 0%;
}

#aboutheader_2 .course-card_pay .divider {
  width: 1px;
  height: 20px;
  background-color: #fab963;
  margin: 0 15px;
}
#aboutheader_2 .summary_pay,
#aboutheader_2 .credit-info_pay {
  background-color: #fab963;
  border-radius: 15px;
}
#aboutheader_2 .summary_pay h4 {
  font-family: Roboto;
  color: #073655;
  font-weight: 900;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}

#aboutheader_2 .summary_pay .sub_summary h5 {
  font-family: Roboto;
  color: #073655;
  font-weight: 700;
  font-size: 18px;
  line-height: 131%;
  letter-spacing: 0%;
  text-align: right;
  text-transform: uppercase;
}
#aboutheader_2 .summary_pay .sub_summary h6 {
  font-family: Roboto;
  color: #073655;
  font-weight: 500;
  font-size: 16px;
  line-height: 131%;
  letter-spacing: 0%;
}
#aboutheader_2 .summary_pay .total_summary h5 {
  color: #073655;
  font-family: Roboto;
  font-weight: 700;
  font-size: 19px;
  line-height: 131%;
  letter-spacing: 0%;
  text-align: right;
  text-transform: uppercase;
}
#aboutheader_2 .summary_pay .total_summary h6 {
  color: #073655;
  font-family: Roboto;
  font-weight: 700;
  font-size: 17px;
  line-height: 131%;
  letter-spacing: 5%;
}

#aboutheader_2 .credit-info_pay .accordion-button h5 {
  font-family: Roboto;
  color: #073655;
  font-weight: 500;
  font-size: 19px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
}

#aboutheader_2 .credit-info_pay .accordion-button:not(.collapsed) {
  color: #fab963;
  background-color: transparent;
  box-shadow: none;
  border: 0;
}
#aboutheader_2 .card-info .accordion,
#aboutheader_2 .accordion-item {
  background-color: #fab963;
  border-color: transparent;
}
#aboutheader_2 .credit-info_pay .accordion-button:focus {
  box-shadow: none;
}
#aboutheader_2 .credit-info_pay .accordion-button {
  background-color: #fab963;
  border-bottom: 1px solid #d98400 !important;
}
#aboutheader_2 .credit-info_pay .credit-card .form-control {
  border-radius: 30px;
  border: none;
}

#aboutheader_2 .credit-info_pay .accordion-button:not(.collapsed)::after {
  background-image: url(asset/images/Vectorangle.svg);
  font-size: 14px;
}
#aboutheader_2 .credit-info_pay .accordion-button::after {
  background-image: url(asset/images/Vectorangle.svg);
}
#aboutheader_2 .credit-info_pay .credit-card .form-control::placeholder {
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
}
#aboutheader_2 .credit-info_pay .credit-card .form-control:focus {
  background-color: #fff;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}
#aboutheader_2 .credit-info_pay .terms {
  font-family: Roboto;
  color: #073655;
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
#aboutheader_2 .credit-info_pay a {
  text-decoration: none;
  color: #073655;
}
#aboutheader_2 .credit-info_pay i {
  background-color: black;
  border-radius: 50%;
  color: orange;
  width: 24px;
  height: 23px;
  line-height: 22px;
  padding: 0 0 0px 4px;
}
#aboutheader_2 .credit-info_pay .cc-img {
  position: absolute;
  bottom: 0;
  right: 16px;
  top: 24%;
}
#aboutheader_2 .credit-info_pay .card-label {
  font-family: Roboto;
  color: #073655;
  font-weight: 700;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0%;
  padding-left: 10px;
}
#aboutheader_2 .pay_cardinttextbottom p {
  font-family: Roboto;
  color: #000;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
}

#aboutheader_2  .custom-btn_pay {
  background-color: #ffffff;
  color: #073655;
  font-family: Roboto;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  border-radius: 50px;
  border: 1px solid #ffffff;
  padding: 12px 30px;
  font-weight: bold;
  transition: 0.5s ease-in-out;
}
#aboutheader_2  .custom-btn_pay:hover {
  background-color: transparent;
  border: 1px solid #fff;
  color: #073655;
}
@media (min-width: 301px) and (max-width: 600px) {
  #aboutheader_2 .course-card_pay .divider {
    display: none;
  }
  #aboutheader_2 .course-card_pay h5 {
    font-size: 16px;
    line-height: 25px;
  }
  #aboutheader_2 .course-card_pay h6 {
    font-size: 13px;
  }
  #aboutheader_2 .course-card_pay p {
    font-size: 11px;
    margin: 0px 0 0;
    width: 100%;
  }
  #aboutheader_2 .course-card_pay .paycardimg {
    width: 100px;
    height: 155px;
  }
  #aboutheader_2 .summary_pay h4 {
    font-size: 19px;
  }
  #aboutheader_2 .credit-info_pay .accordion-button h5 {
    font-size: 15px;
  }
  #aboutheader_2 .pay_cardinttextbottom p {
    font-size: 10px;
  }

  #aboutheader_2 .credit-info_pay .terms {
    font-size: 10px;
  }
  #aboutheader_2 .summary_pay .sub_summary h5 {
    font-size: 16px;
  }
  #aboutheader_2 .summary_pay .total_summary h5 {
    font-size: 17px;
  }
  #aboutheader_2 .summary_pay .total_summary h6 {
    font-size: 16px;
  }
  #aboutheader_2 .credit-info_pay .cc-img {
    position: absolute;
    bottom: 0;
    right: 6px;
    top: 16%;
  }
  #aboutheader_2 .custom-btn_pay{
      font-size: 14px;
  }
}
@media (min-width: 601px) and (max-width: 991px) {
  #aboutheader_2 .course-card_pay .paycardimg {
    width: 145px;
    height: 145px;
  }
  #aboutheader_2 .summary_pay h4 {
    font-size: 22px;
  }
  #aboutheader_2 .credit-info_pay .accordion-button h5 {
    font-size: 18px;
  }
  #aboutheader_2 .pay_cardinttextbottom p {
    font-size: 11px;
  }

  #aboutheader_2 .credit-info_pay .terms {
    font-size: 11px;
  }
}
@media (min-width: 992px) and (max-width: 1028px) {
}
@media (min-width: 1029px) and (max-width: 1280px) {
}
@media (min-width: 1281px) and (max-width: 1400px) {
}
@media (min-width: 1401px) and (max-width: 1440px) {
}



/****************************************** Thank You Page ***********************************************/

#aboutheader_2 .thank_you_text h6{
  font-family: Mulish;
  color: #343458;
  font-weight: 700;
  font-size: 39px;
  line-height: 146%;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  }
  #aboutheader_2 .thank_you_text p{
  color: #000;
  font-family: Roboto;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0%;
  text-align: center;
  }

  #aboutheader_2 .thnkuimg{
   width: 122px;
   height: 119px;
  }

  @media (max-width: 300px) {
}
@media (min-width: 301px) and (max-width: 600px) {
  #aboutheader_2 .thank_you_text h6{
  font-size: 26px;
  }
  #aboutheader_2 .thank_you_text p{
  font-size: 14px;
  }

  #aboutheader_2 .thnkuimg{
   width: 90px;
   height: 80px;
  }
}

@media (min-width: 601px) and (max-width: 991px) {
  #aboutheader_2 .thank_you_text h6{
  font-size: 34px;
  }
  #aboutheader_2 .thank_you_text p{
  font-size: 16px;
  }

  #aboutheader_2 .thnkuimg{
   width: 110px;
   height: 105px;
  }

}

@media (min-width: 992px) and (max-width: 1028px) {
}
@media (min-width: 1029px) and (max-width: 1400px) {

}

@media (min-width: 1401px) and (max-width: 1440px) {
}
@media (min-width: 1441px) {


}


#locations .event-card {
  border: 2px solid #f5a623;
  border-radius: 15px;
  padding: 15px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

#locations   .event-content {
  flex-grow: 1;
  /* Expands to push the button down */
}

#locations  .event-content .locationdtext {
  font-family: Roboto;
  color: #073655 !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;

}

#locations .event-card i {
  color: #f5a623;
}

#locations  .locdatebtn {
  background-color: #073655;
  border: 1px solid #073655;
  color: #fff;
  border-radius: 20px;
  padding: 10px 23px;
  font-family: Roboto;
  font-weight: 700;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  transition: 0.5s ease-in-out;

}

#locations .locdatebtn:hover {
  background-color: transparent;
  border: 1px solid #f5a623;
  color: #073655;
}


@media (max-width: 300px) {
}
@media (min-width: 301px) and (max-width: 600px) {
  #locations  .event-content .locationdtext {
    font-size: 13px;
  
  }

}

@media (min-width: 601px) and (max-width: 991px) {
  #locations  .event-content .locationdtext {
    font-size: 15px;
  
  }

}

@media (min-width: 992px) and (max-width: 1028px) {
}
@media (min-width: 1029px) and (max-width: 1400px) {

}

@media (min-width: 1401px) and (max-width: 1440px) {
}
@media (min-width: 1441px) {


}

.woocommerce-checkout .woocommerce-notices-wrapper{
  --bs-alert-bg: transparent;
    --bs-alert-padding-x: 1rem;
    --bs-alert-padding-y: 1rem;
    --bs-alert-margin-bottom: 1rem;
    --bs-alert-color: inherit;
    --bs-alert-border-color: transparent;
    --bs-alert-border: 1px solid var(--bs-alert-border-color);
    --bs-alert-border-radius: 0.375rem;
    position: relative;
    padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
    margin-bottom: var(--bs-alert-margin-bottom);
    color: var(--bs-alert-color);
    background-color: var(--bs-alert-bg);
    border: var(--bs-alert-border);
    border-radius: var(--bs-alert-border-radius);
    --bs-alert-color: #842029;
    --bs-alert-bg: #f8d7da;
    --bs-alert-border-color: #f5c2c7;
}

/* General form styling */
.woocommerce-EditAccountForm {
  font-family: var(--nav-font);
  max-width: 700px;
  margin: auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form labels */
.woocommerce-EditAccountForm label {
  font-family: var(--nav-font);
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-size: 14px;
}

/* Input fields */
.woocommerce-EditAccountForm input[type="text"],
.woocommerce-EditAccountForm input[type="email"],
.woocommerce-EditAccountForm input[type="password"] {
  font-family: var(--nav-font);
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
  transition: border-color 0.3s ease-in-out;
}

/* Input field focus */
.woocommerce-EditAccountForm input:focus {
  border-color: #f4a632;
  outline: none;
  box-shadow: 0 0 5px rgb(255, 244, 93);
}

/* Form rows layout */
.woocommerce-EditAccountForm .form-row {
  margin-bottom: 15px;
}

/* Password section */
.woocommerce-EditAccountForm fieldset {
  font-family: var(--nav-font);
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
  margin-top: 15px;
  background: #fff;
}

.woocommerce-EditAccountForm legend {
  font-family: var(--nav-font);
  font-weight: bold;
  font-size: 17px;
  color: #333;
}

/* Save button */
.woocommerce-EditAccountForm button {
  border: 2px solid #fab963;
  color: var(--nav-color);
  border-radius: 25px;
  background: #fff;
  margin-top: 10px;
  padding: 12px 34px;
  font-family: var(--nav-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  transition: 0.5s ease-in-out;
  width: 100%;
}

.woocommerce-EditAccountForm button:hover {
  background-color: #fab963;
  color: white;
}

/**************************** Address Tab My Account *****************************************/
/* Address container */
.woocommerce-Addresses {
  font-family: var(--nav-font);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 800px;
  margin: auto;
}

/* Address columns */
.woocommerce-Address {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  width: 48%; /* Adjust to fit two columns */
}

/* Address title */
.woocommerce-Address-title h2 {
  font-family: var(--nav-font);
  font-size: 18px;
  margin-bottom: 10px;
  color: #073655;
  font-weight: 700;
}

/* Edit address link */
.woocommerce-Address .edit {
  font-family: var(--nav-font);
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #073655;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.woocommerce-Address .edit:hover {
  color: #D98400;
  text-decoration: underline;
}

/* Address text */
.woocommerce-Address address {
  font-family: var(--nav-font);
  font-size: 15px;
  line-height: 1.6;
  color: #484848;

}

/**************************** Lost Password and User Name *****************************************/

/* Lost Password Form Container */
.woocommerce-ResetPassword .lost_reset_password {
  max-width: 500px !important;
  margin: 0 auto !important;
  padding: 20px !important;
  background: #fff;
  border-radius: 10px !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05) !important;
}

/* Description Text */
.custom-lost-password-form .form-description {
  font-size: 15px;
	color:#484848;
  margin-bottom: 20px;
}

/* Input Group */
.custom-lost-password-form .form-group {
  margin-bottom: 20px;
}

.custom-lost-password-form label {
  font-family: var(--nav-font);
    color: #000;
    font-weight: 700;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0%;
   
}

.custom-lost-password-form input[type="text"] {
	  font-family: var(--nav-font);
    color: #000;
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

/* Submit Button */
.woocommerce-ResetPassword .woocommerce-Button {
border: 2px solid #fab963;
    color: var(--nav-color);
background-color:transparent;
    border-radius: 25px;
    padding: 12px 34px;
    font-family: var(--nav-font);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    transition: 0.5s ease-in-out;
}
 
.woocommerce-ResetPassword  .woocommerce-Button:hover {
     background-color: #fab963;
    color: white;
}

#banner_about .breadcrumb-contentarabic  {
 /*right: 13%;*/
 left: unset;
 width: unset !important;
}

@media (max-width: 300px) {
}
@media (min-width: 301px) and (max-width: 600px) {
  
  .woocommerce-EditAccountForm {
    padding: 20px 4px;
  }

  /* Form labels */
.woocommerce-EditAccountForm label {
font-size: 13px;
}

/* Input fields */
.woocommerce-EditAccountForm input[type="text"],
.woocommerce-EditAccountForm input[type="email"],
.woocommerce-EditAccountForm input[type="password"] {
  font-size: 13px;

}
.woocommerce-EditAccountForm fieldset {
  padding: 8px;

}
.woocommerce-EditAccountForm legend {
  font-size: 15px;
}

/**************************** Address Tab My Account *****************************************/
/* Address columns */
.woocommerce-Address {
  padding: 10px;
  width: 100%; /* Adjust to fit two columns */
}

/* Address title */
.woocommerce-Address-title h2 {
  font-size: 16px;
  margin-bottom: 7px;
}
.woocommerce-Address .edit {
  font-size: 13px;
}
.woocommerce-Address address {
  font-size: 13px;;
}
/**************************** Lost Password and User Name *****************************************/
	
	/* Description Text */
.custom-lost-password-form .form-description {
  font-size: 13px;
  margin-bottom: 15px;
}


.custom-lost-password-form label {
    font-size: 13px;
   
}

.custom-lost-password-form input[type="text"] {
  font-size: 14px;
}

/* Submit Button */
.woocommerce-ResetPassword .woocommerce-Button {
    font-size: 14px;
}
 #banner_about .breadcrumb-contentarabic {
        right: 0%;
        left: unset;
    }

}


@media (min-width: 601px) and (max-width: 991px) {
 #banner_about .breadcrumb-contentarabic {
        right: 1%;
        left: unset;
    }

}

@media (min-width: 992px) and (max-width: 1028px) {
	#banner_about .breadcrumb-contentarabic {
        right: 6%;
        left: unset;
    }
}
@media (min-width: 1029px) and (max-width: 1400px) {
	
}



@media (min-width: 1401px) and (max-width: 1440px) {
	#banner_about .breadcrumb-contentarabic {
         /*right: 16%;*/
        left: unset;
}
}
@media (min-width: 1441px) {

#banner_about .breadcrumb-contentarabic {
        /*right: 25%;*/
        left: unset;
    }
}

#CsearchSection .search-results-box {
    position: absolute;
    z-index: 999;
    width: 100%;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    max-height: 250px;
    overflow-y: auto;
    margin-top: 5px;
    padding-left: 0;
}
#CsearchSectionHeader .search-results-box {
    position: absolute;
    z-index: 999;
    width: 100%;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    max-height: 250px;
    overflow-y: auto;
    margin-top: 5px;
    padding-left: 0;
}

#CsearchSection .search-results-box li {
      list-style: none;
    font-family: var(--nav-font);
    font-size: 14px;
    padding: 10px;
    color: var(--nav-color);
    cursor: pointer;
    border-bottom: 1px solid #eee;
}
#CsearchSectionHeader .search-results-box li {
      list-style: none;
    font-family: var(--nav-font);
    font-size: 14px;
    padding: 10px;
    color: var(--nav-color);
    cursor: pointer;
    border-bottom: 1px solid #eee;
}
#CsearchSection .search-results-box li:hover {
   background-color: #fab963;
    color: #fff;
}
#CsearchSectionHeader .search-results-box li:hover {
   background-color: #fab963;
    color: #fff;
}

#reviews .review-slider .slide-img {
        border-radius: 50%;
        height: 53px;
        width: 53px;
      }

      #reviews .review-slider {
        border: 2px solid #fab963;
        border-radius: 20px;
        background-color: #f5f5f5;
      }

      #reviews .review-slider .slick-next img,
      #reviews .review-slider .slick-prev img {
        height: 22px;
      }

      #reviews .review-slider .slick-next:hover,
      #reviews .review-slider .slick-prev:hover {
        background-color: #073655;
      }
      /* SVG icon becomes white using filter */
      #reviews .review-slider .slick-next:hover img,
      #reviews .review-slider .slick-prev:hover img {
        filter: brightness(0) invert(1);
        transition: filter 0.3s ease;
      }

      #reviews .review-slider .slick-next,
      #reviews .review-slider .slick-prev {
        font-size: 0;
        line-height: 0;
        position: absolute;
        top: 50%;
        display: block;
        width: 50px;
        height: 50px;
        color: #333333;
        background-color: #cdcdcd;
        border-radius: 50%;
      }

      #reviews .review-slider .slick-next:before,
      #reviews .review-slider .slick-prev:before {
        display: none;
      }

      #reviews .review-slider h4 {
        font-family: Roboto;
        font-weight: 500;
        font-size: 17px;
        letter-spacing: 0%;
        vertical-align: middle;
        color: #000000;
      }

      #reviews .review-slider .star-rating i {
        font-size: 12px;
      }

      #reviews .review-slider h6 {
        color: #073655;
        font-family: Roboto;
        font-weight: 400;
        font-size: 13px;
        letter-spacing: 0%;
        vertical-align: middle;
      }

      #reviews .review-slider p {
        color: #000000;
        font-family: Roboto;
        font-weight: 400;
        font-size: 15px;
        line-height: 100%;
        letter-spacing: 0%;
      }

      #reviews .review-slider h3 {
        color: #2424a9;
      }

      @media (min-width: 301px) and (max-width: 600px) {
        #reviews .review-slider .slick-next img, #reviews .review-slider .slick-prev img {
          height: 13px;
        }

        #reviews .review-slider .slick-next, #reviews .review-slider .slick-prev {
          width: 30px;
          height: 30px;
        }

        #reviews .review-slider .slick-next {
          right: -12px;
        }

        #reviews .review-slider .slick-prev {
          left: -12px;
        }
		  #reviews .review-slider h4 {
         font-size: 13px;

         }
		  
		  #reviews .review-slider h6 {
			font-size: 11px;
		}
		  #reviews .review-slider p {
			font-size: 11px;
		}
      }

      @media (min-width: 601px) and (max-width: 991px) {
        #reviews .review-slider .slick-next,
        #reviews .review-slider .slick-prev {
          font-size: 0;
          line-height: 0;
          position: absolute;
          top: 50%;
          display: block;
          width: 40px;
          height: 40px;
        }

        #reviews .review-slider .slick-next img,
        .slick-prev img {
          height: 22px;
        }

        #reviews .review-slider .slick-next {
          right: -11px;
        }

        #reviews .review-slider .slick-prev {
          left: -11px;
        }

        #reviews .review-slider h4 {
          font-size: 13px;
		padding-top: 7px;
        }

        #reviews .review-slider .star-rating i {
          font-size: 7px;
        }

        #reviews .review-slider .slick-next img,
        #reviews .review-slider .slick-prev img {
          height: 14px;
        }

        .slick-next,
        .slick-prev {
          width: 30px;
          height: 30px;
        }

        #reviews .review-slider h6 {
          font-size: 10px;
        }

        #reviews .review-slider p {
          font-size: 12px;
        }
      }

      @media (min-width: 992px) and (max-width: 1028px) {
        #reviews .review-slider .slick-next,
        #reviews .review-slider .slick-prev {
          font-size: 0;
          line-height: 0;
          position: absolute;
          top: 50%;
          display: block;
          width: 50px;
          height: 50px;
        }

        #reviews .review-slider .slick-next img,
        #reviews .review-slider .slick-prev img {
          height: 22px;
        }

        #reviews .review-slider .slick-next {
          right: -11px;
        }

        #reviews .review-slider .slick-prev {
          left: -11px;
        }

        #reviews .review-slider h4 {
          font-size: 14px;
        }

        #reviews .review-slider .star-rating i {
          font-size: 7px;
        }

        #reviews .review-slider .slick-next img,
        #reviews .review-slider .slick-prev img {
          height: 14px;
        }

        #reviews .review-slider .slick-next,
        #reviews .review-slider .slick-prev {
          width: 30px;
          height: 30px;
        }

        #reviews .review-slider h6 {
          font-size: 10px;
        }

        #reviews .review-slider p {
          font-size: 12px;
        }
      }


.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    background-color: #ffffff;
    color: #073655;
    font-family: Roboto;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    border-radius: 50px;
    border: 1px solid #ffffff;
    padding: 12px 30px;
    font-weight: bold;
    transition: 0.5s ease-in-out;
}

.woocommerce #payment #place_order:hover {
	
	background-color: #FAB963;
    border: 1px solid #fff;
    color: #073655;
}
/* Always show dropdowns on hover for desktop */
@media (min-width: 992px) {
  .menu-item-has-children:hover > .dropdown-menu {
    display: block;
  }
	.navmenu a {
    color: var(--nav-color);
    padding: 12px 15px; 
	}
}
@media (max-width: 991px) {
   .navmenu li {
    display: flex;
    justify-content: space-between;
}
	.navmenu li button{
		background: transparent !important;
    border: none !important;
		color:#D98400;
	}
	.navmenu a {
    color: var(--nav-color);
    padding: 10px 15px;
	}
	.navmenu .dropdown-menu {
		width: 100%;}
}
/* Hide the button toggle icon on desktop */
@media (min-width: 992px) {
  .dropdown-toggle-icon.d-inline-block.d-lg-none {
    display: none !important;
  }
}

.languages li a{
	   margin: 10px 0px;
    color: var(--nav-color);
    font-family: var(--nav-font);
    font-weight: 400;
    font-size: 14px;
}
li.lang-item {
    margin: 8px 10px;
}
.serviceiconsection4 {
  transform: scaleX(-1); /* Flip horizontally */
}

[dir="rtl"] .breadcrumb-item + .breadcrumb-item::before {
  content: none;  /* divider ko hata do */
  padding: 0;
}
[dir="rtl"] .breadcrumb-item + .breadcrumb-item::after {
  float: right;
  padding-left: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/");
  padding-right: 7px;
}

.breadcrumb-contentarabic .breadcrumb-item+.breadcrumb-item::before {
float: right;
	padding: 0 4px;}
#aboutheader_2 .dropdown-selectarabic{
	background-position: left 15px center;
}
#courses_tabs .nav-tabsarabic .nav-item:first-child .nav-link.active {
    border-top-left-radius: 0px;
	   border-top-right-radius: 20px;
}
#courses_tabs .nav-tabsarabic .nav-link {
    border-right: none !important;
	 border-left: 1px solid var(--nav-color) !important;
}

@media (min-width: 301px) and (max-width: 600px) {
    #courses_tabs .nav-tabs .nav-item:first-child .nav-link.active {
        border-top-right-radius: 10px;
    }
}
   
#courses_tabs .tab_contentarabic ul li {
    padding-left: 0px;
	 padding-right: 30px;
}

#courses_tabs .tab_contentarabic ul li::before {
    right: 0;
    top: 3px;
	transform: scale(-1);
}

[dir=rtl] .slick-prev {
    right: 0px;
    left: -25px;
}
[dir=rtl] .slick-next {
    right: -25px;
    left: auto;
}

.form-labelarabic {
    padding-right: 20px;
    padding-left: 0px !important;
}
.btn-closearabic {
    margin-left: 0px !important;
}