:root {
  --spacing-card: 12%;
}

body {
  position: relative;
  height: 100%;
  /* Ensure the body fills the screen height */
  margin: 0;
  padding: 0;
  /* overflow: auto; */
  overflow-y: scroll;
  overflow-x: hidden;
  /* Allow scrolling */
}

.image-scale {
  scale: 1;
  transition: all 2s linear;
}

.image-scale:hover {
  scale: 1.1;
}

.link {
  color: #fff;
}

.link:hover {
  color: #fff;
}

.philos-quote {
  position: relative;
  height: 40px;
  width: auto !important;
  top: -18px;
  left: -4px;
  mix-blend-mode: darken;
}

.philos-quote2 {
  position: relative;
  height: 40px;
  width: auto !important;
  bottom: -2px;
  right: 0px;
  transform: rotate(180deg);
  mix-blend-mode: darken;
}

.overlay {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 48%), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.home-slider:after {
  content: '';
  height: 120px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(180deg, #134168 -20%, transparent);
}

section {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

section.show {
  display: block;
  opacity: 1;
}

/* Swiper container */
.swiper {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.swiper-wrapper {
  display: flex;
  /* Ensures horizontal slide layout */
}


.swiper-slide {
  text-align: center;
  font-size: 1vw;
  /* background: #000; */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
  /* Make sure the heading appears above the video */
}

.swiper-slide .video-swiper {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: bottom;
}

/* Heading placement inside swiper-slide */
.swiper-slide .hd-btm {
  position: absolute;
  bottom: 3vw;
  left: 3vw;
  color: white;
  font-size: 1.042vw;
  font-weight: 500;
  z-index: 2;
  text-align: left;
  align-items: center;
  padding-left: 45px;
  display: flex;
  justify-content: space-between;
  width: 90%;
}

.scrl-sec i {
  font-size: 2vw;
  line-height: 1.05;
}

.scrl-sec {
  display: flex;
  align-items: center;
}

/* Custom scrollbar styles */
.swiper-scrollbar {
  position: absolute;
  top: 10%;
  /* Adjust to position vertically */
  left: 0;
  /* Position scrollbar to the left */
  width: 8px;
  /* Width of the vertical scrollbar */
  height: 80%;
  /* Height of the scrollbar */
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  /* Rounded edges */
}

.swiper-scrollbar-drag {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}

.swiper {
  width: 100%;
  /* Full width */
  height: 100vh;
  /* Full viewport height */
  position: relative;
}

.swiper-scrollbar {
  width: 8px;
  /* Make the scrollbar vertical */
  height: auto;
  /* Allow it to span the height of the Swiper container */
  right: 0;
  /* Position it on the right side */
  top: 0;
  bottom: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.1);
  /* Background of the scrollbar track */
}

.swiper-scrollbar-drag {
  width: 100%;
  /* Keep the drag element aligned */
  background: #888;
  /* Color of the scrollbar thumb */
  border-radius: 4px;
  /* Rounded corners for the scrollbar */
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: auto !important;
  bottom: auto !important;
  top: 50% !important;
  right: -30vh !important;
  transform: rotate(90deg) translate(0%) !important;
  height: var(--swiper-scrollbar-size, 4px) !important;
  width: calc(70vh) !important;
  background: var(--secondary-color) !important;
  box-shadow: 0px -1px 3px 3px rgb(14 14 14 / 20%);
}

.swiper-scrollbar-drag {
  background: #fff !important;
}

/* Smooth transition effects */
.swiper-container {
  transition: transform 0.6s ease-out;
  /* Apply smooth transition */
}

.hd-btm {
  display: flex;
  align-items: center;
  gap: 0px;
  /* Adjust spacing between SVG and heading */
}

.svg-container {
  display: flex;
  align-items: center;
  width: 6%;
}

.svg-container iframe {
  width: 170px;
}

.hd-btm h2 {
  color: #fff;
  font-size: 3vw;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 0;
  text-shadow: 2px 2px 2px #3d3d3d;
}



#header {
  position: relative;
  z-index: 9;
}

/* Sections after swiper slider */
.additional-content {
  width: 100%;
  padding: 20px;
}

section {
  margin-bottom: 40px;
}

section h2 {
  font-size: 1.25vw;
  color: #333;
}

section p {
  font-size: 1vw;
  color: #666;
}

#map-container {
  /* width: 100%;
  height: 400px; */
  /* Example height for map */
  /* background-color: #f0f0f0;
  text-align: center;
  line-height: 400px; */
}

/* Simple contact form styling */
#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#contact-form button {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#contact-form button:hover {
  background-color: #45a049;
}

.bg-color-134168 {
  background-color: #134168;
  border-radius: 10px;
  position: relative;
}

.bg-color-fff {
  background-color: #FFF;
  border-radius: 10px;
  position: relative;
}

.heading-title {
  color: #FFF;
  font-family: 'Lato', sans-serif;
  font-size: 2.6vw;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}

.weight-600 {
  font-weight: 600 !important;
}

p.heading-content {
  font-family: 'Merriweather', serif;
  /* color: #FFF; */
  text-align: left;
  font-size: 1.1vw;
  line-height: 1.6vw;
  font-weight: 400;
  margin-bottom: 15px;
  /* letter-spacing: 1px; */
}

