/* @import url(https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap); */
/* @import url(https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap); */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  text-decoration: none;
}

:root {
  /* --font: "Outfit", serif; */
  --strong-font: 600;
  --light-font: 400;
  --width: 85%;
  --max-width: 1280px;
}

body {
  font-family: var(--font);
}

body.no_scroll {
  overflow: hidden;
}

header {
  /* border-bottom: 5px solid #e9e9e9; */
  background: #fff;
}

.header-content {
  width: var(--width);
  max-width: var(--max-width);
  justify-content: space-between;
  padding: 0;
  margin: auto;
}

.header-content {
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.header-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  margin: 20px 0;
}

.header-content img {
  /* margin-left: auto;
    display: block */
  /* max-width: 150px;
  max-height: 100px; */
  width: 25%;
  height: 20%;
}
.display-6 {
  font-size: 2rem;
  font-weight: normal;
}

.banner-section {
  /* background-image: url(../images/Web_banner_11zon.webp); */
  /* background-image: url(../images/bharati-vidya.jpg); */
  /* background-image: linear-gradient(to top, rgb(1 33 167), #fff8f800), url(../images/bharati-vidya.jpg);  */
  background-image: linear-gradient(
      to bottom,
      #203e991c 0%,
      hsl(225.35deg 93.99% 17.2% / 77%) 65%
    ),
    url(../images/c-office-slide.webp);
  background-repeat: no-repeat;
  background-position: top;
  padding: 0px 0 0px;
  background-size: cover;
  aspect-ratio: 4 / 1;
  display: grid;
  align-items: center;
}

.banner-section .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  width: var(--width);
  margin: auto;
  max-width: var(--max-width);
}

.banner-section .wrapper .child-1 .batch_number {
  background-color: #ffff;
  padding: 10px;
  border-radius: 5px;
  color: #000;
  font-weight: 600px;
  width: max-content;
  margin-top: 20px;
  font-size: 1.3rem;
  color: #203e99;
}

.banner-section .wrapper .child-1 .hero-text {
  font-size: 3.8rem;
  color: #fff;
  line-height: 3rem;
}

.banner-section .wrapper .child-1 span {
  font-size: 1.8rem;
  color: #fff;
  line-height: 2.8rem;
}

.banner-section .wrapper .child-1 .hero-text span {
  font-size: 1.5rem;
}

.banner-section .child-2 {
  align-items: center;
  display: flex;
  height: 100%;
}

.banner-section .child-2 .form-wrapper {
  background: hsl(0deg 0% 100%);
  border-radius: 0px;
  padding: 20px;
  width: 100%;
  margin-left: auto;
  max-width: 450px;
  position: relative;
}

.banner-section .child-2 .form-wrapper .heading {
  font-size: 1.5rem;
  font-weight: var(--strong-font);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 10px;
}

.form-control,
.form-control:focus,
.form-control:focus-visible,
.form-control:visited {
  width: 100%;
  padding: 0.45rem 0.55rem;
  border: 1px solid #a1a1a1;
  border-radius: 0.35rem;
  font-size: 0.9rem;
  box-shadow: none;
  outline: 0;
  /* font-family: 'Outfit'; */
}

.form-control::placeholder {
  color: #000;
}

/* .d-flex {
  display: flex;
  align-items: start;
} */

.ml-2 {
  margin-left: 0.4rem;
}

.same-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.banner-section .child-2 .heading {
  font-size: 1.3rem;
  font-weight: var(--light-font);
  margin-bottom: 10px;
  text-align: center;
}

.banner-section .child-2 .sub-heading {
  font-size: 0.9rem;
  font-weight: var(--light-font);
  margin-bottom: 10px;
  text-align: center;
}

.form-group label {
  font-size: 0.83rem;
}

.btn {
  padding: 0.5rem 2rem;
  background: #8e4e02;
  color: #fff;
  border: none;
  border-radius: 6px;
  /* text-transform: uppercase; */
  font-size: 1.1rem;
  font-weight: var(--strong-font);
  cursor: pointer;
}

article section {
  width: var(--width);
  max-width: var(--max-width);
  margin: auto;
}

section {
  padding: 0.5rem 0;
}

