:root {
  --thm-font: "Montserrat", sans-serif;
  --thm-reey-font: "reeyregular";
  --thm-gray: #726f84;
  --thm-gray-rgb: 114, 111, 132;
  --thm-primary: #183e65;
  --thm-primary-rgb: 24, 62, 101;
  --thm-black: #0f0d1d;
  --thm-black-rgb: 15, 13, 29;
  --thm-base: #ffffff;
  --thm-base-rgb: 255, 255, 255;
  --thm-light: #f2f4f8;
  --thm-light-rgb: 242, 244, 248;
  --thm-letter-space-big: 0.1em;
  --thm-letter-space-small: -0.02em;
}

.row {
  --bs-gutter-x: 20px;
}

.gutter-y-30 {
  --bs-gutter-y: 20px;
}

body {
	font-family: var(--thm-font);
  font-size: 18px;
  line-height: 34px;
  font-weight: 500;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--thm-gray);
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--thm-black);
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* boxed style */

body.boxed-wrapper {
  background-color: var(--thm-light);
}

.boxed-wrapper .page-wrapper {
  max-width: 1410px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--thm-base);
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
}

.boxed-wrapper .page-wrapper__dark {
  background-color: #1c1e22;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-separator {
  border-color: var(--thm-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background: #f4c037;
  padding: 20px 40px;
  transition: 500ms;
  letter-spacing: 0.1em;
  font-size: 24px;
  line-height: 32px;
  color: #052c4d;
  text-transform: uppercase;
  font-weight: 600;
}

.thm-btn:hover {
  background: var(--thm-base);
  color: var(--thm-primary);
}

.section-title {
  margin-top: -12px;
  margin-bottom: 30px;
}

.section-title__title {
  margin: 0;
  font-weight: 300;
  color: #062c4d;
  font-size: 56px;
  line-height: 66px;
  margin-bottom: 8px;
  letter-spacing: 1;
}
.section-title__title strong {
  font-weight: 600;
  color: #062c4d;
}
.section-title__title span {
  display: block;
}

.section-title__title2 {
  margin: 0;
  font-weight: 300;
  color: #062c4d;
  font-size: 36px;
  line-height: 46px;
  margin-bottom: 8px;
  letter-spacing: 1;
}
.section-title__yellow {
  color: #f4bf00 !important;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  color: #303030;
  font-size: 26px;
  align-items: center;
  line-height: 34px;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--thm-base);
}

.preloader {
  position: fixed;
  background-color: var(--thm-black);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  background-image: url(../images/loader.png);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: var(--thm-primary);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.scroll-to-top i {
  color: var(--thm-base);
  font-size: 18px;
  line-height: 45px;
}

.scroll-to-top:hover {
  background-color: var(--thm-black);
}

.scroll-to-top:hover i {
  color: var(--thm-base);
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  padding: 0 60px;
  background: transparent;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 91;
  transition: all 500ms ease;
}

.boxed-wrapper .main-header {
  padding-right: 0;
}

.main-header:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  content: "";
  background-color: rgba(var(--thm-base-rgb), 0.15);
}

.main-menu {
  position: relative;
  z-index: 91;
}