.button-who-we {
  font-family: 'Merriweather', serif;
  display: flex;
  justify-content: end;
  border: none;
  background: transparent;
  color: #FFF;
  font-size: 1.2vw;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  text-transform: uppercase;
  padding: 0;
  align-items: center;
}

.button-who-we i {
  font-size: 1.5vw;
}

.button-who-we .circle {
  height: 50px;
  width: 50px;
  /* border-radius: 50%;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2vw;
  margin-left: .5vw;
  color: #003366;
  font-weight: bolder; */
}

.circle-icon {
  position: relative;
  margin-left: 10px;
}

.circle-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.button-who-we:hover .circle {
  stroke: #AADCEE;
  animation: stoke 5s linear;
}

.button-who-we .circle {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}

.svg-inside {
  /* width: 100vw;
  height: 100vh; */
  width: 95vw;
  height: 87vh;
  bottom: 0;
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.container-content {
  padding: 2.6vw 4vw;
}

/* cns content change */

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

.left-content h1 {
  font-size: 1.875vw;
  color: #003366;
  margin-bottom: 15px;
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}

.international-heading {
  font-size: 1.875vw;
  color: #FFF;
  margin-bottom: 15px;
  text-align: right;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}

.left-content p,
.left-content .heading-title {
  color: #003366;
}

.description {
  font-weight: 500;
  font-family: 'Merriweather', serif;
}

.sub-description {
  font-weight: 300;
  font-family: 'Merriweather', serif;
  margin-top: 20px;
}

/* Bottom Circle Container */
.cicle-main {
  position: relative;
}

.circle-rotation {
  height: 100%;
}

.cicle-container img {
  width: 30%;
  position: absolute;
  right: -5rem;
  bottom: 10rem;
}

.icon-home {
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(var(--angle)) translate(120px) rotate(calc(-2 * var(--angle)));
  cursor: pointer;
  transition: transform 0.3s ease;
  top: 0;
}

.icon:hover {
  transform: rotate(var(--angle)) translate(120px) scale(1.1) rotate(calc(-1 * var(--angle)));
}

.icon img {
  width: 50%;
  height: auto;
}

.CenturyEducation {
  position: absolute;
  width: 150px;
  right: -22px;
  top: 10%;
  rotate: 10deg;
}

.AcademicExcellence {
  position: absolute;
  width: 150px;
  top: 11%;
  right: 9%;
  rotate: 345deg;

}

.Experienced {
  position: absolute;
  width: 150px;
  top: 18%;
  right: 14rem;
  rotate: 322deg;
}

.InnovativeTeachingMethod {
  position: absolute;
  width: 150px;
  top: 370px;
  right: 347px;
  rotate: 275deg;
}

/* Two Campuses Start here */

.two-image-conatiner img {
  border-radius: 20px;
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}

.rotate-title {
  position: absolute;
  bottom: auto;
  rotate: 269deg;
  left: -6vw;
  right: auto;
  top: auto;
  bottom: 2.8vw;
  font-size: 2vw;
  font-weight: 400;
  font-family: 'Lato', sans-serif;
  color: #003366;
  margin-bottom: 0;
}

.hover-text {
  font-family: 'Merriweather', serif;
  font-size: 1.2vw;
  font-style: italic;
  color: #ECB24F;
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: -100%;
  transition: all .3s linear;
  left: 0;
  padding: 26px 30px;
  /* background: linear-gradient(0deg, #134168, hsl(200deg 65% 31% / 70%), hsl(199deg 79% 75% / 70%)); */
  /* background: linear-gradient(0deg, hsl(208deg 69% 24% / 70%), hsl(200deg 65% 31% / 70%), hsl(199deg 79% 75% / 70%)); */
  background: linear-gradient(0deg, #082843, hsl(200deg 77.24% 21.45% / 73%), hsl(199deg 79% 75% / 70%));
  display: flex;
  justify-content: end;
  align-items: end;
  text-align: left;
  letter-spacing: 1px;
}

.two-image-conatiner:hover .hover-text {
  bottom: 0;
  z-index: 1;
}

.play-btn .ylw-play {
  width: 30% !important;
  height: 40% !important;
}

/* .circle-btn {
  background-color: #ECB24F;
  outline: 0.2vw solid #ECB24F;
  outline-offset: 5px;
  height: 3.5vw;
  width: 3.5vw;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 2.3vw;
  right: 1.5vw;
  color: #fff;
  font-size: 1.823vw;
} */

.hover-btn {
  height: 4.1vw;
  width: 4.1vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 2vw;
  right: 1.2vw;
  filter: drop-shadow(1px 2px 4px #000);
}

.hover-btn embed {
  height: 100%;
  width: 100%;
}

.animated-line-pune .hover-btn {
  transform: scale(.8);
  bottom: 1.2vw;
  right: 0.6vw;
}

.rotate-title.mumbai-title {
  left: -7.8vw;
  bottom: 4vw;
}

.relative {
  position: relative;
}

.grd-clm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

img.w-\[80\%\].border-ylw-atr {
  width: 65%;
}

/* .animated-line-pune::after {
  content: '';
  border-left: 2px solid #ECB24F;
  border-top: 2px solid #ECB24F;
  width: 0;
  height: 0;
  position: absolute;
  top: -4%;
  left: -6%;
  border-radius: 35px 0px 0px 0px;
  animation: drawLine 5s ease-in-out forwards;
}

.animated-line:after {
  content: '';
  border-left: 2px solid #ECB24F;
  border-top: 2px solid #ECB24F;
  width: 0;
  height: 0;
  position: absolute;
  top: -4%;
  left: -6%;
  border-radius: 35px 0px 0px 0px;
  animation: drawLine 5s ease-in-out forwards;
} */

.img-section {
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
  box-shadow: 4px 4px 10px #999999;
}

.animated-line .img-section:before {
  content: '';
  height: 15px;
  width: 100%;
  background-color: #ecb24f;
  position: absolute;
  bottom: 0;
  left: 0;
}

.animated-line-pune .img-section:before {
  content: '';
  height: 15px;
  width: 100%;
  background-color: #1078bc;
  position: absolute;
  bottom: 0;
  left: 0;
}

.right-content {
  gap: 90px;
  margin-top: 30px;
  margin-left: 30px;
  position: relative;
}

.right-content.active:after {
  content: '';
  height: 0;
  width: 1px;
  border: 3px solid #ECB24F;
  position: absolute;
  border-radius: 30px 0 0;
  border-right: none;
  border-bottom: none;
  /* bottom: 37%; */
  top: -4%;
  left: -7%;
  pointer-events: none;
}

.right-content.mumbai.active:after {
  animation: drawLine 3s linear forwards;
}

.right-content.pune.active:after {
  animation: drawLine2 3s linear forwards;
  top: -5%;
}

@keyframes drawLine {
  0% {
    width: 1px;
    height: 0;
  }

  50% {
    width: 1px;
    height: 67%;
  }

  100% {
    width: 117%;
    height: 67%;
  }
}

@keyframes drawLine2 {
  0% {
    width: 1px;
    height: 0;
  }

  50% {
    width: 1px;
    height: 65%
  }

  100% {
    width: 107%;
    height: 65%;
  }
}

/* Two Campuses End here */


/* Map css start from here */

.map-container {
  position: relative;
  max-width: 1200px;
  margin: 20px auto;
}

/* World Map Image */
.map-image {
  width: 100%;
  height: auto;
}

/* Location Markers */
.marker {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: maroon;
  border-radius: 50%;
  border: 2px solid white;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease-in-out;
}

.marker:hover {
  transform: translate(-50%, -50%) scale(1.2);
}

/* Details Popup */
.details-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 15px 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  display: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}


/* Map css end here */


/* Legacy Css strat here */

.timeline-container {
  height: 30vh;
}

.timeline-title {
  font-size: 2.083vw;
  margin-bottom: 20px;
  color: #00376b;
}

.timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 30px 0;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #e3c766;
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-item {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.timeline-item .year {
  font-size: 1vw;
  font-weight: bold;
  color: #00376b;
  margin-bottom: 8px;
}

.timeline-item .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #e61d3e;
  margin: 0 auto;
}

.timeline-item.active .dot {
  background-color: #ff4e00;
}

.legacy-content {
  margin-left: 0vw;
}

.mobile-content {
  width: 100%;
}

.legacy-text {
  flex: 1;
  width: 60vw;
  text-align: left;
  display: flex;
  align-items: center;
}

.legacy-text p {
  font-size: 1vw;
  line-height: 1.6;
  color: #003366;
  font-family: 'Merriweather';
  font-weight: 400;
  margin-bottom: 10px;
  width: calc(100% - 9vw);
  margin-left: 1vw;
}

.legacy-video {
  width: 100%;
  border-radius: 10px;
  height: 35vh;
  overflow: hidden;
  /* border-bottom: 10px  solid var(--secondary-color); */
  box-shadow: 3px 3px 10px gray;
}

.legacy-video:after {
  content: '';
  position: absolute;
  height: 10px;
  width: 0%;
  background: var(--secondary-color);
  bottom: 0;
  left: 0;
  transition: all 1.5s linear;
}

.legacy-video.active:after {
  width: 100%;
}

.video__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
}

#slide-five .play-btn {
  opacity: 1;
}

