/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --selective-yellow: hsl(42, 94%, 55%);
  --eerie-black-1: hsl(0, 0%, 9%);
  --eerie-black-2: hsl(180, 3%, 7%);
  --quick-silver: hsl(0, 0%, 65%);
  --radical-red: hsl(351, 83%, 61%);
  --light-gray: hsl(0, 0%, 80%);
  --isabelline: hsl(36, 33%, 94%);
  --gray-x-11: hsl(0, 0%, 73%);
  --kappel_15: hsla(170, 75%, 41%, 0.15);
  --platinum: hsl(0, 0%, 90%);
  --gray-web: hsl(0, 0%, 50%);
  --black_80: hsla(0, 0%, 0%, 0.8);
  --white_50: hsla(0, 0%, 100%, 0.5);
  --black_50: hsla(0, 0%, 0%, 0.5);
  --black_30: hsla(0, 0%, 0%, 0.3);
  --kappel: hsl(170, 75%, 41%);
  --white: hsl(0, 0%, 100%);

  /**
   * gradient color
   */

  --gradient: linear-gradient(-90deg, hsl(151, 58%, 46%) 0%, hsl(260deg 100% 67%) 100%);

  /**
   * typography
   */

  --ff-league_spartan: 'League Spartan', sans-serif;
  --ff-poppins: 'Poppins', sans-serif;

  --fs-1: 4.2rem;
  --fs-2: 3.2rem;
  --fs-3: 2.3rem;
  --fs-4: 1.8rem;
  --fs-5: 1.5rem;
  --fs-6: 1.4rem;
  --fs-7: 1.3rem;

  --fw-500: 500;
  --fw-600: 600;

  /**
   * spacing
   */

  --section-padding: 75px;

  /**
   * shadow
   */

  --shadow-1: 0 6px 15px 0hsla(0, 0%, 0%, 0.05);
  --shadow-2: 0 10px 30pxhsla(0, 0%, 0%, 0.06);
  --shadow-3: 0 10px 50px 0hsla(220, 53%, 22%, 0.1);

  /**
   * radius
   */

  --radius-pill: 500px;
  --radius-circle: 50%;
  --radius-3: 3px;
  --radius-5: 5px;
  --radius-10: 10px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  /* box-sizing: border-box; */
}

li {
  list-style: none;
}

a,
img,
span,
data,
input,
button,
ion-icon {
  display: block;
}

a {
  /* color: inherit; */
  text-decoration: none;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}


html {
  font-family: "Poppins", Arial, sans-serif !important;
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--gray-web);
  font-size: 1.6rem;
  line-height: 1.75;
}

body {
  font-family: "Poppins", Arial, sans-serif !important;
  font-size: 15px;
  line-height: 1.8;
  font-weight: normal;
  color: black;
}

a {
  /* text-decoration: none !important; */
}

/* body,
html {
  font-family: "Poppins", Arial, sans-serif !important;
  font-size: 16px;
  line-height: 24px;
  color: #797979;
  width: 100%;
  overflow-x: hidden;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
} */


:focus-visible {
  outline-offset: 4px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 98%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(0, 0%, 70%);
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
}

/* .section {
  padding-block: var(--section-padding);
} */

.shape {
  position: absolute;
  display: none;
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.h1,
.h2,
.h3 {
  color: var(--eerie-black-1);
  font-family: var(--ff-league_spartan) !important;
  line-height: 1;
}

.h1,
.h2 {
  font-weight: var(--fw-600) !important;
}

.h1 {
  font-size: var(--fs-1) !important;
}

.h2 {
  font-size: var(--fs-2) !important;
}

.h3 {
  font-size: var(--fs-3) !important;
  font-weight: var(--fw-500) !important;
}

.section-title {
  --color: var(--radical-red);
  text-align: center;
  font-size: 20px;

}


.img-rounded {
  border-radius: 8px !important;
  border: none !important;
}

.section-title .span {
  display: inline-block;
  color: var(--color);
  /* color: hsl(170, 75%, 41%); */
  /* color: hsl(229deg 75% 58%); */
  color: #262472;
}

.btn {
  /* background-color: var(--kappel) !important; */
  background-color: hsl(229deg 75% 58%);
  color: var(--white);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-4);
  display: flex;
  align-items: center;
  gap: 7px;
  max-width: max-content;
  padding: 10px 20px;
  border-radius: var(--radius-5);
  overflow: hidden;
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  /* position: absolute; */
  /* content: ""; */
}

.btn::before {
  inset: 0;
  background-image: var(--gradient);
  z-index: -1;
  border-radius: inherit;
  transform: translateX(-100%);
  transition: var(--transition-2);
}

.btn:is(:hover, :focus)::before {
  transform: translateX(0);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  /* background-color: var(--light-gray); */
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-subtitle {
  font-size: var(--fs-5);
  text-transform: uppercase;
  font-weight: var(--fw-500);
  letter-spacing: 1px;
  text-align: center;
  margin-block-end: 15px;
}

.section-text {
  font-size: var(--fs-5);
  text-align: center;
  margin-block: 15px 25px;
}

.grid-list {
  display: grid;
  gap: 30px;
}

.category-card,
.stats-card {
  background-color: hsla(var(--color), 0.1);
}

:is(.course, .blog) .section-title {
  margin-block-end: 40px;
}

/* Add this style for mobile responsiveness */
@media screen and (max-width: 767px) {
  .stats-card {
    /* margin-bottom: 20px; */
  }

  .col-3 {
    width: 100%;
  }

  .category {
    padding-block: 0px !important
  }

}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
  display: none;
}

.header {
  /* position: absolute; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  /* padding-block: 12px; */
  box-shadow: var(--shadow-1);
  z-index: 4;
}

.header.active {
  position: fixed;
}

.header .container,
.header-actions,
.navbar .wrapper {
  display: flex;
  /* position: absolute; */
  /* justify-content: space-between; */
  /* align-items: center; */
  /* gap: 15px; */
}

.header-action-btn,
.nav-close-btn {
  position: relative;
  color: var(--eerie-black-1);
  font-size: 24px;
  transition: var(--transition-1);
}

.header-action-btn:is(:hover, :focus) {
  color: var(--kappel);
}

.header-action-btn .btn-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--kappel);
  color: var(--white);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-6);
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-circle);
}

.navbar {
  /* position: fixed; */
  top: 0;
  left: -330px;
  /* left: -320px; */
  background-color: var(--white);
  width: 100%;
  max-width: 320px;
  height: 100%;
  z-index: 2;
  transition: 0.25s var(--cubic-in);
}

.navbar.active {
  transform: translateX(320px);
  transition: 0.5s var(--cubic-out);
}

.navbar .wrapper {
  padding: 15px 20px;
  border-block-end: 1px solid var(--platinum);
}

.nav-close-btn {
  background-color: var(--white);
  box-shadow: var(--shadow-2);
  padding: 8px;
  border-radius: var(--radius-circle);
}

.nav-close-btn:is(:hover, :focus) {
  background-color: var(--kappel);
  color: var(--white);
}

.navbar-list {
  padding: 15px 20px;
}

.navbar-item:not(:last-child) {
  border-block-end: 1px solid var(--platinum);
}

.navbar-link {
  padding-block: 8px;
  font-weight: var(--fw-500);
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) {
  color: var(--kappel);
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black_80);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: var(--transition-1);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Default styles for larger screens */
.header .desktop-logo {
  display: block;
}

.header .mobile-logo {
  display: none;
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  padding-block-start: calc(var(--section-padding) + 80px);
}

.hero .container {
  display: grid;
  gap: 40px;
}

.hero-text {
  color: var(--eerie-black-1);
  font-size: var(--fs-4);
  text-align: center;
  margin-block: 18px 20px;
}