.section-heading {
  text-align: center;
  font-size: 1.7rem;
  font-weight: var(--strong-font);
  color: #000;
  position: relative;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.section-heading::after {
  content: "";
  width: 8%;
  background: #ffeb3b;
  height: 0.25rem;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  max-width: 150px;
}

.section-description {
  text-align: justify;
  font-size: 1rem;
  font-weight: var(--light-font);
}

/* .check-box-row {
    align-items: start
} */

.check-box-row input[type="checkbox"] {
  margin-top: 0.3rem;
  cursor: pointer;
}

.custom-popup {
  position: fixed;
  width: 450px;
  top: -150%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 450ms ease-in-out;
  z-index: 9999;
}

.custom-popup.show {
  top: 50%;
}

.custom-popup iframe {
  width: 100%;
  height: 300px;
}

.form-popup {
  position: fixed;
  width: 100%;
  max-width: 450px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 450ms ease-in-out;
  background: #fff;
  padding: 20px;
  z-index: 1009;
  border-radius: 5px;
  opacity: 0;
}

.form-popup.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.form-popup .heading {
  text-align: center;
  font-size: 1.3rem;
  font-weight: var(--strong-font);
  margin-bottom: 10px;
}

.form-popup .sub-heading {
  text-align: center;
  font-size: 1rem;
  font-weight: var(--light-font);
  margin-bottom: 10px;
}

.close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  cursor: pointer;
  color: #fff;
  z-index: 999;
}

.popup-overlay {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 100;
}

.stcicky_area {
  background: #8acbe3;
  padding: 10px 0 15px 0;
  width: 100%;
  transition: top 550ms ease;
  top: -300px;
}

.stcicky_area.stick {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
}

.sticky_section {
  display: grid;
  align-items: start;
  width: var(--width);
  max-width: 950px;
  margin: auto;
  grid-template-columns: repeat(4, 1fr);
}

.sticky_section > div {
  padding: 10px 20px;
  height: 100%;
  color: #fff;
  font-size: 1rem;
  position: relative;
}

.sticky_section > div .label_heading {
  font-weight: var(--strong-font);
  font-size: 1.3rem;
  margin-bottom: 0;
  text-align: center;
}

.sticky_section > div .label_sub_heading {
  /* font-weight: var(--light-font); */
  font-size: 12px;
  text-align: center;
  color: #ffffff;
  margin-top: 10px;
  line-height: 12px;
}

/* .sticky_section>div:first-child::before {
    content: '';
    width: 1px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #fff;
} */

.sticky_section div:nth-child(1)::after,
.sticky_section div:nth-child(2)::after,
.sticky_section div:nth-child(3)::after {
  content: "";
  width: 2px;
  height: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #fff;
}

.grid-alignments-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
}

.grid-alignments-2 > div {
  display: flex;
  align-items: start;
}

.grid-alignments-2 > div .icons {
  font-size: 2rem;
  margin-right: 15px;
  line-height: 1rem;
}

.section-imgs {
  background: #e8ebf5;
  padding-bottom: 3rem;
}

.section-imgs.full-width {
  /* background: #8acbe3; */
  width: 100%;
  max-width: 100%;
  background-position: right;
  background-repeat: no-repeat;
  background-image: linear-gradient(
      to bottom,
      hsl(0deg 0% 8.98% / 83%) 0%,
      #2b0e01a3 55%
    ),
    url(../images/footer-bg.jpeg);
  background-size: cover;
  padding: 0px 0px 60px;
}
.container-sec1 {
  background-position: right;
  background-repeat: no-repeat;
  background-image: linear-gradient(
      to bottom,
      hsl(0deg 0% 20%) 0%,
      hsl(0deg 0% 0% / 63%) 55%
    ),
    url(../images/230hbanner_university-bnerf.webp);
  background-size: cover;
}

.container-sec {
  background-position: right;
  background-repeat: no-repeat;
  background-image: linear-gradient(
      to bottom,
      hsl(0deg 0% 20%) 0%,
      #ffe9c136 55%
    ),
    url(../images/footer-bg.jpeg);
  background-size: cover;
}

.set-full-width {
  width: 100%;
  max-width: 100%;
}

.section-imgs .wrapper {
  width: var(--width);
  max-width: var(--max-width);
  margin: auto;
}