.play-btn {
  position: absolute;
  height: 3.5vw;
  width: 3.5vw;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  /* outline: 2px solid var(--secondary-color);
  outline-offset: 3px; */
  font-size: 2.5vw;
  color: #fff;
  box-shadow: 0px 0px 20px #4f4f4f;
  opacity: 0;
}

.openVideo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.legacy-video .play-btn {
  margin-bottom: 1vw;
}

.video-youtube {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* @keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
} */

.play-btn:hover {
  animation: beat 0.5s ease-in-out 1 forwards;
}

.play-btn img {
  width: 35%;
  height: 35%;
  margin-left: 3px;
}

.testimonial-slider .swiper-slide .play-btn {
  height: 4vw;
  width: 4vw;
  background: #fff;
  /* outline: 2px solid #ffffff;
  outline-offset: 0.7vh; */
  color: var(--secondary-color);
  font-size: 1.6vw;
}

.testimonial-slider .swiper-slide .play-btn i {
  margin-left: 0.2rem;
}

.testimonial-slider .img-section,
.curriculum .img-section {
  box-shadow: none;
}

.testimonial-slider .swiper-slide.swiper-slide-active .play-btn {
  opacity: 1;
}

/* .message {
  margin-top: 40px;
  text-align: left;
}

.message h2 {
  font-size: 1.5vw;
  color: #00376b;
} */