.main-menu-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-wrapper__left {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-wrapper__logo {
  position: relative;
  float: left;
  padding: 40.5px 60px;
  padding-left: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.main-menu-wrapper__main-menu {
  position: relative;
  display: flex;
  padding-left: 60px;
}

.stricky-header {
  padding: 0 60px;
  background-color: var(--thm-black);
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: var(--thm-black);
  width: 100%;
  visibility: hidden;
  transform: translateY(-120%);
  transition: transform 500ms ease, visibility 500ms ease;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
  position: relative;
  display: block;
}

.main-header-three:before {
  display: none;
}

.main-menu-wrapper-three {
  position: relative;
  display: block;
}

.main-menu-wrapper__logo-3 {
  position: relative;
  float: left;
  padding: 10px 0;
}
.main-menu-wrapper__logo-3 img {
  width: 180px;
}

.stricky-header.main-menu-three {
  background-color: var(--thm-base);
}

.stricky-header .main-menu-wrapper-three {
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
}

.stricky-header.main-menu-three--dark,
.main-header-three--dark {
  background-color: #fff;
}

.main-header-three--dark .main-menu-three .main-menu__list > li > a,
.stricky-header.main-menu-three--dark .main-menu__list > li > a {
  color: #032c4d;
}

.main-menu-three--dark .main-menu__list > li.current > a,
.main-menu-three--dark .main-menu__list > li:hover > a,
.stricky-header.main-menu-three--dark .main-menu__list > li.current > a,
.stricky-header.main-menu-three--dark .main-menu__list > li:hover > a {
  color: #092139;
}

.main-menu-three--dark .mobile-nav__toggler-bar {
  background-color: #183e65;
}

.main-menu-three--dark .main-menu__list > li + li,
.stricky-header.main-menu-three--dark .main-menu__list > li + li {
  margin-left: 40px;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@-webkit-keyframes bubbleMover {
  0% {
    transform: translateY(0px) translateX(0) rotate(0);
  }

  30% {
    transform: translateY(30px) translateX(50px) rotate(15deg);
    transform-origin: center center;
  }

  50% {
    transform: translateY(50px) translateX(100px) rotate(45deg);
    transform-origin: right bottom;
  }

  80% {
    transform: translateY(30px) translateX(50px) rotate(15deg);
    transform-origin: left top;
  }

  100% {
    transform: translateY(0px) translateX(0) rotate(0);
    transform-origin: center center;
  }
}

@keyframes bubbleMover {
  0% {
    transform: translateY(0px) translateX(0) rotate(0);
  }

  30% {
    transform: translateY(30px) translateX(50px) rotate(15deg);
    transform-origin: center center;
  }

  50% {
    transform: translateY(50px) translateX(100px) rotate(45deg);
    transform-origin: right bottom;
  }

  80% {
    transform: translateY(30px) translateX(50px) rotate(15deg);
    transform-origin: left top;
  }

  100% {
    transform: translateY(0px) translateX(0) rotate(0);
    transform-origin: center center;
  }
}

@-webkit-keyframes shapeMover {
  0%,
  100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px)
      translateX(0);
  }

  50% {
    transform: perspective(400px) rotate(0deg) translateZ(20px) translateY(20px)
      translateX(20px);
  }
}

@keyframes shapeMover {
  0%,
  100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px)
      translateX(0);
  }

  50% {
    transform: perspective(400px) rotate(0deg) translateZ(20px) translateY(20px)
      translateX(20px);
  }
}