.hero .btn {
  margin-inline: auto;
}

.hero-banner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: flex-start;
  gap: 30px;
}

.hero-banner .img-holder.one {
  border-top-right-radius: 70px;
  border-bottom-left-radius: 110px;
}

.hero-banner .img-holder.two {
  border-top-left-radius: 50px;
  border-bottom-right-radius: 90px;
}





/*-----------------------------------*\
  #CATEGORY
\*-----------------------------------*/

.category .section-subtitle {
  color: var(--radical-red);
}

.category .bus-route-subtitle {
  color: var(--radical-red);
}

.category .section-title {
  --color:
    hsl(var(--color));
}

.category .section-text {
  margin-block-end: 40px;
}

.category-card {
  padding: 25px 15px;
  text-align: center;
  border-radius: var(--radius-5);
  height: 600px;
}

.category-card .card-icon {
  background-color: hsla(var(--color), 0.1);
  width: 100px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-circle);
  margin-inline: auto;
  margin-block-end: 30px;
}

.category-card .card-text {
  color: var(--eerie-black-1);
  font-size: var(--fs-5);
  margin-block: 15px 25px;
}

.category-card .card-badge {
  background-color: hsla(var(--color), 0.1);
  color: hsl(var(--color));
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
  padding: 2px 18px;
  max-width: max-content;
  margin-inline: auto;
  border-radius: var(--radius-5);
  margin-top: 13px;
}





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
  padding-block-start: 0;
  overflow: hidden;
}

.about .container {
  display: grid;
  gap: 30px;
}

.about-banner {
  position: relative;
  /* z-index: 1; */
}

.about-banner .img-holder {
  border-radius: var(--radius-10);
}

.about-shape-2 {
  display: block;
  bottom: -100px;
  left: -60px;
  animation: bounce 2.5s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

.about :is(.section-subtitle, .section-title, .section-text) {
  text-align: left;
}

.about-item {
  margin-block: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-item ion-icon {
  color: var(--selective-yellow);
  font-size: 20px;
  --ionicon-stroke-width: 50px;
}

.about-item .span {
  color: var(--eerie-black-1);
  font-family: var(--ff-league_spartan);
}





/*-----------------------------------*\
  #COURSE
\*-----------------------------------*/

.course {
  background-color: var(--isabelline);
}

.course-card {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-5);
  overflow: hidden;
}

.course-card .img-cover {
  transition: var(--transition-2);
}

.course-card:is(:hover, :focus-within) .img-cover {
  transform: scale(1.1);
}

.course-card :is(.abs-badge, .badge) {
  font-family: var(--ff-league_spartan);
  border-radius: var(--radius-3);
}

.course-card .abs-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--selective-yellow);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  padding: 6px 8px;
  padding-block-end: 3px;
}

.course-card .abs-badge ion-icon {
  font-size: 18px;
  margin-block-end: 5px;
  --ionicon-stroke-width: 50px;
}

.course-card .card-content {
  padding: 25px;
}

.course-card .badge {
  background-color: var(--kappel_15);
  max-width: max-content;
  color: var(--kappel);
  line-height: 25px;
  padding-inline: 10px;
}

.course-card .card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-block: 15px 8px;
  transition: var(--transition-1);
}

.course-card .card-title:is(:hover, :focus) {
  color: var(--kappel);
}

.course-card :is(.wrapper, .rating-wrapper, .card-meta-list, .card-meta-item) {
  display: flex;
  align-items: center;
}

.course-card .wrapper {
  gap: 10px;
}

.course-card .rating-wrapper {
  gap: 3px;
}

.course-card .rating-wrapper ion-icon {
  color: var(--selective-yellow);
}

.course-card .rating-text {
  color: var(--eerie-black-1);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
}

.course-card .price {
  color: var(--radical-red);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  margin-block: 8px 15px;
}

.course-card .card-meta-list {
  flex-wrap: wrap;
}

.course-card .card-meta-item {
  position: relative;
  gap: 5px;
}

.course-card .card-meta-item:not(:last-child)::after {
  content: "|";
  display: inline-block;
  color: var(--platinum);
  padding-inline: 10px;
}

.course-card .card-meta-item ion-icon {
  color: var(--quick-silver);
  --ionicon-stroke-width: 50px;
}

.course-card .card-meta-item .span {
  color: var(--eerie-black-1);
  font-size: var(--fs-7);
}

.course .btn {
  margin-inline: auto;
  margin-block-start: 60px;
}





/*-----------------------------------*\
  #VIDEO
\*-----------------------------------*/

.video {
  background-size: contain;
  background-position: center top;
}

.video-banner {
  position: relative;
  border-top-right-radius: 80px;
  border-bottom-left-radius: 70px;
  margin-top: 60px;
}

.video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  /* bottom: 50%;
  right: 50%; */
  cursor: pointer !important;
  transform: translate(-50%, -50%);
  background-color: var(--radical-red);
  font-size: 30px;
  padding: 25px;
  color: var(--white);
  border-radius: var(--radius-circle);
  box-shadow: 0 0 0 0 var(--white_50);
  z-index: 1;
  animation: pulse 3s ease infinite;
  margin: -50px -50px;

}


@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--white_50);
  }

  100% {
    box-shadow: 0 0 0 20px transparent;
  }
}

.video-banner::after {
  inset: 0;
  background-color: var(--black_30);
}





/*-----------------------------------*\
  #STATS
\*-----------------------------------*/

.stats-card {
  text-align: center;
  padding: 25px;
  border-radius: var(--radius-10);
  height: 161px;

}

.stats-card :is(.card-title, .card-text) {
  font-family: var(--ff-league_spartan);
  /* margin-top: 10px; */
}


@media screen and (max-width: 767px) {
  .stats-card :is(.card-title, .card-text) {
    font-family: var(--ff-league_spartan);
    margin-top: 15px;
  }
}


.stats-card .card-title {
  color: hsl(var(--color));
  font-size: var(--fs-2);
  line-height: 1.1;
  font-weight: bold;
}

.stats-card .card-title span {
  font-size: 16px;
}

.stats-card .card-text {
  color: var(--eerie-black-1);
  text-transform: uppercase;
  /* font-family: var(--ff-league_spartan); */
}


/* Your existing styles */
.stats-card1 {
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgb(137 26 26 / 10%);
  padding: 20px;
  text-align: center;
  width: 350px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  background-color: hsla(var(--color), 0.1);
}

.stats-card4 {
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgb(137 26 26 / 10%);
  padding: 20px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  background-color: hsla(var(--color), 0.1);
}

/* 
.stats-card2 {
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgb(137 26 26 / 10%);
  padding: 20px;
  text-align: center;
  width: 350px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  background-color: rgb(235, 206, 201)
}

.stats-card3 {
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgb(137 26 26 / 10%);
  padding: 20px;
  text-align: center;
  width: 350px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  background-color: rgb(233, 221, 248)
} */


.card-title1 {
  margin-top: 10px;
  font-size: 1.5rem;
  /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
  font-style: normal;
}

@media screen and (max-width: 767px) {
  .stats-card1 {
    padding: 15px;
  }

  .card-title1 {
    font-size: 1.2rem;
  }

  .hero {
    padding-block-start: 0px !important;
    padding-block: 0px !important
  }
}


.card-title1 a {
  text-decoration: none;
  /* Remove underlines from the anchor tags */
  /* color: black; */
  color: hsl(var(--color));
  /* Inherit the color from the parent */
  font-size: 16px !important;
}

.card-title1 img {
  text-decoration: none;
  /* Remove underlines from the anchor tags */
  /* color: black; */
  color: hsl(var(--color));
  /* Inherit the color from the parent */
  background-color: currentcolor;
}