.section-imgs.full-width .section-description,
.section-imgs.full-width .section-heading {
  color: #fff;
}

.icon_text_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
  align-items: start;
}

.icon_text_grid.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 600px;
  gap: 20px;
  margin-top: 20px;
  align-items: start;
  margin-left: auto;
  margin-right: auto;
}

.icon_text_wrapper {
  width: 100%;
  max-width: 250px;
  margin: auto;
  display: grid;
  grid-template-rows: max-content max-content;
  gap: 20px;
  height: 100%;
}

.icon_text_wrapper .icon-background-circle {
  height: 130px;
  width: 130px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: auto;
  /* height: 100%; */
}

/* .circle-color-1 {
  background: #f0aa71 !important;
}

.circle-color-2 {
  background: #abb7d9 !important;
}

.circle-color-3 {
  background: #bfc1c5 !important;
} */

.icon_text_wrapper img {
  margin: auto;
  max-width: 70px;
}

.text-center {
  text-align: center;
}

.icon_text_wrapper .icon_text {
  color: #000;
}

.tab-btns {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  /* grid-template-rows: repeat(4, 50px); */
  /* margin-bottom: 20px; */
  column-gap: 25px;
  row-gap: 15px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.tab-btns .tab-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #f7f7f7;
  color: #000;
  cursor: pointer;
  /* border-radius: 5px; */
  font-weight: var(--strong-font);
  font-size: 1.1rem;
  height: 60px;
  align-content: center;
  border-radius: 40px;
  text-align: center;
}