.message {
  margin-left: 4vw;
  text-align: left;
  position: relative;
}

.message p {
  font-size: 1.3vw;
  line-height: 1.6;
  color: #003366;
  font-style: italic;
  font-family: 'Merriweather';
  margin-bottom: 10px;
  letter-spacing: .5px;
}

.message .name {
  color: var(--primary-color);
}

/* Legacy Css end here */

.bar {
  width: 0.5vw;
  position: absolute;
  height: 90%;

}

.bar.bar-1 {
  background-color: var(--primary-color);
  left: 0;
  filter: drop-shadow(2px 4px 6px black);
}

.bar.bar-2 {
  background-color: var(--secondary-color);
  left: 20px;
  filter: drop-shadow(2px 4px 6px black);
}


.title-text {
  overflow: hidden;
}

.title-text .whitespace {
  width: 12px;
}

.info .whitespace {
  width: 0px;
  display: inline-block;
}

.title-text span {
  display: inline-block;
  overflow: hidden;
  line-height: 1.3;
}

.title-text .char {
  display: inline-block;
  transform: translateY(100%);
  /* animation: slideUp 0.5s ease-in-out forwards;
  animation-delay: calc(var(--char-index) * 0.05s); */
}

.box-section:hover .hover-text a {
  justify-content: start;
  text-decoration: unset;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

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


@keyframes beat {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* @keyframes beat {
  0% {
    height: 4vw;
    width: 4vw;
  }

  50% {
    height: 4.3vw;
    width: 4.3vw;
  }

  100% {
    height: 4vw;
    width: 4vw;
  }
} */


/*vertical slider*/
/* .creative-parallax-slider {
  padding-top: 6.25vw;
  height: Calc(100% - 6.25vw) !important;
  position: relative;
}

.creative-parallax-slider .swiper-wrapper>.swiper-slide.swiper-slide-prev {
  filter: blur(3px) !important;
} */

/* Full Parallax Slider */
/* .creative-parallax-slider .slider-wrap {
  height: Calc(100vh - 6.25vw);
}

.creative-parallax-slider .swiper-slide {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 95%;
  margin: auto;
  justify-content: start;
  align-items: start;
  border-radius: 30px;
} */

.inner-section {
  height: 100%;
  width: 100%;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

/* .creative-parallax-slider #slide-one .inner-section,
.creative-parallax-slider #slide-four .inner-section,
.creative-parallax-slider #slide-6 .inner-section,
.creative-parallax-slider #slide-8 .inner-section {
  background-color: #134168;
} */

/* .creative-parallax-slider #slide-3 .inner-section,
.creative-parallax-slider #slide-2 .inner-section {
  background-color: #fff;
} */

/* .creative-parallax-slider #slide-four .heading-title {
  color: #fff;
} */

#slide-one .svg-inside {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

/* #slide-one .svg-inside embed {
  height: 110vh;
  width: 110vw;
  display: block;
  object-fit: cover;
  position: absolute;
  bottom: 0vh;
  right: -15vh;
} */
#slide-one .svg-inside embed {
  height: 116vh;
  width: 110vw;
  display: block;
  object-fit: cover;
  position: absolute;
  bottom: 0vh;
  right: -15vh;
}

#slide-two .svg-inside embed {
  display: block;
  object-fit: cover;
  position: absolute;
  bottom: 0vh;
  left: 0;
}

.info {
  display: flex;
  flex-wrap: wrap;
}

.info>span.word {
  /* background: salmon; */
  color: transparent;
  overflow: hidden;
  position: relative;
  margin-bottom: 2px;
  margin-right: 8px;
}

@keyframes reveal-in {
  0% {
    transform: translateY(120%);
  }

  10% {
    opacity: 1;
  }

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

.info>span.word:before {
  display: block;
  content: attr(data-word);
  position: absolute;
  color: #FFF;
  top: 0;
  left: 0;
  padding: inherit;
  /* animation: reveal-in 3s cubic-bezier(.5, 0, .5, 1) forwards; */
  /* animation-delay: calc(.5s * var(--line-index) + 15s); */
  opacity: 0;
}

.info.blue-text>span.word:before {
  display: block;
  content: attr(data-word);
  position: absolute;
  color: #003366;
  top: 0;
  left: 0;
  padding: inherit;
  /* animation: reveal-in 3s cubic-bezier(.5, 0, .5, 1) forwards; */
  /* animation-delay: calc(.5s * var(--line-index) + 15s); */
  opacity: 0;
}

.info.text-black>span.word:before {
  display: block;
  content: attr(data-word);
  position: absolute;
  color: #000;
  top: 0;
  left: 0;
  padding: inherit;
  /* animation: reveal-in 3s cubic-bezier(.5, 0, .5, 1) forwards; */
  /* animation-delay: calc(.5s * var(--line-index) + 15s); */
  opacity: 0;
}

.info>span.word.latter:before {
  animation: reveal-in 1.5s cubic-bezier(.5, 0, .5, 1) forwards;
  /* animation-delay: calc(.5s * var(--line-index) + 12s); */
}

.curriculum-slider.swiper {
  width: 100%;
  height: 55vh;
}

.box-section {
  transition: all .3s linear;
}

.box-section .img-section {
  height: 50vh;
}

.box-section .img-section img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.swiper-slide-active .box-section .img-section img {
  object-fit: cover;
}

/* .box-section .circle-btn {
  position: relative;
  color: #000;
  background-color: #fff;
  outline: 0.2vw solid #fff;
  height: 2.5vw;
  width: 2.5vw;
  bottom: auto;
  right: auto;
  font-size: 1.4vw;
} */

.box-section .hover-btn {
  height: 3.5vw;
  width: 3.5vw;
}

.box-section .bottom-title {
  position: absolute;
  bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: #fff;
  padding: 25px;
  text-align: left;
}

.box-section .bottom-title p {
  width: 60%;
  margin-bottom: 0;
  font-size: 1.7vw;
  line-height: 1.3;
  font-family: 'Lato', sans-serif;
  text-shadow: 0px 0px 10px #000;
  letter-spacing: 1px;
}

.curriculum {
  margin-left: 17vw;
}

.curriculum .hover-text {
  bottom: -97%;
  --var-opacity: 1;
  display: block;
  color: #fff;
}

.curriculum .hover-text hr {
  width: 3vw;
  height: 3px !important;
  opacity: 1;
  background-color: #fff;
  margin: 1.5rem 0;
}

.box-section:hover .hover-text {
  bottom: 0;
  --var-opacity: 0.76;
}

.box-section:hover .hover-text p {
  width: 80%;
  font-family: 'Lato', sans-serif;
  font-size: 1.8vw;
  font-style: normal;
  line-height: 1.2;
}

.box-section:hover .hover-text span {
  /* width: 80%; */
  font-family: 'Merriweather', serif;
  font-size: 1.4vw;
  font-style: italic;
}

.box-section:hover .bottom-title {
  bottom: -50%;
}

.curriculum .hover-text.purple {
  background: rgb(60 39 117 / var(--var-opacity));
}

.curriculum .hover-text.blue {
  background: rgb(2 121 179 / var(--var-opacity));
}

.curriculum .hover-text.green {
  background: rgb(104 172 74 / var(--var-opacity));
}

.curriculum .hover-text.orange {
  background: rgb(229 98 42 / var(--var-opacity));
}

.curriculum .hover-text.bright-blue {
  background: rgb(13 171 236 / var(--var-opacity));
}

.curriculum .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8vw;
  z-index: 999999999;
  height: 50px;
  width: 50px;
  margin-top: 0;
}

.curriculum .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8vw;
  z-index: 999999999;
  height: 50px;
  width: 50px;
  margin-top: 0;
  display: block;
}

