@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #c4161c;
  --light-primary-color: #e0001c;
  --secondary-color: #222222;
  --white-color: #ffffff;
  --blue-color: #220058;
  --primary-font: "Inter", sans-serif;
  --heading-font: "Inter", sans-serif;
  --text-color: #333333;
  --black-color: #000000;
  --brand-color: #894bdf;
}

body {
  font-family: var(--primary-font);
  font-weight: 400;
  background-color: var(--color-white);
  padding: 0;
  margin: 0;
  font-size: 24px;
  box-sizing: border-box;
  background-color: #ffffff;
  color: var(--text-color);
}

*::-webkit-scrollbar {
  width: 10px;
  /* width of the vertical scrollbar */
  height: 10px;
  /* height of the horizontal scrollbar */
}

*::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* light background */
}

*::-webkit-scrollbar-thumb {
  background-color: #894bdf;
  /* thumb color */
  border-radius: 10px;
  /* rounded corners */
  border: 2px solid #f1f1f1;
  /* space around thumb */
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #5e2fa9;
  /* darker on hover */
}

.container {
  max-width: 1720px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .container {
    width: calc(100% - 30px);
  }
}

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

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.text-Primary {
  color: var(--primary-color) !important;
}

.d-none {
  display: none;
}

.d-mb-block {
  display: none;
}
@media (max-width: 767px) {
  .d-mb-block {
    display: block;
  }
}

@media screen and (min-width: 992px) {
  .d-lg-block {
    display: block;
  }
}
.row {
  display: flex;
  margin-left: -1rem;
  margin-right: -1rem;
}

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

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.col-lg-3 {
  width: 25%;
  flex: 0 0 25%;
  padding-left: 1rem;
  padding-right: 1rem;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
  margin: 0;
}

.w-100 {
  width: 100%;
}

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

