/* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap'); */

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

* {
  -webkit-tap-highlight-color: transparent;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "opsz" 14;
}

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif !important;
}

body {
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

@font-face {
  font-family: "Inter";
  src: url("https://uditdev.quintero-solutions.com/wp-content/themes/udit/css/inter/InterVariable.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "edge";
  src: url("https://uditdev.quintero-solutions.com/wp-content/themes/udit/css/inter/EdgeL-Medium.otf") format("truetype-variations");
  font-weight: 100 900;
  font-display: swap;
}

/* @font-face {
  font-family: "edge";
  src: url("fonts/EdgeL-Medium.otf") format("truetype supports variations"),
    url("fonts/EdgeL-Medium.otf") format("truetype-variations");
  font-weight: 100 1000;
  font-stretch: 25% 151%;
} */

/* ---------------------------------------------
    GLOBAL 4-COLUMN GRID SYSTEM
    (1440px width / 30px margins / 24px gutter)
  ---------------------------------------------- */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
}

.container-no-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}

.span-1 {
  grid-column: span 1;
}

.span-2 {
  grid-column: span 2;
}

.span-3 {
  grid-column: span 3;
}

.span-4 {
  grid-column: span 4;
}

/* Responsive grid */

@media (max-width: 767px) {
  .container-no-grid {
    padding: 0 16px;
  }

  .container {
    grid-template-columns: 1fr 1fr;
    padding: 0 16px;
    column-gap: 16px;
  }

  .span-2,
  .span-3,
  .span-4 {
    grid-column: span 2;
  }
}

strong {
  font-weight: 700;
  font-family: "Inter";
}

/* common fonts */
.head-h3 {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 30px;
  line-height: 1;
}

.inter-body-p {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.22;
}

.text-para {
  color: #000000;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.22;
}

.heading_text {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 30px;
  line-height: 1;
}

.above-line {
  margin-bottom: 8px;
  border-top: 1px solid #000000;
}

.ovefolw_y_hidden {
  overflow-y: hidden !important;
  height: 100%;
}
.one-half{
    width: calc(100% / 2);
}


/* -----------------common buttons---------------- */
/* BUTTONS */
.cd-buttons {
  display: flex;
  justify-content: start;
  flex-direction: column;
  gap: 19px;
  align-items: end;
  padding-top: 35px;
}

.cd-btn {
  padding: 10px 11px 31px 11px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  display: inline-block;
  clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 93.5% 100%, 0% 100%, 0% 10%);
}

.white-btn {
  position: relative;
  font-family: "edge";
  text-decoration: none;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: #fff;
  display: flex;
  width: 268px;
  height: auto;
  padding: 10px 10px;
  border: 1px solid #fff;
  clip-path: polygon(0% 0%, 100% 0, 100% 74%, 93.9% 100%, 0% 100%);
}

.white-btn:after {
  content: "";
  position: absolute;
  width: 26px;
  height: 1px;
  background: #fff;
  bottom: 7px;
  right: -10px;
  transform: rotate(140deg);
}

.dark-btn {
  display: flex;
  align-items: start;
  justify-content: space-between;
  background: #3c1a1a;
  color: #fff;
  width: 268px;
  height: 85px;
  font-family: "edge";
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
  text-decoration: none;
}

.cd-buttons svg {
  width: 268px;
  height: auto;
}
/* common button animation */

.animate_outward:hover img{
      animation: slide-diagonal 0.6s forwards;
}
.animate_outward_short:hover img{
      animation: slide-diagonal-short 0.5s forwards;
}

@keyframes slide-diagonal {
    0%,
    to {
        transform: translate(0, 0);
        opacity: 1;
    }
    25% {
        transform: translate(34px, -34px);
        opacity: 0;
    }
    50% {
        transform: translate(-34px, 34px);
        opacity: 0;
    }
    51% {
        transform: translate(-34px, 34px);
        opacity: 1;
    }
}
@keyframes slide-diagonal-short {
    0%,
    to {
        transform: translate(0, 0);
        opacity: 1;
    }
    25% {
        transform: translate(8px, -8px);
        opacity: 0;
    }
    50% {
        transform: translate(-8px, 8px);
        opacity: 0;
    }
    51% {
        transform: translate(-8px, 8px);
        opacity: 1;
    }
}


/* common button animation end */

#main-content {
  margin-top: 53px;
}

.relative {
  position: relative;
}

/* fixed apply now and chat buttons */
.fx-apply-now-chat-c {
  position: fixed;
  bottom: 80px;
  z-index: 999999;
  width: 100%;
  pointer-events: none;
}

.fx-apply-now-chat-c .container {
  row-gap: 16px;
}

.fx-apply-c {
  height: 109px;
}

.fx-chat-c {
  height: 48px;
}

.fx-apply-btn,
.fx-chat-btn {
  position: absolute;
  right: 0px;
  color: #000;
  text-decoration: none;
  pointer-events: all;
}

