@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&amp;display=swap);

* {
  padding: 0px 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  text-decoration: none;
}

:root {
  --font: "Poppins", sans-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: 3px solid #f58220;
  background: #fff;
}

.header-content {
  width: var(--width);
  max-width: var(--max-width);
  justify-content: space-between;
  padding: -5px 0;
  margin: auto;
}
.tab-btns {
    display: none !important;
}
.header-content img {
  /* margin-left: auto;
    display: block */
  max-width: 150px;
  max-height: 100px;
}

.banner-section {
  /* background-image: url(../images/Web_banner_11zon.webp); */
  background-image: url(../images/Web_banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  padding: 30px 0;
  background-size: cover;
}

.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: 2rem;
  color: #fff;
  line-height: 2.5rem;
}

.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: #fff;
  border-radius: 20px;
  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;
}

.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 0.7rem;
  background: #203e99;
  color: #fff;
  border: none;
  border-radius: 6px;
  /* text-transform: uppercase; */
  font-size: 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: #203e99;
  position: relative;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.section-heading::after {
  content: "";
  width: 30%;
  background: #f58220;
  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: 20px;
  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: #203e99;
  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;
}

.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: 1.15rem;
  text-align: center;
}

/* .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: #203e99;
  width: 100%;
  max-width: 100%;
}

.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: #203e99;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  font-weight: var(--strong-font);
  font-size: 1.1rem;
}

.tab-btns .tab-btn.current {
  background: #203e99;
  color: #fff;
}

.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;
}

.download-btn {
  background: #FFAF33;
  color: #000000;
  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: 30px;
}

.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: #f58220;
  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%);
}

.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: 0.85rem;
  height: 100%;
  justify-content: center;
  text-align: center;
  /* min-height: 80px; */
}

.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: #203e99;
  /* border-radius: 20px; */
}

.no-cost-emi-sec {
  background: #203e99;
  padding: 30px;
  border-radius: 20px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.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 {
  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: #203e99;
  font-size: 1.1rem;
  font-weight: var(--strong-font);
  text-align: center;
}

.full-payment-sec {
  padding: 50px 30px 30px 30px;
  border: 2px solid #000;
  border-radius: 20px;
  position: relative;
  margin-top: -40px;
  z-index: 1;
}

.full-payment-sec .description {
  font-size: 1rem;
  margin-bottom: 30px;
}

.orange-btn {
  background: #f58220 !important;
}

.orange-btn.btn-size,
.orange-btn.btn-size:hover {
  color: #fff;
}

.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: #f58220;
  padding: 5px 0;
  position: fixed;
  bottom: -300px;
  width: 100%;
  z-index: 100;
  transition: bottom 400ms ease;
}

.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: #fff;
  padding: 10px 30px;
  border-radius: 10px;
  color: #f58220;
  font-weight: var(--strong-font);
}

.bottom-strip.show {
  bottom: 0;
}

.top-strip {
  background: #203e99;
  padding: 10px;
  position: fixed;
  left: 0;
  width: 100%;
  top: -300px;
  z-index: 100;
  transition: top 400ms ease;
}

.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: #fff;
}

.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: #203e99;
  border-radius: 10px;
}

.work-tabs .tab-btns,
.overview-tabs .tab-btns {
  display: flex;
}

.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;
}

.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";
}
























































