: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: 30px;
}

body {
  font-family: var(--thm-font);
  font-size: 18px;
  line-height: 34px;
  font-weight: 500;
}

body.locked {
  overflow: hidden;
}

a {
  color: #001111;
}

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 50px;
  transition: 500ms;
  letter-spacing: 0.1em;
  font-size: 24px;
  line-height: 32px;
  color: #111111;
  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: #111111;
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 8px;
  letter-spacing: 1;
}
.section-title__title strong {
  font-weight: 600;
}
.section-title__title span {
  display: block;
}

.section-title__title2 {
  margin: 0;
  font-weight: 500;
  color: #777777;
  font-size: 22px;
  line-height: 30px;
  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: 10px;
  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);
}
.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;
}

/*--------------------------------------------------------------
# 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: 90px 0;
}

/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/
.banner {
  background: url(../images/banner.webp) center top no-repeat;
  padding: 60px 0 90px;
}
.banner-mob {
  display: none;
}

.banner_content {
  margin-top: 5%;
}
.banner h1 {
  font-size: 50px;
  line-height: 54px;
  color: #032d4f;
  font-weight: 700;
}

.banner h2 {
  font-size: 26px;
  line-height: 32px;
  color: #000;
  font-weight: 600;
  margin-right: 10px;
}
.banner-title {
  display: flex;
  align-items: top;
  margin-top: 10px;
  margin-bottom: 40px;
}
.banner-title-line {
  flex-grow: 1;
  background-color: #818181;
  height: 1px;
  margin-right: 170px;
  margin-top: 10px;
}

.banner h3 {
  font-size: 32px;
  line-height: 38px;
  color: #000;
  font-weight: 400;
}

.about {
  background: #fff;
  text-align: center;
}
.about h3 {
  font-size: 32px;
  line-height: 40px;
  color: #000;
  font-weight: 500;
  margin-bottom: 15px;
}
.about p {
  font-size: 18px;
  line-height: 24px;
  color: #494949;
  font-weight: 300;
  margin-bottom: 0;
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: auto;
  padding: 0 0 30px 0;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.stat-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  color: white;
  background: linear-gradient(135deg, #d8a400, #5b8bd8);
}
.stat-text {
  font-size: 26px;
  line-height: 32px;
  color: #777777;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.divider {
  width: 2px;
  height: 40px;
  background: #cfcfcf;
}

/* Responsive */
@media (max-width: 600px) {
  .stats-container {
    flex-direction: row;
    gap: 5px;
  }
  .stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 20px;
    text-align: left;
  }
  .stat-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 15px !important;
    margin-right: 5px;
    padding: 0 10px;
  }

  .stat-text {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0px;
  }

  .divider {
    display: none;
  }
}