.curriculum .swiper-button-next i,
.curriculum .swiper-button-prev i {
  font-size: 1.5vw;
}

.swiper-button-prev:hover .circle {
  stroke: #AADCEE;
  animation: stoke 5s linear;
}

.swiper-button-next:hover .circle {
  stroke: #AADCEE;
  animation: stoke 5s linear;
}

.swiper-button-next .circle {
  position: absolute;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}

.swiper-button-prev .circle {
  position: absolute;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}

.swiper-button-next svg circle {
  filter: drop-shadow(2px 2px 2px rgb(39, 39, 39));
}

.swiper-button-next:after {
  display: none;
}

.swiper-button-next i {
  font-size: 30px;
  color: #fff;
  text-shadow: 5px 2px 12px grey;
  position: absolute;
}

.swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* left: 8vw; */
  z-index: 999999999;
  height: 50px;
  width: 50px;
  margin-top: 0;
  display: none;
}

.swiper-button-prev .circle {
  position: absolute;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}

.swiper-button-prev:hover .circle {
  stroke: #AADCEE;
  animation: stoke 5s linear;
}

.swiper-button-prev svg circle {
  filter: drop-shadow(2px 2px 5px rgb(39, 39, 39));
}

.swiper-button-prev:after {
  display: none;
}

.swiper-button-prev i {
  font-size: 30px;
  color: #fff;
  text-shadow: 5px 2px 12px grey;
  position: absolute;
}

@keyframes stoke {
  from {
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dashoffset: 0;
  }
}

#slide-two p,
#slide-two .info>span.word:before,
#slide-two .heading-title {
  color: #003366;
}

#slide-three .svg-inside embed {
  height: 110%;
  width: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  bottom: -2vh;
  right: -19vw;
}


#slide-three .info>span.word:before {
  color: #003366;
}

#slide-four .svg-inside embed {
  position: absolute;
  top: -2vh;
  left: -2vh;
  height: 100vh;
}

/* .creative-parallax-slider .curriculum-slider .swiper-slide.swiper-slide-prev {
  filter: none !important;
} */

#slide-six .svg-inside embed {
  position: absolute;
  top: 0;
  /* transform: translateY(-60%); */
  right: 30vh;
  height: 90vh;
}

#slide-five .heading-title {
  color: #003366;
}

#slide-five .svg-inside embed {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 90vh;
}

/* .map svg {  
  height: 100%;
  width: 100%;
  position: relative;
} */

#slide-eight .svg-inside embed {
  position: absolute;
  bottom: 0vh;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}