@-webkit-keyframes banner3Shake {
  0% {
    transform: rotate3d(0, 1, 0, 0deg);
  }

  30% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  60% {
    transform: rotate3d(1, 0, 0, 0deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  100% {
    transform: rotate3d(0, 1, 0, 0deg);
  }
}

@keyframes banner3Shake {
  0% {
    transform: rotate3d(0, 1, 0, 0deg);
  }

  30% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  60% {
    transform: rotate3d(1, 0, 0, 0deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  100% {
    transform: rotate3d(0, 1, 0, 0deg);
  }
}

@-webkit-keyframes squareMover {
  0%,
  100% {
    transform: translate(0, 0) rotate(0);
  }

  20%,
  60% {
    transform: translate(20px, 40px) rotate(180deg);
  }

  30%,
  80% {
    transform: translate(40px, 60px) rotate(0deg);
  }
}

@keyframes squareMover {
  0%,
  100% {
    transform: translate(0, 0) rotate(0);
  }

  20%,
  60% {
    transform: translate(20px, 40px) rotate(180deg);
  }

  30%,
  80% {
    transform: translate(40px, 60px) rotate(0deg);
  }
}

@-webkit-keyframes treeMove {
  0%,
  100% {
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    transform: rotate(5deg) translateX(15px);
  }

  50% {
    transform: rotate(10deg) translateX(30px);
  }
}

@keyframes treeMove {
  0%,
  100% {
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    transform: rotate(5deg) translateX(15px);
  }

  50% {
    transform: rotate(10deg) translateX(30px);
  }
}

/*--------------------------------------------------------------
#     Zoom Fade Css
--------------------------------------------------------------*/
.zoom-fade {
  animation-name: zoom-fade;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;

  -webkit-animation-name: zoom-fade;
  -webkit-animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;

  -moz-animation-name: zoom-fade;
  -moz-animation-duration: 5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;

  -ms-animation-name: zoom-fade;
  -ms-animation-duration: 5s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;

  -o-animation-name: zoom-fade;
  -o-animation-duration: 5s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

@-webkit-keyframes zoom-fade {
  0% {
    transform: scale(0.9);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.9);
  }
}

@keyframes zoom-fade {
  0% {
    transform: scale(0.9);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.9);
  }
}

@-webkit-keyframes service_hexagon_2 {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

@keyframes service_hexagon_2 {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

@keyframes service_hexagon_2 {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  transform: translateX(-50%);
  transform-origin: right center;
  transition: transform 500ms ease-in, opacity 500ms linear,
    visibility 500ms ease-in;
  z-index: 999;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

.padding {
  padding: 60px 0;
}

/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/
.banner {
  background: url(../images/phd-banner.jpg) center top no-repeat;
  padding: 60px 0 40px;
}
.banner-mob {
  display: none;
}

.banner_content {
}
.banner h2 {
  font-size: 130px;
  line-height: 140px;
  color: #fff;
  font-weight: 700;
}
.banner h2 {
  font-size: 26px;
  line-height: 36px;
  color: #fff;
  font-weight: 500;
  margin-right: 10px;
}
.banner-title {
  display: flex;
  align-items: top;
  margin-top: 10px;
  margin-bottom: 20px;
}
.banner-title-line {
  flex-grow: 1;
  background-color: #fff;
  height: 1px;
  margin-right: 150px;
  margin-top: 10px;
}
.banner p {
  font-size: 40px;
  line-height: 46px;
  color: #fff;
  font-weight: 600;
}

.awards {
  background: #fff;
  text-align: center;
}
.awards_mt {
  margin-top: 3%;
}

.admissions {
  position: relative;
  display: block;
  z-index: 1;
}
.admissions:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  background: #0d669c;
  height: 530px;
  z-index: -1;
}
.admissions p {
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  margin-bottom: 0;
  font-weight: 300;
}
.admissions_box {
  background: #efefef;
  padding: 30px;
  height: 100%;
}
.admissions_box h2 {
  font-size: 36px;
  line-height: 42px;
  color: rgb(5, 44, 77);
  font-weight: 600;
}
.admissions_box p {
  font-size: 18px;
  line-height: 26px;
  color: #353535;
  font-weight: 300;
  text-align: left;
}
.admissions_box hr {
  background: #053959;
  height: 1px;
  margin-bottom: 30px;
}
ul.admissions_list {
  width: 100%;
  padding: 0;
  margin-top: 3%;
  list-style-type: none;
}
ul.admissions_list li {
  width: 100%;
  clear: both;
  display: block;
  margin-bottom: 15px;
  background: url(../images/admission-icon.webp) 0 9px no-repeat;
  padding-left: 10px;
  font-size: 15px;
  line-height: 18px;
  color: #353535;
  font-weight: 300;
  text-align: left;
}

ul.admissions_list2 {
  width: 100%;
  padding: 0;
  margin-top: 3%;
  margin-left: 3%;
  list-style-type: none;
}
ul.admissions_list li {
  margin-bottom: 5px;
  padding-left: 10px;
}
.admissions_mt {
  margin-top: 1%;
}

.eligibility {
  background: url(../images/eligibility.webp) no-repeat center bottom;
}
.eligibility_left {
  text-align: left;
}
.eligibility_left h2 {
  font-size: 22px;
  line-height: 28px;
  color: #000;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: left;
}

.eligibility_box_left {
  background: rgb(255, 255, 255);
  opacity: 0.8;
  padding: 20px;
  border-radius: 20px;
  border: solid 1px #0d669b;
  margin-bottom: 20px;
}
.eligibility_box_left h2 {
  font-size: 22px;
  line-height: 28px;
  color: #000;
  font-weight: 500;
  text-align: left;
}
.eligibility_box_left p {
  font-size: 18px;
  line-height: 26px;
  color: #353535;
  font-weight: 300;
  text-align: left;
}
.eligibility_box_left hr {
  background: #353535;
  height: 1px;
  margin-bottom: 10px;
}

.eligibility_right {
  text-align: left;
}
.eligibility_right h1 {
  font-size: 22px;
  line-height: 28px;
  color: #000;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: left;
}
.eligibility_right p {
  font-size: 18px;
  line-height: 26px;
  color: #353535;
  font-weight: 300;
  text-align: left;
}
.eligibility_right hr {
  background: #353535;
  height: 1px;
  margin-bottom: 10px;
}
.eligibility_mt {
  margin-top: 2%;
}

.fee-structure {
  background: #efefef;
  text-align: center;
}
.fee_box {
  background: #efbb35;
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  text-align: left;
}
.fee_box h2 {
  font-size: 32px;
  line-height: 42px;
  color: rgb(5, 44, 77);
  font-weight: 600;
}
.fee_box p {
  font-size: 18px;
  line-height: 26px;
  color: #353535;
  font-weight: 300;
  text-align: left;
}
.fee_box hr {
  background: #053959;
  height: 1px;
}
ul.fee_list {
  width: 100%;
  padding: 0;
  list-style-type: none;
}
ul.fee_list li {
  width: 100%;
  clear: both;
  display: block;
  margin-bottom: 5px;
  background: url(../images/round-icon.webp) 0 9px no-repeat;
  padding-left: 20px;
  font-size: 26px;
  line-height: 32px;
  color: #353535;
  font-weight: 300;
  text-align: left;
}

.research-innovation {
  position: relative;
  display: block;
  z-index: 1;
}
.research-innovation:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  background: #0f66a1;
  height: 530px;
  z-index: -1;
}
.research_innovation_content {
  background: #f4f4f4;
  height: 96%;
  border-radius: 30px;
  padding: 40px 40px;
}
.research_innovation_content h2 {
  font-size: 36px;
  line-height: 42px;
  color: #052c4d;
  font-weight: 600;
}
.research_innovation_content h2 span {
  display: block;
}
.research_innovation_content hr {
  background: #8b8b8b;
  height: 2px;
  margin-bottom: 30px;
}
ul.research_list {
  width: 100%;
  padding: 0;
  list-style-type: none;
}
ul.research_list li {
  width: 100%;
  clear: both;
  display: block;
  margin-bottom: 15px;
  background: url(../images/round-icon.webp) 0 9px no-repeat;
  padding-left: 20px;
  font-size: 18px;
  line-height: 26px;
  color: #353535;
  font-weight: 300;
  text-align: left;
}
ul.research_list li span {
  display: block;
}
ul.research_list li strong {
  font-weight: 600;
}
.research_innovation_mt {
  margin-top: 3%;
}
.research_innovation_mt_main {
  margin-top: 0%;
}

.programs {
  background-color: #fff;
}
.programs p {
  font-size: 30px;
  line-height: 38px;
  color: #000;
  font-weight: 300;
  text-align: center;
}
.programs span {
  display: block;
}

.programs .programs-one-accrodion .accrodion-title {
  background-color: #fff;
}

.programs-one-accrodion {
  position: relative;
  display: block;
  counter-reset: count;
}

.programs-one-accrodion .accrodion {
  position: relative;
  display: flex;
  border-bottom: solid 1px #c2c2c2;
  transition: all 500ms ease;
}

.programs-one-accrodion .accrodion.active {
  background-color: #fff;
  border-bottom: solid 1px #c2c2c2;
}

.programs-one-accrodion .accrodion-title {
  position: relative;
  display: flex;
  cursor: pointer;
  padding: 22px 0px 42px;
  padding-top: 23.5px;
  padding-left: 0px;
  padding-right: 30px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  background-color: var(--thm-light);
  width: 40%;
  justify-content: space-between;
  align-items: center;
}

.programs-one-accrodion .accrodion-title i {
  font-size: 50px;
  line-height: 60px;
  color: #0e3353;
}

.programs-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 36px;
  font-weight: 500;
  line-height: 44px;
  color: #0e3353;
  position: relative;
  letter-spacing: var(--thm-letter-space-small);
  transition: all 500ms ease;
  width: 100%;
}

.programs-one-accrodion .accrodion-title h4 span {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
}

.programs-one-accrodion .accrodion-title h4 span:before {
  counter-increment: count;
  content: "" counter(count);
}

.programs-one-accrodion .accrodion + .accrodion {
  margin-top: 10px;
}

.programs-one-accrodion .accrodion.active .accrodion-title {
  background-color: transparent;
}

.programs-one-accrodion .accrodion.active .accrodion-title h4 {
  color: #0f66a1;
}
.programs-one-accrodion .accrodion.active .accrodion-title i {
  color: #0f66a1;
}

.programs-one-accrodion .accrodion-title h4::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 17px;
  color: #0682be;
  position: absolute;
  top: 50%;
  right: 0;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
  transition: all 500ms ease;
  display: none;
}

.programs-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f068";
  color: #0682be;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.programs-one-accrodion .accrodion-content {
  position: relative;
  padding: 30px 60px 28px;
  border-bottom: 0px solid #e5e5e5;
  width: 60%;
}

.programs-one-accrodion .accrodion.last-chiled.active .accrodion-content {
  border-bottom: 0px solid transparent;
}

.programs-one-accrodion .accrodion-content p {
  margin: 0;
  font-size: 22px;
  line-height: 30px;
  color: #000;
  font-weight: 300;
  text-align: left;
}
.programs_num {
  height: 70px;
  width: 70px;
  background-color: #f4c037;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 20px 20px;
  margin-right: 10%;
}
.programs_num span {
  font-size: 44px;
  line-height: 54px;
  color: #092f4b;
  font-weight: 100;
  font-style: italic;
}

/*FAQS Page*/
.faqs-page {
  background-color: #f4f4f4;
}

.faqs-page .faq-one-accrodion .accrodion-title {
  background-color: #fff;
}

.faq-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.faq-one-accrodion {
  position: relative;
  display: block;
  counter-reset: count;
  margin-top: 2%;
}

.faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  background-color: #fff;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active {
  background-color: #eeeeee;
}

.faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 22px 0px 22px;
  padding-top: 23.5px;
  padding-left: 40px;
  padding-right: 30px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  background-color: var(--thm-light);
}

.faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #032c4d;
  position: relative;
  letter-spacing: var(--thm-letter-space-small);
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion-title h4 span {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
}

.faq-one-accrodion .accrodion-title h4 span:before {
  counter-increment: count;
  content: "" counter(count);
}

.faq-one-accrodion .accrodion + .accrodion {
  margin-top: 10px;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
  background-color: #fff;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: #032c4d;
}

.faq-one-accrodion .accrodion-title h4::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 17px;
  color: #0682be;
  position: absolute;
  top: 50%;
  right: 0;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f068";
  color: #0682be;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-one-accrodion .accrodion-content {
  position: relative;
  padding: 0px 60px 28px;
  border-bottom: 0px solid #e5e5e5;
  background-color: #fff;
}

.faq-one-accrodion .accrodion.last-chiled.active .accrodion-content {
  border-bottom: 0px solid transparent;
}

.faq-one-accrodion .accrodion-content p {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
  color: #353535;
  font-weight: 300;
}

.faq-one__right {
  position: relative;
  display: block;
}

.faq-one__img {
  position: relative;
  display: block;
  background-color: var(--thm-black);
}