/* Hover styles */
.stats-card1:hover {
  transform: scale(1.05);
  /* Increase the scale factor for a stronger zoom effect */
}

.stats-card2:hover {
  transform: scale(1.05);
  /* Increase the scale factor for a stronger zoom effect */
}

.stats-card3:hover {
  transform: scale(1.05);
  /* Increase the scale factor for a stronger zoom effect */
}










/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog-card .card-banner {
  border-radius: var(--radius-10);
}

.blog-card .card-banner .img-cover {
  transition: var(--transition-2);
}

.blog-card .card-banner::after {
  inset: 0;
  background-color: var(--black_50);
  opacity: 0;
  transition: var(--transition-1);
}

.blog-card:is(:hover, :focus-within) .card-banner .img-cover {
  transform: scale(1.1);
}

.blog-card:is(:hover, :focus-within) .card-banner::after {
  opacity: 1;
}

.blog-card .card-content {
  position: relative;
  margin-inline: 15px;
  background-color: var(--white);
  padding: 24px;
  border-radius: var(--radius-10);
  box-shadow: var(--shadow-3);
  margin-block-start: -100px;
  z-index: 1;
}

.blog-card .card-btn {
  position: absolute;
  top: -40px;
  right: 30px;
  background-color: var(--kappel);
  color: var(--white);
  font-size: 20px;
  padding: 20px;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  opacity: 0;
}

.blog-card .card-btn:is(:hover, :focus) {
  background-color: var(--kappel);
}

.blog-card:is(:hover, :focus-within) .card-btn {
  opacity: 1;
  transform: translateY(10px);
}

.blog-card :is(.card-meta-item, .card-text, .card-subtitle) {
  font-size: var(--fs-5);
}

.blog-card .card-subtitle {
  text-transform: uppercase;
}

.blog-card .card-title {
  margin-block: 10px 15px;
  transition: var(--transition-1);
}

.blog-card .card-title:is(:hover, :focus) {
  color: var(--kappel);
}

.blog-card :is(.card-meta-list, .card-meta-item) {
  display: flex;
}

.blog-card .card-meta-list {
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-block-end: 20px;
}

.blog-card .card-meta-item {
  gap: 10px;
  align-items: center;
  color: var(--eerie-black-1);
}

.blog-card .card-meta-item ion-icon {
  color: var(--kappel);
  font-size: 18px;
  --ionicon-stroke-width: 40px;
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-repeat: no-repeat;
  background-color: var(--eerie-black-2);
  color: var(--gray-x-11);
  font-size: 14px !important;
  /* font-size: var(--fs-5); */
}

.footer-top {
  display: grid;
  gap: 30px;
}

.footer-brand-text {
  margin-block: 20px;
}

.footer-brand .wrapper {
  display: flex;
  gap: 5px;
}

.footer-brand .wrapper .footer-link {
  color: gray;
  text-decoration: none;
}

.footer-brand .wrapper .footer-link:hover {
  color: var(--kappel);
}

.footer-brand .wrapper .span {
  font-weight: var(--fw-500);
}

.footer-link {
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus) {
  color: var(--kappel);
}

.footer-list-title {
  color: var(--white);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-3);
  font-weight: var(--fw-600);
  margin-block-end: 10px;
}

.footer-list .footer-link {
  padding-block: 5px;
}

.newsletter-form {
  margin: 20px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 575px) {
  .newsletter-form {
    flex-direction: row;
    gap: 10px;
  }
}

.newsletter-form .input-field {
  background-color: var(--white);
  padding: 12px;
  border-radius: var(--radius-5);
  margin-bottom: 20px;
  /* Adjust the margin as needed */
  width: 100%;
  /* Full width by default */
}

.newsletter-form .btn {
  min-width: 120px;
  /* Adjust the width as needed */
}



.input-field {
  margin-right: 10px;
  /* You can adjust the margin as needed */
}

.btn {
  vertical-align: top;
  /* Align the button to the top of the line */
}

.social-list {
  display: flex;
  gap: 25px;
}

.social-link {
  font-size: 20px;
}

.footer-bottom {
  border-block-start: 1px solid var(--eerie-black-1);
  padding-block: 30px;
}

.copyright {
  text-align: center;
}

.copyright-link {
  color: var(--kappel);
  display: inline-block;
}





/*-----------------------------------*\
  #BACK TO TOP & WHATSAPP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  background-color: hsl(229deg 75% 58%);
  color: var(--white);
  font-size: 20px;
  padding: 15px;
  border-radius: var(--radius-circle);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
}

.back-top-btn.active {
  transform: translateY(10px);
  opacity: 1;
  pointer-events: all;
}



.whatsapp-btn {
  position: fixed;
  left: 1990px;
  bottom: 200px;
  background-color: #25D366;
  color: #fff;
  padding: 10px;
  border-radius: 66%;
  text-decoration: none;
  display: flex;
  align-items: 119px;
  justify-content: center;
  font-size: 40px;
}

.whatsapp-btn.active {
  transform: translateY(10px);
  opacity: 1;
  pointer-events: all;
}

@media only screen and (max-width: 600px) {

  /* Adjust styles for smaller screens/mobile view */
  .whatsapp-btn {
    position: fixed;
    right: 10px;
  }

}


.back2TopButton {
  position: fixed;
  bottom: 20px;
  right: 25px;
  font-size: 20px;
  display: none;
  text-decoration: none;
  padding: 8px;
  cursor: pointer;
}

/* Style for the button */
.back2TopButton {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  background-color: #2954a2 !important;
  color: #fff;
  border: none;
  outline: none;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .back2TopButton {
    bottom: 115px;
    right: 10px;
    width: 45px;
    height: 45px;
    font-size: 16px;
    z-index: 1;
  }
}


.whatsappButton {
  position: fixed;
  bottom: 80px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  padding: 15px 15px;
  text-decoration: none;
  border-radius: 50%;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .whatsappButton {
    bottom: 165px;
    right: 10px;
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

.whatsappButton:hover {
  background-color: #128C7E;
}

.whatsappButton i {
  margin-right: 3px;
  font-size: 20px;
}

.whatsappButton:link,
.whatsappButton:visited {
  text-decoration: none;
  color: #fff;
  z-index: 1;
}


.header-actions {
  background-color: var(--white);
}



/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */



@media (min-width: 575px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
  }

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

  :is(.course, .blog) .grid-list {
    grid-template-columns: 1fr;
  }



  /**
   * HEADER
   */

  /* .header .container {
    max-width: unset;

  }

  .header-actions {
    gap: 30px;
    display: none;
    text-align: center;
  } */



  /**
   * HERO
   */

  .hero-banner {
    grid-template-columns: 1fr 0.9fr;
  }



  /**
   * VIDEO
   */

  .video .play-btn {
    /* padding: 40px; */
  }



  /**
   * STATS
   */

  .stats-card {
    padding: 40px 30px;
  }



  /**
   * FOOTER
   */

  .footer-brand,
  .footer-list:last-child {
    grid-column: 1 / 3;
  }

  .newsletter-form {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .newsletter-form .input-field {
    margin-block-end: 0;
  }

  .newsletter-form .btn {}

}





/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 4.6rem;
    --fs-2: 3.8rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 100%;
  }

  .btn {
    padding: 15px 30px;
  }

  :is(.course, .blog) .grid-list {
    grid-template-columns: 1fr 1fr;
  }



  /**
   * HEADER
   */

  /* .header .container {
    padding-inline: 30px;
  } */

  .header .btn {
    display: flex;
    padding: 10px 30px;
    margin-inline: 20px;
  }



  /**
   * HERO
   */

  .hero {
    padding-block-start: calc(var(--section-padding) + 90px);
  }

  .hero .container {
    gap: 50px;
  }

  .hero-text {
    margin-block-end: 30px;
  }

  .hero-banner {
    position: relative;
    z-index: 1;
  }

  .hero-banner .img-holder {
    max-width: max-content;
  }

  .hero-banner .img-holder.one {
    justify-self: flex-end;
  }

  .hero-banner .img-holder.two {
    margin-block-start: 100px;
  }

  .hero-shape-1 {
    display: block;
    position: absolute;
    bottom: -40px;
    left: -10px;
  }



  /**
   * ABOUT
   */

  .about {
    /* padding-block-start: 50px; */
  }

  .about-banner {
    padding: 60px;
    padding-inline-end: 0;
  }

  .about-banner .img-holder {
    max-width: max-content;
    margin-inline: auto;
  }

  .about-shape-1 {
    display: block;
    top: 0px;
    right: -54px;
  }



  /**
   * FOOTER
   */

  .footer-brand,
  .footer-list:last-child {
    grid-column: auto;
  }

  .newsletter-form .btn {
    padding-block: 10px;
  }

}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5.5rem;
    --fs-2: 4.5rem;

  }



  /**
   * REUSED STYLE
   */

  /* .container {
    max-width: 960px;
  } */

  .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }

  :is(.course, .blog) .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }



  /**
   * HERO
   */

  .hero .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hero .section-title,
  .hero-text {
    text-align: left;
  }

  .hero .btn {
    margin-inline: 0;
  }



  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 1fr 0.6fr;
    align-items: center;
    gap: 60px;
  }



  /**
   * VIDEO
   */

  .video-banner {
    max-width: 75%;
    margin-inline: auto;
  }



  /**
   * FOOTER
   */

  @media (min-width: 992px) {
    .footer .grid-list {
      grid-template-columns: 1fr 3.5fr 0.6fr 4.2fr;
      gap: 15px;
    }
  }


  .landing-top-img {
    padding-top: 15rem;
  }

}