/* Time line */
.timeline-container .swiper-horizontal>.swiper-pagination-bullets,
.timeline-container .swiper-pagination-bullets.swiper-pagination-horizontal,
.timeline-container .swiper-pagination-custom,
.timeline-container .swiper-pagination-fraction {
  display: flex;
  justify-content: space-around;
  top: var(--swiper-pagination-bottom, 8px);
  bottom: var(--swiper-pagination-top, auto);
  border-bottom: 4px dotted var(--secondary-color);
  position: relative;
  margin-bottom: 60px;
}

.timeline-container .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.timeline-container .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  height: auto;
  width: auto;
  border-radius: 0;
  background: transparent;
  font-family: 'Merriweather', serif;
  color: #003366;
  flex: 1;
  position: relative;
  font-size: 1.3vw;
  font-weight: 600;
  margin-bottom: 13px;
}

.timeline-container .swiper-pagination-bullet {
  opacity: 1;
}

.timeline-container .swiper-wrapper {
  height: 16vh;
  align-items: stretch;
}

.timeline-container .swiper-pagination-bullet .dot {
  height: 18px;
  width: 18px;
  background: #ffffff;
  display: block;
  border-radius: 50%;
  border: 4px solid var(--secondary-color);
  margin: 0 auto;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translate(-50%, 0%);
}

.timeline-container .swiper-pagination-bullet.swiper-pagination-bullet-active .dot {
  height: 27px;
  width: 27px;
  border: 8px solid var(--primary-color);
  bottom: -30px;
}

.timeline-container .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  content: '';
  height: 55px;
  width: 3px;
  background: #003366;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 2px;
  bottom: -70px;
  transform-origin: top;
}

.timeline-container .swiper-slide {
  border-radius: 0;
  background: #fff;
  align-items: start;
}

.timeline-container .swiper-button-next {
  display: none;
}

.award-slider {
  width: 85%;
}

.award-slider .swiper {
  height: auto;
}

.award-slider .swiper-slide {
  background-color: #fff;
  padding: 25px;
}

.award-slider .swiper-slide .img-container {
  width: 90%;
  margin: auto;
  height: 52vh;
}

.award-slider .swiper-slide .img-container img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  margin: auto;
  filter: drop-shadow(2px 4px 15px gray);
}

.award-title {
  font-size: 1.2vw;
  font-family: 'Merriweather';
  font-weight: 600;
  font-style: italic;
  color: #134168;
  text-align: center;
  margin: auto;
}

.award-year {
  font-size: 1.2vw;
  font-family: 'Merriweather';
  font-style: italic;
  color: #134168;
  text-align: center;
  margin: auto;
}

hr {
  width: 3vw;
  height: 1px !important;
  background: #134168;
  border: none;
  opacity: 1;
  margin: 1rem auto;
}

/* .creative-parallax-slider .award-slider .swiper-slide {
  position: relative;
  border: 7px solid #134168;
  box-shadow: 0 0 15px #134168;
}

.creative-parallax-slider .award-slider .swiper-slide:after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #134168, #8ed3f2);
  opacity: .8;
} */


.award-slider .swiper-slide.swiper-slide-active:after {
  height: 15px !important;
  top: auto !important;
  bottom: 0 !important;
  background: var(--secondary-color) !important;
}


/* .creative-parallax-slider .award-slider .swiper-slide.swiper-slide-next,
.creative-parallax-slider .award-slider .swiper-slide.swiper-slide-prev {
  filter: blur(0) !important;
} */

.award-slider .swiper-button-next i,
.award-slider .swiper-button-prev i {
  font-size: 1.2vw;
}

.award-slider .swiper-button-next,
.award-slider .swiper-button-prev {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px !important;
  color: #FFF;
}

/* .award-slider .swiper-button-next i,
.award-slider .swiper-button-prev i {
  font-size: 25px !important;
} */

.award-slider .swiper-button-next:after,
.award-slider .swiper-button-prev:after {
  display: none;
}

/* .creative-parallax-slider .testimonial-slider .swiper-slide.swiper-slide-next,
.creative-parallax-slider .testimonial-slider .swiper-slide.swiper-slide-prev {
  filter: blur(0) !important;
} */

#slide-eight .heading-title {
  line-height: 0;
}

#slide-eight .title-text span {
  line-height: 1;
}

#slide-seven .heading-title {
  color: #003366;
  z-index: 1;
  position: relative;
  pointer-events: none;
}


.testimonial-slider {
  height: 65vh;
  margin-top: -8vh;
}

.testimonial-slider .swiper {
  height: 100%;
}

.testimonial-slider .box-section .img-section {
  height: 100%;
}

.testimonial-slider .swiper-slide {
  transition: all 200ms linear;
  /* transform: scaleY(0.8); */
  height: 80%;
}

.testimonial-slider .swiper-slide.swiper-slide-active {
  transform: scaleY(1);
  border: 8px solid #fff5e6;
  overflow: hidden;
}

.testimonial-slider .name {
  font-size: 1.5vw;
  font-family: 'Merriweather';
  font-style: italic;
  color: #134168;
  text-align: end;
  margin: auto;
  position: absolute;
  bottom: 30px;
  right: 30px;
  -webkit-text-stroke-color: #ffffff;
  border-right: 3px solid #134168;
  padding-right: 10px;
  background: linear-gradient(45deg, #ffffff1a, #ffffff);
  padding-top: 4px;
  padding-left: 10px;
  padding-bottom: 4px;
}

.creative-gsap-slider .testimonial-slider .swiper-slide:after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #134168, #1c6082, #8ed3f2);
  opacity: .8;
  border-radius: 20px;
}