.tab-btns .tab-btn.current {
  background: #998051;
  /* color: #fff; */
  background-image: linear-gradient(to top, #ffe9c1, #edd107);
  box-shadow: 1px 0px 1px #f0c02f;
}

.tab-content-wrapper .tab-content {
  display: none;
  color: #000;
}

.tab-content-wrapper .tab-content table {
  color: #000;
  border-color: #000;
}

.tab-content-wrapper .tab-content table tr,
.tab-content-wrapper .tab-content table tr th,
.tab-content-wrapper .tab-content table tr td {
  border-color: #000;
  color: #000;
  padding: 7px;
}

.tab-content-wrapper .tab-content.current {
  display: block;
}

.tab-content ul {
  margin-left: 20px;
  margin-right: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

.download-btn {
  /* background: #ff4f01; */
  color: #080808;
  /* border: 1px solid; */
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  margin: 1.5rem auto 1rem auto;
  width: max-content;
  display: block;
  font-size: 1.2rem;
  max-width: 350px;
  /* width: 100%; */
  text-align: center;
  border-radius: 5px;
  background-image: linear-gradient(to top, #ffc107, #ff9800);
  box-shadow: 1px 1px 3px #3f3e3e;
}

.img-fluid {
  max-width: 100%;
}

.logo-wrapper {
  max-width: 1100px;
  margin: auto;
}

.charts-grid {
  margin-top: 30px;
  /* max-width: 1100px; */
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.section-sub-heading {
  font-size: 1.5rem;
  color: #203e99;
  font-weight: var(--strong-font);
  text-align: center;
  margin-bottom: 20px;
}

.col-1 #video,
.col-1 img {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}

.col-1 #video iframe,
.col-1 img {
  margin-bottom: 0 !important;
}

.text-left {
  text-align: left;
}

.message_wrapper {
  padding: 0.7rem 0.5rem;
  border-radius: 10px;
  margin-bottom: 20px;
}

.message_wrapper p {
  color: #fff;
  margin-bottom: 0;
}

.message_wrapper.success {
  background: green;
}

.message_wrapper.danger {
  background: red;
}

.navigation-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  /* padding-top: 20px; */
  max-width: 767px;
  width: var(--width);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  height: 0;
}

.navigation-buttons a {
  width: 100%;
  text-align: center;
  padding: 0.75rem 0.5rem;
  background: #4265cf;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  display: block;
}

.navigation-buttons a.active {
  background: #f58220;
}

.mobile-right-arrow {
  background: #e7e7e7;
  color: #203e99;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 40px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  position: absolute;
  top: 50%;
  right: -39px;
  transform: translateY(-50%);
  font-size: 35px;
}

.navigation-buttons .mobile-right-arrow i {
  transition: all 350ms ease-in-out;
}

.navigation-buttons.mobile-active .mobile-right-arrow i {
  transform: rotate(180deg);
}

.float-top-arrow {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #ffc107;
  border-radius: 50%;
  font-size: 1.5rem;
  position: fixed;
  bottom: 100px;
  right: 50px;
  -webkit-box-shadow: 3px 3px 15px -2px rgb(0 0 0 / 75%);
  -moz-box-shadow: 3px 3px 15px -2px rgb(0 0 0 / 75%);
  box-shadow: 3px 3px 15px -2px rgb(0 0 0 / 75%);
  opacity: 0;
  pointer-events: none;
  transition: all 350ms ease;
  cursor: pointer;
  z-index: 99;
}

.mobile-otp-row {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr max-content;
  gap: 20px;
}

.mobile-otp-row:last-child {
  margin-top: 10px;
}

.otp-check-row {
  display: none;
}

.otp-response-text {
  padding: 10px;
  text-align: center;
  /* margin-top: 10px;
    margin-bottom: 10px; */
  display: none;
  font-size: 0.8rem;
}

.otp-check-btn {
  background: #203e99;
  color: #fff;
  padding: 0.35rem;
  text-align: center;
  cursor: pointer;
  width: 110px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: var(--strong-font);
}

.disabled {
  pointer-events: none;
  opacity: 0.8;
}

.mt-50 {
  margin-top: 50px;
}

.tab-content li {
  font-size: 1rem;
}

.popup-logo {
  margin: auto;
  display: block;
  margin-bottom: 10px;
  max-width: 120px;
  margin: auto;
  margin-bottom: 10px;
}

.form-close-btn {
  font-size: 1.5rem;
  font-weight: 600;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.p-relative {
  position: relative;
}

.section-link {
  position: absolute;
  margin-top: -7rem;
  padding: 5rem;
}

.two-columns_align {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 30px;
}

.two-columns_align .section-heading {
  font-size: 1.5rem;
}

.two-columns_align .col-1-align {
  position: relative;
}

.two-columns_align .col-1-align::after {
  content: "";
  height: 80%;
  width: 2px;
  background: #203e99;
  position: absolute;
  bottom: 0;
  right: 0;
}

.icons-grid {
  /* max-width: 600px; */
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* grid-template-rows: 1fr 1fr; */
  gap: 30px;
}

.icons-grid.grid-2 {
  grid-template-columns: 1fr 1fr;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 600px;
  gap: 30px;
  margin-top: 30px;
  align-items: start;
  margin-left: auto;
  margin-right: auto;
}

.icons-grid.grid-1 {
  max-width: 300px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.icon-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.icon-text .text-for-icon {
  text-align: center;
  max-width: 250px;
  /* font-size: 0.8rem; */
}

.br-20 {
  border-radius: 20px;
}

.btn-plr-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 760px;
  margin: auto;
}

.testimonial {
  background: #203e99;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  position: relative;
  padding: 100px 20px 20px 20px;
  margin-top: 90px;
  /* margin-left: 20px;
    margin-right: 20px; */
}

.testimonial-grid .glider-track .testimonial {
  margin-left: 20px;
  margin-right: 20px;
}

.testimonial .testimonail-name {
  text-align: center;
  font-weight: var(--strong-font);
  margin-bottom: 10px;
  font-size: 1.15rem;
  color: #fff;
}

.testimonial .testimonail-designation {
  font-size: 0.9rem;
  font-weight: var(--light-font);
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}

.testimonial .testimonail-body {
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
}

.testimonail-image img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  margin-bottom: 20px;
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
}
.acc-img img {
  border: 1px solid #c8c8c8;
  margin: 0 10px;
  /* background: #f2f5f9; */
  width: 133px;
}

.header-content {
  display: flex;
  align-items: center;
}

.box-banner-main p {
  font-size: 18px;
  line-height: 100%;
  margin-bottom: 10px;
}

.box-banner-main h3 {
  font-size: 23px;
  color: #fff !important;
  margin: 0;
}

.box-banner-main {
  display: flex;
  gap: 30px;
  margin-top: 25px;
}

.last-date,
.seats {
  /* background: #e47428; */
  padding: 15px;
  text-align: center;
  border-radius: 5px;
  /* box-shadow: rgb(255 91 91 / 52%) 8px 7px 4px -2px; */
  background-image: linear-gradient(
    to right,
    #fb6331,
    #f26b23,
    #f16d23,
    #e85f36
  );
}

/* .box-1-highlights img {
    filter: brightness(0.1);
} */

.higlights-main-new {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px 20px;
  margin-bottom: 30px;
}
.box-5-highlights {
  display: block;
  align-items: center;
  gap: 20px;
  background: #f7e4cd;
  padding: 15px 30px;
  border-radius: 5px;
}

.box-5-highlights h4 {
  margin: 0 !important;
  color: #000000;
  font-size: 16px;
  padding-top: 20px;
}

.box-1-highlights {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  border: 1px solid;
}

.box-1-highlights h4 {
  margin: 0 !important;
  color: #000000;
  font-size: 16px;
}

.higlights-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 20px;
  margin-bottom: 30px;
}

.higlights-main-2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 20px;
  justify-self: center;
}

.higlights-main-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
  justify-self: center;
}

