.blue-dot {
  display: block;
  width: 20px;
  height: 20px;
  background-color: var(--primary);
  border-radius: 50%;
  position: relative;
  padding: 10px;
}
.blue-dot::before {
  content: "";
  width: 30px;
  height: 30px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.sm-blue-dot {
  width: 5px;
  height: 5px;
  background-color: var(--primary);
  border-radius: 50%;
}
.bg-light-blue {
  background-color: rgba(0, 51, 204, 0.06);
}

/* Site Nav Start */
.site-header {
  padding: 20px 0;
}
.site-navigation a {
  text-decoration: none;
  color: var(--text-color);
  padding: 20px;
  font-size: 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
@media screen and (min-width: 1280px) {
  .site-navigation a {
    padding: 10px;
  }
}

@media screen and (min-width: 1720px) {
  .site-navigation a {
    padding: 20px;
  }
}
.menu-item-has-children {
  position: relative;
}

.site-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
  margin-top: 12px;
  border-radius: 20px;
}
.site-navigation .sub-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: white;
  transform: rotate(45deg);
  box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.05);
  z-index: -1;
}

.site-navigation .sub-menu .menu-item a {
  display: block;
  padding: 15px 20px;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
}

/* Site Nav End */

/* Home Page Start */
/* OLD BANNER CODE */
.homeBannerSwiper {
  width: 100%;
  height: 80vh;
  position: relative;
  margin-top: 40px;
  max-height: 700px;
}
.homeBannerSwiper .swiper-slide {
  max-width: 70%;
  padding-top: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  justify-content: flex-start;
}
.homeBannerSwiper .swiper-slide h1,
.homeBannerSwiper .swiper-slide h2 {
  font-size: 2.8rem;
  font-family: "Montserrat", sans-serif;
}

.homeBannerSwiper .swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.homeBannerSwiper .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid var(--primary);
  color: var(--primary);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1;
  background-color: white;
  margin: 0;
}

.homeBannerSwiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  color: white;
}
.homeBannerSwiper .highlight-last-word {
  position: relative;
  background-color: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 5px 30px;
  border: none;
  border-radius: 6px;
  display: inline-block;
  text-transform: capitalize;
}
.homeBannerSwiper .highlight-last-word::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -19px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid var(--primary);
}
.homepage-banner-graphic {
  width: 95%;
  position: absolute;
  bottom: 10px;
}
/* OLD BANNER CODE END */

/* NEW BANNER CODE START */
.home-banner-container {
  height: 90vh;
  max-height: 800px;
}
.home-banner-container .highlight-last-word {
  position: relative;
  background-color: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 5px 30px;
  border: none;
  border-radius: 6px;
  display: inline-block;
  text-transform: capitalize;
}
.home-banner-container .highlight-last-word::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -19px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid var(--primary);
}
.home-banner-container h1 {
  font-size: 3rem;
}
.home-banner-images-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 100%;
  height: 60vh;
  max-height: 500px;
  align-items: flex-end;
  gap: 40px;
  position: absolute;
  bottom: -25px;
}
.home-banner-images-container img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid var(--primary);
}
.home-banner-images-container .banner-images-container-1 {
  height: 100%;
}
.home-banner-images-container .banner-images-container-2 {
  height: 70%;
}
.home-banner-images-container .banner-images-container-3 {
  height: 50%;
}
.home-banner-images-container .banner-images-container-4 {
  height: 70%;
}
.home-banner-images-container .banner-images-container-5 {
  height: 100%;
}

@media screen and (min-width: 1024px) {
  .home-banner-container .md\:w-70 {
    width: 100% !important;
  }
}
@media screen and (max-width: 1536px) {
  .home-banner-container h1 {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .home-banner-container {
/*     max-height: 600px; */
  }
  .home-banner-container .md\:w-70 {
    width: 70% !important;
  }
}
@media screen and (min-width: 1536px) {
  .home-banner-container {
    max-height: 800px;
  }
  .home-banner-container h1 {
    font-size: 2.8rem;
  }
}
@media (min-width: 1180px) and (max-width: 1400px) {
	.site-header .btn-sm{
		padding: 15px 10px;
	}
	.site-navigation a{
		padding: 5px;
	}
}
@media (min-width: 1180px) and (max-width: 1200px) {
	.site-header .btn-sm{
		padding: 15px 0px;
	}
	.site-navigation a{
		padding: 0px;
	}
	.site-navigation .gap-2{
		gap: 0.3rem;
	}
}

/* --- Keep your existing desktop CSS exactly as is --- */

/* Hide Swiper version on desktop */
.desktop-layout {
  display: grid;
}

.mobile-slider {
  display: none;
}

/* Switch to Swiper on tablet and mobile */
@media (max-width: 1024px) {
  .desktop-layout {
    display: none;
  }

  .mobile-slider {
    display: block;
    position: relative;
  }

  .mobile-slider .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid var(--primary);
  }
}