.testimonial-slider .swiper-slide.swiper-slide-active:after {
  height: 15px;
  top: auto;
  bottom: 0;
  background: var(--secondary-color);
}

.creative-gsap-slider .testimonial-slider .swiper-button-next,
.creative-gsap-slider .testimonial-slider .swiper-button-prev {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px !important;
  color: #FFF;
}

.mfp-iframe-scaler iframe {
  height: 90%;
}

.vertical-video .mfp-content {
  height: 100%;
  width: 21vw;
  border-radius: 30px;
  /* border: 2px solid #ffffff; */
  overflow: hidden;
}

.mfp-iframe video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.vertical-video .mfp-iframe-scaler iframe {
  height: 100%;
  width: 100%;
}

.mfp-bg {
  background: transparent;
}

.mfp-iframe-holder {
  background: #0000008f;
  border-radius: 50px;
  width: 90%;
  height: 90%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  margin: auto;
  border-radius: 0;
  margin-top: 0;
  height: 100vh;
}

/* .mfp-iframe-holder {
  background: #00000087;
  border-radius: 50px;
  width: 90%;
  height: 90%;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  margin: auto;
  border-radius: 30px;
  margin-top: 6.25vw;
  height: Calc(100% - 6.25vw) !important;
} */

.mfp-iframe-holder .mfp-close {
  color: white;
  position: fixed;
  top: 2vw;
  width: 4vw;
  height: 4vw;
  right: 2vw;
  opacity: 1;
}

.mfp-iframe-holder .mfp-close:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url(../home-img/svg/plusIcon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(45deg);
  transition: all .3s linear;
}

.mfp-iframe-holder .mfp-close:hover:after {
  /* filter: hue-rotate(123deg) invert(1) brightness(10.5); */
  background: url(../home-img/svg/plusIcon-white.svg);
  background-repeat: no-repeat;
  object-fit: cover;
  background-size: cover;
  transform: rotate(136deg);
}

.testimonial-slider .swiper-button-next {
  right: 30vw;
}

.testimonial-slider .swiper-button-prev {
  left: 30vw;
}

.map {
  height: 90%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow: auto;
}

.map svg {
  height: 100%;
  width: 100%;
  position: relative;
}

#slide-seven .svg-inside embed {
  position: absolute;
  right: -1vw;
  bottom: -2vh;
  height: 85vh;
}

.zoom-controls {
  position: absolute;
  top: 0;
  right: 3vh;
  z-index: 1;
}

.zoom-btn {
  outline: none;
  border: none;
  font-size: 2.2vw;
  background: transparent;
  color: #003366;
}

.mumbai-section {
  height: 70vh;
  width: 110%;
}

.pune-section {
  height: 52vh;
}

/* .home footer {
  padding: 12vw 5vw 1vw;
} */

footer {
  padding: 2vw 5vw 1vw;
  margin: auto;
  background: #134168 !important;
  /* position: relative; */
}

.footer-logo {
  width: 50%;
}

footer h4 {
  color: var(--secondary-color);
  font-family: 'Lato';
  text-transform: uppercase;
  font-weight: bold;
}

footer ul {
  list-style-type: none;
  padding-inline-start: 0px;
}

footer .city-btn {
  padding: 5px 20px;
  display: inline-flex !important;
  border-radius: 15px 0 15px 0;
  color: #fff;
  text-decoration: none;
  font-family: 'Merriweather';
  font-size: 1.2vw;
}

footer ul li a {
  font-size: 1vw;
  color: #fff;
  text-decoration: none;
  font-family: 'Merriweather';
}

.left ul li i {
  color: var(--secondary-color);
  font-size: 1.1vw;
  margin-right: .5vw;
}

footer section {
  display: block;
  opacity: 1;
  width: 80%;
  margin: auto;
}

ul.footer-menu {
  width: 90%;
  margin-left: auto;
}

ul.footer-menu li a {
  font-family: 'Lato';
  font-size: 1.2vw;
  font-weight: 600;
  text-decoration: underline;
}

ul.footer-menu li {
  margin-right: 40px;
}

.bor-left {
  border-left: 2px dotted #fff;
}

.icon-list img {
  width: 4vw;
  margin-right: 10px;
}

.right>.row {
  width: 93%;
  margin-left: auto;
}

.social-icons ul {
  display: flex;
  align-items: end;
  justify-content: space-around;
  height: 100%;
}

.social-icons ul li a {
  font-size: 2vw;
}

footer ul li a:hover {
  color: var(--secondary-color);
}

.copyright-section {
  border-top: 2px solid var(--secondary-color);
}

.copyright-section p {
  color: #fff;
}

.copyright-section a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.copyright-section img {
  height: 4.5vw;
  padding: 0 30px;
}

.copyright-section img:last-child {
  border-left: 2px solid #fff;
}

footer li .icon {
  width: 1.2vw;
}

footer a.content {
  width: calc(100% - 1.2vw);
}

.move-btn {
  position: absolute;
  bottom: 2vh;
  right: 5vh;
  height: 7vw;
  width: 7vw;
}