.fx-apply-btn {
  width: 109px;
  height: 109px;
  background: #eabe64;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.fx-chat-btn {
  width: 109px;
  height: 48px;
  background-color: #000;
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* fixed apply now and chat buttons end*/

/* ---------------------------------------------
   HEADER
---------------------------------------------- */
.cd-page header .nav-menu-desktop,
.cd-page .nav-menu-mobile {
  background: #b4362f;
  border-bottom: 1px solid #ffffff4d;
}

.cd-page header .logo-container img,
.cd-page .mob-logo-container img {
  filter: invert(1);
}

.cd-page header .nav-links a {
  color: #fff;
}

.cd-page header .hamburger .hamburger-line,
.cd-page .mob-hamburger .hamburger-line {
  background-color: #ffff;
}

.cd-page .mob-hamburger-container {
  background: #b4362f;
}

.cd-page .main-nav-container .line-below {
  border-bottom: 1px solid #ffff;
  border-bottom: 1px solid #ffffff30;
}

.nav_black header .nav-menu-desktop {
  background: #000;
}

.nav_black header .logo-container img {
  filter: invert(1);
}

.cd-page header .nav-links a,
.nav_black header .nav-links a {
  color: #fff;
}

.nav_black header .hamburger .hamburger-line {
  background-color: #ffff;
}

.nav_black .mob-hamburger-container {
  background: #000;
}

.nav_black .main-nav-container .line-below {
  border-bottom: 1px solid #ffff;
  border-bottom: 1px solid #ffffff30;
}

.nav_black .mob-hamburger-container {
  background: #000;
}

.schover-page header {
  background: #000;
  border-bottom: 1px solid #ffffff30;
}

.schover-page header .logo-container img {
  filter: invert(1);
}

.schover-page header .nav-links a {
  color: #fff;
}

.schover-page header .hambureger .hamburger-line {
  height: 1.5px;
  background-color: #fff;
}

header {
  position: fixed;
  top: 0px;
  z-index: 99999999;
  background: #fff;
  width: 100%;
}

.main-nav-container {
  /* padding-bottom: 29px; */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  height: 53px;
}

.logo-container {
  padding-left: 30px;
  padding-top: 14px;
  padding-bottom: 7px;
}

.logo-container a {
  display: flex;
}

.logo-container .home-logo {
  width: 86px;
}

.logo-container {
  display: flex;
  align-items: flex-end;
}

.logo-container p {
  font-family: "Inter";
  margin-left: 14px;
  margin-bottom: -3px;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  text-align: right;
  text-transform: uppercase;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
}

.logo-container .fade p {
  opacity: 0;
  visibility: hidden;
}

.main-nav-container .line-below {
  border-bottom: 1px solid #0000004d;
}

/* Navigation */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-links .main-links {
  display: flex;
  justify-content: space-between;
  list-style: none;
  gap: 11px;
  height: 100%;
  align-items: center;
}

.nav-links .main-links li {
  height: 100%;
}

.nav-links .main-links li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 9px;
  padding-top: 23px;
  padding-bottom: 1px;
  transition: all 0.3s;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-family: "Inter";
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
}

/* Hamburger Icon */
.hamburger-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 33px;
  gap: 12px;
  list-style: none;
  height: 100%;
  padding-right: 30px;
  padding-left: 21px;
  min-width: 154px;
  transition: all 0.4s;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 45px;
  height: 15px;
  cursor: pointer;
  margin-top: 23px;
}

.hamburger .hamburger-line {
  height: 1px;
  background-color: black;
  transition: 0.4s;
}

.hamburger-container.active {
  background-color: #000;
  color: #fff;
}

.hamburger-container .menu {
  padding-top: 23px;
  padding-bottom: 1px;
}

/* Dropdown menu and hamburger */
.active .bar-1 {
  transform: translate(0, 7.5px) rotate(-17deg);
  background-color: #fff;
}

.active .bar-2 {
  opacity: 0;
}

.active .bar-3 {
  transform: translate(0, -6.5px) rotate(17deg);
  background-color: #fff;
}

.active .menu a {
  color: #fff;
}

.ud-dropdown-inner {
  display: flex;
  justify-content: flex-end;
  padding: 0;
}