/**
 * responsive for large than 1200px screen
 */
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-list {
    column-count:7;
    gap: 0px;
    padding: 0px;
  }
}

@media (min-width:1200px) {
  .navbar-list {
    column-count: 7;
    gap: 0px;
    /* gap: 25px; */
    padding: 0px;
  }
}

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 6.5rem;

    /**
     * spacing
     */

    --section-padding: 20px;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1185px;
  }

  .shape {
    display: list-item;
  }

  .about-content,
  .video-card,
  .blog {
    position: relative;
  }

  /**
   * HEADER
   */

  .header-action-btn:last-child,
  .navbar .wrapper,
  .overlay {
    display: none;
  }

  .header.active {
    transform: translateY(-100%);
    animation: slideIn 0.9s ease forwards;
    height: 130px;
  }

  @keyframes slideIn {
    0% {
      transform: translateY(-100%);
    }

    100% {
      transform: translateY(0);
    }
  }

  .navbar,
  .navbar.active {
    all: unset;
  }

  .navbar-item:not(:last-child) {
    border-block-end: none;
  }

  .navbar-link {
    color: var(--eerie-black-1);
    /* padding-block: 20px; */
  }

  .header .btn {
    margin-inline-end: 0;
  }



  /**
   * HERO
   */

  .hero {
    padding-block-start: calc(var(--section-padding) + 120px);
  }

  .hero .container {
    gap: 80px;
  }

  .hero-shape-2 {
    top: -80px;
    z-index: -1;
  }



  /**
   * ABOUT
   */

  .about .container {
    gap: 110px;
  }

  .about-banner .img-holder {
    margin-inline: 0;
  }

  .about-shape-3 {
    top: -20px;
    left: -100px;
    z-index: -1;
  }

  .about-content {
    z-index: 1;
  }

  .about-shape-4 {
    top: 30px;
    right: -60px;
    z-index: -1;
  }



  /**
   * VIDEO
   */

  .video-shape-1 {
    top: -50px;
    left: 0;
  }

  .video-shape-2 {
    top: -80px;
    right: 120px;
    z-index: 1;
  }



  /**
   * BLOG
   */

  .blog-shape {
    top: 0;
    left: 0;
  }

  .navbar-list {
    position: relative;
    /* Ensure positioning context for absolute positioning of dropdown */
  }


  .submenu {
    display: none;
    background-color: #fff;
    /* Add your preferred background color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* Add a box shadow for styling */
    width: 220px;
    position: absolute;
    text-align: left;
    /* background-color: #f9f9f9;
    top: calc(100% + 30px); */
    z-index: 9999999;
  }

  .has-dropdown:hover .submenu {
    display: block;
  }

  .ul {
    list-style: none;
    margin: 0;
    padding: -1px;
  }

}

.navbar-nav .dropdown-menu a {
  color: #333;
}

.navbar-nav .dropdown-menu a:hover,
.navbar-nav .dropdown-menu a:focus {
  background-color: #f8f9fa;
}

/* Optional: Style the dropdown toggle button */
.navbar-nav .nav-link.dropdown-toggle {
  color: #007bff;
  /* Bootstrap primary color */
}

.navbar-nav .nav-link.dropdown-toggle:hover,
.navbar-nav .nav-link.dropdown-toggle:focus {
  color: #0056b3;
  /* Bootstrap primary darker color */
}

.navbar {
  background-color: #ffffff;
  padding: 2px !important;
}

.navbar-link {
  color: #000000;
  text-decoration: none;
  font-weight: var(--fw-500);
}

.submenu {
  display: none;
  list-style: none;
  padding: 0;
  position: absolute;
  background-color: #f3eeee;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  width: 220px;

}

.submenu-item {
  padding: 0px;
  text-align: start;
}

/* Show the submenu on hover */
.navbar-item:hover .submenu {
  display: block;
}

.navbar-item a {
  font-size: 15px;
}

.footer-list a {
  font-size: 16px;
}

/* Style for submenu items */
.submenu a {
  color: #070606;
  text-decoration: none;
  display: block;
  padding: 10px;
}

.submenu a:hover {
  background-color: #777;
}

.dropdown-menu {
  background-color: #f3eeee;
  border: 1px solid #ced4da;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* .dropdown:hover .dropdown-menu {
  display:inline;
} */

.submenu-item1 {
  padding: 8px 16px;
}


.submenu-item1 a {
  color: #000000;
  text-decoration: none;
  display: block;
  font-size: 14px;
  padding: 10px;
}

.submenu-item1:hover {
  background-color: #777;
}

.submenu-item1 a.active {
  font-weight: var(--fw-500);
}

/* Default styles for larger screens */
.footer-top {
  display: flex;
  justify-content: space-between;
}

.footer-brand {
  max-width: 400px;
  /* Set a maximum width for the brand content */
}

.footer-list,
.footer-list:last-child {
  margin-top: 0;
  /* Remove the top margin on the last list */
}

.footer-list-title {
  margin-bottom: 10px;
  /* Add some space below each list title */
}

/* Mobile responsiveness using media queries */
@media (max-width: 767px) {
  .footer-top {
    flex-direction: column;
    align-items: start;
    text-align: start;
  }

  .footer-list {
    margin-top: 20px;
    /* Add space between the lists on smaller screens */
  }

  .footer-list:last-child {
    margin-top: 20px;
    /* Add space above the last list on smaller screens */
  }
}

/* .edu_slide_tab_box {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 1000px;
  font-size: small;
} */

/* .edu_slide_tab_box:hover {
  -o-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
} */

.edu_slide_tab_box:hover .edu_tabs_label_inner {
  top: -55px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;

}

.media-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* marquee start */
marquee {
  position: relative;
  text-align: end;
  height: 600px;
}

.edu_slide_tab_box img {
  max-width: 80px;
  max-height: 80px;
  margin-right: 10px;
}

.media-body {
  display: flex;
  align-items: center;
}