/* NEW BANNER CODE END */

.home-about {
  position: relative;
  height: 74vh;
  max-height: 620px;
}
.home-about-vector {
  position: absolute;
  top: 0;
  width: 100%;
}
.home-about__quote {
  font-size: 3rem;
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 40%;
}
.home-about-image {
  position: absolute;
  right: 90px;
  top: 70px;
  width: 40%;
  height: 89%;
  border: 2px solid var(--primary);
  border-radius: 20px;
  object-fit: cover;
}
.home-slider-image {
  position: initial;
  width: 100%;
  margin-top: 20px;
  height: initial;
  max-height: 180px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  object-fit: cover;
}

.home-programs {
  min-height: 1000px;
  position: relative;
}
.home-programs-title {
  font-size: 2rem;
  display: flex;
  align-items: center;
}
.cs-lab-graphic {
  width: 100%;
  height: 500px;
  position: absolute;
}
.cs-lab-card {
  width: 100%;
  height: 500px;
  position: relative;
}

.cs-lab-card .cs-lab-card-title {
  position: relative;
  background-color: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 5px 30px;
  border: none;
  border-radius: 6px;
  display: inline-block;
  text-transform: capitalize;
  font-size: 2rem;
  margin-bottom: 20px;
}
.cs-lab-card .cs-lab-card-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -19px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 30px solid var(--primary);
}
@media screen and (min-width: 1480px) {
  .cs-lab-card .cs-lab-card-title::after {
    right: -15px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid var(--primary);
  }
}
@media screen and (min-width: 1720px) {
  .cs-lab-card .cs-lab-card-title::after {
    right: -19px;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 30px solid var(--primary);
  }
}

.cs-lab-card-left {
  width: 30%;
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
}
.cs-lab-card-left * {
  font-family: "Raleway";
}
.cs-lab-card-right {
  width: 40%;
  position: absolute;
  right: 240px;
  top: 55%;
  transform: translateY(-50%);
}
.cs-lab-card-right li {
  position: relative;
  display: flex;
  margin-top: 15px;
}

.cs-lab-card-right li::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: var(--secondary);
  border-radius: 3px;
  margin-right: 10px;
  min-width: 15px;
}