.box-1-highlights:hover {
  background-color: #fff;
  border: 1px solid orange;
  /* background-image: linear-gradient(to right, #fb6331, #f26b23, #f16d23, #e85f36); */
}

/* .row.g-4 {
    display: none;
} */

.eligbility-bg {
  background-image: linear-gradient(to left, #321b01 0%, #391f01 65%);
  padding-bottom: 50px;
}

.academic-cri {
  display: flex;
  gap: 20px;
}

.academic-cri img {
  height: fit-content;
  margin-top: 10px;
}

.eligibility-text {
  color: #fff;
}

.academic-cri {
  background: #fff;
  padding: 20px 30px;
}

.eligibility-container-show {
  display: grid;
  gap: 20px;
}

.academic-content li {
  list-style: none;
  margin-bottom: 10px;
  display: flex;
  gap: 6px;
}

button.accordion-button {
  border-radius: 0 !important;
}

.accordion-body.rounded {
  border-radius: 0 !important;
}

.academic-content {
  margin-top: 10px;
}

/* div#accordionExample {
    display: none;
} */

.academic-content ul {
  margin: 0;
  padding: 0;
}

.eli-5 {
  margin-bottom: 10px !important;
}

.eligibility-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  padding: 0;
  border-radius: 10px;
  /* border: 1px solid #000; */
}

.eligibility-wrapper .tab-content-wrapper {
  /* border: 1px solid #000; */
  border-radius: 10px;
  /* padding: 20px; */
}

.program-content-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.program-content-tab {
  position: relative;
}

.program-content-tab .program-tab-title {
  padding: 10px 20px;
  color: #000;
  font-weight: var(--strong-font);
  background: #e7e7e7;
  text-align: center;
  border-radius: 10px;
  /* cursor: pointer; */
  transition: all 250ms ease-in-out;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  height: 100%;
  justify-content: center;
  text-align: center;
  /* height: 100px; */
  /* min-height: 80px; */
}

.program-content-tab .program-tab-title.tab-list {
  display: flex;
  flex-direction: column;
  text-align: start;
  justify-content: flex-start;
}

.program-content-tab .program-tab-title.tab-list span {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}

.program-content-tab .program-tab-title.tab-list ul li {
  margin-bottom: 5px;
  font-size: 12px;
}

.program-content-tab .arrow {
  transition: all 250ms ease;
}

.program-content-tab.active .arrow {
  transform: rotate(180deg);
}