.ud-dropdown {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 53px;
  transform: translateY(-20%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.ud-dropdown-links {
  color: #fff;
  background: #000;
  padding: 14px 35px 14px 16px;
  display: flex;
  gap: 24px;
}

.ud-dropdown-links a {
  color: #fff;
  font-family: "Inter";
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  text-decoration: none;
}

.ud-dropdown.active {
  transform: translateY(-1px);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  /* display: block; */
}

/* course filter dropdown*/
.course-dropdown {
  width: 100%;
  height: 95vh;
  position: absolute;
  left: 0;
  right: 0;
  top: 52px;
  transform: translateY(-20%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  background-color: #000;
  color: #fff;
  padding-top: 48px;
  padding-bottom: 50.5px;
}

.home-scrolled .course-dropdown.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  /* display: block; */
  overflow-y: auto;
  height: 95vh;
}

.course-dropdown::-webkit-scrollbar-track {
  background: #000;
}

.course-dropdown::-webkit-scrollbar {
  width: 2px;
}

.course-dropdown::-webkit-scrollbar-thumb {
  background: rgb(102, 100, 100);
}

.nav-links .main-links .courses-btn.active {
  background-color: #000;
  color: #fff;
}

.course-dropdown-filter {
  display: flex;
  justify-content: space-between;
}

.course-dropdown-filter .filter-btn {
  font-family: "Inter";
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -2.2%;
  color: #fff;
  background-color: #000;
  border: 1px solid #fff;
  padding: 2px 11px 1px 11px;
  cursor: pointer;
  transition: all 0.2s ease-in;
}

.filter-btn.active {
  color: #000;
  background-color: #fff;
}

.nav-course-container {
  padding-top: 24px;
}

.nav-course-container:last-child {
  padding-top: 55px;
}

.nav-course-category,
.nav-course-content {
  border-top: 4px solid #fff;
  padding-top: 14px;
}

.nav-course-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
}

.nav-course-department a {
  font-family: "Inter";
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0px;
  text-decoration: none;
  color: #fff;
  display: flex;
  justify-content: space-between;
}

.nav-cousrse-links {
  margin-top: 33px;
  border-top: 1px solid #ffffff;
  list-style: none;
}

.nav-cousrse-links li {
  transition: all 0.2s ease-in;
  max-height: 70px;
}

.nav-cousrse-links li a {
  padding-top: 12px;
}

.nav-cousrse-links li a {
  color: #fff;
  text-decoration: none;
  font-family: "Inter";
  font-weight: 300;
  font-size: 20px;
  line-height: 122%;
  display: flex;
  justify-content: space-between;
}

/* ------------------notification -------------------*/

.notification-alert {
  background-color: #000;
  color: #ffffff;
  height: 0;
  transition: all 0.2s ease-in-out;

  overflow: hidden;
  margin-bottom: 0;
}

.show-alert .notification-alert {
  height: 46px;
  margin-bottom: 16px;
}

.notification-alert .notification-container {
  padding-top: 0;
  padding-bottom: 0;
  height: 100%;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.show-alert .notification-alert .notification-container {
  padding-top: 13.5px;
  padding-bottom: 13.5px;
}

.notification-alert p {
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #ffffff;
}

.notification-alert p span {
  font-family: "Inter";
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
}

.notification-alert .close-button {
  position: absolute;
  right: 30px;
  top: 14px;
  cursor: pointer;
}

/* -----------------home nabv bar --------------  */
.home-nav-bar {
  height: 181px;
  background: #fff;
  /* transition: transform 0.7s, height 0.5s; */
  transition: all 0.9s cubic-bezier(0.41, -0.2, 0.43, 1.01);
  transform: translateY(0);
  position: relative;
}

.home-scrolled .home-nav-bar {
  transform: translateY(-400px);
  height: 0;
}

.home-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: 0;
  padding-top: 29px;
  padding-bottom: 29px;
}

.home-logo-container a {
  display: flex;
  align-items: flex-end;
  gap: 61px;
}

.home-hamburger-container {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-left: 33px;
  gap: 12px;
  list-style: none;
  height: 100%;
  padding-right: 30px;
  padding-left: 21px;
  min-width: 154px;
  transition: all 0.4s;
}

.home-hamburger-container .hamburger {
  margin-top: 0;
}

.menu a {
  text-decoration: none;
  color: black;
  font-family: "Inter";
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
}

.nav-menu-desktop {
  transform: translateY(-400%);
  position: absolute;
  /* transition: all 0.5s ease-in-out; */
  transition: all 0.8s cubic-bezier(0.41, -0.2, 0.43, 1.01);
  height: 0;
  top: -200px;
  width: 100%;
  background: #ffffff;
}

.home-scrolled .show-menu.nav-menu-desktop {
  transform: translateY(0);
  /* height: 82px; */
  height: 53px;
  top: 0;
}

.home-hamburger-container {
  height: 53px;
  transition: all 0.2s;
}

.home-hamburger-container.active {
  background-color: #000;
  color: #fff;
}

.hm-menu {
  top: 153px;
}

/*-------------------------
    course page sub menu 
 --------------------------  */
.course-sub-menu {
  position: absolute;
  top: 54px;
  width: 100%;
  z-index: -9;
  opacity: 0;
  transform: translateY(-100%);
  transition:
    transform 0.4s ease-in-out,
    opacity 0.4s ease-in-out,
    top 0.6s ease-in-out;
}

.scroll-down .course-sub-menu {
  top: 0;
}

.course-sub-menu.active {
  opacity: 1;
  transform: translateY(-1px);
}

.course-sub-menu-container {
  display: flex;
  align-items: flex-start;
  padding: 0;
  position: relative;
}

.dep-radio-container {
  display: flex;
  padding-top: 17px;
  padding-bottom: 18px;
}

.course-sub-menu-container .one-half {
  display: flex;
  background-color: #000;
}

.course-sub-menu-container .cat-head {
  font-family: "Inter";
  font-weight: 600;
  font-size: 18px;
  line-height: 80%;
  color: #717171;
  padding-right: 10px;
}

.department-c label {
  font-family: "Inter";
  font-weight: 300;
  font-size: 18px;
  line-height: 80%;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.department-c label input[type="radio"]:checked {
  accent-color: #fff;
}

/* accordian sub menu course page  */
.sub-menu-accordion {
  user-select: none;
  transition: 0.4s;
}

.radio-text {
  padding-left: 10px;
}

.course-sub-menu-link .sub-menu-accordion {
  color: #fff;
  font-family: "Inter";
  font-weight: 700;
  font-size: 18px;
  line-height: 80%;
  display: inline-flex;
  transition: all 0.2s linear;
  margin-left: 40px;
  cursor: pointer;
}

.course-sub-menu-link .sub-menu-accordion.active {
  transform-origin: 50% 50%;
  transform: rotate(135deg);
}

/* custum radio */
.custom-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-mark {
  width: 12px;
  height: 12px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: relative;
  /* cursor: pointer; */
}

.custom-radio input:checked+.radio-mark::after {
  transform: scale(1.09);
}

.radio-mark::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  inset: 0;
  transform: scale(0);
  transition: transform 0.2s ease;
}

.sub-menu-panel {
  color: white;
  overflow: hidden;
  transition: all 0.2s ease;
  max-height: 0;
  padding-left: 56.46px;
  padding-top: 2px;
}

.panel-courses {
  padding-left: 83.8px;
}

.course-radio-c {
  display: flex;
  padding-top: 20px;
}

.course-radio-c:nth-child(1) {
  padding-top: 0;
}

.course-radio-c:nth-last-child(1) {
  padding-bottom: 29px;
}

.pr-30 {
  padding-right: 30px;
  margin-right: auto;
}

.pl-30 {
  padding-left: 30px;
  margin-left: auto;
}

/* download brocher btn */
.download-Brochure-btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #5a0d07;
  width: 167px;
  height: 51.4px;
  max-height: 53px;
  padding: 17px 12px 18px;
}

.download-Brochure-btn a {
  font-family: "Inter";
  font-weight: 700;
  font-size: 18px;
  line-height: 80%;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

.download-Brochure-btn a img {
  margin-left: 11px;
}

/* ----------------career features -------------*/
.career-intro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 41px;
  column-gap: 24px;
  margin-top: 48px;
  border-top: 1px solid #0000004d;
  padding-top: 12px;
}

.career-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 0px;
}

.btn-career-pd {
  padding: 6px 10px !important;
}

.heading-medium {
  font-family: "Inter";
  font-weight: 700;
  font-size: 20px;
  line-height: 1.22;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
  border-top: 1px solid #0000004d;
}

/* career intro btn  */

.companie-section-btn a {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  padding: 10px 13px 20px;
  background-color: #d9d9d9;
  color: #000000;
  text-decoration: none;
  width: 268px;
  height: auto;
  font-size: 25px;
  line-height: 100%;
  font-weight: 500;
  clip-path: polygon(0% 0%, 100% 0, 100% 75%, 94% 100%, 0% 100%);
  font-family: "edge", sans-serif;
  text-transform: uppercase;
}

.companie-section-btn a img {
  width: 16px;
  height: 16px;
}

/*---------------------- mentors cards section---------------------*/

.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 60px;
}