.box {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.phase {
  background: #f7c338;
  color: #032d4f;
  padding: 5px 0;
  margin-bottom: 50px;
  border-bottom: solid 10px #fff;
  z-index: 9;
}

.box .front-face {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: top;
  transition: all 0.5s ease;
  color: #fff;
  text-align: center;
  height: 300px;
  position: relative;
}
.front-face-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.front-face-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.box .front-face span,
.box .back-face span {
  font-size: 50px;
  line-height: 60px;
  color: #fff;
  text-align: left;
  padding: 0 30px;
  font-weight: 700;
  z-index: 9;
}

.box .front-face span {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  position: relative;
}
.box .front-face i {
  margin-top: 0px;
  z-index: 9;
}

.box .back-face {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  padding: 0 15px;
  color: #fff;
  opacity: 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  background: #7897c9;
  transform: translateY(110px) rotateX(-90deg);
  box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
  transition: all 0.5s ease;
  text-align: center;
}

.box:hover .back-face {
  opacity: 1;
  transform: rotateX(0deg);
  padding-bottom: 30px;
}
.box:hover .front-face {
  opacity: 0;
  transform: translateY(-110px) rotateX(90deg);
  padding-bottom: 30px;
}
.heading_flip {
  text-align: center;
}
.heading_flip p {
  font-size: 17px;
  line-height: 22px;
  color: #fff;
  font-weight: 300;
  padding: 0 40px;
  margin-bottom: 20px;
}
.box:hover .phase {
  background: #062c4d;
  color: #fff;
  padding: 5px 0;
  margin-bottom: 10px;
  border-bottom: solid 10px #fff;
  margin-bottom: 30px;
}

.advantage {
  background: url(../images/advantage-bg.webp) no-repeat center top #fbf1d6;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
.advantage_box {
  background: #fefefe;
  height: 100%;
  padding: 35px 25px;
  border-radius: 10px;
}
.advantage_box h1 {
  font-size: 24px;
  line-height: 28px;
  color: #032d4f;
  font-weight: 600;
  margin-bottom: 15px;
}
.advantage_box h1 span {
  display: block;
}
.advantage_box p {
  font-size: 18px;
  line-height: 24px;
  color: #494949;
  font-weight: 300;
  margin-bottom: 0;
}
.advantage_box img {
  margin-bottom: 20px;
}
.advantage_box:hover h1,
.advantage_box:hover p {
  color: #fff;
}
.advantage_box:hover {
  background: #0159b9;
  background: linear-gradient(
    90deg,
    rgba(1, 89, 185, 1) 0%,
    rgba(31, 134, 241, 1) 48%,
    rgba(1, 79, 163, 1) 100%
  );
}

.programs-offered {
  background: #fff;
  text-align: center;
}
.programs_list {
  background: #fff;
  border: solid 1px #7996c6;
  border-radius: 20px;
  height: auto;
  padding: 20px 30px;
  padding-bottom: 0;
  margin-bottom: 20px;
  text-align: left;
}
.programs_list h1 {
  font-size: 24px;
  line-height: 30px;
  color: #032d4f;
  font-weight: 600;
  border-bottom: solid 1px #7996c6;
  padding-bottom: 10px;
}
ul.programs_listing {
  width: 100%;
  padding: 0;
  list-style-type: none;
  margin-top: 4%;
  margin-bottom: 4%;
}

ul.programs_listing li {
  width: 100%;
  clear: both;
  display: block;
  background: url(../images/icon-dark.webp) 0 9px no-repeat;
  padding-left: 20px;
  font-size: 18px;
  line-height: 24px;
  color: #494949;
  font-weight: 300;
  padding-bottom: 5px;
}

.student-experiences {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#8098bc+0,a2a17e+50,d7b038+100 */
  background: linear-gradient(
    to right,
    #8098bc 0%,
    #a2a17e 50%,
    #d7b038 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  text-align: center;
}

.section-student {
  padding: 60px 40px;
  color: #fff;
}

.student-wrapper {
  width: 100%;
  margin: auto;
  display: flex;
  margin-top: 3%;
}

.student-box {
  flex: 1;
  display: flex;
  gap: 20px;
  position: relative;
  padding: 20px 20px;
  text-align: left;
}

.student-box:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.quote-icon {
  position: absolute;
  top: -15px;
  left: 100px;
}

.student-img img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 10px;
}

.student-info h3 {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  font-weight: 600;
}

.student-info .designation {
  font-size: 13px;
  line-height: 16px;
  color: #fff;
  margin: 4px 0 12px 0;
}

.student-info p {
  font-size: 13px;
  line-height: 16px;
  color: #fff;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .student-wrapper {
    flex-direction: column;
  }

  .student-box {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
}

.step {
  background: url(../images/step-bg.webp) no-repeat center top #e8e8e8;
  text-align: center;
}
.step p {
  font-size: 22px;
  line-height: 30px;
  color: #777777;
  font-weight: 500;
  margin-bottom: 0;
}
.step-btn {
  background: #e2ad00;
  color: #000000;
  border: none;
  padding: 16px 20px;
  font-size: 25px;
  line-height: 34px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 40px;
  width: 100%;
}

/* Hover effect */
.step-btn:hover {
  background: #fff;
  color: #032d4f;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.copyright {
  background: #ededed;
  padding: 20px 10px;
  text-align: center;
}

.copyright p {
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  color: #494949;
  margin-bottom: 0;
}
.copyright a {
  color: #494949;
}
.copyright hr {
  background: #000;
  height: 1px;
}

@media only screen and (min-width: 320px) and (max-width: 769px) {
  .banner {
    background: #ddebf4;
    padding: 0;
  }
  .banner_content {
    display: none;
  }
  .banner-mob {
    display: block;
  }
  .banner .col-md-4 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .admission-form .col-md-4 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .padding {
    padding: 60px 0;
  }
  .admission-form {
    width: 100% !important;
  }
  .section-title__title2,
  .about p,
  .advantage_box p,
  ul.programs_listing li,
  .step p {
    font-size: 15px;
    line-height: 20px;
  }

  .about h3 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 0px;
  }
  .box .front-face span,
  .box .back-face span {
    font-size: 32px;
    line-height: 40px;
  }
  .stop {
    font-size: 18px !important;
    line-height: 24px;
  }
  .advantage_box h1,
  .programs_list h1 {
    font-size: 20px;
    line-height: 26px;
  }
  .advantage_box h1 span {
    display: inline;
  }
  .advantage_box img {
    margin-bottom: 10px;
  }
  .student-box {
    margin-bottom: 10%;
  }
  .step-btn {
    font-size: 22px;
    line-height: 26px;
  }

  .mt-3 {
    margin-top: 0rem !important;
  }
  .mt-4 {
    margin-top: 1rem !important;
  }
  .mt-5 {
    margin-top: 0rem !important;
  }
}

@media (max-width: 767px) {
  .section-title__title {
    font-size: 24px;
    line-height: 30px;
  }
  .section-title__title span {
    display: inline;
  }
  .section-title__tagline {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  .main-header {
    padding-left: 0;
    padding-right: 0;
  }
}