.program-content-tab.active .program-tab-title {
  color: #fff;
  background: #f58220;
  border: 1px solid #000;
  border-bottom: none;
  border-radius: 0;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.program-content-tab .program-tab-content {
  background: #fff;
  padding: 10px 20px;
  position: absolute;
  top: 46px;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 0;
  transition: all 250ms ease-in-out;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  /* text-align: justify; */
  font-size: 0.9rem;
}

.program-content-tab.active .program-tab-content {
  height: 145px;
  border: 1px solid #000;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top: none;
  opacity: 1;
  pointer-events: painted;
  overflow: auto;
  z-index: 99;
}

.blue-btn {
  background: #ff9e01;
  /* border-radius: 20px; */
  /* background-image: linear-gradient(to top, #033257, #3F51B5); */
}

.no-cost-emi-sec {
  background: #353738;
  padding: 30px;
  color: #fff;
  position: relative;
  z-index: 2;
  border: 1px solid;
  border-radius: 40px 40px 0px 0px;
}

.inside-sec-heading {
  font-size: 1.5rem;
  font-weight: var(--strong-font);
  margin-bottom: 20px;
}

.no-cost-emi-sec .description {
  font-size: 1rem;
  margin-bottom: 30px;
}

.icon-row-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-row-btn div {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 1rem;
  font-weight: var(--strong-font);
}

.icon-row-btn div img {
  /* filter: brightness(0.1); */
  margin-right: 20px;
  /* max-width: 130px; */
  /* max-height: 70px; */
  /* width: 100%; */
}

/* 
.white-btn {
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
} */

.white-btn.btn-size,
.white-btn.btn-size:hover {
  color: #ff4f01;
  font-size: 1.1rem;
  font-weight: var(--strong-font);
  text-align: center;
}

.full-payment-sec {
  padding: 50px 30px 30px 30px;
  border: 1px solid #0028a1;
  border-radius: 20px;
  position: relative;
  margin-top: -40px;
  z-index: 1;
}

.full-payment-sec .description {
  font-size: 1rem;
  margin-bottom: 30px;
}

.orange-btn {
  background: #ff4f01 !important;
  border: 1px solid;
}

.orange-btn.btn-size,
.orange-btn.btn-size:hover {
  color: #ffffff;
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  /* max-width: 760px;
  margin: auto; */
}

.faculty-grid .faculty {
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0px 3px 6.58px 0.42px rgba(0, 0, 0, 0.32);
  /* margin-left: 20px;
    margin-right: 20px; */
}

.faculty-grid .glider-track .faculty.glider-slide {
  margin-left: 20px;
  margin-right: 20px;
}

.faculty-grid .faculty-image {
  height: 170px;
  width: 170px;
  overflow: hidden;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin: auto;
  margin-bottom: 20px;
}

.faculty-grid .faculty-image img {
  height: 170px;
  width: 170px;
  object-fit: cover;
  object-position: center;
}

.faculty-name {
  text-align: center;
  font-size: 1.1rem;
  font-weight: var(--strong-font);
  margin-bottom: 10px;
}

.faculty-designation {
  font-size: 0.9rem;
  text-align: center;
}

.bottom-strip {
  background: #021995;
  padding: 5px 0;
  position: fixed;
  bottom: -300px;
  width: 100%;
  z-index: 100;
  transition: bottom 400ms ease;
  border-top: 1px solid;
}

.bottom-strp-text {
  width: max-content;
  margin: auto;
  display: flex;
  align-items: center;
}

.bottom-strp-text span {
  color: #fff;
  margin-right: 20px;
}

.white-btn {
  background-color: #ffffff;
  padding: 10px 30px;
  border-radius: 5px;
  color: #000;
  font-weight: var(--strong-font);
  border: 1px solid;
}

.bottom-strip.show {
  bottom: 0;
}

.top-strip {
  background: #ffffff;
  padding: 10px;
  position: fixed;
  left: 0;
  width: 100%;
  top: -300px;
  z-index: 100;
  transition: top 400ms ease;
  border-bottom: 1px solid;
}

.top-strip.show {
  top: 0;
}

.top-strip-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  width: var(--width);
  margin: auto;
}

.top-strip-wrapper .top-icon-text {
  display: flex;
  align-items: center;
}

.top-strip-wrapper .top-icon-text:not(:last-child) {
  margin-right: 20px;
}

.top-strip-wrapper .top-icon-text .text-area {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-left: 20px;
  color: #000;
}

.top-strip-wrapper .top-icon-text .text-area .heading-text {
  font-size: 1.1rem;
  font-weight: var(--strong-font);
}

.top-strip-wrapper .top-icon-text .text-area .small-text {
  font-size: 1rem;
  font-weight: var(--light-font);
}