.faq-one__img > img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.faq-one__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 42px;
}

.faq-one__list-box {
  position: relative;
  display: block;
}

.faq-one__list li {
  display: flex;
  align-items: center;
}

.faq-one__list li + li {
  margin-top: 6px;
}

.faq-one__list li .icon span {
  font-size: 20px;
  color: var(--thm-primary);
  display: block;
  transform: scale(1);
  transform-origin: right center;
  transition: transform 500ms ease;
}

.faq-one__list li:hover .icon span {
  transform: scale(0.75);
}

.faq-one__list li .text {
  margin-left: 20px;
}

.faq-one__list li .text p {
  margin: 0;
  font-weight: 400;
}

.faq-one__experience-box {
  position: relative;
  display: block;
  background-color: var(--thm-primary);
  text-align: center;
  max-width: 200px;
  width: 100%;
  padding: 28px 0 38px;
}

.faq-one__experience-box h2 {
  font-size: 60px;
  color: var(--thm-base);
  line-height: 70px;
  font-weight: 900;
}

.faq-one__experience-box p {
  margin: 0;
  color: var(--thm-base);
  line-height: 25px;
}

.cta-section {
  background: #0f66a1;
  padding: 40px 0;
}
.cta {
}
.cta h2 {
  font-weight: 300;
  color: #fff;
  font-size: 36px;
  line-height: 44px;
  margin-top: 10px;
  letter-spacing: 1;
}

.copyright {
  background: #ededed;
  padding: 20px 10px;
  text-align: center;
  color: #2e2e2e;
}

.copyright p {
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  color: #032c4d;
  margin-bottom: 0;
}