.media-object {
  margin-right: 10px;
}

.media-body p {
  text-align: justify;
  color: #000;
}


ul {
  list-style: none;
  padding: 0;
  text-align: start;
}

ul li {
  margin-bottom: 10px;
  /* Adjust the margin as needed */
}

ul li a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-weight: var(--fw-600);
}

.course-offered li a {
  font-weight: normal !important;
  font-size: var(--fs-5) !important;
  color: var(--eerie-black-1) !important;
}

/* .courses-item B:hover {
  background-color: #4aca23;
} */

.courses-item {
  margin-block: 20 px;
  display: flex;
  align-items: start;
  gap: 10px;
}

.courses-item ion-icon {
  color: var(--selective-yellow);
  font-size: larger;
  --ionicon-stroke-width: 50px;
}

.icon {
  font-size: 24px;
  margin-top: 6px;
}

.courses-item-second-line {
  margin-left: 30px;
  margin-top: -12px;
}

/* .courses-item .span {
    color: var(--eerie-black-1);
    font-family: var(--ff-league_spartan);
  } */

/* login_section start */

.login_section {
  width: 100%;
  float: left;
}

.login_form_wrapper {
  float: left;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 30px;
  text-align: center;
}

.login_form_wrapper h1 {
  font-size: 30px;
  color: #1e283c;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}

.login_form_wrapper h1:after {
  position: absolute;
  content: '';
  width: 60px;
  height: 3px;
  left: 0px;
  right: 0;
  margin: 0px auto;
  bottom: -20px;
  transition: all 500ms ease;
  -webkit-mask-image: linear-gradient(-75deg, rgba(244, 55, 55, 0.24) 50%, #f43737 50%, rgba(0, 0, 0, 1) 70%);
  -webkit-mask-size: 200%;
  animation: shine 2s infinite;
  background: #FF6C22;
}

.login_wrapper {
  width: 100%;
  background-color: hsla(170, 75%, 41%, 0.1);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /* background: #f7f7f7; */
  padding: 50px;
  margin-bottom: 20px;
  margin-top: 60px;
}

.login_wrapper a.btn {
  color: #fff;
  width: 100%;
  height: 50px;
  border: 0;
  padding: 6px 25px;
  line-height: 36px;
  margin-bottom: 20px;
  text-align: left;
  border-radius: 50px;
  text-transform: capitalize;
  letter-spacing: 1px;
  background: #FF6C22;
  font-size: 16px;
}

.login_wrapper a.btn:hover {
  background-image: -webkit-linear-gradient(50deg, #9e396ffa 0%, #3f2e2f52 100%);
  background: #FF9209;
}

.login_wrapper a span {
  float: left;
}

.login_wrapper a i {
  float: right;
  margin: 0;
  line-height: 35px;
}

.login_wrapper a.google-plus {
  background: #db4c3e;
  border: 1px solid #db4c3e;
}

.login_wrapper a.google-plus:hover {
  background: #bd4033;
  border-color: #bd4033;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.login_wrapper h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #111;
  line-height: 20px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}

.login_wrapper h2::before,
.login_wrapper h2::after {
  content: "";
  background: #e4e4e4;
  width: 100px;
  height: 1px;
  position: absolute;
  top: 50%;
}

.login_wrapper h2::before {
  right: 60%;
}

.login_wrapper h2::after {
  left: 60%;
}

.login_wrapper .form-control {
  height: 53px;
  padding: 15px 20px;
  font-size: 17px;
  line-height: 24px;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  box-shadow: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #fff;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 2rem;
  color: gray;
  font-weight: 400;
  line-height: 1.5;
  /* color: var(--bs-body-color); */
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control::placeholder {
  /* color: #000000; */
  color: gray;
  /* Set the desired color for the placeholder text */
  font-weight: normal;
  font-family: inherit;
  /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
  font-size: 14px;
  /* Set the desired font-weight for the placeholder text */
}


.course-card {
  margin-bottom: 20px;
}

.login_wrapper textarea.form-control {
  height: auto;
  resize: none;
}

.login_wrapper input::placeholder,
.login_wrapper textarea::placeholder {
  color: #999;
}

.login_wrapper .form-control:focus {
  color: #999;
  background-color: fafafa;
  border: 1px solid var(--kappel) !important;
}

.login_wrapper .formsix-pos,
.formsix-e {
  position: relative;
}

.login_wrapper .form-group.i-password:after,
.form-group.i-email:after {
  position: absolute;
  top: 13px;
  font-size: 16px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #c0c0c0;
}

.login_wrapper .form-group.i-email:after {
  content: "\f0e0";
  right: 25px;
}

.login_wrapper .form-group.i-password:after {
  content: "\f09c";
  right: 25px;
}

.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 17px;
  font-weight: normal;
  height: 55px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  /* width: 405px; */
}

@media screen and (max-width: 767px) {
  .nice-select {
    width: 100%;
    /* Make it take the full width of the container */
    max-width: 100%;
    /* Ensure it doesn't exceed the container width */
    padding-right: 15px;
    /* Adjust the right padding for better spacing on small screens */
  }
}

.login_remember_box {
  margin-top: 30px;
  margin-bottom: 30px;
  color: #999;
  text-align: left;
}

.login_remember_box .control {
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  margin: 0;
}

.login_remember_box .control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.login_remember_box .control__indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  height: 13px;
  background: #fff;
  border: 1px solid #999;
}

.login_remember_box .control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}

.login_remember_box .control input:checked~.control__indicator:after {
  display: block;
}

.login_remember_box .control--checkbox .control__indicator:after {
  left: 4px;
  top: 0;
  width: 5px;
  height: 10px;
  border: solid #111;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.login_remember_box .forget_password {
  float: right;
  color: #db4c3e;
  font-size: 14px;
  text-decoration: underline;
}

.login_message p {
  text-align: center;
  font-size: 16px !important;
  margin: 0;
}

.login_message a {
  color: #412f30;
}

.login_form_wrapper p {
  width: 70%;
  text-align: center;
  margin: 0px auto;
  font-size: 14px;
  padding-top: 30px;
}

.admission_form_section {
  float: left;
  width: 400px;
  text-align: center;
}

.admission_contact_form {
  /* background-color: rgba(231, 246, 255, 0.8); */
  padding: 20px;
  border-radius: 10px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  height: 430px;
}

@media screen and (max-width: 767px) {
  .admission_contact_form {
    /* background-color: rgba(231, 246, 255, 0.8); */
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    height: 500px;
  }

}


.admission_contact_form1 .submit-btn {
  font-size: 15px;
  width: 100%;
  padding: 12px 30px;
}

/* .admission_contact_form1 {
  background-color: rgba(231, 246, 255, 0.8);
  padding: 5px;
  border-radius: 10px;
  height: 469px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: 400px;
} */


/* Media query for screens smaller than 768px (typical mobile screens) */
@media (max-width: 768px) {
  .admission_contact_form {
    height: 400;
  }
}

.btn {
  display: inline-block;
  text-transform: uppercase;
  border: 0px solid var(--kappel);
  border: 0px solid #2c3e50;
  margin-top: 45px;
  font-size: 0.7em;
  font-weight: 700;
  padding: 1.1em 2.4em;
  text-align: center;
  -webkit-transition: color 0.3s, border-color 0.3s;
  -moz-transition: color 0.3s, border-color 0.3s;
  transition: color 0.3s, border-color 0.3s;
}

.naac-btn {
  display: inline-block;
  border: 0px solid #2c3e50;
  margin-top: 45px;
  font-size: 0.7em;
  font-weight: 700;
  padding: 1.1em 2.4em;
  text-align: center;
  -webkit-transition: color 0.3s, border-color 0.3s;
  -moz-transition: color 0.3s, border-color 0.3s;
  transition: color 0.3s, border-color 0.3s;
}

.naac-btn1 {
  display: inline-block;
  border: 0px solid #c50227;
  margin-top: 45px;
  font-size: 0.7em;
  font-weight: 700;
  padding: 1.1em 2.4em;
  text-align: center;
  -webkit-transition: color 0.3s, border-color 0.3s;
  -moz-transition: color 0.3s, border-color 0.3s;
  transition: color 0.3s, border-color 0.3s;
}

.custom-btn-css {
  font-size: 16px;
  font-weight: bold;
  border-radius: 100px;
  border-width: 0;
  margin-top: 15px;
  padding: 10px 32px;
  color: white;
  color: #fff;
  background-color: #c50227;
  border-color: #c50227;
}

.custom-btn-css:hover {
  color: #fff;
  background-color: #c50227;
  border-color: #c50227;
}

.admission_contact_form h4 {
  text-align: center;
  color: #333333;
}

.admission_contact_form input,
.admission_contact_form select {
  width: 100%;
  margin: 10px 0;
  padding: 6px;
  border-radius: 1px;
  border: none;
  font-size: 16px;
  color: bisque;
  box-sizing: border-box;
}

.admission_contact_form .submit-btn {
  font-size: 15px;
  width: 100%;
  padding: 12px 30px;
}

.admission_contact_form .submit-btn:hover {
  background-color: var(--kappel);
  box-shadow: 0px 10px 20px rgb(0 0 0 / 20%);
}

.admission_contact_form select {
  display: block;
}

.admission_form_section {
  float: left;
  width: 101%;
  text-align: center;
  height: fit-content;
}

/* online -admission-form end*/

/* alumini _registration start*/


/* .admission_contact_form1 {
  background-color: rgba(222, 240, 252, 0.8);
  padding: 22px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  height: auto;
} */

/* @media (max-width: 767px) {
  .admission_contact_form1 {
    padding: 15px;
    background-color: rgba(36, 47, 53, 0.8);
  }
} */

.btn-hover {
  border-radius: 10px;
  box-shadow: 0px 4px 8px var(--kappel) !important;
  /* box-shadow: 0px 4px 8px rgba(224, 173, 173, 0.1); */
  padding: 10px;
  text-align: center;
  width: 180px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  background-color: hsla(var(--color), 0.1) !important;
}

.btn-title1 {
  margin-top: 10px;
  font-size: 1.5rem;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-style: normal;
}

@media screen and (max-width: 767px) {
  .btn-hover {
    padding: 15px;
  }

  .btn-title1 {
    font-size: 1.2rem;
  }

}


.btn-title1 a {
  text-decoration: none;
  color: hsl(var(--color));
}

.btn-hover:hover {
  transform: scale(1.05);
}

.admission_contact_form1 h4 {
  text-align: center;
  color: #333333;
}

.admission_contact_form1 input,
.admission_contact_form1 select {
  margin: 10px 0;
  padding: 5px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  box-sizing: border-box;
}

.admission_contact_form1 select {
  display: block;
}

.login_btn_wrapper {
  /* border-bottom: 1px solid #e4e4e4; */
  margin-top: 15px;
}

/* online Admission 2024-25 */

body {
  /* padding-top: 56px; */
  /* Adjusted for fixed navbar height */
}

.side-button-container {
  position: fixed;
  top: 29%;
  right: 0;
  transform: rotate(180deg);
  background-color: #d43a41;
  color: #fff;
  padding: 15px 10px;
  border: none;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  z-index: 1000;
}

@media screen and (max-width: 767px) {
  .side-button-container {
    display: block;
    position: fixed;
    top: 30%;
    right: 0;
/*    transform: translateY(-50%);*/
    background-color: #000000;
    color: #fff;
    padding: 8px 10px;
/*    border: none;*/
   /* border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;*/
    cursor: pointer;
/*    writing-mode: horizontal-tb;*/
    text-orientation: mixed;
    z-index: 1;
/*    margin-top: 340px;*/
    opacity: 0.7;
  }
}


/**---------- inner header pages css -------****/
.page_header h1 {
  font-size: 50px;
  line-height: 50px;
  text-transform: capitalize;
  color: #fff;
  font-weight: 600;
  overflow-wrap: break-word;
  letter-spacing: 1px;
}

.sub_title_section {
  padding-top: 10px;
}

.sub_title_section ul {
  display: inline-block;
}

.page_header .sub_title li {
  float: left;
  font-size: 16px;
  line-height: 35px;
  display: flex;
  text-transform: capitalize;
  color: #FF6C22;
  font-weight: 400;
}

.page_header {
  padding-top: 30px;
  text-align: center;
}

.page_header .sub_title li:last-child {
  color: #FF6C22;
  font-style: italic;
}

.page_header .sub_title a {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  font-style: italic;
}

.page_header .sub_title a:hover {
  color: #1e283c;
}

.addmission-section {
  background-color: rgb(232 246 246);
  /* padding-bottom: 7rem; */
}

.nice-select span {
  font-size: 14px;
}

#homepage_career {
  width: 100%;
  display: inline-block;
  position: relative;
  margin: 0px;
}