.top-icon-text .white-btn {
  color: #000;
  border-radius: 5px;
  /* border: 1px solid; */
}

.top-icon-text img {
  filter: brightness(0.1);
}

.work-tabs .tab-btns,
.overview-tabs .tab-btns {
  display: flex;
  background: #3c3c3c;
  border-radius: 40px;
  padding: 10px;
}

.work-tabs .tab-btn,
.overview-tabs .tab-btn {
  text-align: center;
}

.work-tab-conten {
  margin-top: 30px;
}

#testimonials,
#faculty {
  position: relative;
}

.glider {
  overflow: hidden;
}

.glider-next,
.glider-prev,
.glider-next:hover,
.glider-prev:hover {
  top: 60%;
  transform: translateY(-50%);
  opacity: 1;
  color: #000 !important;
}

.glider-next.disabled,
.glider-prev.disabled {
  opacity: 0.2;
}

#faculty .glider-track {
  margin-top: 20px;
  margin-bottom: 20px;
}

.response-message-pop {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px;
  width: 100%;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 15px;
  align-items: center;
  background: rgb(245, 130, 32, 0.9);
  color: #fff;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 350ms ease-in-out;
  z-index: 100;
  font-weight: var(--strong-font);
}

.response-message-pop.show {
  opacity: 1;
  pointer-events: painted;
}

.response-pop-close {
  font-size: 1.2rem;
  font-weight: var(--strong-font);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mb-30 {
  margin-bottom: 30px;
}

.charts-content {
  width: 100%;
}

.charts-content img {
  max-width: 100%;
  width: auto;
  margin: auto;
  display: block;
}

.iti {
  width: 100% !important;
}

.loader-wrapper,
.loader-wrapper-otp {
  background-color: rgba(255, 255, 255, 0.6);
  /* color: ; */
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  display: grid;
  align-content: center;
  justify-content: center;
  display: none;
}

.loader {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid #203e99;
  border-top-color: rgb(32, 62, 153);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.content-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-center img {
  max-width: 100px;
  /* background: #f0aa71 !important; */
}

.tools-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  padding: 0;
  border-radius: 10px;
  /* border: 1px solid #000; */
}

.tool-content-wrapper .tab-content {
  display: none;
}

.tool-content-wrapper .tab-content.current {
  display: block;
}

.accordian-tab {
  background: #e7e7e7;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
}

.accordian-content {
  display: none;
}

.accordian-content.active {
  display: block;
}

.accordian-tab .minus-icon {
  display: none;
}

.accordian-tab.active .plus-icon {
  display: none;
}

.accordian-tab.active .minus-icon {
  display: block;
}

.tools-wrapper img {
  max-width: 200px;
  padding: 10px;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
}

.tools-wrapper .align-line {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 20px;
}

.tools-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.tools-wrap .images {
  padding: 10px;
  /* border: 1px solid grey; */
  border-radius: 10px;
}

.tools-wrap .images img {
  max-width: 100%;
}

#program-content .tab-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  margin-top: 15px;
}

#program-content .tab-btn {
  text-align: center;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}

#program-content .tab-btn::after {
  font-size: 1em;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f107";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

#program-content .tab-btn.current::after {
  content: "\f106";
}

section.dummy-showcasing-list {
  /* max-width: var(--width); */
  margin: 0 auto;
  display: none;
  /* padding: 20px 15px; */
}

.boxes-main-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  position: relative;
  padding: 0px 15px;
  max-width: 1360px;
  margin: 0 auto;
}

.box-one-main {
  margin: 0 10px;
  padding: 10px 10px;
  /* background: #ffe9c1; */
  background-image: linear-gradient(to top, #ffc107, #ff9800);
  position: relative;
  z-index: 3;
  text-align: center;
  align-content: center;
  /* border: 3px solid #ffffff; */
  box-shadow: 2px 2px 3px #131d3b;
}

.stcicky_area {
  display: none;
}

.topul {
  font-size: 1.2rem;
  line-height: 2rem;
  color: #ffffff;
  margin-top: 15px;
  margin-left: 0px;
  list-style-type: none;
}

ul.topul li img {
  width: 22px;
}

ul.topul li {
  margin-bottom: 5px;
}

.box-one-main img {
  width: 50%;
}

p.label_heading {
  font-size: 34px;
  font-weight: 500;
  color: #ffffff;
}

.tab-content li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  margin-bottom: 4px;
  /* padding: 10px; */
  border-radius: 5px;
}