@media screen and (max-width:767px) {
    :root {
        --width: 90%;
    }

    .same-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    .banner-section .wrapper {
        grid-template-columns: 1fr
    }

    .grid-alignments-2 {
        grid-template-columns: 1fr
    }

    .icon_text_grid,
    .icon_text_grid.grid-2 {
        grid-template-columns: 1fr
    }

    .sticky_section>div:not(:last-child) {
        border: none !important
    }

    .sticky_section {
        grid-template-columns: 1fr
    }

    .tab-btns {
        grid-template-columns: 1fr;
        width: 100%
    }

    .tab-btns .tab-btn {
        width: 100%
    }

    .tab-content-wrapper .tab-content table {
        width: 100%;
        max-width: 100%;
        overflow: auto;
        display: block
    }

    .tab-content-wrapper .tab-content table tr,
    .tab-content-wrapper .tab-content table tr td,
    .tab-content-wrapper .tab-content table tr th {
        width: max-content;
        padding: 10px
    }

    .charts-grid {
        grid-template-columns: 1fr
    }

    /* .section-heading {
        font-size: 1.5rem
    } */

    .section-sub-heading {
        font-size: 1.3rem
    }

    section {
        padding: 0.5rem 0
    }

    .close-btn {
        right: 5px;
        top: -20px
    }

    .custom-popup {
        width: 100%
    }

    .navigation-buttons {
        grid-template-columns: 1fr;
        padding: 20px;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 20px;
        background: #e7e7e7;
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        left: -250px;
        max-width: 250px;
        transition: all 350ms ease-in-out;
        z-index: 999;
        height: auto;
    }

    .navigation-buttons a {
        background: #203e99;
    }

    .navigation-buttons.mobile-active {
        left: 0;
    }

    .mob-text-center p {
        text-align: center;
    }

    .icon_text_wrapper {
        width: 80%;
    }

    .float-top-arrow {
        bottom: 70px;
        right: 20px;
    }

    .stcicky_area {
        padding: 20px 0;
    }

    .sticky_section>div .label_heading,
    .sticky_section>div .label_sub_heading {
        text-align: left;
    }

    .sticky_section>div:first-child::before,
    .sticky_section div:nth-child(1)::after,
    .sticky_section div:nth-child(2)::after,
    .sticky_section div:nth-child(3)::after,
    .sticky_section div:nth-child(4)::after {
        display: none;
    }

    .section-description {
        text-align: center;
    }

    .mt-50 {
        margin-top: 0px;
    }

    .header-content img {
        margin: auto;
        display: block;
    }

    .banner-section .wrapper .child-1 .hero-text {
        font-size: 1.6rem;
        line-height: 2rem;
    }

    /* .banner-section .banner-small-text {
        font-size: 1.15rem;
    } */

    .two-columns_align {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .two-columns_align .col-1-align::after {
        display: none;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .program-content-tabs {
        grid-template-columns: 1fr;
    }

    .no-cost-emi-sec .description {
        text-align: justify;
    }

    .icon-row-btn {
        flex-direction: column;
        align-items: start !important;
    }

    .icon-row-btn .icon-row-btn {
        display: grid;
        /* grid-template-columns: repeat(2, 1fr); */
        grid-template-columns: 1fr;
    }

    .icon-row-btn div:not(:last-child) {
        margin-bottom: 20px;
    }

    .full-payment-sec .icon-row-btn img {
        margin-bottom: 20px;
    }

    .eligibility-wrapper {
        grid-template-columns: 1fr;
        padding-left: 0;
        padding-right: 0;
        border: none;
    }

    .eligibility-wrapper .tab-content-wrapper {
        padding: 0;
        border: none;
    }

    .faculty-grid {
        grid-template-columns: 1fr;
    }

    .work-tabs .tab-btns,
    .overview-tabs .tab-btns {
        flex-direction: column;
    }

    /* .testimonial {
        margin-left: 0;
        margin-right: 0;
    } */

    .glider-prev {
        left: 0;
    }

    .glider-next {
        right: 0;
    }

    .no-cost-emi-sec .white-btn {
        margin-top: 20px;
    }

    .form-popup {
        width: 90%;
    }

    .section-imgs {
        padding-bottom: 1rem;
    }

    .download-btn {
        font-size: 1.1rem;
    }

    .icons-grid {
        max-width: 100%;
        grid-template-columns: 1fr;
    }   

    .icons-grid.grid-2 {
        grid-template-columns: 1fr;
    }

    .program-content-tab .program-tab-title {
        text-align: center;
    }

    .icon_text_wrapper .icon-background-circle {
        height: auto;
        width: auto;
    }

    .circle-color-1,
    .circle-color-2,
    .circle-color-3 {
        background: none !important;
    }

    .tools-wrapper {
        grid-template-columns: 1fr;
    }

    .tools-wrapper .align-line {
        /* display: grid; */
        grid-template-columns: 1fr;
    }

    .tools-wrap  {
        grid-template-columns: 1fr;
    }

    .mobhead2{
        display: none;
    }

    .mobhead1 {
        width: 100% !important;
        font-size: 20px !important;
        text-align: center;
    }

    .mobhead1 h1 {
        font-size: 20px !important;
    }

    footer {
        font-size: 12px;
    }

    .icon_text_wrapper {
        display: none;
    }

    .banner-section {
        background-image: none !important;
        background-color: #f58220;
    }

    .hero-text {
        font-size: 18px !important;
        text-align: center;
    }

    .text-center {
            font-size: 18px;
    }
}

@media screen and (min-width: 768px) {
    .mobile-right-arrow {
        display: none;
    }
    
    .desk-pb-6 {
        padding-bottom: 2rem;
    }

    .sticky_section>div .label_sub_heading.small {
        font-size: 0.95em;
    }
}