.programs-grid {
  height: 500px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.programs-graphic {
  width: 100%;
  height: 100%;
}
.program-card {
  width: 18%;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
}
.program-card-1 {
  left: 60px;
}
.program-card-2 {
  left: 47%;
  transform: translate(-50%, -50%);
}
.program-card-3 {
  right: 160px;
}

@media screen and (min-width: 1480px) {
  .program-card-3 {
    right: 130px;
  }
}
@media screen and (min-width: 1720px) {
  .program-card-3 {
    right: 160px;
  }
}
.program-card-meta {
  background-color: var(--primary);
  color: white;
  border-radius: 20px;
  padding: 7px 20px;
  font-size: 0.8rem;
  width: fit-content;
  margin-bottom: 10px;
  font-weight: 600;
}
.program-card-meta__hours {
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px solid white;
}
.program-card a,
.cs-lab-card a {
  font-size: 0.9rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.why-learn-coding-container {
  min-height: 1100px;
}
.why-learn-coding-three-dots {
  position: absolute;
  top: -30px;
  right: 0;
  width: 200px;
  height: 70px;
}

.why-learn-coding {
  position: relative;
  min-height: 672px;
  height: 672px;
}
.why-learn-coding-graphic {
  width: 100%;
  min-height: 672px;
  height: 672px;
}
.why-learn-coding-title {
  font-size: 2rem;
  margin-bottom: 2rem;
}

@media screen and (min-width: 1480px) {
  .why-learn-coding,
  .why-learn-coding-graphic {
    min-height: 600px;
    height: 600px;
  }
}
@media screen and (min-width: 1720px) {
  .why-learn-coding,
  .why-learn-coding-graphic {
    min-height: 672px;
    height: 672px;
  }
}
.why-learn-coding-epsilon {
  position: absolute;
  left: -20px;
  top: 12%;
  width: 120px;
  height: 120px;
}
.why-learn-coding-grathat {
  position: absolute;
  left: 35%;
  bottom: 5%;
  width: 220px;
  height: 220px;
}
.why-learn-coding-science {
  position: absolute;
  right: 20%;
  top: 33%;
  width: 230px;
  height: 230px;
}
.why-learn-coding__reason {
  max-width: 20%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
}
.why-learn-coding__reason-1 {
  top: 28%;
  left: 0;
  align-items: flex-end;
  text-align: right;
}
.why-learn-coding__reason-2 {
  top: 98%;
  left: 30%;
}
.why-learn-coding__reason-3 {
  top: 33%;
  right: 40.7%;
  text-align: right;
  flex-direction: row-reverse;
}
.why-learn-coding__reason-4 {
  top: -8px;
  right: 18%;
  align-items: flex-end;
  text-align: right;
}
.why-learn-coding__reason-5 {
  top: 59%;
  right: 0px;
  align-items: flex-end;
  text-align: right;
}
@media screen and (min-width: 1480px) {
  .why-learn-coding__reason-3 {
    right: 40.3%;
  }
}
@media screen and (min-width: 1600px) {
  .why-learn-coding__reason-3 {
    right: 40.8%;
  }
  .why-learn-coding__reason-5 {
    right: 40px;
  }
}
@media screen and (min-width: 1720px) {
  .why-learn-coding__reason-3 {
    right: 40.7%;
  }
  .why-learn-coding__reason-5 {
    right: 10px;
  }
}
/* Home Page End */

/* Tetstimonials Start */
.testimonials-container {
  position: relative;
}
.testimonial-item {
  gap: 20px;
  position: absolute;
  max-width: 80%;
  width: 80%;
  top: 120%;
  left: -20%;
  transition: 1s ease;
  cursor: pointer;
}
.testimonial-header {
  width: 10%;
}
.testimonial-rating {
  color: var(--primary);
  font-size: 0.9rem;
}
.testimonial-content {
  max-width: 70%;
}
.testimonial-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.testimonial-active {
  transform: translateY(-50%);
  top: 50%;
  left: 339.5px;
}
.testimonial-item .testimonial-content {
  display: none;
}
.testimonial-active .testimonial-content {
  display: block;
}
.testimonial-top-active {
  top: 10%;
  left: 13%;
}
.testimonial-bottom-active {
  top: 80%;
  left: 13%;
}
/* Testimonials End */

/* Header template start */
.header-template_container {
  min-height: 410px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  position: relative;
  border-radius: 10px;
  inset: -2px;
}

.header-template_container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 7px;
  padding: 3px;

  background: linear-gradient(var(--primary) 0 0) 0 0,
    linear-gradient(var(--primary) 0 0) 100% 0,
    linear-gradient(var(--primary) 0 0) 100% 100%,
    linear-gradient(var(--primary) 0 0) 0 100%;

  background-size: 0% 3px, 3px 0%, 0% 3px, 3px 0%;
  background-repeat: no-repeat;

  animation: border-draw 2s forwards linear;
}

@keyframes border-draw {
  0% {
    background-size: 0% 3px, 3px 0%, 0% 3px, 3px 0%;
  }
  25% {
    background-size: 100% 3px, 3px 0%, 0% 3px, 3px 0%;
  }
  50% {
    background-size: 100% 3px, 3px 100%, 0% 3px, 3px 0%;
  }
  75% {
    background-size: 100% 3px, 3px 100%, 100% 3px, 3px 0%;
  }
  100% {
    background-size: 100% 3px, 3px 100%, 100% 3px, 3px 50%;
  }
}
.header-template_container::after {
  content: "";
  position: absolute;
  bottom: -19%;
  right: 250px;
  transform: translateY(-50%);

  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;

  box-shadow: 100px 0 0 0 var(--primary), 200px 0 0 0 var(--primary);
}

.header-template_container h1 {
  font-size: 2rem;
  position: relative;
  background-color: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 20px;
}
.header-template_container h1::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -19px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid var(--primary);
}
.header-template-text {
  max-width: 40%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-template_container p {
  line-height: 1.3;
}

@media screen and (min-width: 1024px) {
  .header-template-text {
    max-width: 100%;
  }
  .header-template_container h1 {
    font-size: 1.3rem;
  }
  .header-template_container h1::after {
    right: -18px;
  }
}
@media screen and (min-width: 1280px) {
  .header-template-text {
    max-width: 80%;
  }
  .header-template_container h1 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1440px) {
  .header-template-text {
    max-width: 40%;
  }
}
/* Header template end */

/* upcoming Capstone Component start */
.upcoming-capstone {
  height: 150vh;
  max-height: 1300px;
  margin: 5vh 0;
}
.upcoming-capstone svg {
  width: 100%;
}
.upcoming-capstone-line-drawing path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.capstone-project-0 {
  position: absolute;
  top: 100px;
  max-width: 80%;
}
.capstone-project-1 {
  position: absolute;
  top: 530px;
  max-width: 80%;
}
.capstone-project-2 {
  position: absolute;
  top: 930px;
  max-width: 80%;
}
/* upcoming Capstone Component end */

/* Personal Project Page Start */
.personal-projects-list {
  position: relative;
}
.personal-project-item {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  position: sticky;
  top: 0;
  background-color: white;
  max-height: 700px;
}
.personal-project-item .personal-project-item__text,
.personal-project-item .personal-project-item__media {
  max-width: 50%;
  width: 50%;
}
.personal-project-item .personal-project-item__text,
.personal-project-item .personal-project-item__media {
  max-width: 50%;
  width: 50%;
}

.project-list-img {
  height: 70%;
  transition: 0.2s ease;
  border-radius: 20px;
  border: 2px solid var(--primary);
}
.project-list-img img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
/* Personal Project Page End */

/* Courses Page Start */
.course-schedule-tab {
  font-size: 1.3rem;
  border: none;
  padding: 5px 0;
  margin-right: 100px;
  font-weight: 600;
  background-color: transparent;
  cursor: pointer;
}
.course-schedule-tab.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}
.courses-schedule-days {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 2px solid black;
  min-height: 60px;
  padding: 20px 0;
}
.courses-schedule-days li {
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
}