.admission-btn {
  background: #f8c300;
  background: linear-gradient(
    90deg,
    rgba(248, 195, 0, 1) 0%,
    rgba(255, 220, 93, 1) 100%
  );
  border-radius: 10px;
  padding: 10px 30px;
  display: inline-block;
  float: right;
  margin-top: 15px;
}
.blink {
  animation: blinker 2.2s linear infinite;
  color: #052c4d;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  text-align: center;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

@media only screen and (min-width: 320px) and (max-width: 769px) {
  .banner {
    background: #244399;
    padding: 0;
  }
  .banner_content {
    display: none;
  }
  .banner-mob {
    display: block;
  }

  .padding {
    padding: 60px 0;
  }
  .section-title__title2 {
    font-size: 22px;
    line-height: 30px;
  }

  .admission-form {
    width: 100% !important;
  }
  .admissions p,
  .eligibility_box_left p,
  .eligibility_right p,
  ul.research_list li {
    font-size: 15px;
    line-height: 20px;
  }
  .admissions p {
    margin-bottom: 10px;
  }
  .awards_mt {
    margin-top: -5%;
  }
  .admissions_box h2 {
    font-size: 20px;
    line-height: 26px;
  }
  .admissions_box hr {
    margin-bottom: 15px;
  }

  .eligibility {
    background: #fff;
    padding-top: 0;
  }
  .eligibility_mt {
    margin-top: 0%;
  }
  .eligibility_left h2,
  eligibility_right h2 {
    font-size: 20px;
    line-height: 26px;
    text-align: center;
  }
  .eligibility_box_left h2 {
    text-align: left;
  }
  .eligibility_right h2 {
    font-size: 20px;
    line-height: 26px;
    text-align: left;
  }
  .eligibility_right p {
    text-align: left;
  }
  .admissions_mt {
    margin-top: -5% !important;
  }

  .fee_box h2
   {
    font-size: 20px;
    line-height: 26px;
  }
  ul.fee_list li {
    font-size: 20px;
    line-height: 26px;
  }

  .research_innovation_content h2
   {
    font-size: 20px;
    line-height: 26px;
  }
  .research_innovation_content h2
   span {
    display: inline;
  }
  .research_innovation_content hr {
    margin-bottom: 15px;
  }

  .programs {
    background-color: #fff;
    padding-top: 0;
  }
  .programs p {
    font-size: 20px;
    line-height: 26px;
  }
  .programs-one-accrodion .accrodion {
    display: block;
  }
  .programs-one-accrodion .accrodion-title h4 {
    font-size: 20px;
    line-height: 26px;
  }
  .programs-one-accrodion .accrodion-content p {
    font-size: 15px;
    line-height: 20px;
  }
  .programs-one-accrodion .accrodion-content {
    padding: 0px 20px 28px;
    width: 100%;
  }
  .programs-one-accrodion .accrodion-title {
    width: 100%;
    padding: 0px 0px 10px;
  }

  .programs_num {
    height: 50px;
    width: 50px;
    background-color: #f4c037;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 10px 15px;
    margin-right: 5%;
  }
  .programs_num span {
    font-size: 26px;
    line-height: 36px;
  }

  .faq-one-accrodion .accrodion-title {
    padding: 20px;
  }
  .faq-one-accrodion .accrodion-title h4 {
    font-size: 17px;
    font-weight: 600;
    line-height: 24px;
  }
  .faq-one-accrodion .accrodion-content {
    padding: 0px 20px 28px;
  }
  .faq-one-accrodion .accrodion-content p {
    font-size: 15px;
    line-height: 20px;
  }
  .faq-one-accrodion .accrodion-title h4::before {
    font-size: 15px;
    top: 20%;
    right: -25px;
  }

  .cta-section {
    padding: 30px 0;
  }
  .cta h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .thm-btn {
    font-size: 16px;
    padding: 10px 40px;
    margin-top: 10px;
  }
  .contact-expert__title {
    font-size: 24px;
  }
  .dynamic_theme_block .btn-otp {
    font-size: 9px !important;
    line-height: 14px !important;
  }

  .dynamic_theme_block .btn-register {
    width: 94% !important;
  }
  .modal-body p {
    display: block;
  }
  .modal-body p span {
    display: inline;
  }
  .mt-5 {
    margin-top: 0rem !important;
  }

  .admission-btn {
    background: #f8c300;
    background: linear-gradient(
      90deg,
      rgba(248, 195, 0, 1) 0%,
      rgba(255, 220, 93, 1) 100%
    );
    border-radius: 10px;
    padding: 10px 30px;
    display: inline-block;
    float: right;
    margin: 10px 10px;
  }
  .blink {
    animation: blinker 2.2s linear infinite;
    color: #052c4d;
    font-size: 15px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
  }
}