.mentor-img {
  width: 100%;
  height: 380px;
}

.mentor-img2 {
  width: 100%;
  height: 380px;
}

.mentor-img img,
.mentor-img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-text .mentor-head {
  font-family: "Inter";
  font-weight: 700;
  font-size: 20px;
  line-height: 122%;

  margin-top: 12px;
}

.mentor-text .mentor-deginaton {
  font-family: "Inter";
  font-weight: 300;
  font-size: 20px;
  line-height: 122%;

  margin-top: 4px;
}

.mentor-text .mentor-dec {
  font-family: "Inter";
  font-weight: 300;
  font-size: 20px;
  line-height: 122%;
  margin-top: 14px;
}

/* -------------------------
next step section
----------------------------- */
.bg-maroon .next-steps-grid {
  background-color: #5a0d07 !important;
  color: #fff;
}

.bg-maroon .next-links a {
  color: #fff;
}

.bg-maroon .next-shape .next-box {
  background-color: #5a0d07;
}

.bg-maroon .a-icon img {
  filter: invert(1);
}

.bg-maroon.next-steps {
  padding-top: 0px;
  padding-bottom: 30px;
}

.bg-skyblue.next-steps {
  padding-top: 100px;
  padding-bottom: 30px;
}

.bg-skyblue .next-steps-grid {
  background-color: #d0e6f2 !important;
}

.bg-skyblue .next-shape .next-box {
  background-color: #d0e6f2;
}

.next-steps {
  padding-top: 120px;
  padding-bottom: 88px;
}

.next-steps .next-steps-grid {
  background-color: #ebb3cd;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
}

.next-title-contain {
  padding-top: 12.4px;
  padding-left: 24px;
}

.next-step-content {
  padding-top: 12.4px;
  padding-bottom: 12.4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.next-title {
  font-family: "edge";
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
}

.next-links a {
  white-space: nowrap;
  text-decoration: none;
  color: #000000;
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  margin-right: 32px;
}

.next-learn-more-btn .a-icon img {
  width: 14px;
  height: 14px;
  transition: transform 0.35s ease;
  transform: translate(0, 0);
}

.next-learn-more-btn:hover .a-icon img {
  transform: translate(4px, -4px) scale(1.05);
}

.next-links .next-apply-btn {
  font-family: "Inter";
  font-weight: 800;
  font-size: 16px;
  line-height: 120%;
  margin-right: 0;
}

.next-links .a-icon {
  padding-left: 8px;
}

.next-links .a-icon img {
  width: 12px;
  height: 12px;
}

.next-shape {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 222px;
  background-color: #fff;
}

.next-shape .next-box {
  background-color: #ebb3cd;
  width: 111px;
  height: 111px;
  /* border: 1px solid black; */
}

.next-step-container {
  display: flex;
  justify-content: space-between;
}

.next-shape-box {
  clip-path: polygon(30% 0%,
      70% 0%,
      100% 30%,
      100% 70%,
      70% 100%,
      30% 100%,
      0% 70%,
      0% 30%);
}

.next-para {
  font-family: "Inter";
  font-weight: 400;
  font-size: 20px;
  line-height: 25.2px;
  letter-spacing: 0px;
  padding-right: 15px;
}

/* ------------------------------------------
            video section
------------------------------------------*/

.video-section-content {
  padding-top: 48px;
}

.video-section-content .video-thumbnail img {
  width: auto;
  display: block;
}

.video-overlay-container {
  margin-top: -70px;
  grid-column-start: 4;
  z-index: 9;
}

.video-overlay-container.left {
  margin-top: -70px;
  grid-column-start: 1;
  z-index: 9;
}

.video-overlay {
  width: 100%;
  height: 70px;
  background: #fff;
}

.video_container {
  width: 100%;
  max-width: 1380px;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  position: relative;
}

.video_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.thumb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  /* cursor: pointer; */
  transition: 0.2s;
  z-index: 3;
}

.thumb.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.big-play {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  /* left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); */
  inset: 0;
  z-index: 4;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  background: #00000040;
}

.big-play.visible {
  opacity: 1;
  visibility: visible;
}

.spinner {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: #1e88e5;
  animation: spin 1s linear infinite;
  display: none;
}

.video_wrapper.loading .spinner {
  display: block;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.video-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.controls_row {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px;
  width: 100%;
  justify-content: space-evenly;
}

button.ctrl {
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  font-size: 18px;
}

.video-overlay .block_text p {
  font-family: "Inter";
  font-weight: 300;
  font-size: 20px;
  line-height: 122%;
}

.block_text p::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  margin-right: 11px;
  transform: translateY(-2px);
}

.yt-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.yt-player iframe {
  width: 100%;
  height: 100%;
}

.big-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transition: 0.2s;
}

.ytp-expand-pause-overlay .ytp-pause-overlay {
  display: none !important;
}

.video-thumbnail.container {
  max-width: auto;
  margin: 0;
  padding: 0;
}

.video-overlay {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
  transform: translateY(0);
  grid-column-start: 4;
  position: absolute;
  bottom: 0px;
}

.video-overlay.hide {
  opacity: 0;
  transform: translateY(70px);
  visibility: hidden;
  pointer-events: none;
}

.video-section-content .video-overlay .fsBtn img {
  width: 26px;
  height: 24px;
}

.video-section-content .video-overlay .muteBtn img {
  width: 24px;
  height: 24px;
}

.video-section-content .video-overlay .playPause img {
  width: 17px;
  height: 22px;
}
.video-section-content .left {
  grid-column-start: 1;
  grid-column-end: 1;
  transform: translate(-1px, 1px);
}
  

/* video section end */

/* ------------------------------
  footer setion
  --------------------------------- */
.schover-page .footer-section {
  margin-top: 30px;
}

.footer-section {
  background-color: #000;
  color: #fff;
}