/* Button CSS  */
.primaryBtn {
  background: url(../images/icons/rightArrow.svg) no-repeat center right 29px, var(--primary-color);
  padding: 15.5px 54px 15.5px 29px;
  background-size: 15px 15px;
  border-radius: 94px;
  color: var(--white-color);
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
.primaryBtn:hover {
  box-shadow: 0px 14px 34px 0px #6f24d7;
}
@media (max-width: 1750px) {
  .primaryBtn {
    padding: 14.5px 52px 14.5px 27px;
    background-size: 14px 14px;
    font-size: 16px;
  }
}
@media (max-width: 1540px) {
  .primaryBtn {
    padding: 12.5px 50px 12.5px 24px;
    background-size: 13px 13px;
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .primaryBtn {
    padding: 10.5px 48px 10.5px 22px;
    background-size: 12px 12px;
    font-size: 14px;
  }
}
@media (max-width: 1100px) {
  .primaryBtn {
    background: url(../images/icons/rightArrow.svg) no-repeat center right 22px, var(--primary-color);
    padding: 8.5px 40px 8.5px 20px;
    background-size: 10px 10px;
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  .primaryBtn {
    background: url(../images/icons/rightArrow.svg) no-repeat center right 18px, var(--primary-color);
    padding: 6.5px 36px 6.5px 16px;
    background-size: 10px 10px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .primaryBtn {
    display: block;
    width: 100%;
    font-size: 16px;
    text-align: center;
    background-size: 15px 15px;
  }
}

.primaryBtn:hover {
  color: var(--white-color);
}

.downloadBtn {
  background: url(../images/icons/downloadIcon-1.svg) no-repeat right 30px center, url(../images/icons/downloadIcon-2.svg) no-repeat left 8px center, var(--primary-color);
  background-size: 30px 30px, 78px 78px;
  padding: 31px 87px 31px 106px;
  border-radius: 94px;
  border: 0;
  text-decoration: underline;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  display: inline-block;
  color: var(--white-color);
  transition: all 0.4s ease;
}
.downloadBtn:hover {
  box-shadow: 0px 14px 34px 0px #6f24d7;
  color: var(--white-color);
}
@media (max-width: 1100px) {
  .downloadBtn {
    padding: 24px 87px 24px 94px;
    background-size: 30px 30px, 60px 60px;
  }
}
@media (max-width: 767px) {
  .downloadBtn {
    display: block;
    width: 100%;
    font-size: 14px;
    padding: 21.5px 72px 21.5px 90px;
    background-size: 24px 24px, 56px 56px;
  }
}
@media (max-width: 600px) {
  .downloadBtn {
    background: url(../images/icons/downloadIcon-1.svg) no-repeat right 16px center, url(../images/icons/downloadIcon-2.svg) no-repeat left 8px center, var(--primary-color);
    padding: 20.5px 32px 20.5px 60px;
    background-size: 24px 24px, 40px 40px;
  }
}

.enquireNowBtn {
  position: fixed;
  right: 0;
  top: 55%;
  transform: translateY(-50%) rotate(180deg);
  background: url(../images/icons/downArrow.svg) no-repeat bottom 19.5px center, var(--primary-color);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 19.5px 20.5px 44.5px 20.5px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
  animation: blinkBackground 3s infinite ease-in-out;
}

.visitBtn {
  position: fixed;
  left: 0;
  top: 34%;
  transform: translateY(-50%) rotate(180deg);
  background: url(../images/icons/downArrow.svg) no-repeat bottom 19.5px center, var(--primary-color);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 19.5px 20.5px 44.5px 20.5px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
  animation: blinkBackground 3s infinite ease-in-out;
}

.sihsBtn {
  position: fixed;
  left: 0;
  top: 68%;
  transform: translateY(-50%) rotate(180deg);
  background: url(../images/icons/downArrow.svg) no-repeat bottom 19.5px center, var(--primary-color);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 19.5px 20.5px 44.5px 20.5px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
  animation: blinkBackground 3s infinite ease-in-out;
}

@media screen and (max-width: 1081px) {
  .visitBtn {
    right: 0;
    left: unset;
    top: 22%;
    border-radius: 0 8px 8px 0;
  }
  .sihsBtn {
    right: 0;
    left: unset;
    border-radius: 0 8px 8px 0;
  }
  .enquireNowBtn {
    top: 44%;
  }
}
.navRight {
  display: flex;
  align-items: center;
  gap: 20px;
}

.enquireBtnMobile {
  display: none;
}

@media screen and (max-width: 1000px) {
  .enquireBtnMobile {
    display: flex;
    padding: 8px 24px;
  }
}
.enquireBtn {
  background: var(--primary-color);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  animation: blinkBackground2 3s infinite ease-in-out;
}

@keyframes blinkBackground2 {
  0%, 100% {
    background-color: var(--primary-color);
  }
  50% {
    background-color: #0b4aa2;
  }
}
@keyframes blinkBackground {
  0%, 100% {
    background-color: var(--primary-color);
    /* Base color */
    background-image: url(../images/icons/downArrow.svg);
    background-repeat: no-repeat;
    background-position: bottom 19.5px center;
  }
  50% {
    background-color: #0b4aa2;
    /* Lighter shade for blink effect */
    background-image: url(../images/icons/downArrow.svg);
    background-repeat: no-repeat;
    background-position: bottom 19.5px center;
  }
}
@media (max-width: 767px) {
  .enquireNowBtn, .visitBtn, .sihsBtn {
    background-size: 15px;
    font-size: 9px;
    padding: 19.5px 12.5px 40px 10.5px;
    right: 13px;
  }
  .visitBtn {
    background-size: 15px;
    font-size: 9px;
    padding: 19.5px 12.5px 40px 10.5px;
  }
  .sihsBtn {
    background-size: 15px;
    font-size: 9px;
    padding: 19.5px 12.5px 40px 10.5px;
  }
}
.enquireNowBtn:hover {
  background-color: var(--primary-color);
}

.sectionHeading {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: 0;
  margin-bottom: 20px;
  color: var(--blue-color);
}
.sectionHeading.admissionHeading {
  font-size: 64px;
  padding: 60px 0;
}

span.subTitle {
  background-color: var(--blue-color);
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white-color);
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 10px;
  white-space: nowrap;
}

p {
  font-weight: 400;
  font-size: 24px;
  line-height: 180%;
  letter-spacing: 0;
  color: var(--text-color);
  margin-bottom: 0;
}

.darkSection .sectionHeading {
  background: linear-gradient(44.41deg, #ffffff 3.63%, #c49ef9 86.48%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* For Firefox */
  color: transparent;
}
.darkSection span.subTitle {
  background: linear-gradient(44.41deg, #ffffff 3.63%, #c49ef9 86.48%);
  color: #220058;
}
.darkSection p {
  color: var(--white-color);
}

@media (max-width: 1750px) {
  .sectionHeading {
    font-size: 36px;
  }
  .sectionHeading.admissionHeading {
    font-size: 54px;
    padding: 50px 0;
  }
  span.subTitle {
    font-size: 22px;
    padding: 8px 18px;
  }
  p {
    font-size: 18px;
  }
}
@media (max-width: 1540px) {
  .sectionHeading {
    font-size: 32px;
  }
  .sectionHeading.admissionHeading {
    font-size: 48px;
    padding: 46px 0;
  }
  span.subTitle {
    font-size: 20px;
    padding: 8px 18px;
  }
  p {
    font-size: 16px;
  }
}
@media (max-width: 1280px) {
  .sectionHeading {
    font-size: 26px;
  }
  .sectionHeading.admissionHeading {
    font-size: 42px;
    padding: 40px 0;
  }
  span.subTitle {
    font-size: 18px;
    padding: 6px 16px;
  }
  p {
    font-size: 14px;
  }
}
@media (max-width: 1100px) {
  .sectionHeading {
    font-size: 22px;
  }
  p {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .sectionHeading {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .sectionHeading {
    font-size: 20px;
  }
  .sectionHeading.admissionHeading {
    font-size: 28px;
    padding: 30px 0 0;
  }
  span.subTitle {
    padding: 6px 16px;
  }
  p {
    font-size: 14px;
  }
}
.mt-50 {
  margin-top: 50px;
}
@media (max-width: 1750px) {
  .mt-50 {
    margin-top: 40px;
  }
}
@media (max-width: 1540px) {
  .mt-50 {
    margin-top: 28px;
  }
}
@media (max-width: 1280px) {
  .mt-50 {
    margin-top: 24px;
  }
}
@media (max-width: 1100px) {
  .mt-50 {
    margin-top: 18px;
  }
}

.mt-40 {
  margin-top: 40px;
}
@media (max-width: 1750px) {
  .mt-40 {
    margin-top: 36px;
  }
}
@media (max-width: 1540px) {
  .mt-40 {
    margin-top: 30px;
  }
}
@media (max-width: 1280px) {
  .mt-40 {
    margin-top: 24px;
  }
}
@media (max-width: 1100px) {
  .mt-40 {
    margin-top: 18px;
  }
}

.mt-20 {
  margin-top: 20px;
}
@media (max-width: 1750px) {
  .mt-20 {
    margin-top: 18px;
  }
}
@media (max-width: 1540px) {
  .mt-20 {
    margin-top: 16px;
  }
}
@media (max-width: 1280px) {
  .mt-20 {
    margin-top: 14px;
  }
}
@media (max-width: 1100px) {
  .mt-20 {
    margin-top: 12px;
  }
}

.fontBold {
  font-weight: 700;
}

header {
  width: 100%;
  background: rgba(255, 255, 255, 0.1019607843);
  border-bottom: 1px solid rgba(3, 63, 82, 0.2392156863);
  backdrop-filter: blur(40px);
  transition: all 0.3s ease;
  position: relative;
  z-index: 999;
}
header .menuClick {
  background: url(../images/icons/menuClick.svg) no-repeat center center;
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
  border: 0;
  display: none;
}
@media (max-width: 992px) {
  header .menuClick {
    display: block;
  }
}
header.homepage {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
header.fixedHeader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #fff;
  /* or any background to avoid transparency */
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.leftSideBar {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #efe7fe 100%);
  z-index: 99999;
  padding: 1rem 0;
  display: none;
}
.leftSideBar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.leftSideBar ul li {
  position: relative;
}
.leftSideBar ul li a {
  color: var(--text-color);
  text-decoration: none;
  padding: 1rem 1rem;
  display: inline-block;
  font-size: 16px;
}
.leftSideBar ul li a.active {
  color: var(--primary-color);
}
.leftSideBar ul li a.submenu-open {
  font-weight: 600;
}
.leftSideBar ul li a > .dropdown-toggle {
  position: absolute;
  right: 10px;
  top: 15px;
  z-index: 99;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.leftSideBar ul li .submenu {
  display: none;
  padding: 0;
  margin: 0;
}
.leftSideBar ul li .submenu.open {
  display: block;
}
.leftSideBar ul li .submenu li a {
  font-size: 0.9rem;
  padding: 1rem 1rem;
  display: block;
  background-color: var(--white-color);
  border-bottom: 1px solid #c4c4c4;
}
.leftSideBar .primaryBtn {
  display: block;
  width: auto;
  margin: 1.5rem 1rem;
}
.leftSideBar .closeleftSideBar {
  border: 0;
  background: transparent;
  font-size: 24px;
  position: absolute;
  right: 1rem;
  z-index: 99;
  color: var(--text-color);
}
@media (max-width: 992px) {
  .leftSideBar {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: 0.4s ease all;
  }
  .leftSideBar.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
  }
}

.navContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  padding: 12px 0 12px;
}
.logo img {
  height: 75px;
  max-width: auto;
}
@media (max-width: 1750px) {
  .logo img {
    height: 64px;
  }
}
@media (max-width: 1540px) {
  .logo img {
    height: 55px;
  }
}
@media (max-width: 1280px) {
  .logo img {
    height: 46px;
  }
}
@media (max-width: 1100px) {
  .logo img {
    height: 36px;
  }
}
@media (max-width: 992px) {
  .logo img {
    height: 32px;
  }
}
@media (max-width: 767px) {
  .logo {
    padding: 8px 0 7px;
  }
  .logo img {
    height: 37px;
  }
}

.leftSideHeader {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.leftSideHeader ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 32px;
}
.leftSideHeader ul li {
  position: relative;
}
.leftSideHeader ul li a {
  font-weight: 500;
  font-size: 21px;
  line-height: 22.4px;
  color: var(--black-color);
  text-decoration: none;
  display: block;
  padding: 10px 0 16px;
  transition: all 0.4s ease-in;
}
.leftSideHeader ul li a:hover, .leftSideHeader ul li a.active {
  color: var(--primary-color);
}
.leftSideHeader ul li .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #eee;
  display: none;
  align-items: flex-start;
  flex-direction: column;
  min-width: 250px;
  padding: 0;
  margin: 0;
  gap: 0;
  list-style: none;
  z-index: 9999;
}
.leftSideHeader ul li .submenu li {
  width: 100%;
}
.leftSideHeader ul li .submenu li a {
  font-size: 18px;
  font-weight: 400;
  color: var(--black-color);
  padding: 12px 16px;
  white-space: nowrap;
  background: #fff;
  transition: all 0.3s ease;
}
.leftSideHeader ul li .submenu li a:hover {
  background: var(--primary-color);
  color: #fff;
}
.leftSideHeader ul li .submenu li .submenu {
  top: 0;
  left: 100%;
}
.leftSideHeader ul li:hover > .submenu {
  display: flex;
}
@media (max-width: 1750px) {
  .leftSideHeader ul {
    gap: 28px;
  }
  .leftSideHeader ul li a {
    font-size: 16px;
    padding: 10px 0 16px;
  }
  .leftSideHeader ul li .submenu li a {
    font-size: 16px;
  }
}
@media (max-width: 1540px) {
  .leftSideHeader ul {
    gap: 24px;
  }
  .leftSideHeader ul li a {
    font-size: 14px;
    padding: 10px 0 10px;
  }
  .leftSideHeader ul li .submenu li a {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .leftSideHeader ul {
    gap: 20px;
  }
  .leftSideHeader ul li a {
    font-size: 12px;
    padding: 6px 0 12px;
  }
  .leftSideHeader ul li .submenu li a {
    font-size: 12px;
  }
}
@media (max-width: 1100px) {
  .leftSideHeader ul {
    gap: 16px;
  }
}
@media (max-width: 992px) {
  .leftSideHeader ul {
    flex-direction: column;
    gap: 16px;
  }
  .leftSideHeader ul li {
    width: 100%;
  }
  .leftSideHeader ul li a {
    font-size: 12px;
    padding: 16px 0 18px;
  }
  .leftSideHeader ul li .submenu {
    position: static;
    display: none;
    border: none;
  }
  .leftSideHeader ul li .submenu li a {
    padding: 10px 12px;
  }
  .leftSideHeader ul li:hover > .submenu {
    display: block;
  }
}
.leftSideHeader .primaryBtn {
  align-self: center;
  margin-left: 40px;
}
@media (max-width: 992px) {
  .leftSideHeader .primaryBtn {
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .leftSideHeader {
    display: none;
  }
}

/* Banner Section */
.heroSection {
  background-image: url(../images/scop-4.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
}
@media (max-width: 767px) {
  .heroSection {
    background-image: url(../images/scop-4-mb.webp);
    padding: 84px 0 0;
    background-position: bottom center;
  }
}

.heroBanner {
  position: relative;
}
.heroBanner .sliderHm img {
  min-height: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
}
.heroBanner .scrollDownArrow {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  z-index: 99;
}
.heroBanner .scrollDownArrow img {
  width: 100%;
  animation: shake 1s infinite ease-in-out;
}
@media (max-width: 767px) {
  .heroBanner .scrollDownArrow {
    width: 60px;
    height: 60px;
  }
}
.heroBanner .slick-next:before,
.heroBanner .slick-prev:before {
  display: none;
}
.heroBanner .slick-prev,
.heroBanner .slick-next {
  background-repeat: no-repeat;
  background-size: contain !important;
  width: 45px;
  height: 45px;
  z-index: 99;
}
@media (max-width: 767px) {
  .heroBanner .slick-prev,
  .heroBanner .slick-next {
    background-size: contain !important;
    width: 30px;
    height: 30px;
  }
}
.heroBanner .slick-prev {
  left: 5%;
  right: auto;
  background-image: url(../images/icons/left-active.svg) !important;
}
.heroBanner .slick-next {
  right: 5%;
  left: auto;
  background-image: url(../images/icons/right-active.svg) !important;
}

@keyframes shake {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-3px);
  }
  40% {
    transform: translateY(3px);
  }
  60% {
    transform: translateY(-3px);
  }
  80% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(0);
  }
}
.heroContainer {
  display: flex;
  gap: 21px;
}
@media (max-width: 767px) {
  .heroContainer {
    flex-direction: column;
  }
}

.leftheroContent {
  max-width: 42.2%;
  padding: 253px 0 300px;
}
@media (max-width: 1750px) {
  .leftheroContent {
    padding: 233px 0 260px;
  }
}
@media (max-width: 1540px) {
  .leftheroContent {
    padding: 203px 0 230px;
  }
}
@media (max-width: 1280px) {
  .leftheroContent {
    padding: 180px 0 200px;
  }
}
@media (max-width: 1100px) {
  .leftheroContent {
    padding: 140px 0 160px;
  }
}
@media (max-width: 992px) {
  .leftheroContent {
    padding: 95px 0 90px;
  }
}
@media (max-width: 767px) {
  .leftheroContent {
    max-width: 100%;
    padding: 0;
  }
}

.rightheroContent {
  background: url(../images/scop-1.webp) left top no-repeat, url(../images/gif_image/heroVideo.gif) #d3d3d3 50%/cover no-repeat;
  mix-blend-mode: multiply;
  width: 53.5%;
  background-size: cover;
  margin-top: 95px;
}
@media (max-width: 1540px) {
  .rightheroContent {
    width: 58.5%;
  }
}
@media (max-width: 767px) {
  .rightheroContent {
    background: url(../images/scop-1-mb.webp) center top no-repeat, url(../images/gif_image/heroVideo-mb.gif) #d3d3d3 50%/cover no-repeat;
    background-size: 90%, cover;
    width: 100%;
    margin-top: 0;
    min-height: 500px;
  }
}
@media (max-width: 600px) {
  .rightheroContent {
    min-height: 310px;
  }
}

.aboutUsSection {
  position: relative;
  background-color: #ffffff;
  top: -10px;
}
.aboutUsSection .aboutContentContainer {
  padding: 80px 0 80px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.aboutUsSection .aboutContentContainer .container {
  justify-content: space-between;
}
.aboutUsSection .aboutContentContainer .aboutLeft {
  max-width: 55.3%;
}
.aboutUsSection .aboutContentContainer .rightSideNewImage {
  width: 43%;
}
@media (max-width: 767px) {
  .aboutUsSection .aboutContentContainer .rightSideNewImage {
    display: none;
  }
}
@media (max-width: 1750px) {
  .aboutUsSection .aboutContentContainer {
    padding: 116px 0 116px;
  }
}
@media (max-width: 1540px) {
  .aboutUsSection .aboutContentContainer {
    padding: 40px 0 80px;
  }
  .aboutUsSection .aboutContentContainer .aboutLeft {
    max-width: 55.33%;
  }
}
@media (max-width: 1280px) {
  .aboutUsSection .aboutContentContainer {
    padding: 60px 0 60px;
  }
}
@media (max-width: 1100px) {
  .aboutUsSection .aboutContentContainer {
    padding: 40px 0 40px;
  }
}
@media (max-width: 992px) {
  .aboutUsSection .aboutContentContainer .aboutLeft {
    max-width: 55%;
  }
}
@media (max-width: 767px) {
  .aboutUsSection {
    background-image: unset;
    background-color: #ffffff;
  }
  .aboutUsSection .aboutContentContainer {
    position: unset;
  }
  .aboutUsSection .aboutContentContainer .aboutLeft {
    max-width: 100%;
  }
}

.visionMissionSection {
  background: url(../images/manVisionMision.webp) no-repeat bottom right, url(../images/scop-3.webp) no-repeat bottom center;
  background-size: 25% auto, cover;
  padding: 120px 0 0;
}
.visionMissionSection .visionMissionContainer {
  padding-bottom: 119px;
}
.visionMissionSection .visionMissionContainer .visionHeading {
  background: url(../images/gif_image/telescope.gif) no-repeat top right;
  background-size: 80px 80px;
  display: inline-block;
  padding: 10px 90px 10px 0;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .visionMissionSection .visionMissionContainer .visionHeading {
    padding: 10px 60px 10px 0;
    background-size: 60px 60px;
  }
}
.visionMissionSection .visionMissionContainer .visionMissionHeading {
  font-weight: 400;
  font-size: 40px;
  line-height: 150%;
  letter-spacing: 0;
  color: #222222;
}
.visionMissionSection .visionMissionContainer .missionBlock {
  position: relative;
}
.visionMissionSection .visionMissionContainer .missionBlock .missionPointer {
  display: none;
}
@media (max-width: 992px) {
  .visionMissionSection .visionMissionContainer .missionBlock {
    max-width: 100%;
  }
  .visionMissionSection .visionMissionContainer .missionBlock .missionPointer {
    background: url(../images/icons/missionLine.svg) no-repeat left 10px top 15px;
    background-size: 29px 100%;
    display: block;
    max-width: 60%;
  }
  .visionMissionSection .visionMissionContainer .missionBlock .missionPointer ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .visionMissionSection .visionMissionContainer .missionBlock .missionPointer ul li {
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    letter-spacing: 0%;
    margin-bottom: 40px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 42px 42px;
    padding-left: 60px;
    min-height: 50px;
    position: relative;
  }
  .visionMissionSection .visionMissionContainer .missionBlock .missionPointer ul li::before {
    content: "";
    position: absolute;
    width: 42px;
    height: 42px;
    background-color: transparent;
    border-radius: 100px;
    box-shadow: 0px 0px 34px 0px #6f24d7;
    pointer-events: none;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .visionMissionSection .visionMissionContainer .missionBlock .missionPointer ul li:nth-child(1) {
    background-image: url("../images/icons/missionPointer-1.svg");
  }
  .visionMissionSection .visionMissionContainer .missionBlock .missionPointer ul li:nth-child(2) {
    background-image: url("../images/icons/missionPointer-2.svg");
  }
  .visionMissionSection .visionMissionContainer .missionBlock .missionPointer ul li:nth-child(3) {
    background-image: url("../images/icons/missionPointer-3.svg");
  }
  .visionMissionSection .visionMissionContainer .missionBlock .missionPointer ul li:nth-child(4) {
    background-image: url("../images/icons/missionPointer-4.svg");
  }
  .visionMissionSection .visionMissionContainer .missionBlock .missionPointer ul li:nth-child(5) {
    background-image: url("../images/icons/missionPointer-5.svg");
  }
  .visionMissionSection .visionMissionContainer .missionBlock .missionPointer ul li:nth-child(2) {
    background-position: left 5px center;
  }
  .visionMissionSection .visionMissionContainer .missionBlock .missionPointer ul li:nth-child(2)::before {
    left: 5px;
  }
  .visionMissionSection .visionMissionContainer .missionBlock .missionPointer ul li:nth-child(3) {
    background-position: left 12px center;
  }
  .visionMissionSection .visionMissionContainer .missionBlock .missionPointer ul li:nth-child(3)::before {
    left: 12px;
  }
}
@media (max-width: 767px) {
  .visionMissionSection .visionMissionContainer .missionBlock .missionPointer {
    max-width: 100%;
  }
}
.visionMissionSection .visionMissionContainer .misionHeading {
  background: url(../images/gif_image/summit.gif) no-repeat top right;
  background-size: 80px 80px;
  display: inline-block;
  padding: 10px 90px 10px 0;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .visionMissionSection .visionMissionContainer .misionHeading {
    position: unset;
    transform: translate(0, 0);
    padding: 10px 60px 10px 0;
    background-size: 60px 60px;
  }
}
.visionMissionSection .visionMissionContainer p {
  max-width: 72.97%;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--text-color);
  margin-bottom: 70px;
}
@media (max-width: 1750px) {
  .visionMissionSection {
    padding: 100px 0 0;
  }
  .visionMissionSection .visionMissionContainer p {
    font-size: 22px;
  }
  .visionMissionSection .visionMissionContainer .visionMissionHeading {
    font-size: 36px;
  }
}
@media (max-width: 1540px) {
  .visionMissionSection {
    padding: 80px 0 0;
  }
  .visionMissionSection .visionMissionContainer p {
    font-size: 20px;
  }
  .visionMissionSection .visionMissionContainer .visionMissionHeading {
    font-size: 32px;
  }
}
@media (max-width: 1280px) {
  .visionMissionSection {
    padding: 60px 0 0;
  }
  .visionMissionSection .visionMissionContainer p {
    font-size: 16px;
  }
  .visionMissionSection .visionMissionContainer .visionMissionHeading {
    font-size: 28px;
  }
}
@media (max-width: 1100px) {
  .visionMissionSection {
    padding: 40px 0 0;
  }
  .visionMissionSection .visionMissionContainer {
    background-size: auto 90%;
  }
  .visionMissionSection .visionMissionContainer p {
    font-size: 14px;
    max-width: 50%;
  }
  .visionMissionSection .visionMissionContainer .visionMissionHeading {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .visionMissionSection {
    background: url(../images/scop-3-mb.webp) no-repeat bottom center;
    background-size: cover;
  }
  .visionMissionSection .visionMissionContainer {
    padding-bottom: 348px;
    background: url(../images/manVisionMisionMb.webp) no-repeat bottom right;
    background-size: auto 348px;
  }
  .visionMissionSection .visionMissionContainer p {
    font-size: 14px;
    margin-bottom: 43px;
    max-width: 100%;
  }
  .visionMissionSection .visionMissionContainer .visionMissionHeading {
    font-size: 24px;
  }
}

.missionBlock {
  max-width: 80%;
}
.missionBlock img {
  transform: translateX(-20px);
}
@media (max-width: 992px) {
  .missionBlock {
    margin-left: 0;
  }
}

.programSection {
  background-color: var(--white-color);
}
.programSection.inProgram .programContainer {
  background: url(../images/programAbout.webp) no-repeat center bottom, url(../images/gif_image/programVideo.gif) #ffffff 50%/cover no-repeat;
}
@media (max-width: 1280px) {
  .programSection.inProgram .programContainer {
    background-size: 35% 355px, 100%;
  }
}
@media (max-width: 1280px) {
  .programSection.inProgram .programContainer {
    background-size: auto 50%, 100%;
  }
}
@media (max-width: 767px) {
  .programSection.inProgram .programContainer {
    flex-direction: column;
    background: none;
  }
}
.programContainer {
  display: flex;
  justify-content: space-between;
  background: url(../images/scop-2.webp) no-repeat center bottom, url(../images/gif_image/programVideo.gif) #ffffff 50%/cover no-repeat;
  background-size: auto calc(100% - 43px), 90%;
  mix-blend-mode: multiply;
  align-items: flex-start;
}
.programContainer .programLeftSide {
  max-width: 34.55%;
  padding-top: 140px;
}
.programContainer .programRightSide {
  max-width: 27.09%;
  padding: 135px 0 62px;
}
.programContainer .programRightSide ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 60px;
  padding: 0;
}
.programContainer .programRightSide ul li {
  position: relative;
  font-weight: 400;
  font-size: 21px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--text-color);
  padding-left: 80px;
  min-height: 60px;
  display: flex;
  align-items: center;
}
.programContainer .programRightSide ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.programContainer .programRightSide ul li:nth-child(1)::before {
  background-image: url("../images/icons/programIc-1.svg");
}
.programContainer .programRightSide ul li:nth-child(2)::before {
  background-image: url("../images/icons/programIc-2.svg");
}
.programContainer .programRightSide ul li:nth-child(3)::before {
  background-image: url("../images/icons/programIc-3.svg");
}
.programContainer .programRightSide ul li:nth-child(4)::before {
  background-image: url("../images/icons/programIc-4.svg");
}
.programContainer .programRightSide ul li:nth-child(5)::before {
  background-image: url("../images/icons/programIc-5.svg");
}
@media (max-width: 1750px) {
  .programContainer .programLeftSide {
    padding-top: 140px;
  }
  .programContainer .programRightSide {
    padding: 135px 0 62px;
  }
  .programContainer .programRightSide ul {
    gap: 60px;
  }
  .programContainer .programRightSide ul li {
    font-size: 16px;
  }
}
@media (max-width: 1540px) {
  .programContainer .programLeftSide {
    padding-top: 130px;
  }
  .programContainer .programRightSide {
    padding: 125px 0 42px;
  }
  .programContainer .programRightSide ul {
    gap: 50px;
  }
  .programContainer .programRightSide ul li {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .programContainer .programLeftSide {
    padding-top: 100px;
  }
  .programContainer .programRightSide {
    max-width: 30%;
    padding: 115px 0 32px;
  }
  .programContainer .programRightSide ul {
    gap: 50px;
  }
  .programContainer .programRightSide ul li {
    background-size: 50px 50px;
    background-position: top left;
    padding-left: 60px;
    height: auto;
  }
}
@media (max-width: 992px) {
  .programContainer {
    background: url(../images/scop-2.webp) no-repeat center center, url(../images/gif_image/programVideo.gif) no-repeat top 35% center;
    background-size: auto 50%, 90%;
  }
}
@media (max-width: 767px) {
  .programContainer {
    flex-direction: column;
    background: none;
    background-color: #fff;
  }
  .programContainer .programLeftSide {
    max-width: 100%;
    padding-top: 40px;
  }
  .programContainer .programRightSide {
    max-width: 100%;
    padding: 30px 0 40px;
  }
  .programContainer .programRightSide ul {
    gap: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .programContainer .programRightSide ul li {
    min-height: 60px;
    max-width: calc(50% - 30px);
  }
}
@media (max-width: 600px) {
  .programContainer {
    background-size: 70% auto, 100%;
    background-color: #fff;
  }
  .programContainer .programRightSide {
    max-width: 100%;
    padding: 30px 0 40px;
  }
  .programContainer .programRightSide ul {
    gap: 30px;
    justify-content: flex-start;
  }
  .programContainer .programRightSide ul li {
    font-size: 14px;
    max-width: calc(100% - 30px);
  }
}
@media (max-width: 419px) {
  .programContainer .programRightSide {
    padding: 40px 0 40px;
  }
}

.programSectionNewImage {
  background: url(../images/scop-2-mb.webp) no-repeat center center, url(../images/gif_image/programVideo-mb.gif) no-repeat center center;
  background-size: auto 100%, 80%;
  width: 100%;
  height: 314px;
  display: none;
}
.programSectionNewImage.inProgramNew {
  background: url(../images/programAbout.webp) no-repeat top 30% center, url(../images/gif_image/programVideo-mb.gif) no-repeat center center;
  background-size: auto 100%, 100%;
}
@media (max-width: 767px) {
  .programSectionNewImage {
    display: block;
  }
}

.clinicalExcellenceSection {
  background: linear-gradient(180deg, #ffffff 0%, #efe7fe 100%);
  padding: 100px 0 90px;
}
.clinicalExcellenceSection .clinicalExcellenceLeft {
  max-width: 82.67%;
}
@media (max-width: 767px) {
  .clinicalExcellenceSection .clinicalExcellenceLeft {
    max-width: 100%;
  }
}
.clinicalExcellenceSection .clinicalExcellenceSlider {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.clinicalExcellenceSection .clinicalExcellenceSlider .slick-slide {
  padding: 0 15px 0 0;
}
@media (max-width: 767px) {
  .clinicalExcellenceSection .clinicalExcellenceSlider .slick-list {
    padding-left: 0 !important;
  }
}
.clinicalExcellenceSection .excellenceBlock {
  background-color: var(--white-color);
  width: calc(25% - 20px);
  padding: 16px 16px 40.61px 16px;
  border-radius: 20px;
}
.clinicalExcellenceSection .excellenceBlock h4 {
  font-weight: 400;
  font-size: 21px;
  line-height: 150%;
  letter-spacing: 0;
  margin-top: 31.61px;
  min-height: 98px;
}
@media (max-width: 1750px) {
  .clinicalExcellenceSection {
    padding: 80px 0 70px;
  }
  .clinicalExcellenceSection .excellenceBlock {
    padding: 14px 14px 36px 14px;
    border-radius: 18px;
  }
  .clinicalExcellenceSection .excellenceBlock h4 {
    font-size: 16px;
    margin-top: 26.61px;
  }
}
@media (max-width: 1540px) {
  .clinicalExcellenceSection {
    padding: 70px 0 60px;
  }
  .clinicalExcellenceSection .excellenceBlock {
    padding: 12px 12px 30px 12px;
    border-radius: 16px;
  }
  .clinicalExcellenceSection .excellenceBlock h4 {
    font-size: 14px;
    margin-top: 22.61px;
  }
}
@media (max-width: 1280px) {
  .clinicalExcellenceSection {
    padding: 60px 0 50px;
  }
  .clinicalExcellenceSection .excellenceBlock {
    padding: 10px 10px 26px 10px;
    border-radius: 14px;
  }
  .clinicalExcellenceSection .excellenceBlock h4 {
    font-size: 14px;
    margin-top: 18.61px;
  }
}
@media (max-width: 1100px) {
  .clinicalExcellenceSection .excellenceBlock {
    padding: 8px 8px 22px 8px;
    border-radius: 12px;
  }
  .clinicalExcellenceSection .excellenceBlock h4 {
    font-size: 14px;
    margin-top: 14.61px;
    min-height: 60px;
  }
}
@media (max-width: 767px) {
  .clinicalExcellenceSection {
    padding: 18px 0 51px;
  }
}

.campusSection {
  background-color: #efe7fe;
  padding: 80px 0px 76px 0;
  position: relative;
}
.campusSection .contentContainer {
  width: 100%;
}
.campusSection .contentContainer .container {
  position: relative;
}
.campusSection .contentContainer .contentLeft {
  max-width: 1400px;
  width: 78%;
}
@media (max-width: 1750px) {
  .campusSection .contentContainer .contentLeft {
    width: 76%;
  }
}
@media (max-width: 992px) {
  .campusSection .contentContainer .contentLeft {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .campusSection .contentContainer .contentLeft {
    width: 100%;
  }
}
.campusSection .contentContainer .contentLeft ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 20px 0 0 0;
  list-style: none;
}
@media (max-width: 767px) {
  .campusSection .contentContainer .contentLeft ul {
    gap: 10px;
    justify-content: space-between;
  }
}
.campusSection .contentContainer .contentLeft ul li {
  width: auto;
  background-color: var(--brand-color);
  color: var(--white-color);
  padding: 16.5px 29px 16.5px 63px;
  border-radius: 200px;
  background-repeat: no-repeat;
  background-position: left 18px center;
  background-size: 36px 36px;
  font-weight: 500;
  font-size: 21px;
  line-height: 150%;
  letter-spacing: 0;
  text-transform: capitalize;
}
.campusSection .contentContainer .contentLeft ul li:nth-child(1) {
  background-image: url("../images/icons/campusIcon-1.svg");
}
.campusSection .contentContainer .contentLeft ul li:nth-child(2) {
  background-image: url("../images/icons/campusIcon-2.svg");
}
.campusSection .contentContainer .contentLeft ul li:nth-child(3) {
  background-image: url("../images/icons/campusIcon-3.svg");
}
.campusSection .contentContainer .contentLeft ul li:nth-child(4) {
  background-image: url("../images/icons/campusIcon-4.svg");
}
@media (max-width: 1750px) {
  .campusSection .contentContainer .contentLeft ul li {
    padding: 14.5px 29px 14.5px 58px;
    background-size: 32px 32px;
    font-size: 16px;
  }
}
@media (max-width: 1540px) {
  .campusSection .contentContainer .contentLeft ul li {
    padding: 12.5px 26px 12.5px 54px;
    background-size: 32px 32px;
    font-size: 14px;
    width: calc(50% - 20px);
  }
}
@media (max-width: 1280px) {
  .campusSection .contentContainer .contentLeft ul li {
    padding: 15.5px 26px 15.5px 60px;
    background-size: 28px 28px;
    font-size: 14px;
    width: calc(40% - 20px);
  }
}
@media (max-width: 767px) {
  .campusSection .contentContainer .contentLeft ul li {
    width: calc(50% - 5px);
    background-size: 24px 24px;
    padding: 12px 20px 12px 50px;
    background-position: left 10px center;
  }
}
@media (max-width: 600px) {
  .campusSection .contentContainer .contentLeft ul li {
    width: calc(50% - 5px);
    background-size: 24px 24px;
    padding: 10px 12px 10px 40px;
    background-position: left 8px center;
  }
}
@media (max-width: 419px) {
  .campusSection .contentContainer .contentLeft ul li {
    background-size: 20px 20px;
    padding: 10px 12px 10px 38px;
    background-position: left 8px center;
    font-size: 12px;
  }
}
.campusSection .customCampusSliderArrows {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1750px) {
  .campusSection .customCampusSliderArrows {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .campusSection .customCampusSliderArrows {
    position: unset;
    justify-content: center;
  }
}
.campusSection .customCampusPrev,
.campusSection .customCampusNext {
  border: 0;
  width: 60px;
  height: 60px;
  border-radius: 80px;
  background-size: contain !important;
}
@media (max-width: 1750px) {
  .campusSection .customCampusPrev,
  .campusSection .customCampusNext {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1540px) {
  .campusSection .customCampusPrev,
  .campusSection .customCampusNext {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1280px) {
  .campusSection .customCampusPrev,
  .campusSection .customCampusNext {
    width: 30px;
    height: 30px;
  }
}
.campusSection .customCampusPrev {
  background: url(../images/icons/left.svg);
}
.campusSection .customCampusNext {
  background: url(../images/icons/right-active.svg);
}
.campusSection .slick-slide {
  margin: 0 15px 0 0;
}
.campusSection .campusFeatureSlider {
  margin-left: 5%;
}
.campusSection .campusFeatureSlider .slick-list {
  padding-left: 0 !important;
}
.campusSection .campusFeatureSlider .slick-track {
  display: flex;
  align-items: flex-end;
}
.campusSection .slideCampus {
  background-color: var(--white-color);
  padding: 20px 16px 25px;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}
.campusSection .slideCampus .imgLeft p {
  font-weight: 400;
  font-size: 21px;
  line-height: 150%;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.campusSection .slideCampus .primaryBtn {
  padding: 9.5px 54px 9.5px 29px;
  font-size: 14px;
  margin-top: 34px;
}
@media (max-width: 1750px) {
  .campusSection .slideCampus .imgLeft p {
    font-size: 17px;
  }
}
@media (max-width: 1540px) {
  .campusSection .slideCampus .imgLeft p {
    font-size: 16px;
  }
}
@media (max-width: 1100px) {
  .campusSection .slideCampus .imgLeft p {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .campusSection .slideCampus .imgLeft p {
    order: 1;
  }
  .campusSection .slideCampus .imgLeft img {
    order: 2;
  }
}
@media (max-width: 767px) {
  .campusSection {
    padding: 40px 0px 40px 0;
  }
}

.careerSection {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.careerSection .careerOverlay {
  padding: 100px 0;
  background-color: rgba(111, 36, 215, 0.5);
}
.careerSection video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.careerSection .careerContainer {
  border: 2px solid rgba(255, 255, 255, 0.4862745098);
  backdrop-filter: blur(50px);
  background: rgba(111, 36, 215, 0.1019607843);
  padding: 42px 30px 47px;
  border-radius: 30px;
}
.careerSection .careerContainer .careerColRow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 18px;
}
.careerSection .careerContainer .careerColRow .careerCol25 {
  flex: 1 1 calc(33.333% - 18px);
}
@media (max-width: 767px) {
  .careerSection .careerContainer .careerColRow .careerCol25 {
    flex: 1 1 calc(50% - 18px);
    text-align: left;
  }
  .careerSection .careerContainer .careerColRow .careerCol25 p {
    text-align: left;
  }
}
.careerSection .careerContainer h3 {
  background: linear-gradient(44.41deg, #ffffff 3.63%, #c49ef9 86.48%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 500;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  font-family: var(--heading-font);
}
.careerSection .careerContainer p.subheading {
  font-weight: 400;
  font-size: 21px;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  color: var(--white-color);
  margin-top: 10px;
  margin-bottom: 62px;
}
.careerSection .careerContainer p {
  font-weight: 500;
  font-size: 21px;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  color: var(--white-color);
  margin: 13px 0 53px;
}
@media (max-width: 1750px) {
  .careerSection .careerContainer h3 {
    font-size: 32px;
  }
  .careerSection .careerContainer p.subheading {
    font-size: 18px;
    margin-bottom: 52px;
  }
  .careerSection .careerContainer p {
    font-size: 18px;
    margin: 12px 0 45px;
  }
}
@media (max-width: 1540px) {
  .careerSection .careerContainer h3 {
    font-size: 30px;
  }
  .careerSection .careerContainer p.subheading {
    margin-bottom: 45px;
  }
  .careerSection .careerContainer p {
    margin: 12px 0 40px;
  }
}
@media (max-width: 1280px) {
  .careerSection .careerContainer h3 {
    font-size: 28px;
  }
  .careerSection .careerContainer p.subheading {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .careerSection .careerContainer p {
    font-size: 14px;
    margin: 12px 0 35px;
  }
}
@media (max-width: 992px) {
  .careerSection .careerContainer h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .careerSection .careerContainer {
    padding: 30px 14px 30px;
  }
  .careerSection .careerContainer p.subheading {
    margin-bottom: 40px;
  }
  .careerSection .careerContainer p {
    margin: 12px 0 35px;
  }
}
.careerSection.inProgram .careerContainer {
  display: flex;
  gap: 30px;
  align-items: flex-end;
}
.careerSection.inProgram .careerContainer .careerLeftContent {
  max-width: 48.74%;
}
.careerSection.inProgram .careerContainer h3,
.careerSection.inProgram .careerContainer p,
.careerSection.inProgram .careerContainer p.subheading {
  text-align: left;
}
.careerSection.inProgram .careerContainer p.subheading {
  margin-bottom: 30px;
}
.careerSection.inProgram .careerContainer p {
  margin: 30px 0 0;
}
.careerSection.inProgram .careerContainer .careerBlock {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.careerSection.inProgram .careerContainer .careerBlock p {
  margin: 0;
}
.careerSection.inProgram .careerContainer .careerRightContent {
  max-width: 49.18%;
  position: relative;
}
@media (max-width: 767px) {
  .careerSection.inProgram .careerContainer .careerRightContent {
    max-width: 100%;
  }
}
.careerSection.inProgram .careerContainer .customCampusSliderArrows {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin-right: 20px;
}
@media (max-width: 1750px) {
  .careerSection.inProgram .careerContainer .customCampusSliderArrows {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .careerSection.inProgram .careerContainer .customCampusSliderArrows {
    position: unset;
    justify-content: center;
  }
}
.careerSection.inProgram .careerContainer .customCampusPrev,
.careerSection.inProgram .careerContainer .customCampusNext {
  border: 0;
  width: 60px;
  height: 60px;
  border-radius: 80px;
  background-size: contain !important;
  cursor: pointer;
}
@media (max-width: 1750px) {
  .careerSection.inProgram .careerContainer .customCampusPrev,
  .careerSection.inProgram .careerContainer .customCampusNext {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1540px) {
  .careerSection.inProgram .careerContainer .customCampusPrev,
  .careerSection.inProgram .careerContainer .customCampusNext {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1280px) {
  .careerSection.inProgram .careerContainer .customCampusPrev,
  .careerSection.inProgram .careerContainer .customCampusNext {
    width: 30px;
    height: 30px;
  }
}
.careerSection.inProgram .careerContainer .customCampusPrev {
  background: url(../images/icons/left.svg);
}
.careerSection.inProgram .careerContainer .customCampusNext {
  background: url(../images/icons/right-active.svg);
}
.careerSection.inProgram .careerContainer .slick-slide {
  margin: 0 15px 0 0;
}
@media (max-width: 767px) {
  .careerSection.inProgram .careerOverlay {
    padding: 100px 0 100px;
  }
  .careerSection.inProgram .careerContainer {
    flex-direction: column;
  }
  .careerSection.inProgram .careerContainer .careerLeftContent {
    max-width: 100%;
  }
  .careerSection.inProgram .bootomPara {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .careerSection.inProgram:after {
    height: 300px;
  }
  .careerSection.inProgram .careerOverlay {
    padding: 40px 0 40px;
  }
}
@media (max-width: 1750px) {
  .careerSection .careerOverlay {
    padding: 70px 0;
  }
}
@media (max-width: 1540px) {
  .careerSection .careerOverlay {
    padding: 60px 0;
  }
}
@media (max-width: 1280px) {
  .careerSection .careerOverlay {
    padding: 50px 0;
  }
}
@media (max-width: 992px) {
  .careerSection .careerOverlay {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .careerSection .careerOverlay {
    padding: 40px 0;
  }
}
@media (max-width: 600px) {
  .careerSection .careerOverlay {
    padding: 40px 0;
  }
}

.programServicesSection {
  background: linear-gradient(180deg, #ffffff 0%, #efe7fe 100%);
  padding: 90px 0;
}

.researchSection {
  background: url(../images/purpleBg.webp) no-repeat top center, rgba(249, 249, 249, 0.712);
  background-size: 100% 61.07%;
  padding-top: 100px;
  z-index: 999;
  position: relative;
}
.researchSection .researchLeft {
  max-width: 40.64%;
}
@media (max-width: 767px) {
  .researchSection .researchLeft {
    max-width: 100%;
    margin-bottom: 1rem;
  }
}
.researchSection .reaserchSlider {
  margin-left: 5%;
  margin-top: 40px;
}
.researchSection .reaserchSlider .slick-list {
  padding-left: 0 !important;
}
.researchSection .reaserchSlider .slick-slide {
  padding: 0 30px 0 0;
}
.researchSection .primaryBtn {
  align-self: flex-end;
}
.researchSection .rearchSlide {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.researchSection .rearchSlide .overlay {
  position: absolute;
  inset: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--white-color);
  display: flex;
  align-items: end;
  padding: 30px;
}
@media (max-width: 1100px) {
  .researchSection .rearchSlide .overlay {
    font-size: 14px;
    padding: 1rem;
  }
}
.researchSection .rearchSlide img {
  width: 100%;
}
@media (max-width: 1750px) {
  .researchSection {
    padding-top: 80px;
  }
  .researchSection .reaserchSlider {
    margin-top: 20px;
  }
}
@media (max-width: 1540px) {
  .researchSection {
    padding-top: 60px;
  }
  .researchSection .reaserchSlider {
    margin-top: 20px;
  }
}
@media (max-width: 1280px) {
  .researchSection {
    padding-top: 40px;
  }
  .researchSection .reaserchSlider {
    margin-top: 20px;
  }
}
@media (max-width: 1100px) {
  .researchSection {
    padding-top: 40px;
  }
  .researchSection .reaserchSlider {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .researchSection .flex-column {
    flex-direction: column;
  }
  .researchSection .reaserchSlider {
    margin-left: 0;
  }
  .researchSection .reaserchSlider .slick-slide {
    padding: 0 10px;
  }
}

.exposureSection {
  background: url(../images/exposure-2.webp) no-repeat top center, #ffffff;
  background-size: 100% 100%;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: -60px;
}
@media (max-width: 1540px) {
  .exposureSection {
    background-size: 100% 590px;
  }
}
.exposureSection .exposureLeft {
  max-width: 50%;
  padding: 195px 0 50px;
}
.exposureSection ul.oppList {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 20px;
  padding: 0;
  margin-top: 20px;
}
.exposureSection ul.oppList li {
  font-weight: 400;
  font-size: 21px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--text-color);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 76px;
  background-size: auto 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  max-width: 65.5%;
}
.exposureSection ul.oppList li:nth-child(1) {
  background-image: url("../images/icons/exposureIcon-1.svg");
}
.exposureSection ul.oppList li:nth-child(2) {
  background-image: url("../images/icons/exposureIcon-2.svg");
}
.exposureSection ul.oppList li:nth-child(3) {
  background-image: url("../images/icons/exposureIcon-3.svg");
}
.exposureSection .exposureRight {
  background: url(../images/exposure-1.webp) no-repeat right bottom;
  width: 39%;
  background-size: auto 82%;
}
@media (max-width: 1280px) {
  .exposureSection .exposureRight {
    background-size: auto 70%;
    width: 44%;
  }
}
@media (max-width: 1750px) {
  .exposureSection .exposureRight {
    width: 40%;
  }
}
@media (max-width: 1540px) {
  .exposureSection .exposureRight {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .exposureSection .exposureRight {
    width: 48%;
    background-size: auto 60%;
  }
}
@media (max-width: 767px) {
  .exposureSection .exposureRight {
    background: url(../images/exposure-1.webp) no-repeat center bottom, url(../images/gif_image/earth.gif) no-repeat center center;
    width: 60%;
    background-size: cover;
    height: 420px;
  }
}
@media (max-width: 600px) {
  .exposureSection .exposureRight {
    background: url(../images/exposure-1.webp) no-repeat center bottom, url(../images/gif_image/earth.gif) no-repeat center center;
    width: 80%;
    background-size: 100% auto;
    height: 480px;
  }
}
@media (max-width: 419px) {
  .exposureSection .exposureRight {
    background: url(../images/exposure-1.webp) no-repeat center bottom, url(../images/gif_image/earth.gif) no-repeat center center;
    width: 80%;
    background-size: 100% auto;
    height: 360px;
  }
}
.exposureSection .container {
  position: relative;
  z-index: 99;
  flex-direction: row;
}
@media (max-width: 767px) {
  .exposureSection .container {
    flex-direction: column;
    align-items: center;
  }
}
.exposureSection .exposureVideoContainer {
  position: absolute;
  right: 0;
  top: 0;
  mix-blend-mode: multiply;
  max-width: 90%;
  transform: translate(25%, -15%);
}
@media (max-width: 767px) {
  .exposureSection .exposureVideoContainer {
    display: none;
  }
}
@media (max-width: 1750px) {
  .exposureSection {
    margin-top: -50px;
  }
  .exposureSection .exposureLeft {
    padding: 165px 0 40px;
  }
  .exposureSection ul.oppList {
    gap: 20px;
    margin-top: 20px;
  }
  .exposureSection ul.oppList li {
    font-size: 18px;
    padding-left: 76px;
    min-height: 60px;
  }
}
@media (max-width: 1540px) {
  .exposureSection {
    margin-top: -40px;
  }
  .exposureSection .exposureLeft {
    padding: 125px 0 20px;
  }
  .exposureSection ul.oppList {
    gap: 18px;
    margin-top: 15px;
  }
  .exposureSection ul.oppList li {
    font-size: 16px;
    padding-left: 70px;
    min-height: 50px;
  }
}
@media (max-width: 1280px) {
  .exposureSection {
    margin-top: -30px;
  }
  .exposureSection .exposureLeft {
    padding: 95px 0 20px;
  }
  .exposureSection ul.oppList {
    gap: 16px;
    margin-top: 15px;
  }
  .exposureSection ul.oppList li {
    font-size: 14px;
    padding-left: 60px;
    min-height: 40px;
    max-width: 100%;
  }
}
@media (max-width: 1100px) {
  .exposureSection {
    margin-top: -20px;
  }
  .exposureSection .exposureLeft {
    max-width: 50%;
    padding: 75px 0 20px;
  }
  .exposureSection ul.oppList {
    gap: 16px;
    margin-top: 10px;
  }
  .exposureSection ul.oppList li {
    font-size: 14px;
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .exposureSection .exposureLeft {
    max-width: 55%;
  }
}
@media (max-width: 767px) {
  .exposureSection {
    background: #f9f9f9;
  }
  .exposureSection .exposureLeft {
    max-width: 100%;
    padding: 60px 0 20px;
  }
  .exposureSection ul.oppList {
    gap: 16px;
    margin-top: 10px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .exposureSection ul.oppList li {
    font-size: 14px;
    padding: 76px 0 0 0;
    min-height: 30px;
    max-width: calc(50% - 20px);
    background-size: 60px 60px;
    background-position: top left;
  }
}

.contactSection .contactContainer {
  padding: 34px 0rem 90px;
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}
.contactSection .contactContainer .contactRight {
  max-width: 57.91%;
  padding-right: 150px;
  padding-top: 30px;
}
.contactSection .TopCoontactImg {
  width: 40.63%;
}
@media (max-width: 767px) {
  .contactSection .TopCoontactImg {
    display: none;
  }
}
.contactSection .contactHmBlock {
  background-color: #efe7fe;
  border-radius: 12px;
  padding: 32px 16px 7px;
  min-height: 100%;
  width: 400px;
}
.contactSection .contactHmBlock p {
  font-size: 21px;
}
.contactSection .contactHmBlock img {
  height: 60px;
  margin-bottom: 51px;
}
.contactSection .contactHmRow {
  margin-top: 30px;
  display: flex;
  gap: 30px;
}
.contactSection .bottomCoontactImg {
  display: none;
}
@media (max-width: 1750px) {
  .contactSection .contactContainer {
    padding: 30px 0rem 70px;
  }
  .contactSection .contactContainer .contactRight {
    padding-right: 120px;
  }
  .contactSection .contactHmBlock {
    padding: 24px 14px 5px;
    min-height: 100%;
  }
  .contactSection .contactHmBlock p {
    font-size: 16px;
  }
  .contactSection .contactHmBlock img {
    height: 50px;
    margin-bottom: 40px;
  }
  .contactSection .contactHmRow {
    margin-top: 20px;
  }
}
@media (max-width: 1540px) {
  .contactSection .contactContainer {
    padding: 30px 0rem 70px;
  }
  .contactSection .contactContainer .contactRight {
    padding-right: 100px;
  }
  .contactSection .contactHmBlock {
    padding: 20px 12px 5px;
    min-height: 100%;
  }
  .contactSection .contactHmBlock p {
    font-size: 14px;
  }
  .contactSection .contactHmBlock img {
    height: 40px;
    margin-bottom: 40px;
  }
  .contactSection .contactHmRow {
    margin-top: 50px;
  }
}
@media (max-width: 1280px) {
  .contactSection .contactContainer {
    padding: 20px 0rem 50px;
  }
  .contactSection .contactContainer .contactRight {
    padding-right: 70px;
  }
  .contactSection .contactHmBlock {
    padding: 16px 12px 5px;
    min-height: 100%;
  }
  .contactSection .contactHmBlock p {
    font-size: 14px;
    line-height: 160%;
  }
  .contactSection .contactHmBlock img {
    height: 40px;
    margin-bottom: 20px;
  }
  .contactSection .contactHmRow {
    margin-top: 20px;
  }
}
@media (max-width: 1100px) {
  .contactSection .contactContainer {
    padding: 20px 0rem 40px;
  }
  .contactSection .contactContainer .contactRight {
    padding-right: 50px;
  }
  .contactSection .contactHmBlock {
    padding: 16px 12px 5px;
    min-height: 140px;
  }
  .contactSection .contactHmBlock p {
    font-size: 12px;
  }
  .contactSection .contactHmBlock img {
    height: 36px;
    margin-bottom: 10px;
  }
  .contactSection .contactHmRow {
    margin-top: 20px;
  }
  .contactSection .contactHmRow .slick-slide {
    padding: 0 10px;
  }
}
@media (max-width: 992px) {
  .contactSection .contactContainer {
    padding: 20px 0rem 40px;
  }
  .contactSection .contactContainer .contactRight {
    padding-right: 0px;
  }
  .contactSection .contactHmBlock {
    padding: 16px 12px 5px;
    min-height: 100%;
  }
  .contactSection .contactHmBlock p {
    font-size: 10px;
    min-height: 60px;
  }
  .contactSection .contactHmBlock img {
    height: 36px;
    margin-bottom: 20px;
  }
  .contactSection .contactHmRow {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .contactSection .contactContainer {
    background: none;
    flex-direction: column;
  }
  .contactSection .contactContainer .contactRight {
    max-width: 100%;
    padding-right: 0px;
  }
  .contactSection .contactContainer .bottomCoontactImg {
    display: block;
  }
  .contactSection .contactHmBlock {
    padding: 16px 12px 5px;
    min-height: 100%;
  }
  .contactSection .contactHmBlock p {
    font-size: 14px;
    min-height: 70px;
  }
  .contactSection .contactHmBlock img {
    height: 36px;
    margin-bottom: 20px;
  }
  .contactSection .contactHmRow .slick-list {
    padding-left: 0 !important;
  }
  .contactSection .contactHmRow .slick-slide {
    padding: 0 10px;
  }
}
@media (max-width: 600px) {
  .contactSection .contactContainer {
    padding: 0px 0rem 10px;
  }
}

/* Banner Section */
.aboutheroSection {
  background-image: url(../images/about-scop-hero2.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
}
@media (max-width: 767px) {
  .aboutheroSection {
    background-image: url(../images/about-scop-hero2-mb.webp);
    padding: 40px 0 0;
  }
}

.aboutheroContainer {
  display: flex;
  position: relative;
  gap: 21px;
}
.aboutheroContainer:after {
  content: "";
  background-image: url(../images/gif_image/aboutHero.gif);
  background-repeat: no-repeat;
  background-size: 120% 100%;
  mix-blend-mode: color-burn;
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  z-index: 9;
}
@media (max-width: 767px) {
  .aboutheroContainer {
    flex-direction: column;
  }
  .aboutheroContainer:after {
    background-position: bottom 20% center;
    width: 100%;
    background-size: 140% 50%;
  }
}

.aboutleftheroContent {
  max-width: 42.2%;
  padding: 151px 0 145px;
  position: relative;
  z-index: 99;
}
@media (max-width: 1750px) {
  .aboutleftheroContent {
    padding: 130px 0 135px;
  }
}
@media (max-width: 1540px) {
  .aboutleftheroContent {
    padding: 110px 0 125px;
  }
}
@media (max-width: 1280px) {
  .aboutleftheroContent {
    padding: 90px 0 110px;
  }
}
@media (max-width: 1100px) {
  .aboutleftheroContent {
    padding: 80px 0 100px;
  }
}
@media (max-width: 992px) {
  .aboutleftheroContent {
    padding: 60px 0 80px;
  }
}
@media (max-width: 767px) {
  .aboutleftheroContent {
    max-width: 100%;
    padding: 0;
  }
}

.aboutrightheroContent {
  background: url(../images/about-scop-hero1.webp) left top no-repeat;
  width: 53.5%;
  background-size: cover;
  position: relative;
  z-index: 99;
}
@media (max-width: 1540px) {
  .aboutrightheroContent {
    background: url(../images/about-scop-hero1.webp) center bottom no-repeat;
    background-size: contain;
    width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .aboutrightheroContent {
    background: url(../images/about-scop-hero1.webp) center top no-repeat;
    background-size: cover;
    width: 100%;
    margin-top: 0;
    min-height: 458px;
  }
}
@media (max-width: 600px) {
  .aboutrightheroContent {
    min-height: 318px;
  }
}

.aboutBriefSection {
  position: relative;
  background: url(../images/videoSecond_About.webp) no-repeat right top, var(--white-color);
  background-size: auto 100%;
  overflow: hidden;
}
.aboutBriefSection .aboutBriefContentContainer {
  z-index: 99;
  position: relative;
  padding: 80px 0 80px;
  text-align: left;
}
.aboutBriefSection .aboutBriefContentContainer .aboutBrieftLeft {
  max-width: 49.3%;
}
@media (max-width: 1750px) {
  .aboutBriefSection .aboutBriefContentContainer {
    padding: 116px 0 116px;
  }
  .aboutBriefSection.inProgram .aboutBriefContentContainer {
    padding: 200px 0;
  }
}
@media (max-width: 1540px) {
  .aboutBriefSection .aboutBriefContentContainer {
    padding: 80px 0 80px;
  }
  .aboutBriefSection.inProgram .aboutBriefContentContainer {
    padding: 100px 0 100px;
  }
}
@media (max-width: 1280px) {
  .aboutBriefSection .aboutBriefContentContainer {
    padding: 60px 0 60px;
  }
  .aboutBriefSection.inProgram .aboutBriefContentContainer {
    padding: 80px 0 80px;
  }
}
@media (max-width: 1100px) {
  .aboutBriefSection .aboutBriefContentContainer {
    padding: 40px 0 40px;
  }
  .aboutBriefSection.inProgram .aboutBriefContentContainer {
    padding: 60px 0 60px;
  }
  .aboutBriefSection .aboutBriefVideoContainer {
    transform: translateX(0);
  }
  .aboutBriefSection .aboutBriefVideoContainer video {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .aboutBriefSection .aboutBriefVideoContainer::before {
    width: 80%;
    left: -10px;
  }
}
@media (max-width: 992px) {
  .aboutBriefSection .aboutBriefContentContainer {
    padding: 40px 0 40px;
  }
  .aboutBriefSection .aboutBriefVideoContainer {
    transform: translateX(0);
  }
  .aboutBriefSection .aboutBriefVideoContainer video {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .aboutBriefSection .aboutBriefVideoContainer::before {
    width: 80%;
    left: -10px;
  }
}
@media (max-width: 767px) {
  .aboutBriefSection {
    background-image: unset;
    background-color: #ffffff;
  }
  .aboutBriefSection .aboutBriefContentContainer .aboutBrieftLeft {
    max-width: 100%;
  }
  .aboutBriefSection .aboutBriefVideoContainer {
    width: 100%;
    position: unset;
    height: 100%;
    right: 0;
    top: 0;
    transform: translateX(0px);
  }
  .aboutBriefSection .aboutBriefVideoContainer::before {
    content: "";
    position: absolute;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
  }
  .aboutBriefSection.inProgram .aboutBriefContentContainer {
    padding: 60px 0 40px;
  }
  .aboutBriefSection.inProgram .aboutBriefContentContainer .aboutBrieftLeft p {
    max-width: 100%;
  }
  .aboutBriefSection.inProgram .aboutBriefVideoContainer {
    transform: translateX(0px);
  }
}

.overviewSection {
  padding: 120px 0 485px;
  background: url(../images/infrastructure.webp) no-repeat bottom center;
  background-size: cover;
}
.overviewSection .overviewLeft {
  max-width: 70.57%;
}
@media (max-width: 1750px) {
  .overviewSection {
    padding: 100px 0 445px;
  }
}
@media (max-width: 1540px) {
  .overviewSection {
    padding: 80px 0 405px;
  }
}
@media (max-width: 1280px) {
  .overviewSection {
    padding: 60px 0 360px;
  }
}
@media (max-width: 1100px) {
  .overviewSection {
    padding: 40px 0 320px;
  }
  .overviewSection .overviewLeft {
    max-width: 90.57%;
  }
}
@media (max-width: 992px) {
  .overviewSection {
    padding: 40px 0 280px;
  }
}
@media (max-width: 767px) {
  .overviewSection .overviewLeft {
    max-width: 100%;
  }
}

.manageMtIfSection {
  overflow: hidden;
  position: relative;
}
.manageMtIfSection .managementOverlay {
  position: relative;
  inset: 0;
  z-index: 99;
  padding: 100px 0;
}
.manageMtIfSection .managementOverlay .manageMtIfContentContainer {
  display: flex;
  gap: 28px;
}
.manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfLeft {
  background: rgba(111, 36, 215, 0.1019607843);
  backdrop-filter: blur(50px);
  border-image-slice: 1;
  border-radius: 30px;
  width: 23.78%;
  padding: 40px 47px 40px 47px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfLeft h4 {
  font-weight: 500;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--white-color);
  margin-bottom: 33px;
}
.manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfLeft ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfLeft ul li {
  background: url(../images/icons/carrIC.svg) no-repeat left 3px center;
  background-size: 60px 60px;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0;
  padding: 16.5px 16.5px 16.5px 84px;
  color: var(--white-color);
  margin-bottom: 20px;
  cursor: pointer;
}
.manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfLeft ul li.active {
  background-color: #a965dd;
  border-radius: 89px;
}
@media (max-width: 1540px) {
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfLeft {
    padding: 40px;
  }
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfLeft h4 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfLeft ul li {
    font-size: 16px;
  }
}
@media (max-width: 1100px) {
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfLeft {
    width: 100%;
    padding: 25px;
  }
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfLeft .lgScroll {
    width: 100%;
    overflow: auto;
  }
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfLeft ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
  }
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfLeft ul li {
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfLeft ul li {
    padding: 10.5px 16.5px 10.5px 60px;
    background-size: 50px 50px;
    font-size: 14px;
  }
}
.manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRight {
  background: rgba(111, 36, 215, 0.1019607843);
  backdrop-filter: blur(50px);
  border-radius: 30px;
  width: 74.59%;
  overflow: hidden;
  display: flex;
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: none;
}
.manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRight.active {
  display: flex;
}
@media (max-width: 1100px) {
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRight {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRight {
    flex-direction: column;
  }
}
.manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRightContent {
  max-width: 55.02%;
  padding: 70px 70px;
}
.manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRightContent h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--white-color);
  margin-bottom: 1rem;
}
.manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRightContent p {
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--white-color);
  margin-bottom: 10px;
}
.manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRightContent p.small,
.manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRightContent ul li {
  font-weight: 600;
  font-size: 21px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--white-color);
}
@media (max-width: 1540px) {
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRightContent {
    padding: 40px;
  }
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRightContent h3 {
    font-weight: 500;
    font-size: 30px;
  }
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRightContent p {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRightContent {
    max-width: 100%;
    padding: 25px;
  }
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRightContent p {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRightContent h3 {
    font-weight: 500;
    font-size: 21px;
  }
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRightContent p {
    font-size: 16px;
  }
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRightContent p.small,
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRightContent ul li {
    font-size: 20px;
  }
}
.manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRightImage {
  background: url(../images/bgEffect.svg) no-repeat bottom;
  background-position: bottom right, bottom right;
  background-repeat: no-repeat;
  width: 38.19%;
  display: flex;
  justify-content: flex-end;
}
.manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRightImage img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom right;
     object-position: bottom right;
}
@media (max-width: 1540px) {
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRightImage {
    background-size: auto 280px;
  }
}
@media (max-width: 1280px) {
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRightImage {
    background-size: auto 220px;
  }
}
@media (max-width: 992px) {
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer .manageMtIfRightImage {
    width: 100%;
    height: 305px;
    background-size: auto calc(100% - 80px);
  }
}
.manageMtIfSection .managementOverlay .manageMtIfContentContainer#proChanceller {
  padding: auto;
}
@media (max-width: 1100px) {
  .manageMtIfSection .managementOverlay .manageMtIfContentContainer {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .manageMtIfSection .managementOverlay {
    padding: 40px 0;
  }
}
.manageMtIfSection video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.manageMtIfSection .manageRghtComBlk {
  width: 74.59%;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.manageMtIfSection .manageRghtComBlk .deanBlock {
  display: flex;
  justify-content: space-between;
  align-self: flex-start;
  width: calc(50% - 30px);
  border: 2px solid rgba(255, 255, 255, 0.1019607843);
  border-radius: 30px;
  backdrop-filter: blur(50px);
  padding: 30px 20px 0 20px;
  background: url(../images/bgEffect.svg) no-repeat bottom right, rgba(111, 36, 215, 0.1019607843);
  background-size: 52.48% calc(100% - 60px);
}
.manageMtIfSection .manageRghtComBlk .deanBlock img {
  max-width: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right bottom;
     object-position: right bottom;
}
.manageMtIfSection .manageRghtComBlk .deanBlock h5 {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: var(--white-color);
}
@media (max-width: 1540px) {
  .manageMtIfSection .manageRghtComBlk .deanBlock h5 {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  .manageMtIfSection .manageRghtComBlk .deanBlock h5 {
    font-size: 16px;
  }
}
.manageMtIfSection .manageRghtComBlk .deanBlock p {
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: var(--white-color);
}
@media (max-width: 1280px) {
  .manageMtIfSection .manageRghtComBlk .deanBlock p {
    font-size: 11px;
    margin-bottom: 10px;
  }
}
@media (max-width: 992px) {
  .manageMtIfSection .manageRghtComBlk .deanBlock {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .manageMtIfSection .manageRghtComBlk {
    width: 100%;
    flex-direction: column;
  }
}

#deans {
  overflow: auto;
  max-height: 620px;
}

.programheroSection {
  background-image: url(../images/programHero.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
}
@media (max-width: 767px) {
  .programheroSection {
    background-image: url(../images/about-scop-hero2-mb.webp);
    padding: 84px 0 0;
  }
}
@media (max-width: 600px) {
  .programheroSection {
    padding: 40px 0 0;
  }
}

.programheroContainer {
  display: flex;
  position: relative;
  gap: 21px;
  justify-content: space-between;
}
.programheroContainer:after {
  content: "";
  background: url(../images/gif_image/programHero.gif) lightgray -362.089px -360.024px/183.865% 221.782% no-repeat;
  mix-blend-mode: screen;
  position: absolute;
  top: 0;
  right: 12%;
  width: 41.28%;
  height: 100%;
  z-index: 9;
  background-position: center;
}
@media (max-width: 1280px) {
  .programheroContainer:after {
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .programheroContainer {
    flex-direction: column;
  }
  .programheroContainer:after {
    width: 100%;
    right: 0;
    background-size: cover;
    top: 80px;
  }
}

.programleftheroContent {
  max-width: 42.2%;
  padding: 151px 0 345px;
  position: relative;
  z-index: 99;
}
@media (max-width: 1750px) {
  .programleftheroContent {
    padding: 130px 0 335px;
  }
}
@media (max-width: 1540px) {
  .programleftheroContent {
    padding: 110px 0 325px;
  }
}
@media (max-width: 1280px) {
  .programleftheroContent {
    padding: 90px 0 310px;
  }
}
@media (max-width: 1100px) {
  .programleftheroContent {
    padding: 80px 0 300px;
  }
}
@media (max-width: 992px) {
  .programleftheroContent {
    padding: 60px 0 280px;
  }
}
@media (max-width: 767px) {
  .programleftheroContent {
    max-width: 100%;
    padding: 0;
  }
}

.programrightheroContent {
  background: url(../images/programPerson.webp) left top no-repeat;
  width: 53.5%;
  background-size: cover;
  position: relative;
  z-index: 99;
}
@media (max-width: 1540px) {
  .programrightheroContent {
    background: url(../images/programPerson.webp) left bottom no-repeat;
    background-size: contain;
  }
}
@media (max-width: 767px) {
  .programrightheroContent {
    background: url(../images/programPerson.webp) center bottom no-repeat;
    background-size: contain;
    width: 100%;
    margin-top: 0;
    min-height: 318px;
  }
}

.applicationSection {
  padding: 90px 0 90px;
}
.applicationSection .applicationLeftSide {
  max-width: 84.65%;
}
.applicationSection .applicationLeftSide.addmissonProcess {
  max-width: 80%;
}
@media (max-width: 992px) {
  .applicationSection {
    padding: 50px 0 0;
  }
}
@media (max-width: 767px) {
  .applicationSection {
    padding: 40px 0 40px;
  }
  .applicationSection .applicationLeftSide {
    max-width: 100%;
  }
  .applicationSection .applicationLeftSide.addmissonProcess {
    max-width: 100%;
  }
}

.horizantalListWIc {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 30px;
  width: 100%;
  margin-top: 50px;
  align-items: center;
}
.horizantalListWIc li {
  display: flex;
  gap: 0;
  width: calc(33% - 30px);
}
.horizantalListWIc li .imgIc {
  background-color: #6f24d7;
  border: 6px solid var(--white-color);
  box-shadow: 0px 0px 34px 0px rgba(111, 36, 215, 0.4901960784);
  border-radius: 50px;
  padding: 14px 16px;
  align-self: center;
}
.horizantalListWIc li .imgIc img {
  width: 48px;
  height: 48px;
}
.horizantalListWIc li .contentRght {
  font-weight: 400;
  font-size: 21px;
  line-height: 180%;
  letter-spacing: 0;
  color: #1b0041;
  padding: 15px 37px;
  background-color: #efe7fe;
  border-radius: 200px;
  display: inline-flex;
  align-items: center;
  flex-grow: 1;
}
@media (max-width: 1540px) {
  .horizantalListWIc li .contentRght {
    font-size: 18px;
  }
}
.horizantalListWIc.programmOverviewWic {
  flex-wrap: wrap;
  margin: 35px 0;
  max-width: 98%;
}
.horizantalListWIc.programmOverviewWic li {
  width: calc(50% - 30px);
}
.horizantalListWIc.programmOverviewWic li .contentRght {
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1100px) {
  .horizantalListWIc.programmOverviewWic {
    max-width: 100%;
  }
  .horizantalListWIc.programmOverviewWic li {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .horizantalListWIc.programmOverviewWic li .contentRght {
    padding: 10px 20px;
    font-size: 12px;
  }
}
@media (max-width: 1540px) {
  .horizantalListWIc {
    flex-wrap: wrap;
  }
  .horizantalListWIc li {
    width: calc(50% - 30px);
  }
}
@media (max-width: 1540px) {
  .horizantalListWIc li {
    width: calc(80% - 30px);
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .horizantalListWIc {
    flex-direction: column;
    align-items: flex-start;
  }
  .horizantalListWIc li {
    font-size: 16px;
    width: 100%;
  }
  .horizantalListWIc li .imgIc {
    border-radius: 50px;
    padding: 15px;
  }
  .horizantalListWIc li .imgIc img {
    width: 30px;
    height: 30px;
  }
  .horizantalListWIc li .contentRght {
    padding: 15px 30px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .horizantalListWIc {
    flex-direction: column;
    align-items: flex-start;
  }
  .horizantalListWIc li {
    width: 100%;
    font-size: 14px;
  }
  .horizantalListWIc li .contentRght {
    height: 81px;
  }
}

.refundPolicySection {
  padding: 90px 0;
}
.refundPolicySection .refundPolicyContainer {
  background: url(../images/refundImg_V1.webp) no-repeat right top;
  background-size: 40.64% auto;
}
.refundPolicySection .refundPolicyContainer .refundPolicyLeft {
  max-width: 90%;
}
.refundPolicySection .reservationContainer .refundPolicyLeft {
  max-width: 90%;
  padding-bottom: 0;
}
.refundPolicySection .refundPolicyRightImg {
  display: none;
}
@media (max-width: 992px) {
  .refundPolicySection {
    padding: 40px 0;
  }
  .refundPolicySection .refundPolicyContainer {
    background: url(../images/refundImg.webp) no-repeat center bottom;
    background-size: calc(100% - 30px) auto;
  }
  .refundPolicySection .refundPolicyContainer .refundPolicyLeft {
    max-width: 100%;
  }
  .refundPolicySection .refundPolicyContainer {
    padding-bottom: 410px;
  }
}
@media (max-width: 767px) {
  .refundPolicySection .refundPolicyContainer,
  .refundPolicySection .reservationContainer {
    background: none;
  }
  .refundPolicySection .refundPolicyContainer .refundPolicyLeft,
  .refundPolicySection .reservationContainer .refundPolicyLeft {
    max-width: 100%;
  }
  .refundPolicySection .refundPolicyContainer,
  .refundPolicySection .reservationContainer {
    padding-bottom: 0px;
  }
  .refundPolicySection .refundPolicyRightImg {
    display: block;
    padding: 20px 0;
  }
}

.internationalheroSection {
  background: url(../images/about-scop-hero2.webp) no-repeat;
  background-size: cover;
}
.internationalheroSection .internationalheroContainer {
  padding: 150.5px 0 144.5px;
  background: url(../images/internationalization.webp) no-repeat bottom right;
  background-size: 58.06% auto;
}
.internationalheroSection .internationalheroContainer .internationalleftheroContent {
  max-width: 35.81%;
}
.internationalheroSection .internationalheroContainer.lifeAtInstitute {
  background: url(../images/life_at_institute.webp) no-repeat bottom right;
  background-size: 58.06% auto;
  padding: 150.5px 0 150.5px;
}
@media (max-width: 1540px) {
  .internationalheroSection .internationalheroContainer.lifeAtInstitute {
    padding: 120.5px 0 124.5px;
  }
}
@media (max-width: 1280px) {
  .internationalheroSection .internationalheroContainer.lifeAtInstitute {
    padding: 80.5px 0 84.5px;
  }
}
@media (max-width: 1100px) {
  .internationalheroSection .internationalheroContainer.lifeAtInstitute {
    padding: 80px 0 0px;
  }
}
@media (max-width: 767px) {
  .internationalheroSection .internationalheroContainer.lifeAtInstitute {
    padding: 40.5px 0 0px;
  }
}
.internationalheroSection .internationalBanner {
  display: none;
}
@media (max-width: 1540px) {
  .internationalheroSection .internationalheroContainer {
    padding: 120.5px 0 124.5px;
  }
}
@media (max-width: 1280px) {
  .internationalheroSection .internationalheroContainer {
    padding: 80.5px 0 84.5px;
  }
}
@media (max-width: 1280px) {
  .internationalheroSection .internationalheroContainer {
    padding: 60.5px 0 64.5px;
  }
}
@media (max-width: 1100px) {
  .internationalheroSection .internationalheroContainer {
    background: none;
    background-size: 90% auto;
    padding: 40px 0 0;
  }
  .internationalheroSection .internationalheroContainer .internationalleftheroContent {
    max-width: 100%;
  }
  .internationalheroSection .internationalheroContainer.lifeAtInstitute {
    background: none;
  }
  .internationalheroSection .internationalBanner {
    display: block;
    padding: 40px 0 0px;
  }
}

.exposureInnerSection {
  position: relative;
}
.exposureInnerSection .exposureInnerOverlay {
  position: absolute;
  inset: 0;
  z-index: 99;
  background: rgba(27, 0, 65, 0.5882352941);
  padding: 105px 0 103px;
}
.exposureInnerSection .full-width-video {
  width: 100%;
  max-height: 567px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  /* Optional: ensures video covers the area if height is set */
}
.exposureInnerSection .exposureInnerLeft {
  max-width: 49.3%;
}
@media (max-width: 992px) {
  .exposureInnerSection .full-width-video {
    width: 100%;
    min-height: 400px;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    /* Optional: ensures video covers the area if height is set */
  }
  .exposureInnerSection .exposureInnerOverlay {
    padding: 40px 0;
  }
  .exposureInnerSection .exposureInnerLeft {
    max-width: 100%;
  }
}

.researchInnerSection {
  background: url(../images/about-scop-hero2.webp) no-repeat;
  background-size: cover;
}
.researchInnerSection .researchheroContainer {
  display: flex;
  position: relative;
  gap: 21px;
}
.researchInnerSection .researchheroContainer:after {
  content: "";
  background: url(../images/gif_image/researchHero.gif) lightgray 50%/cover no-repeat;
  mix-blend-mode: screen;
  position: absolute;
  top: 0;
  right: 0;
  width: 66.46%;
  height: 100%;
  z-index: 9;
}
@media (max-width: 767px) {
  .researchInnerSection .researchheroContainer {
    flex-direction: column;
  }
}
.researchInnerSection .researchheroContainer .researchleftheroContent {
  width: 60.26%;
  padding: 150px 0 145px;
}
.researchInnerSection .researchheroContainer .researchrightheroContent {
  background: url(../images/researchInner.webp) right 150px bottom no-repeat;
  width: 73.5%;
  background-size: auto calc(100% - 35px);
  position: relative;
  z-index: 99;
}
@media (max-width: 992px) {
  .researchInnerSection .researchheroContainer .researchrightheroContent {
    background-size: auto calc(100% - 130px);
  }
}
@media (max-width: 767px) {
  .researchInnerSection .researchheroContainer .researchrightheroContent {
    width: 100%;
    margin-top: 0;
    min-height: 318px;
    background: url(../images/researchInner.webp) center bottom no-repeat;
    background-size: auto 318px;
  }
}
@media (max-width: 600px) {
  .researchInnerSection .researchheroContainer .researchrightheroContent {
    width: 100%;
    margin-top: 0;
    min-height: 300px;
    background: url(../images/researchInner.webp) center bottom no-repeat;
    background-size: auto 100%;
  }
}
@media (max-width: 1540px) {
  .researchInnerSection .researchheroContainer .researchleftheroContent {
    padding: 80px 0;
  }
}
@media (max-width: 1280px) {
  .researchInnerSection .researchheroContainer .researchleftheroContent {
    padding: 60px 0;
  }
}
@media (max-width: 992px) {
  .researchInnerSection .researchheroContainer .researchleftheroContent {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .researchInnerSection .researchheroContainer .researchleftheroContent {
    width: 100%;
    padding: 80px 0 0;
  }
  .researchInnerSection .researchheroContainer:after {
    width: 100%;
    height: 60%;
    top: 45%;
  }
}
@media (max-width: 767px) {
  .researchInnerSection .researchheroContainer .researchleftheroContent {
    padding: 40px 0 0;
  }
}

.researchInnavoationSection {
  background: url(../images/scop-3.webp) no-repeat bottom center;
  background-size: cover;
}
.researchInnavoationSection .researchheroContainer {
  background: url(../images/innovationImg.webp) no-repeat top 37.5px right;
  background-size: 49.01% auto;
}
.researchInnavoationSection .researchheroContainer .researchheroLeft {
  max-width: 49.3%;
  padding: 89px 0;
}
.researchInnavoationSection .researchheroContainer .researchheroLeft h3 {
  font-weight: 500;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0%;
  color: var(--blue-color);
  margin: 40px 0;
}
@media (max-width: 1100px) {
  .researchInnavoationSection .researchheroContainer .researchheroLeft h3 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .researchInnavoationSection .researchheroContainer .researchheroLeft h3 {
    font-size: 24px;
  }
}
@media (max-width: 1280px) {
  .researchInnavoationSection .researchheroContainer {
    background: url(../images/innovationImg.webp) no-repeat center right;
    background-size: 49.01% auto;
  }
}
@media (max-width: 767px) {
  .researchInnavoationSection .researchheroContainer {
    background: unset;
    background-size: calc(100% - 30px) auto;
    padding-bottom: 0;
  }
  .researchInnavoationSection .researchheroContainer .researchheroLeft {
    max-width: 100%;
    padding: 40px 0;
  }
}

.excersiseStep {
  margin-top: 40px;
}
.excersiseStep span {
  background-color: #894bdf;
  color: var(--white-color);
  font-weight: 500;
  font-size: 21px;
  line-height: 150%;
  letter-spacing: 0;
  text-transform: capitalize;
  display: inline-block;
  padding: 13.5px 25px 13.5px 73px;
  border-radius: 200px;
  margin-bottom: 30px;
}
@media (max-width: 1540px) {
  .excersiseStep span {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .excersiseStep span {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .excersiseStep span {
    font-size: 14px;
  }
}
.excersiseStep span:nth-child(1) {
  background-image: url("../images/icons/innovationIc-31.svg");
  background-size: auto 36px;
  background-position: left 25px center;
  background-repeat: no-repeat;
}
.excersiseStep span:nth-child(2) {
  background-image: url("../images/icons/innovationIc-32.svg");
  background-size: auto 36px;
  background-position: left 25px center;
  background-repeat: no-repeat;
}
.excersiseStep span:nth-child(3) {
  background-image: url("../images/icons/innovationIc-33.svg");
  background-size: auto 36px;
  background-position: left 25px center;
  background-repeat: no-repeat;
}
.excersiseStep span:nth-child(4) {
  background-image: url("../images/icons/innovationIc-34.svg");
  background-size: auto 36px;
  background-position: left 25px center;
  background-repeat: no-repeat;
}
.excersiseStep span:nth-child(5) {
  background-image: url("../images/icons/innovationIc-35.svg");
  background-size: auto 36px;
  background-position: left 25px center;
  background-repeat: no-repeat;
}

.commingSoon {
  background: url(../images/scop-3.webp) no-repeat bottom center;
  background-size: 100% 100%;
  min-height: calc(100vh - 300px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.commingSoon h1 {
  font-weight: 700;
  font-size: 64px;
  line-height: 150%;
  letter-spacing: 0;
  color: #220058;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .commingSoon h1 {
    font-size: 36px;
  }
}

.aboutInnerPgOne {
  background: url(../images/aboutDEtails-2.webp) no-repeat bottom left;
  background-size: cover;
  padding: 91px 0 0px;
  margin-bottom: -10px;
}
@media (max-width: 1750px) {
  .aboutInnerPgOne {
    padding: 71px 0 0px;
  }
}
@media (max-width: 1540px) {
  .aboutInnerPgOne {
    padding: 60px 0 0px;
  }
}
@media (max-width: 1280px) {
  .aboutInnerPgOne {
    padding: 50px 0 0px;
  }
}
@media (max-width: 1100px) {
  .aboutInnerPgOne {
    padding: 40px 0 0px;
  }
}
@media (max-width: 992px) {
  .aboutInnerPgOne {
    padding: 40px 0 0px;
    background: url(../images/aboutDEtails-2.webp) no-repeat bottom left;
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .aboutInnerPgOne {
    background: url(../images/aboutDEtails-2.webp) no-repeat bottom left;
    background-size: cover;
  }
}

.aboutInnerPgTwo {
  background: url(../images/about-us/img-1.webp) no-repeat bottom right;
  background-size: cover;
  padding: 90px 0;
}
.aboutInnerPgTwo .aboutInnertwoLft {
  max-width: 40.64%;
}
@media (max-width: 1280px) {
  .aboutInnerPgTwo {
    background-size: auto 100%;
    padding: 0px 0;
  }
  .aboutInnerPgTwo .aboutInnertwoLft {
    padding: 40px 50px 40px 0;
    max-width: 50%;
    background-color: rgba(255, 255, 255, 0.4666666667);
  }
}
@media (max-width: 992px) {
  .aboutInnerPgTwo {
    background: url(../images/about-us/img-1-mb.webp) no-repeat top 75% right;
    background-size: cover;
    padding: 40px 0 400px;
  }
  .aboutInnerPgTwo .aboutInnertwoLft {
    max-width: 100%;
    background-color: transparent;
  }
}

.programServicesSection .newServicesSlider {
  margin-left: 4.5%;
}
.programServicesSection .newServicesSlider .slick-list {
  padding-left: 0 !important;
}
.programServicesSection .newServicesSlider .slick-slide {
  padding-right: 30px;
}
.programServicesSection .servicesBlock {
  background-color: var(--white-color);
  width: calc(25% - 20px);
  padding: 16px 16px 40.61px 16px;
  border-radius: 20px;
}
.programServicesSection .servicesBlock h4 {
  font-weight: 400;
  font-size: 21px;
  line-height: 150%;
  letter-spacing: 0;
  margin-top: 31.61px;
  min-height: 32px;
}
.programServicesSection .servicesBlock .read_More {
  margin-top: 19.5px;
  display: inline-block;
  color: var(--text-color);
  font-size: 18px;
  text-decoration: none;
  border-bottom: 1px solid var(--text-color);
}
.programServicesSection .servicesBlock .read_More:hover {
  color: var(--primary-color);
}
@media (max-width: 1540px) {
  .programServicesSection .servicesBlock h4 {
    font-size: 18px;
  }
}
@media (max-width: 1100px) {
  .programServicesSection .servicesBlock h4 {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 80px;
  }
}

.topBannerAll {
  background: url(../images/allbg.webp) no-repeat top center;
  background-size: cover;
  padding: 90px 0;
  min-height: 380px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .topBannerAll {
    min-height: 240px;
    padding: 40px 0;
  }
}
.topBannerAll .sectionHeadingTop {
  font-size: 64px;
  font-weight: 700;
  text-align: left;
  color: var(--white-color);
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .topBannerAll .sectionHeadingTop {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .topBannerAll .sectionHeadingTop {
    font-size: 36px;
  }
}

.contentSection {
  padding: 60px 0;
}
.contentSection h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .contentSection h3 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .contentSection h3 {
    font-size: 24px;
  }
}
.contentSection h4 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 24px;
  display: inline-block;
  color: var(--primary-color);
  border-bottom: 1px solid var(--blue-color);
}
@media (max-width: 767px) {
  .contentSection h4 {
    font-size: 18px;
  }
}
.contentSection p {
  margin-bottom: 1.5rem;
}

.cautionsOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}
.cautionsOverlay .popUpCautionsContent {
  background: #ffffff;
  padding: 30px;
  max-width: 1000px;
  width: 90%;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  max-height: 80%;
  overflow: auto;
}
.cautionsOverlay .popUpCautionsContent h2 {
  font-size: 24px;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  text-align: center;
}
.cautionsOverlay .popUpCautionsContent p {
  margin-bottom: 1.5rem;
  color: var(--text-color);
}
.cautionsOverlay .popUpCautionsContent .closeCautions {
  position: absolute;
  top: 10px;
  right: 15px;
  font-weight: bold;
  cursor: pointer;
  background: url(../images/icons/close.svg) no-repeat center center;
  background-size: contain;
  width: 40px;
  height: 40px;
}

.servicesOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100000;
}
.servicesOverlay .servicesContentPopup {
  background: linear-gradient(180deg, rgba(137, 75, 223, 0.93) 0%, #4a2979 100%);
  border-radius: 26px;
  padding: 50px;
  max-width: 1200px;
  width: 90%;
  display: flex;
  gap: 40px;
  position: relative;
}
.servicesOverlay .servicesContentPopup .servicesContentLeft {
  width: 39.2%;
}
.servicesOverlay .servicesContentPopup .servicesContentRight {
  width: 57.78%;
}
.servicesOverlay .servicesContentPopup .servicesContentRight h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 150%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: var(--white-color);
}
.servicesOverlay .servicesContentPopup .servicesContentRight p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 1rem;
}
.servicesOverlay .servicesContentPopup .closeserviceOverlay {
  position: absolute;
  top: 15px;
  right: 15px;
  font-weight: bold;
  cursor: pointer;
  background: url(../images/icons/close.svg) no-repeat center center;
  background-size: contain;
  width: 40px;
  height: 40px;
  font-size: 0;
}
@media (max-width: 767px) {
  .servicesOverlay .servicesContentPopup .closeserviceOverlay {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 767px) {
  .servicesOverlay .servicesContentPopup {
    flex-direction: column;
    padding: 60px 20px 20px;
  }
  .servicesOverlay .servicesContentPopup .servicesContentLeft,
  .servicesOverlay .servicesContentPopup .servicesContentRight {
    width: 100%;
  }
  .servicesOverlay .servicesContentPopup .servicesContentRight h2 {
    font-size: 18px;
  }
  .servicesOverlay .servicesContentPopup .servicesContentRight p {
    font-size: 14px;
  }
}

.leadershipSection {
  background: url(../images/leadership/heroImages-2.webp) no-repeat center;
  background-size: cover;
}
.leadershipSection .leadershipContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0;
}
.leadershipSection .leadershipContainer .leadershipContent {
  width: 35.58%;
}
@media (max-width: 767px) {
  .leadershipSection {
    padding: 40px 0 0;
  }
  .leadershipSection .leadershipContainer {
    flex-direction: column;
  }
  .leadershipSection .leadershipContainer .leadershipContent {
    width: 100%;
  }
}

.leaderDetailsBlock {
  padding: 50px 0;
}
.leaderDetailsBlock .leaderDetailsTop {
  border-radius: 30px;
  padding: 60px 100px;
  background: url(../images/leadership/quotation-marks-svgrepo-com.svg) no-repeat top 50px left 20px;
  background-size: 60px 60px;
}
.leaderDetailsBlock .leaderDetailsTop p {
  margin-top: 20px;
}
.leaderDetailsBlock .leaderDetailsTop ul {
  margin: 0;
  padding: 0;
  padding-left: 2rem;
}
.leaderDetailsBlock .leaderDetailsTop ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0;
  color: var(--text-color);
  margin-bottom: 10px;
}
@media (max-width: 1280px) {
  .leaderDetailsBlock {
    padding: 20px 0;
  }
  .leaderDetailsBlock .leaderDetailsTop {
    padding: 20px;
    background: url(../images/leadership/quotation-marks-svgrepo-com.svg) no-repeat top 20px left 0px;
    background-size: 20px 20px;
  }
  .leaderDetailsBlock .leaderDetailsTop ul li {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .leaderDetailsBlock {
    padding: 20px 0;
  }
  .leaderDetailsBlock .leaderDetailsTop {
    padding: 20px;
    background: url(../images/leadership/quotation-marks-svgrepo-com.svg) no-repeat top 20px left 0px;
    background-size: 20px 20px;
  }
  .leaderDetailsBlock .leaderDetailsTop ul li {
    font-size: 14px;
  }
}

.lifeAtInstituteOne {
  background: url(../images/scop-3.webp) no-repeat bottom center;
  background-size: cover;
  padding: 90px 0 86px;
}
.lifeAtInstituteOne .listOfInfra {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
  gap: 30px;
}
.lifeAtInstituteOne .listOfInfra li {
  width: calc(16.67% - 30px);
  border: 2px solid var(--blue-color);
  padding: 13.5px 10px;
  color: var(--blue-color);
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
  text-transform: capitalize;
  border-radius: 200px;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}
.lifeAtInstituteOne .listOfInfra li:hover, .lifeAtInstituteOne .listOfInfra li.active {
  background-color: var(--brand-color);
  border: 2px solid var(--brand-color);
  color: var(--white-color);
}
@media (max-width: 1280px) {
  .lifeAtInstituteOne .listOfInfra li {
    font-size: 14px;
  }
}
@media (max-width: 1100px) {
  .lifeAtInstituteOne .listOfInfra {
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .lifeAtInstituteOne .listOfInfra li {
    white-space: nowrap;
    padding: 13.5px 15px;
    font-size: 16px;
    width: auto;
  }
}
.lifeAtInstituteOne .lifeAtInstitutWrapper {
  display: flex;
  gap: 33px;
}
.lifeAtInstituteOne .lifeAtInstitutWrapper .lifeBlock {
  width: calc(33.33% - 33px);
}
@media (max-width: 767px) {
  .lifeAtInstituteOne .lifeAtInstitutWrapper {
    flex-direction: column;
  }
  .lifeAtInstituteOne .lifeAtInstitutWrapper .lifeBlock {
    width: 100%;
  }
}

.admissionDetailInSection {
  padding: 60px 0;
}
.admissionDetailInSection .containerAdmissionInfo {
  padding: 40px;
  border: 1px solid var(--blue-color);
  border-radius: 30px;
}
.admissionDetailInSection .containerAdmissionInfo h2 {
  color: var(--primary-color);
  font-size: 36px;
  margin: 1.5rem 0 0;
}
@media (max-width: 767px) {
  .admissionDetailInSection .containerAdmissionInfo h2 {
    font-size: 21px;
  }
}
@media (max-width: 600px) {
  .admissionDetailInSection .containerAdmissionInfo h2 {
    font-size: 18px;
  }
}
.admissionDetailInSection .containerAdmissionInfo p,
.admissionDetailInSection .containerAdmissionInfo h3,
.admissionDetailInSection .containerAdmissionInfo h4 {
  margin-bottom: 1.5rem;
}
.admissionDetailInSection .containerAdmissionInfo ul li,
.admissionDetailInSection .containerAdmissionInfo ol li {
  font-weight: 400;
  font-size: 24px;
  line-height: 180%;
  letter-spacing: 0;
  color: var(--text-color);
  margin-bottom: 1rem;
}
.admissionDetailInSection .containerAdmissionInfo ul li a,
.admissionDetailInSection .containerAdmissionInfo ol li a {
  color: var(--blue-color);
}
@media (max-width: 767px) {
  .admissionDetailInSection {
    padding: 40px 0 0;
  }
  .admissionDetailInSection .containerAdmissionInfo {
    padding: 20px;
  }
  .admissionDetailInSection .containerAdmissionInfo ul li,
  .admissionDetailInSection .containerAdmissionInfo ol li {
    font-size: 14px;
  }
}
.admissionDetailInSection .seatDistributionWrapper {
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  max-width: 100%;
  margin-bottom: 1.5rem;
}
.admissionDetailInSection .seatDistributionWrapper .seatRow {
  display: flex;
  width: 100%;
}
.admissionDetailInSection .seatDistributionWrapper .seatRow .seatCell {
  flex: 1;
  padding: 1rem;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  text-align: center;
  font-size: 21px;
  font-weight: 400;
}
.admissionDetailInSection .seatDistributionWrapper .seatRow .seatCell:last-child {
  border-right: none;
}
.admissionDetailInSection .seatDistributionWrapper .seatRow:last-child .seatCell {
  border-bottom: none;
}
.admissionDetailInSection .seatDistributionWrapper .seatRow.seatHeader {
  background-color: var(--blue-color);
  color: var(--white-color);
}
@media (max-width: 767px) {
  .admissionDetailInSection .seatDistributionWrapper {
    overflow: auto;
  }
  .admissionDetailInSection .seatDistributionWrapper .seatRow {
    width: 600px;
  }
}

.programNewOverview {
  padding: 20px 0 90px;
}
.programNewOverview p {
  max-width: 57.79%;
}
@media (max-width: 600px) {
  .programNewOverview p {
    max-width: 100%;
  }
}

.contactSectionNewPage {
  background: url(../images/contact-us.webp) no-repeat bottom center;
  background-size: cover;
  width: 100%;
  padding: 180px 0;
}
.contactSectionNewPage .container {
  display: flex;
}
.contactSectionNewPage .container .contactleftheroContent {
  width: 50%;
}
@media (max-width: 992px) {
  .contactSectionNewPage {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .contactSectionNewPage {
    padding: 40px 0;
  }
  .contactSectionNewPage .container {
    flex-direction: column;
  }
  .contactSectionNewPage .container .contactleftheroContent {
    width: 100%;
  }
  .contactSectionNewPage .container .contactrightheroContent {
    width: 100%;
  }
  .contactSectionNewPage .container .contactrightheroContent h3 {
    font-size: 18px;
  }
}

.contctFlex {
  display: flex;
  gap: 10px;
}
.contctFlex a {
  font-size: 21px;
}
@media (max-width: 1280px) {
  .contctFlex a {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .contctFlex a {
    font-size: 14px;
  }
}

.contactSectionSecondPage {
  padding: 90px 0;
}
.contactSectionSecondPage .container {
  display: flex;
}
.contactSectionSecondPage .contactrightheroContent {
  width: 50%;
}
.contactSectionSecondPage .contactrightheroContent h3 {
  font-size: 28px;
  color: var(--blue-color);
  line-height: 140%;
  margin-bottom: 1.5rem;
}
.contactSectionSecondPage .contactleftheroContent {
  width: 50%;
}
@media (max-width: 767px) {
  .contactSectionSecondPage {
    padding: 40px 0;
  }
  .contactSectionSecondPage .container {
    flex-direction: column;
  }
  .contactSectionSecondPage .contactrightheroContent {
    margin-bottom: 1.5rem;
    width: 100%;
  }
  .contactSectionSecondPage .contactrightheroContent h3 {
    font-size: 18px;
  }
  .contactSectionSecondPage .contactleftheroContent {
    width: 100%;
  }
}

.eligibilityTable {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  width: 100%;
  /* table takes full width */
  table-layout: fixed;
  /* ensures fixed column widths and proper word wrapping */
  border-collapse: collapse;
}
.eligibilityTable thead {
  background: #f1f5f9;
}
.eligibilityTable thead th {
  padding: 12px 16px;
  font-weight: 500;
  color: #0b4aa2;
  line-height: 150%;
  text-align: left;
  border: 1px solid #e2e8f0;
  word-wrap: break-word;
}
.eligibilityTable tbody tr td {
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  vertical-align: top;
  font-size: 21px;
  color: #334155;
  word-wrap: break-word;
}
.eligibilityTable tbody tr td span {
  margin: 3px 0;
}
.eligibilityTable tbody tr:nth-child(even) {
  background: #f9fafb;
}
.eligibilityTable tbody tr td:first-child {
  font-weight: 500;
  line-height: 150%;
}
.eligibilityTable.dateTable tr th:first-child,
.eligibilityTable.dateTable tr td:first-child {
  width: 10%;
  text-align: center;
}
.eligibilityTable.dateTable tr th:last-child,
.eligibilityTable.dateTable tr td:last-child {
  width: 30%;
}

@media (max-width: 1540px) {
  .tableAutoScroll .eligibilityTable thead th {
    font-size: 18px;
  }
  .tableAutoScroll .eligibilityTable tbody td {
    font-size: 18px;
  }
  .admissionDetailInSection .containerAdmissionInfo ul li,
  .admissionDetailInSection .containerAdmissionInfo ol li {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  .tableAutoScroll .eligibilityTable thead th {
    font-size: 16px;
  }
  .tableAutoScroll .eligibilityTable tbody td {
    font-size: 16px;
  }
  .admissionDetailInSection .containerAdmissionInfo ul li,
  .admissionDetailInSection .containerAdmissionInfo ol li {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .tableAutoScroll {
    overflow-x: auto;
  }
  .tableAutoScroll .eligibilityTable {
    width: 800px;
  }
  .tableAutoScroll .eligibilityTable thead th {
    font-size: 16px;
  }
  .tableAutoScroll .eligibilityTable tbody td {
    font-size: 16px;
  }
}
.facultyOne {
  padding: 59px 0 90px;
}

.facultyContainer {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.facultyBlock {
  width: calc(50% - 30px);
  background-color: var(--white-color);
  border: #b1b1b1 solid 1px;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 21px;
  display: flex;
  gap: 28.4px;
  border-radius: 12px;
}
.facultyBlock .img {
  background-color: var(--white-color);
  box-shadow: 0px 0px 18.9px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 6.75px;
  border-radius: 12px;
  position: relative;
  width: 40.23%;
  max-width: 342px;
  align-self: flex-start;
}
.facultyBlock .img img {
  width: 100%;
}
.facultyBlock .img .linkldLink {
  position: absolute;
  right: 15px;
  top: 15px;
}
.facultyBlock .img .linkldLink img {
  width: 47px;
  height: 47px;
}
.facultyBlock .content {
  width: 59.23%;
}
.facultyBlock .content h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #220058;
  margin-bottom: 1.5rem;
}
.facultyBlock .content p {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #333333;
  margin-top: 1.5rem;
}
@media (max-width: 1280px) {
  .facultyBlock .img .linkldLink img {
    width: 36px;
    height: 36px;
  }
  .facultyBlock .content {
    width: 59.23%;
  }
  .facultyBlock .content h4 {
    font-size: 14px;
  }
  .facultyBlock .content p {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .facultyBlock {
    flex-wrap: wrap;
    gap: 0;
    flex-direction: column;
    justify-content: flex-start;
  }
  .facultyBlock .img {
    width: 100%;
    margin-bottom: 1rem;
  }
  .facultyBlock .img .linkldLink img {
    width: 24px;
    height: 24px;
  }
  .facultyBlock .content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .facultyBlock {
    width: 100%;
  }
}

.facultyOne {
  padding: 59px 0 90px;
}

.facultyContainer {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.facultyBlock {
  width: calc(50% - 30px);
  background-color: var(--white-color);
  border: #b1b1b1 solid 1px;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 21px;
  display: flex;
  gap: 28.4px;
  border-radius: 12px;
}

.facultyBlock .img {
  background-color: var(--white-color);
  box-shadow: 0px 0px 18.9px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 6.75px;
  border-radius: 12px;
  position: relative;
  width: 40.23%;
  max-width: 342px;
  align-self: flex-start;
}

.facultyBlock .img img {
  width: 100%;
}

.facultyBlock .img .linkldLink {
  position: absolute;
  right: 15px;
  top: 15px;
}

.facultyBlock .img .linkldLink img {
  width: 47px;
  height: 47px;
}

.facultyBlock .content {
  width: 59.23%;
}

.facultyBlock .content h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #220058;
  margin-bottom: 1.5rem;
}

.facultyBlock .content p {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #333;
  margin-top: 1.5rem;
}

#countdown-slide img {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

#countdown-slide img.loaded {
  opacity: 1;
}

@media (max-width: 1280px) {
  .facultyBlock .img .linkldLink img {
    width: 36px;
    height: 36px;
  }
  .facultyBlock .content {
    width: 59.23%;
  }
  .facultyBlock .content h4 {
    font-size: 14px;
  }
  .facultyBlock .content p {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .facultyBlock {
    flex-wrap: wrap;
    gap: 0;
    flex-direction: column;
    justify-content: flex-start;
  }
  .facultyBlock .img {
    width: 100%;
    margin-bottom: 1rem;
  }
  .facultyBlock .img .linkldLink img {
    width: 24px;
    height: 24px;
  }
  .facultyBlock .content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .facultyBlock {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .desk {
    display: flex !important;
  }
  .mob {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .mob {
    display: flex !important;
  }
  .desk {
    display: none !important;
  }
}

@media screen and (max-width: 500px) {
  .enquireBtnMobile {
    padding: 8px 10px;
    font-size: 12px;
  }
  .logo {
    padding: 10px 0 5px;
  }
  .logo img {
    height: 30px;
  }
  .navRight {
    gap: 15px;
  }
}
@media screen and (max-width: 350px) {
  .enquireBtnMobile {
    padding: 8px;
    font-size: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .heroBanner .slick-next {
    right: 7%;
  }
  .heroBanner .slick-prev {
    left: 7%;
  }
}
@media screen and (max-width: 800px) {
  .heroBanner .slick-next {
    right: 9%;
  }
  .heroBanner .slick-prev {
    left: 9%;
  }
}
@media screen and (max-width: 500px) {
  .heroBanner .slick-next {
    right: 12%;
  }
  .heroBanner .slick-prev {
    left: 12%;
  }
}
.image-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.image-row .image-box {
  flex: 1 1 calc(25% - 30px);
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 15px;
}
.image-row .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Tablet → 2 per row */
@media (max-width: 992px) {
  .image-row .image-box {
    flex: 1 1 calc(50% - 30px);
  }
}
/* Mobile → 1 per row */
@media (max-width: 576px) {
  .image-row .image-box {
    flex: 1 1 100%;
  }
}
.evntPg-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.evntPg-media {
  flex: 1 1 40%;
}
.evntPg-media img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 8px;
}
.evntPg-contentBox {
  flex: 1 1 60%;
  padding: 25px;
}
.evntPg-accordion summary {
  list-style: none;
  cursor: pointer;
  font-size: 22px;
  position: relative;
  text-align: justify;
}
.evntPg-accordion summary span {
  color: #c4161c;
}
.evntPg-descWrap {
  margin-top: 15px;
  line-height: 1.7;
  color: #444;
}
.evntPg-descWrap p {
  margin-bottom: 12px;
  font-size: 18px;
  text-align: justify;
}

@media (max-width: 768px) {
  .evntPg-wrapper {
    flex-direction: column;
  }
}
.ak-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 15px;
}
.ak-popup-overlay.active {
  display: flex;
}

.ak-popup {
  position: relative;
  max-width: 600px;
  width: 100%;
  animation: akFadeIn 0.3s ease;
}
.ak-popup-img {
  width: 100%;
  height: 800px;
  border-radius: 10px;
  display: block;
  cursor: pointer;
}
.ak-popup-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

@keyframes akFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Mobile */
@media (max-width: 576px) {
  .ak-popup {
    max-width: 90%;
  }
}
@media (min-width: 1480px) {
  .ak-popup-img {
    height: 685px;
  }
}
.eventHighlightSection {
  padding: 60px 0;
}
.eventHighlightSection .eventWrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}
.eventHighlightSection .eventWrapper .eventImage {
  width: 50%;
  overflow: hidden;
}
.eventHighlightSection .eventWrapper .eventImage img {
  width: 100%;
  border-radius: 10px;
}
.eventHighlightSection .eventSlider {
  position: relative;
  width: 50%;
  overflow: hidden;
}
.eventHighlightSection .eventSlider .slider {
  position: relative;
}
.eventHighlightSection .eventSlider .slide {
  display: none;
}
.eventHighlightSection .eventSlider .slide img {
  width: 100%;
  border-radius: 10px;
}
.eventHighlightSection .eventSlider .slide.active {
  display: block;
}
.eventHighlightSection .eventSlider .prev,
.eventHighlightSection .eventSlider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s ease;
  height: 35px;
  width: 35px;
}
.eventHighlightSection .eventSlider .prev:hover,
.eventHighlightSection .eventSlider .next:hover {
  background: #333;
}
.eventHighlightSection .eventSlider .prev {
  left: 10px;
}
.eventHighlightSection .eventSlider .next {
  right: 10px;
}
.eventHighlightSection .eventContent {
  width: 50%;
  text-align: justify;
}
.eventHighlightSection .eventContent h2 {
  font-size: 22px;
  margin-bottom: 20px;
}
.eventHighlightSection .eventContent p {
  font-size: 16px;
  line-height: 1.6;
}

/* Media Queries */
@media (max-width: 992px) {
  .eventHighlightSection .eventSlider h2,
  .eventHighlightSection .eventContent h2 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .eventHighlightSection .eventWrapper {
    flex-direction: column;
  }
  .eventHighlightSection .eventSlider,
  .eventHighlightSection .eventContent,
  .eventHighlightSection .eventWrapper .eventImage {
    width: 100%;
  }
  .eventHighlightSection .eventSlider h2,
  .eventHighlightSection .eventContent h2 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .eventSlider {
    order: 1;
  }
  .eventContent {
    order: 2;
  }
}
@media (max-width: 420px) {
  .eventHighlightSection .eventSlider h2,
  .eventHighlightSection .eventContent h2 {
    font-size: 13px;
  }
}
.applicationSection .applicationLeftSide.admsProcessRes {
  max-width: 100% !important;
}
.applicationSection .applicationLeftSide.admsProcessRes p {
  text-align: justify;
}/*# sourceMappingURL=style.css.map */