#homepage_career .fl_left_content {
  width: 49%;
  height: 100px;
}

#homepage_career .fl_right_content {
  width: 49%;
  height: 230px;
}

/* contact-us */

.contact_icon_section {
  padding-bottom: 100px;
  padding-top: 100px;
  margin-top: 30px;
}

.contact_icon_sections h2{
  font-size: 44px;
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.contact_main {
  float: left;
  width: 100%;
  text-align: center;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

.contact_main h4 {
  font-size: 24px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 20px;
  text-transform: capitalize;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

.contact_main h5 {
  font-size: 24px;
  color: #2980B9;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 15px;
  text-transform: capitalize;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

.contact_main p {
  font-size: 16px;
  line-height: 25px;
  margin: 0;
}

.contact_icon_section i {
  font-size: 40px;
  line-height: 130px;
}

.contact_main:hover i {
  transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

.contact_rotate {
  display: inline-block;
  width: 130px;
  height: 130px;
  color: #fff;
  text-align: center;
  position: relative;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

.contact_rotate:after {
  position: absolute;
  top: 100%;
  border: 9px solid transparent;
  content: " ";
  height: 0;
  width: 0;
  left: 50%;
  margin-left: -9px;
}

.contact_main .contact_rotate {
  background: linear-gradient(90deg, #1CB5E0 0%, #000851 100%);
  /*background: rgba(116, 66, 93, 1); 
  background: -moz-linear-gradient(left, rgba(116, 66, 93, 1) 0%, rgba(62, 46, 46, 1) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(116, 66, 93, 1)), color-stop(100%, rgba(62, 46, 46, 1)));
  background: -webkit-linear-gradient(left, rgba(116, 66, 93, 1) 0%, rgba(62, 46, 46, 1) 100%);
  background: -o-linear-gradient(left, rgba(116, 66, 93, 1) 0%, rgba(62, 46, 46, 1) 100%);
  background: -ms-linear-gradient(left, rgba(116, 66, 93, 1) 0%, rgba(62, 46, 46, 1) 100%);
  background: linear-gradient(to right, rgba(116, 66, 93, 1) 0%, rgba(62, 46, 46, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#74425d', endColorstr='#3e2e2e', GradientType=1);*/
}

.contact_main .contact_rotate:after {
  border-top-color: #000851;
}

.contact_main:hover .contact_rotate {
  background-color: #5e2ced;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

.contact_main h4 a {
  color: #000851;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

#map {
  float: left;
  width: 100%;
  height: 600px;
}

.conatct_btn2 {
  text-align: center !important;
  padding-top: 20px;
}

.conatct_btn2 button {
  width: 190px !important;
  border-radius: 5px !important;
}

.response {
  padding-left: 10px;
}

.contact_section .form-control {
  height: 50px;
  padding: 15px 18px;
  font-size: 16px;
  border: 1px solid #999292;
  border-radius: 3px;
  box-shadow: none;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #c0b9b9;
}

.contact_section form {
  width: 100%;
  height: 280px;
}

.contact_section textarea.form-control {
  height: auto;
  resize: none;
}

.contact_section input::placeholder,
.contact_section textarea::placeholder {
  color: #999;
}

.contact_section .form-control:focus,
.contact_section .form-control:hover {
  color: #111;
  background-color: transparent;
  border: 1px solid #523746 !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contact_section .btn:focus {
  outline: none;
}

.contact_section-pos,
.contact_section-e,
.contact_section-m,
.contact_section-p {
  position: relative;
}

.contact_section .tb_es_btn_wrapper {
  float: left;
  width: 100%;
  text-align: left;
}

.ctc_row {
  padding-right: 0;
}

.contact_section .form-group i {
  position: absolute;
  top: 20px;
  right: 17px;
  font-size: 14px;
  color: #c7c7c7;
}

.contact_section .tb_es_btn_wrapper button {
  display: inline-block;
  width: 100%;
  height: 50px;
  line-height: 48px;
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #30a3f0;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid #30a3f0;
  border-radius: 0;
  cursor: pointer;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.contact_section {
  padding: 100px 0;
}

.contact_section .form-group {
  margin-bottom: 13px;
  position: relative;
}

.tb_es_btn_wrapper button:hover {
  background: transparent;
  color: #30a3f0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.comments_form2 {
  margin-top: 60px;
}

.i-name input,
.i-email input {
  -webkit-border-radius: 50px !important;
  -moz-border-radius: 50px !important;
  border-radius: 50px !important;
  background: #fff !important;
}

.i-message textarea {
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  border-radius: 10px !important;
  background: #fff !important;
}

.edu_contact_btn a {
  display: inline-block;
  float: none;
}

.edu_team_main_wrapper_inner {
  padding-top: 40px;
}

.contact_section {
  padding: 100px 0;
  padding-bottom: 75px;
  background: #f7f7f7;
}

.response {
  padding-left: 10px;
}

.contact_section .form-control {
  height: 50px;
  padding: 15px 18px;
  font-size: 16px;
  border: 1px solid #fff;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  box-shadow: none;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #fff;
}

.contact_section form {
  width: 100%;
}

.contact_section textarea.form-control {
  height: auto;
  resize: none;
}

.contact_section input::placeholder,
.contact_section textarea::placeholder {
  color: #999;
}

.contact_section .form-control:focus,
.contact_section .form-control:hover {
  color: #111;
  background-color: #fff;
  border: 1px solid #5d3949 !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contact_section .btn:focus {
  outline: none;
}

.contact_section .tb_es_btn_wrapper {
  float: left;
  width: 100%;
  text-align: left;
}

.contact_section .tb_es_btn_wrapper button {
  font-size: 14px;
  color: #fff;
  display: inline-block;
  width: 160px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  border: 0;
  -webkit-border-radius: 50px !important;
  -moz-border-radius: 50px !important;
  border-radius: 50px !important;
  background: rgba(116, 66, 93, 1);
  background: -moz-linear-gradient(left, rgba(116, 66, 93, 1) 0%, rgba(62, 46, 46, 1) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(116, 66, 93, 1)), color-stop(100%, rgba(62, 46, 46, 1)));
  background: -webkit-linear-gradient(left, rgba(116, 66, 93, 1) 0%, rgba(62, 46, 46, 1) 100%);
  background: -o-linear-gradient(left, rgba(116, 66, 93, 1) 0%, rgba(62, 46, 46, 1) 100%);
  background: -ms-linear-gradient(left, rgba(116, 66, 93, 1) 0%, rgba(62, 46, 46, 1) 100%);
  background: linear-gradient(to right, rgba(116, 66, 93, 1) 0%, rgba(62, 46, 46, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#74425d', endColorstr='#3e2e2e', GradientType=1);
}

.contact_section .form-group {
  margin-bottom: 28px;
  position: relative;
}

.tb_es_btn_wrapper button:hover {
  background-image: -webkit-linear-gradient(50deg, #9e396ffa 0%, #3f2e2f52 100%);
  background: rgba(116, 66, 93, 1);
  background: -moz-linear-gradient(50deg, #9e396ffa 0%, #3f2e2f52 100%);
  background: -webkit-gradient(50deg, #9e396ffa 0%, #3f2e2f52 100%);
  background: -webkit-linear-gradient(50deg, #9e396ffa 0%, #3f2e2f52 100%);
  background: -o-linear-gradient(50deg, #9e396ffa 0%, #3f2e2f52 100%);
  background: -ms-linear-gradient(50deg, #9e396ffa 0%, #3f2e2f52 100%);
  background: linear-gradient(50deg, #9e396ffa 0%, #3f2e2f52 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(50deg, #9e396ffa 0%, #3f2e2f52 100%);
}

.edu_heading_wrapper_contactus {
  padding-bottom: 60px;
}


.sub_title_section {
  padding-top: 10px;
}

.sub_title_section ul {
  display: inline-block;
}

.page_header .sub_title li {
  float: left;
  font-size: 16px;
  line-height: 35px;
  text-transform: capitalize;
  color: #FF6C22;
  font-weight: 400;
}

.page_header {
  padding-top: 30px;
  text-align: center;
}

.page_header .sub_title li:last-child {
  color: #FF6C22;
  font-style: italic;
}

.page_header .sub_title a {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  font-style: italic;
}

.page_header .sub_title a:hover {
  color: #1e283c;
}

.entrepreneur-container {
  background-color: hsla(var(--color), 0.1);
  color: hsl(var(--color));
}

/* nirf css */
/*  */
.bus-route-subtitle {
  font-size: var(--fs-5);
  text-transform: uppercase;
  font-weight: var(--fw-500);
  letter-spacing: 1px;
  margin-block-end: 15px;
}

.career-sample-icon {
  height: 6.4rem;
  width: 6.4rem;
  padding: 0px;
}

.map-point-sm {
  padding: 0rem 0rem 1.5rem 0rem;
}

.vacancy-type {
  padding: 3rem 2rem;
}

.vacancy-container h3 {
  font-size: 30px !important;
  font-weight: 700 !important;
  text-transform: capitalize !important;
  color: var(--kappel);
  text-align: center;
  margin: 0 0 15px 0;
  padding: 5px 0 5px 15px;
}

.vacancy-container h5 {
  margin: 0 0 15px 0;
  padding: 5px 0 5px 15px;
  text-transform: capitalize !important;
  font-size: 25px !important;
  color: #000;
  text-align: center;
}

.dept-icon img {
  margin: 20px auto;
  width: 64px;
}

.dept-icon {
  width: 110px;
  border: 1px solid #373f6e;
  border-radius: 50%;
  background-color: #fbf9f9;
  text-align: center;
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: .2s;
  -ms-transition-duration: .2s;
  -moz-transition-duration: .2s;
  -webkit-transition-duration: .2s;
  -o-transition-duration: .2s;
}

.dept-sec {
  margin: 0px auto;
  margin-bottom: 30px;
  text-align: -webkit-center;
}

#departmentContainer {
  text-align: -webkit-center;
}

.dept-icon:hover {
  box-shadow: 4.5px 7.2px 3.6px rgb(0 0 0 / 4%), 12.5px 20px 10px rgb(0 0 0 / 6%), 29.1px 48.2px 24.1px rgb(0 0 0 / 7%);
}

.career-card {
  background-color: #F7F7F7;
  border: none;
  border-radius: 0.5rem;
}

.career-card h5 {
  font-size: 2rem;
}

.alumni-registration {
  --color: 170, 75%, 41%;
  display: block;
  /* height: 53px; */
}

.form-check-input {
  height: auto !important;
  width: auto !important;
}

.form-check .form-check-input {
  margin-left: 0 !important;
  margin: 2px 5px 2px 0 !important;
}

.form-check {
  padding-left: 0% !important;
  margin: 5px 0 !important;
}

.alumni_registration_form input,
.alumni_registration_form select,
.alumni_registration_form button,
.alumni_registration_form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  box-sizing: border-box;
  display: block;
  height: 53px;
}

.alumni_registration_form input,
.alumni_registration_form select,
.alumni_registration_form textarea {
  /* background-color: hsla(var(--color), 0.1);
    color: hsl(var(--color)); */
}

.alumni_registration_form button {
  /* background-color: hsla(var(--color), 0.1);
    color: hsl(var(--color));
    cursor: pointer;
    font-weight: 600; */
}

.input-title {
  color: #0a58ca !important;
  font-size: 16px;
  font-weight: 600;
  margin: 0 px;
}

/* start multi-item-carousel */

@media (max-width: 767px) {
  .placement .carousel-inner .carousel-item>div {
    display: none !important;
    padding: 0;
  }

  .placement .carousel-inner .carousel-item>div:first-child {
    display: block !important;
  }
}

#placement-image {
  width: 100%;
  max-width: 100%;
  /* Ensures the image doesn't exceed its original size */
}

/* Media query for smaller screens (e.g., mobile devices) */
@media (max-width: 768px) {
  #placement-image {
    width: 80%;
    /* Adjust as necessary */
    max-width: 80%;
    /* Ensures the image doesn't exceed its original size */
  }
}

.placement .carousel-inner .carousel-item.active,
.placement .carousel-inner .carousel-item-next,
.placement .carousel-inner .carousel-item-prev {
  display: flex !important;
}

/* medium and up screens */
/* @media (min-width: 768px) {

  .placement .carousel-inner .carousel-item-end.active,
  .placement .carousel-inner .carousel-item-next {
      transform: translateX(25%) !important;
  }

  .placement .carousel-inner .carousel-item-start.active,
  .placement .carousel-inner .carousel-item-prev {
      transform: translateX(-25%) !important;
  }
}

.placement .carousel-inner .carousel-item-end,
.placement .carousel-inner .carousel-item-start {
  transform: translateX(0) !important;
} */

.placement .carousel-item .card {
  padding: 0 10px;
  margin: 10px 10px 20px 10px;
  border-radius: 20px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

.zoom-on-hover {
  transition: transform 0.4s ease-in-out;
}

.zoom-on-hover:hover {
  transform: scale(1.03);
}

/* End multi-item-carousel */

/*Annoncement  */

.edu_staff_main_wrapper {
  padding-top: 20px;
  /* padding-bottom: 80px; */
  background: #fbfbfb;
}

.edu_announcement_main_wrapper {
  padding-top: 50px;
  padding-bottom: 50px;
}

.edu_announcement_label {
  width: 240px;
  height: 40px;

  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background: #2954a2 !important;
}

@media (max-width: 768px) {

  /* Adjust the maximum width according to your needs */
  .edu_announcement_label {
    /* margin-left: 60px; */
    margin-bottom: 10px;
  }
}

.edu_announcement_label p {
  color: #fff;
  line-height: 37px;
  text-align: center;
}

.marquee-container {
  width: 100vw;
  overflow: hidden;
  white-space: nowrap;
}

/* start marquee */
.marquee_1 {
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
  overflow: hidden;
  position: relative;
  width: 100%;
  white-space: nowrap;
  height: 26px;
  
}

.marquee_1 p {
  position: absolute;
  width: auto;
  height: 100%;
  margin: 0;
  line-height: 50px;
  text-align: center;
  transform: translateX(100%);
}
.marquee_1 p:hover{
  animation-play-state: paused !important;
}
.marquee_1 a{
  color: #ffc107;
  line-height: 1px;
  font-size: 16px;
}
@media screen and (max-width: 767px){
.marquee_1 a{
  color: #ffc107;
  line-height: 1px;
  font-size: 14px;
}
}
@keyframes scroll-left {
  0% {
      transform: translateX(100%);
  }

  100% {
      transform: translateX(-100%);
  }
}

.marquee {
  position: relative;
  text-align: center;
  height: 520px;
  font-size: 16px;
  animation: marquee 30s linear infinite;
  animation-play-state: running;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  height: 40px;
  border: 2px solid #2954a2;
  border-radius: 50px;
  background-color: white;
}

.marquee-wrapper a {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  line-height: 35px;
  text-align: center;
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  animation: marquee 30s linear infinite;
  color: #9e396ffa;
}

.marquee-wrapper a:hover {
  -moz-animation-play-state: paused;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(80%);
  }

  80% {
    transform: translateX(-80%);
  }
}

@-moz-keyframes marquee {
  0% {
    -moz-transform: translateX(100%);
  }

  100% {
    -moz-transform: translateX(-100%);
  }
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(100%);
  }

  100% {
    -webkit-transform: translateX(-100%);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}
/* end marquee */
.copyright-text {
  text-align: center;
  /* Align the text to the left if necessary */
  white-space: nowrap;
  /* Prevent line breaks */
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  height: 413px;
  background-color: #ebebeb;
}

@media only screen and (max-width: 600px) {
  .card {
    height: auto;
    /* Adjust height for mobile devices */
  }
}

.card-img {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  height: 215px;
  background-color: #ebebeb;
}

@media only screen and (max-width: 600px) {
  .card-img {
    height: auto;
    /* Adjust height for mobile devices */
  }
}


.button {
  display: inline-block;
  padding: 6px 20px;
  background-color: #f80808;
  color: #fff;
  /* width: 150px; */
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-align: center;
  margin-top: 30px;

}

/* Hover effect */
.button:hover {
  background-color: #52b929;
  /* Set your desired hover background color */
}

.carosel-padding {
  padding: 3rem !important;
}

@media only screen and (max-width: 600px) {
  .carosel-padding {
    padding: 0px !important;
  }
}

.rank-card{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border: 1px solid #dfd1d1;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stats-card {
  width: 100%; /* Set figure width to 100% */
  height: 100%; /* Set figure height to 100% */
  position: relative;
  overflow: hidden;
}


.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (divide 9 by 16 = 0.5625) */
  overflow: hidden;
  width: 100%;
}

.video-container iframe {
  position: absolute;
  top: -1px;
  left: 0px;
  width: 100%;
  height: 100%;
  /* bottom: 10px; */
}

.scholarship-container ul li{
  list-style: disc;
}
.scholarship-container h1, .scholarship-banner h1{
  color: #2954a2;
}

.scholarship-banner .nav-pills .nav-link {
  border-radius: var(--bs-nav-pills-border-radius);
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  color: var(--bs-primary);
}
.scholarship-banner .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: var(--bs-white) !important;
  background-color: var(--bs-primary);
}

.calendly{
    width:100%;
    position: relative;
    text-align:center;
    background-image: linear-gradient(#2980B9, #6DD5FA, #FFFFFF);
    padding-bottom: 20px;
}

.chead{
  padding-top: 18px;
  text-align: center;
  font-size: 28px;
  font-weight:400;
  color: #fff;
  -webkit-background-clip: text;
}

.admission_form_background{
  background-image: linear-gradient(#FFFFFF, #FFFFFF, #6DD5FA);
}

.calendly-mobile{
  min-width:320px;height:700px;
}

@media only screen and (max-width: 600px) {
  .calendly-mobile{
    height:1100px;
  }
}