.footer-links-heading p {
  font-family: "Inter";
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.footer-links-heading {
  padding-bottom: 27px;
  padding-top: 28px;
}

.address-container p {
  font-family: "Inter";
  font-weight: 300;
  font-size: 24.33px;
  line-height: 100%;
  letter-spacing: 0px;
  text-transform: capitalize;
}

.social-icons-contain {
  display: flex;
}

.social-icons-contain .social-icon {
  padding-right: 16px;
}

.footer-lower {
  padding-top: 128px;
  padding-bottom: 30px;
}

.expended-logo-contain img {
  width: 100%;
  display: block;
}

.footer-lower .span-1 {
  display: flex;
  align-items: flex-end;
}

.contact-info {
  padding-top: 11px;
}

.contact-info a,
.contact-info {
  font-family: "Inter";
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  font-size: 24.33px;
  line-height: 100%;
}

.underline {
  position: relative;
}

.underline span::after {
  position: absolute;
  content: " ";
  width: 100%;
  height: 2px;
  background-color: #fff;
  bottom: 0;
  left: 0;
}

.quick-links-container ul,
.other-links ul {
  list-style: none;
}

.quick-links-container ul li,
.other-links ul li {
  padding-bottom: 7px;
}

.quick-links-container ul li a,
.other-links ul li a {
  font-family: "Inter";
  font-weight: 300;
  font-size: 24.33px;
  line-height: 100%;
  color: #fff;
  text-decoration: none;
}

.other-links ul li a {
  display: flex;
}

.other-links ul li a .a-icon {
  margin-left: auto;
}

.copy-right-container p {
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
}

/* --------------------------
stat section 
---------------------------------*/

.stat-section {
  padding-top: 40px;
}

.stat {
  border-top: 1px solid #0000004d;
  padding-top: 10px;
}

.stat .stat-text {
  padding-left: 3px;
}

.stat .count-contain {
  font-family: "edge", sans-serif;
  font-weight: 500;
  font-size: 120px;
  line-height: 90%;
}

/* stat section end */

/* -----------Accommodation slider css ----------- */

/* ---------------------------------
slider 
------------------------------------- */
.slider-container {
  /* padding-top: 40px; */
  padding-right: 0px;
  padding-bottom: 24px;
}

.mySlider {
  width: 100%;
  padding-bottom: 60px;
}

.slide-wrap {
  position: relative;
}

.slide-wrap>img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  max-height: 551px;
}

.slide-caption {
  margin-top: 16px;
  display: none;
}

.swiper-slide-active .slide-caption {
  display: block;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
  height: 15px;
  width: 15px;
  border-radius: 0;
  background: #a2a2a2;
}

.swiper-pagination-clickable .swiper-pagination-bullet-active {
  background: #000000 !important;
  opacity: 1;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px) !important;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  display: flex;
  justify-content: flex-end;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 4px);
}

.mySlider {
  cursor:
    url("./assets/arrow-upward.png") 16 16,
    auto;
}

.video-slide {
  position: relative;
}

/* .thumb-img {
  width: 100%;
  display: block;
} */

/* Play icon center */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Hidden video layer */
.video-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

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

/* slider end  */

/* FAQ SECTION */
.faq-section {
  margin: 88px 0 0 0;
}

.faq-bt-margin {
  margin-bottom: 88px;
}

.faq-title h2 {
  font-weight: 300;
  font-size: 30px;
  line-height: 100%;
  color: #000000;
  font-family: "Inter";
}

.faq-cat-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #000000;
  font-family: "Inter";
}

.faq-category>* {
  margin-bottom: 40px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border: none;
  border-top: 1px solid #000;
  padding: 8px 0px 8px 0px;
  font-size: 20px;
  font-family: "Inter";
  font-weight: 300;
  line-height: 122%;
  color: #000000;
  text-align: left;
}

.faq-question .plus {
  font-size: 34px;
  font-weight: 700;
  cursor: pointer;
  color: #000000;
}

.faq-answer {
  font-size: 20px;
  font-family: "Inter";
  font-weight: 300;
  line-height: 122%;
  color: #000000;
  transition: height 0.35s ease;
  height: 0;
  overflow: hidden;
  transition:
    height 0.35s ease,
    opacity 0.25s ease;
  opacity: 0;
}

.faq-answer[aria-expanded="true"] {
  opacity: 1;
}

/* ----------------- faq end -------------- */

/* ---------------------------------------------
   Common Margin padding
---------------------------------------------- */
.ml-auto {
  margin-left: auto;
}

.margin-b-100 {
  margin-bottom: 100px;
}

.margin-b-90 {
  margin-bottom: 90px;
}

.margin-b-50 {
  margin-bottom: 50px;
}

.margin-b-10 {
  margin-bottom: 10px;
}

.margin-t-30 {
  margin-top: 30px;
}

.margin-t-25 {
  margin-top: 25px;
}

.margin-t-45 {
  margin-top: 45px;
}

.margin-t-20 {
  margin-top: 20px;
}

.margin-t-64 {
  margin-top: 64px;
}

.margin-t-10 {
  margin-top: 0;
}

.margin-t-0 {
  margin-top: 0;
}

.pt-20 {
  padding-top: 20px;
}
.pt-16 {
  padding-top: 16px;
}

/* resposive */
.desk-none {
  display: none !important;
}

.mob-none {
  display: block !important;
}

/* media query */
@media only screen and (max-width: 1130px) {
  /* sub menu responsive */

  .course-sub-menu-container .one-half:nth-child(1) {
    width: calc(100% / 2 - 84px);
  }

  .course-sub-menu-container .one-half:nth-child(2) {
    width: calc(100% / 2 + 84px);
  }

  .course-sub-menu-link .sub-menu-accordion {
    margin-left: 15px;
  }
}

@media only screen and (max-width: 960px) {
  .stat .count-contain {
    font-size: 90px;
  }
}