.courses-schedule-months {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 2px solid black;
  padding: 20px 0;
  min-height: 60px;
}
.courses-schedule-months li {
  font-weight: 600;
}
.schedule-cards-container {
  min-height: 600px;
  margin-top: 40px;
  position: relative;
}
.schedule-card {
  background-color: var(--primary);
  color: white;
  padding: 30px 20px;
  /* min-width: 400px; */
  border-radius: 20px;
  width: fit-content;
  position: absolute;
  left: 0;
}

.course-schedule-table-view,
.schedules-wrapper {
  min-height: 600px;
}
.switch-buttons {
  border: 1px solid var(--primary);
  border-radius: 10px;
  display: flex;
  width: max-content;
}
.switch-buttons button {
  display: flex;
  align-items: center;
  padding: 5px 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.switch-buttons svg {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.switch-buttons button.active {
  background-color: var(--primary);
  border-radius: 10px;
  color: white;
}
.switch-buttons button.active svg,
.switch-buttons button.active path {
  fill: white;
}

.course-schedule-table-view table {
  width: 100%;
  margin-top: 30px;
}
.course-schedule-table-view table tr {
  height: 90px;
  width: 100%;
  font-weight: 500;
  font-size: 1.2rem;
}
.course-schedule-table-view table,
th,
td {
  border: 1px solid var(--primary);
  border-collapse: collapse;
  padding: 20px;
}

.program-accordion-item {
  border: 1px solid var(--primary);
  border-radius: 20px;
  overflow: hidden;
  margin: 30px 0;
}

.program-accordion-header {
  width: 100%;
  text-align: left;
  padding: 1.5rem 2rem;
  font-size: 1rem;
  background: #f8f8f8;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.program-accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.program-accordion-content.open {
  padding: 1.5rem 2rem;
}
.course-catalog-li {
  position: relative;
  display: flex;
  margin: 20px 0;
}

.course-catalog-li::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: var(--secondary);
  border-radius: 3px;
  margin-right: 10px;
  min-width: 15px;
}
.circle-before {
  position: relative;
  display: flex;
  align-items: center;
}
.circle-before::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--primary);
  border-radius: 10px;
  margin-right: 5px;
}
/* Courses Page End */