.move-btn button {
  padding: 5px 10px;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  background: #003366;
  color: #fff;
  box-shadow: 0 0 15px #ffffff;
  z-index: 1;
}

#move-up {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

#move-down {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

#move-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

#move-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* .mfp-iframe-scaler iframe {
  pointer-events: none;
} */

.image {
  height: 6vw;
  width: 6vw;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff7e7;
}

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

.testimonial-slider .swiper-slide.swiper-slide-active {
  border-radius: 30px;
  height: 100%;
}

#slide-five .heading-title,
#slide-seven .heading-title {
  color: #003366;
}

.mfp-iframe-scaler iframe.mfp-iframe video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mfp-iframe-scaler iframe.mfp-iframe body {
  background: transparent !important;
}

body:-webkit-full-page-media {
  background: transparent !important;
}

.nevigation nav li.active .dropdown-menu li:before {
  display: none;
}

.nevigation nav li.active .dropdown-menu li:after {
  display: none;
}

.mfp-iframe-holder iframe {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.icon-list ul li a {
  font-family: 'Lato';
  font-size: 1.2vw;
}

.scroll-font {
  font-size: 2vw !important;
}

.swipe-hand {
  display: none !important;
}

.swipe-hand.active {
  position: relative;
  top: 30%;
  left: 40%;
  width: 100px;
  height: 100px;
  animation: hide 4s linear forwards;
  display: flex !important;
  /* opacity: 1 !important; */
  z-index: 2;
}

.swipe-hand.active img {
  /* position: absolute; */
  z-index: 99;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
  transform: rotate(328deg);
  transform-origin: 70% 70%;
  animation: rotate .8s linear 5 alternate forwards;

}

@keyframes hide {

  0%,
  99% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(294deg);
  }

  100% {
    transform: rotate(358deg);
  }
}

.swipe-hand.active:after {
  content: '';
  background: #ffffffe8;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  border-radius: 50%;
  animation: ripple 1.6s ease-in-out infinite;
}

.swipe-hand.active:before {
  content: '';
  background: #ffffffa3;
  position: absolute;
  left: -10%;
  top: -10%;
  width: 120%;
  height: 120%;
  display: block;
  z-index: -1;
  border-radius: 50%;
  animation: ripple 1.6s ease-in-out infinite;
  animation-delay: 0.8s;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}



.menu-link {
  position: relative;
  display: inline-block;
  color: #173c5f;
  /* Normal text color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  /* Distance from text */
  width: 100%;
  height: 2px;
  background-color: #ffcc00;
  /* Underline color */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.menu-link:hover {
  color: var(--blue) !important;
}

.menu-link:hover::after {
  transform: scaleX(1);
  /* Animate the underline */
}

.separator {
  color: #f5b100;
  padding: 0 8px;
}

.menu-link.active {
  font-weight: 600;
}

.content-icon {
  width: 120px;
  height: 120px;
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 1rem;
  outline: 2px solid;
  outline-offset: 3px;
}

.uni-slide {
  background: #ffffff;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem;
  box-shadow: 1px 1px 6px #e0e0e0;
  border-radius: 10px;
  align-items: center;
}

.university-swiper {
  width: 85%;
}

.unsrct .swiper-button-next {
  top: -55px;
  right: 10%;
}

.unsrct .swiper-button-prev {
  top: -55px;
  right: 30%;
  display: flex;
  left: unset;
}

.uni-slide p {
  color: var(--blue);
  font-size: 1rem;
}

.quote-flex {
  padding: 0 !important;
  display: inline-flex !important;
  justify-content: flex-start !important;
  font-size: 18px !important;
}

.quote-flex2 {
  padding: 0 !important;
  display: inline-block !important;
  justify-content: flex-start !important;
}

.quote-flex>span,
.quote-flex2>span {
  margin-bottom: 5px;
}

.left-quote>img {
  width: 32px;
  position: absolute;
  top: 0;
  left: -30px;
  mix-blend-mode: darken;
}

.right-quote {
  top: 3px !important;
}

.right-quote>img {
  width: 32px;
  position: absolute;
  top: 0;
  left: -34px;
}

@media (max-width:767px) {

  .content-icon {
    width: 60px;
    height: 60px;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 1rem;
    outline: 1px solid;
    outline-offset: 3px;
  }
}

.left-quote {
  position: relative;
  top: -17px;
  mix-blend-mode: darken;
}

.right-quote {
  rotate: 180deg;
  display: inline-block;
  position: relative;
  left: -9px;
  top: -16px;
  mix-blend-mode: darken;
}

.wel {
  font-family: 'Merriweather', sans-serif;
  font-size: 24px !important;
  line-height: 55%;
}

.quote-flex2 {
  padding: 0 !important;
  font-size: 23px !important;
  font-weight: 500;
  font-family: Lato, sans-serif !important;
  line-height: 140% !important;
}

.pad-left {
  padding-left: 4% !important;
}
.line-height {
    line-height: 140% !important;
}
.gallery-over {
  overflow: hidden;
  /* border-radius: 10px; */
}

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

  .info>span.word {
    margin-right: 5px !important;
  }

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

.flex-reverse {
  flex-direction: column-reverse;
}

}
.university-swiper .swiper-wrapper .swiper-slide {
  height: 170px !important;
}