@media only screen and (max-width: 870px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  #main-content {
    margin-top: 48px;
  }

  .desk-none {
    display: block !important;
  }

  .mob-none {
    display: none !important;
  }

  li,
  a,
  button {
    -webkit-tap-highlight-color: transparent;
  }

  /* ---------------common font -----------------*/
  .inter-body-p {
    font-family: "Inter";
    font-weight: 300;
    font-size: 16px;
    line-height: 121%;
  }

  .head-h3 {
    font-family: "Inter";
    font-size: 24px;
    font-weight: 300;
    line-height: 100%;
  }

  .heading_text {
    font-family: "Inter";
    font-weight: 300;
    font-size: 24px;
    line-height: 100%;
  }

  .text-para {
    color: #000000;
    font-family: "Inter";
    font-weight: 300;
    font-size: 16px;
    line-height: 121%;
  }

  /* home page header logo */
  .home-logo-iiad {
    width: 35px;
    height: 35px;
  }

  .home-logo-expended {
    width: 248px;
    height: 52px;
  }

  .show-alert .notification-alert {
    height: 54px;
    margin-bottom: 0;
  }

  .home-logo-container a {
    gap: 16px;
  }

  .home-hamburger-container {
    align-items: end;
    margin-left: 0;
    height: 15px;
    padding-right: 0px;
    padding-left: 0;
    min-width: 0;
    margin-right: 16px;
  }

  .notification-alert p {
    font-size: 13px;
    padding-right: 36px;
  }

  .notification-alert p span {
    font-size: 13px;
  }

  .home-nav-container {
    padding-top: 21px;
    padding-bottom: 10px;
  }

  .home-nav-bar {
    height: 82px;
    background: #fff;
    width: 100%;
    position: absolute;
    transition: all 0.7s cubic-bezier(0.41, -0.2, 0.43, 1.01);
  }

  .home-scrolled .home-nav-bar {
    transform: translateY(-110px);
    height: auto;
  }

  .show-alert .notification-alert .notification-container {
    padding-top: 11px;
    padding-bottom: 11px;
  }

  /* -------------------common buttons------------------- */
  .cd-buttons {
    gap: 16px;
    flex-direction: row;
  }

  .cd-buttons {
    padding-top: 0px;
    padding-bottom: 19px;
  }

  .cd-buttons svg {
    width: 182px;
    height: auto;
  }

  .dark-btn {
    display: flex;
    align-items: start;
    justify-content: space-between;
    background: #3c1a1a;
    color: #fff;
    width: 182px;
    height: 65px;
    font-family: "edge";
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
  }

  /* ----------------next step setion---------- */
  .next-steps,
  .bg-skyblue.next-steps {
    padding-top: 38px;
    padding-bottom: 16px;
  }

  .bg-maroon.next-steps {
    padding-bottom: 18px;
  }

  .next-para {
    margin-top: 14px;
    font-size: 16px;
    line-height: 100%;
  }

  .next-steps .next-steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .next-title-contain {
    padding: 15px 35px 165px 12px;
  }

  .next-steps .container .span-4 {
    grid-column: span 2 !important;
    column-gap: 0px;
  }

  .next-shape .next-box {
    width: 84px;
    height: 84px;
  }

  .next-step-content {
    justify-content: flex-end;
  }

  .next-apply-btn {
    margin-top: 53px;
  }

  .next-steps-grid .span-2 {
    grid-column: span 2 !important;
  }

  .next-shape {
    width: auto;
  }

  .next-links {
    display: flex;
    flex-direction: column;
  }

  .next-links a {
    padding-left: 12px;
    margin-right: 0;
  }

  /* --------------------video section ------------------ */
  .video-overlay-container {
    margin-top: -39px;
    grid-column-start: 2;
    margin-right: -0.5px;
  }

  .video-overlay-container.left {
    margin-top: -39px;
    grid-column-start: 1;
    margin-left: -0.5px;
  }

  .video-overlay {
    height: 40px;
  }

  .video-section-content {
    padding-top: 32px;
  }

  .video-overlay .block_text p {
    font-size: 16px;
  }

  .video-section-content .video-thumbnail img {
    width: 92px;
    height: auto;
    display: block;
  }

  .video-overlay {
    grid-column-start: 2;
    transform: translateY(1px);
  }

  .video-section-content .video-overlay .fsBtn img {
    width: 15px;
    height: 15px;
  }

  .video-section-content .video-overlay .muteBtn img {
    width: 15px;
    height: 15px;
  }

  .video-section-content .video-overlay .playPause img {
    width: 11px;
    height: 13px;
  }

  /*------------------- hambureger ---------------*/
  .hambureger .hamburger-line {
    height: 1px;
  }

  /* -----------------------footer ------------------ */

  .footer-section .container .span-1 {
    grid-column: span 2;
  }

  .address-container p,
  .contact-info a,
  .contact-info,
  .quick-links-container ul li a,
  .other-links ul li a {
    font-size: 20px;
    line-height: 122%;
  }

  .other-links ul li a {
    width: 70%;
    min-width: fit-content;
  }

  .footer-links-heading:nth-child(1) {
    padding-top: 29px;
    padding-bottom: 16px;
  }

  .social-icon img {
    width: 24px;
    height: 24px;
  }

  .footer-links-heading {
    padding-top: 32px;
    padding-bottom: 16px;
  }

  .contact-info {
    padding-top: 12px;
  }

  .underline span::after {
    display: none;
  }

  .other-links {
    padding-top: 32px;
  }

  .other-links a img {
    width: 12px;
    height: 12px;
  }

  .footer-lower {
    padding-top: 50px;
    padding-bottom: 29px;
  }

  .copy-right-container p {
    font-size: 13px;
    line-height: 100%;
  }

  /* --------------------- mentor cards section ----------------------- */

  .mentor-img {
    width: 100%;
    height: 214px;
  }

  .mentor-img2 {
    width: 100%;
    height: 175px;
  }

  .mentor-text .mentor-dec {
    font-size: 14px;
    line-height: 121%;
    margin-top: 8px;
  }

  .mentor-text .mentor-head {
    font-size: 16px;
    line-height: 121%;
    margin-top: 7px;
  }

  .mentor-text .mentor-deginaton {
    font-size: 14px;
    line-height: 121%;
    margin-top: 2px;
    font-weight: 400;
  }

  .cards-container {
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 16px;
  }

  /* <!-- Overview SECTION  Start-->  */
  /* AKA career features */

  .spacer {
    grid-column: span 2;
  }

  .career-intro {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 34px;
    column-gap: 16px;
    margin-top: 16px;
    border-top: 1px solid #000;
    padding-top: 5px;
  }

  .companie-section-btn a {
    font-size: 16px;
    width: 182px;
    gap: 28px;
  }

  .companie-section-btn a img {
    width: 12px;
    height: 12px;
  }

  .career-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .heading-medium {
    font-size: 16px;
  }

  #career {
    padding-top: 0;
  }

  .feature-item {
    gap: 9px;
  }

  /* slider  */
  .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, none) !important;
    top: var(--swiper-pagination-top, 235px) !important;
    left: -10px !important;
    width: 100% !important;
  }

  .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px) 0 0 !important;
  }

  /* ---------------------stat section --------------------*/
  .stats-container {
    row-gap: 24px;
  }

  .stat .count-contain {
    font-size: 56px;
  }

  .stat .stat-text {
    font-size: 14px;
  }

  .stat-section {
    padding-top: 24px;
  }

  /* ---------------------stat section End --------------------*/

  /* ---------slider section -----------*/
  .slide-caption {
    padding-right: 96px;
  }

  .slide-wrap {
    height: 217px;
  }

  .slide-wrap img {
    height: 100%;
    object-fit: cover;
  }

  .swiper-pagination-clickable .swiper-pagination-bullet {
    background-color: #A2A2A2;
  }

  /* faq  section*/

  /* faq  */

  .curriculam {
    padding-top: 32px;
  }

  .accordion-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: baseline;
    cursor: pointer;
    gap: 16px;
    position: relative;
  }

  .accordion-content {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .year-info {
    font-size: 16px;
    line-height: 100%;
  }

  .dc-heading {
    font-weight: 300;
    line-height: 100%;
    color: #000000;
    margin-bottom: 8px;
    font-family: "Inter";
    font-size: 24px;
    line-height: 100%;
  }

  /* faq bottom  */
  .faq-section {
    margin: 32px 0 0 0;
  }

  .faq-cat-text {
    margin-bottom: 16px;
  }

  .faq-title h2 {
    font-size: 24px;
  }

  .faq-title {
    margin-bottom: 12px;
  }

  .faq-question .plus {
    font-size: 50px;
    font-weight: 500;
    cursor: pointer;
    color: #000000;
  }

  .faq-category>* {
    margin-bottom: 24px;
  }

  .faq-question {
    font-size: 16px;
    text-align: start;
  }

  /* ---------------------------
 common margin  padding
 ------------------------------ */
  .mb-12 {
    margin-bottom: 12px;
  }

  .mob-pt-4 {
    padding-top: 4px;
  }

  .mob-pl-90 {
    padding-left: 90px;
  }

  .mob-mt-26 {
    padding-top: 26px;
  }

  .mob-mt-24 {
    margin-top: 24px;
  }

  .mob-mt-11 {
    padding-top: 11px;
  }

  .mob-mt-48 {
    margin-top: 48px;
  }

  .mob-mt-0 {
    margin-top: 0;
  }

  .mob-mb-14 {
    margin-bottom: 14px;
  }

  .mob-mb-76 {
    margin-bottom: 76px;
  }

  .mob-mb-60 {
    margin-bottom: 60px;
  }

  .mob-mb-46 {
    margin-bottom: 46px;
  }

  .mob-mb-55 {
    margin-bottom: 55px;
  }

  .mob-mb-36 {
    margin-bottom: 36px;
  }

  .mob-mb-28 {
    margin-bottom: 28px;
  }

  .mob-mb-26 {
    margin-bottom: 26px;
  }

  .mob-mb-8 {
    margin-bottom: 8px;
  }

  .mob-mb-0 {
    margin-bottom: 0;
  }

  .spacer {
    padding-bottom: 12px;
  }
}