/* About Page Start */
.about-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 500px;
}
.about-banner h1 {
  font-size: 2rem;
  position: relative;
  background-color: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 20px;
}
.about-banner h1::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -19px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid var(--primary);
}

.about-banner img {
  width: 70%;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.about-mission {
  text-align: center;
  position: relative;
}
.about-mission-graphic {
  bottom: 40px;
  right: -120px;
  height: 400px;
  position: absolute;
}
.about-mission-circle {
  border-radius: 50%;
  background-color: var(--primary);
  padding: 20px;
  color: white;
  gap: 5px;
  height: 300px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  justify-self: center;
}

.text-image-block img {
  width: 100%;
  border-radius: 20px;
  /* border: 3px solid var(--primary); */
}

.text-slider {
  font-family: "Montserrat", sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: white;
  -webkit-text-stroke: 2px #b8b8b8;
  -webkit-font-smoothing: antialiased;
  paint-order: stroke fill;
  letter-spacing: 0.02em;
  text-wrap: nowrap;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  position: relative;
}

.text-slider-track {
  display: inline-flex;
  white-space: nowrap;
}

.text-slider-inner {
  display: inline-block;
  padding-right: 3rem;
}

.team-card {
  text-align: center;
}
.team-card .member-name {
  position: relative;
  background-color: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 20px;
  margin-top: 20px;
}
.team-card .member-name::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid var(--primary);
}
.team-card img {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  object-fit: cover;
}
/* About Page End */

/* Three Cards Layout Start */
.three-cards-grid .card-img {
  width: 300px;
  height: 300px;
  position: inherit;
}
.three-cards-grid .card-container {
  position: relative;
}
.three-cards-grid .card-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80%;
}
.three-cards-grid .card-text-2,
.three-cards-grid .card-text-3 {
  left: 12%;
}
.three-card-2 {
  width: 350px !important;
}
.three-cards-grid .card-icon {
  object-fit: contain;
}
/* Three Cards Layout End */

/* Four Cards Layout Start */
.four-cards-grid .card-img {
  width: 300px;
  height: 300px;
  position: inherit;
}
.four-cards-grid .card-container {
  position: relative;
}
.four-cards-grid .card-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80%;
}
.four-cards-grid .card-text-2,
.four-cards-grid .card-text-3 {
  left: 12%;
}
.four-card-2 {
  width: 350px !important;
}
.four-cards-grid .card-icon {
  object-fit: contain;
}
/* Four Cards Layout End */

.students-swiper {
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.column {
  height: 600px;
  overflow: hidden;
}

.students-swiper img {
  max-width: 100%;
  border-radius: 10px;
}
.student-swiper-text {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 1.5rem;
  font-weight: 500;
}
.students-swiper .swiper-slide {
  max-height: 300px;
}
.column .swiper-wrapper {
  display: flex;
  flex-direction: column;
}

/* Roadmap Start */
#hotspot-106 .hotspots-placeholder {
  background-color: transparent !important;
  border: 1px solid var(--primary) !important;
  border-radius: 10px;
  color: var(--primary) !important;
}
#hotspot-106 .hotspots-image-container,
#hotspot-106 .leaflet-container {
  background-color: transparent !important;
}
/* Footer CTA */
.footer-cta-roadmap-results {
  height: 40vh;
  max-height: 500px;
  width: 100%;
}
.reason-btn {
  border: 1px solid black;
  background-color: white;
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: 500;
  cursor: pointer;
}
.footer-cta-reasons-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
}
.footer-cta-reasons-list::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 29px;
  height: 2px;
  background: var(--primary);
}
.footer-cta-reason-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-container {
  border: 1px solid var(--primary);
  border-radius: 20px;
  padding: 70px 50px;
}
.footer-menu li {
  padding-top: 25px;
  font-weight: 500;
}
.footer-menu a {
  text-decoration: none;
  color: black;
  transition: 0.5s ease;
}
.footer-menu a:hover {
  color: var(--primary);
}
.mobile-drawer {
  display: none;
}

.translateY-150 {
  transform: translateY(150%);
}

.connect-page a {
  text-decoration: none;
  color: inherit;
}
.connect-page iframe {
  width: 100%;
  grid-column-start: 2;
  grid-column-end: 4;
}

@media screen and (min-width: 1400px) {
  .site-header .lang-item {
    position: absolute;
    right: 390px;
  }
  .site-header .lang-item img {
    width: 25px !important;
    height: 17.19px !important;
  }
}