.eligibility-wrapper ul {
  display: block;
}

.eligibility-wrapper li {
  /* padding: 20px 15px; */
  /* background: #f7f7f7; */
  /* border: 1px solid; */
}

.eligibility-wrapper .tab-btns {
  margin-bottom: auto;
}

/* .top-icon-text img {
  filter: brightness(0.1);
} */

p.label_sub_heading {
  color: #ffffff;
}

.container {
  width: var(--width);
  max-width: var(--max-width);
  margin: 0 auto;
}

.box-main-container-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.img-box img {
  width: 100%;
  height: -webkit-fill-available;
  object-fit: cover;
}

/* .program-tab-title:hover {
  background: #ff4f01;
  color: #fff;
} */

.images-of-accre img {
  background: #ffffff;
  bo: 150px;
  padding: 5px;
  border: 2px dashed #ffffff;
  width: 20%;
}

.images-of-accre {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}
.features .feature-box {
  background-color: var(--surface-color);
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

.features .feature-box i {
  background: color-mix(in srgb, #ffab00, transparent 92%);
  color: #000000;
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: #ffaa00;
  color: var(--contrast-color);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.testimonial {
  background: #000e37;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  position: relative;
  padding: 100px 20px 20px 20px;
  margin-top: 90px;
  border: 2px solid #ffffff;
  /* margin-left: 20px;
    margin-right: 20px; */
}

.testimonial-grid .glider-track .testimonial {
  margin-left: 20px;
  margin-right: 20px;
}

.testimonial .testimonail-name {
  text-align: center;
  font-weight: var(--strong-font);
  margin-bottom: 10px;
  font-size: 1.15rem;
  color: #fff;
}

.testimonial .testimonail-designation {
  font-size: 0.9rem;
  font-weight: var(--light-font);
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}

.testimonial .testimonail-body {
  color: #fff;
  text-align: center;
}

.testimonail-image img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  margin-bottom: 20px;
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  /* border: 3px solid var(--yello); */
  border: 15px solid #ffffff;
}

.box-main-container-2 {
  display: grid;
  grid-template-columns: 39% 58%;
  gap: 37px;
}

.img-box {
  background: url(../images/2773.jpg);
  background-size: cover;
  background-position: center;
}

.regsitation_btn {
  padding: 20px 0px;
}

.card1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 300px;
  height: 350px;
  text-align: center;
  background-color: #f7d4c4;
  border-radius: 20px;
  border: 1px solid #ffc107;
}

.image2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  background-color: white;
  border: 2px solid #812800;
}

.tab-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.image2card {
  width: 100px;
}

.title {
  font-size: 1.2em;
  font-weight: 600;
}

.descrip {
  font-size: 1em;
  font-weight: 400;
}

.download-btn1 {
  max-width: 1140px;
  width: 100%;
  margin: auto;
  padding-top: 20px;
}

/* .semisterconatiner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 100px);
  gap: 10px;
  background-color: white;
  border: 1px solid #812800;
  place-items: center;
  padding: 10px 0px;
  border-radius: 5px;
}

.semesiter_box {
  width: 90%;
  height: 80px;
  border-radius: 50px;
  display: flex;
  border: 1px solid #131d3b;
  text-align: center;
  justify-content: center;
  align-items: center;
} */

.box_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.box_content1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

.box_text {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffc107;
  border-radius: 5px;
  text-align: center;
}
.box_text1 {
  /* height: 80px; */
  display: flex;
  /* justify-content: center; */
  /* align-items: center; */
  background-color: #ffc107;
  border-radius: 5px;
  /* text-align: center; */
  flex-direction: column;
  padding: 10px 10px;
}
/* .box_text1 ul > li {
  position: unset;
} */

.box_text p {
  font-weight: 600;
}
.box_text1 p {
  font-weight: 600;
}

.content_heading {
  font-size: 1.4em;
  font-weight: 600;
  padding-bottom: 20px;
}

.header-color {
  background-color: #00176f;
}

@media screen and (max-width: 767px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