/* navbar mobile */
@media only screen and (max-width: 767px) {

  /* fixed apply now and chat buttons */
  .fx-chat-btn {
    width: 56px;
    height: 48px;
  }

  .fx-apply-now-chat-c {
    bottom: 28px;
  }

  /* fixed apply now and chat buttons end */
  .nav-menu-mobile .mobile-header-container {
    height: 48px;
    border-bottom: 1px solid #0000004d;
    overflow: hidden;
  }

  .hamburger {
    margin-top: 0;
  }

  .mob-logo-container {
    padding-top: 15px;
    padding-bottom: 9px;
  }

  .mob-logo-container img {
    width: 64px;
  }

  .mobile-header-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0;
    padding-left: 16px;
  }

  .mob-hamburger-container .mob-apply-li,
  .mob-apply-li-course {
    max-width: 160px;
    height: 100%;
    transition: all 0.4s ease;
    margin-left: 16px;
  }

  .mob-apply-li-course {
    height: auto;
    margin-left: 0;
  }

  .one-half.active .mob-apply-li-course {
    /* height: 0; */
    max-width: 0px;
    overflow: hidden;
    margin: 0;
    opacity: 0;
  }

  .active.mob-hamburger-container .mob-apply-li {
    max-width: 0px;
    overflow: hidden;
    margin: 0;
    opacity: 0;
  }

  .mobile-header-container .mob-nav-applynow,
  .mob-apply-li-course .mob-nav-applynow {
    font-family: "Inter";
    font-weight: 700;
    font-size: 14px;
    line-height: 80%;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    background-color: #eabe64;
    height: 100%;
    display: flex;
    padding: 28px 16px 9px 9px;
    transition: all 0.2s;
    white-space: nowrap;
  }

  .mobile-header-container .mob-nav-applynow {
    height: auto;
  }

  .mobile-header-container .mob-nav-applynow .icon,
  .mob-apply-li-course .mob-nav-applynow .icon {
    padding-left: 8px;
  }

  .mob-nav-links {
    height: 100%;
  }

  .mob-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 45px;
    height: 15px;
    cursor: pointer;
    margin-top: 24px;
    margin-bottom: 9px;
    margin-left: 16px;
  }

  .close-text {
    padding-top: 26px;
    padding-bottom: 9px;
    transition: all 0.4s;
    overflow: hidden;
    max-width: 0;
  }

  .active .close-text {
    max-width: 160px;
  }

  .mob-hamburger .hamburger-line {
    height: 1px;
    background: #000;
    width: 100%;
    transition: 0.2s ease-in-out;
  }

  .active .bar-1 {
    background-color: #fff;
  }

  .active .bar-3 {
    background-color: #fff;
  }

  .close-text strong {
    color: #ffffff;
    padding: 0px 80px 0px 16px;
  }

  /* .nav_black .mobile-header-container .mob-hamburger-container{
    background-color: #000;

  } */
  .mobile-header-container .mob-hamburger-container {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    height: 100%;
    transition: all 0.2s ease-in-out;
    background-color: #ffffff;
    list-style: none;
  }

  .active.mob-hamburger-container {
    background-color: #000 !important;
  }

  /* hidden dropwon mob */
  .home-scrolled .mob-menu-dropdown {
    top: 48px;
  }

  .mob-menu-dropdown {
    top: 267px;
  }

  .show-alert .mob-menu-dropdown {
    top: 321px;
  }

  .mob-menu-dropdown {
    background-color: #000;
    width: 100%;
    height: 93vh;
    overflow-y: auto;
    position: absolute;
    transition: all 0.3s;
    transform: translateX(-100%);
  }

  .mob-menu-dropdown.active {
    transform: translateX(0) translateY(-1px);
  }

  .mob-menu-dropdown-c {
    /* height: 100svh; */
    height: 85svh;
    overflow-y: auto;
  }

  .mob-menu-dropdown-c {
    padding-top: 32px;
    padding-bottom: 80px;
    row-gap: 40px;
  }

  .mob-menu-dropdown .mob-menu-tab {
    border-top: 1px solid #ffffff;
    padding-top: 13px;
    transition: 0.2s ease;
  }

  .mob-menu-dropdown .mob-menu-tab.active {
    border-top: 3px solid #ffffff;
    /* padding-top: 6px; */
  }

  .mob-menu-dropdown .mob-menu-tab a {
    font-family: "Inter";
    font-weight: 300;
    font-size: 24px;
    line-height: 100%;
    text-decoration: none;
    color: #ffffff;
  }

  /* accordian nav menu */
  .mob-nav-accordion {
    user-select: none;
    transition: 0.4s;
  }

  .mob-nav-accordion:after {
    content: "\002B";
    color: #fff;
    font-weight: 300;
    float: right;
    font-size: 36px;
  }

  .mob-nav-accordion.active:after {
    content: "\2212";
  }

  .mob-nav-panel {
    color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  .mob-nav-panel .mob-cousec-c {
    padding-left: 92px;
    padding-top: 27px;
  }

  /* course filter */
  .mob-course-dropdown-filter {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
  }

  .mob-nav-course-tab {
    border-top: 1px solid #ffffff;
    padding-top: 11px;
    margin-top: 40px;
  }

  .mob-nav-course-tab:last-child {
    margin-bottom: 20px;
  }

  .mob-nav-course-tab .nav-course-department a {
    font-family: "Inter";
    font-weight: 800;
    font-size: 16px;
    line-height: 120%;
  }

  .mob-nav-course-tab .nav-course-department a img {
    width: 15px;
    height: 15px;
  }

  .mob-nav-course-tab .nav-cousrse-links {
    margin-top: 0;
    border-top: none;
    list-style: none;
  }

  .mob-menu-dropdown .mob-menu-tab .nav-course {
    padding-top: 16px;
    font-family: "Inter";
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
  }

  .mob-course-dropdown-filter .filter-btn {
    font-family: "Inter";
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -2.2%;
    color: #fff;
    background-color: #000;
    border: 1px solid #fff;
    padding: 0px 14px;
    cursor: pointer;
    transition: all 0.2s ease-in;
    max-height: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap
  }

  .filter-btn.active {
    color: #000;
    background-color: #fff;
  }

  /* scroll show hide */
  .nav-menu-mobile {
    transform: translateY(-400%);
    position: absolute;
    transition: all 0.5s;
    height: 0;
    top: -200px;
    width: 100%;
    background: #ffffff;
  }

  .home-scrolled .nav-menu-mobile.show-menu {
    transform: translateY(0);
    height: 48px;
    top: 0;
  }

  /* home nav mobile  */
  .home-hamburger-container-mob {
    height: 31px;
    padding-right: 16px;
    padding-top: 16px;
    padding-left: 16px;
    margin-left: 0;
    margin-right: 0;
    transition: all 0.2s ease-in;
    background-color: #fff;
  }

  .home-hamburger-container-mob.active {
    background-color: #000;
  }

  .home-hamburger-container {
    display: none !important;
  }

  /*-------------------------
    course page sub menu 
 --------------------------  */
  .course-sub-menu {
    top: 48px;
  }

  .course-sub-menu-container .one-half {
    width: 100% !important;
    padding-left: 16px;
    padding-right: 0;
    justify-content: space-between;
  }

  .dep-radio-container {
    padding-top: 10px;
    padding-bottom: 7px;
    flex-direction: column;
    gap: 6px;
    justify-content: flex-start;
    transition: all 0.4s ease;
  }

  .one-half.active .dep-radio-container {
    flex-direction: row;
    gap: 0;
    width: 100%;
    justify-content: space-between;
    padding-right: 16px;
  }

  .department-c {
    width: calc(100% - 128px);
    transition: all 0.4s ease;
  }

  .one-half.active .department-c {
    width: 100%;
  }

  .course-radio-c {
    max-width: 227.2px;
    width: 100%;
  }

  .panel-courses {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 16px;
  }

  .course-radio-c {
    padding-top: 14px;
    margin-right: 10px;
  }

  .course-radio-c:nth-last-child(1) {
    padding-bottom: 18px;
  }

  .course-radio-c:nth-child(1) {
    padding-top: 7px;
  }

  .sub-menu-panel {
    transition: all 0.4s ease;
  }

  .course-sub-menu-container .cat-head,
  .department-c label {
    font-size: 14px;
  }

  .course-sub-menu-link .sub-menu-accordion {
    transition: all 0.3s ease-out;
    margin-left: 10px;
  }
}

/* devices less than 400 px width */
@media only screen and (max-width: 400px) {
  .home-logo-expended {
    width: 200px;
    height: 45px;
  }
}