* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body,
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  height: 100%;
  margin: 0;
  padding: 0;
}
ul {
  padding-left: 0px;
}
@font-face {
  font-family: basis-gro-400;
  src: url("../fonts/BasisGrotesque/BasisGrotesqueArabicPro-Regular.ttf")
    format("truetype");
}
@font-face {
  font-family: basis-gro-med;
  src: url("../fonts/BasisGrotesque/BasisGrotesqueArabicPro-Medium.ttf")
    format("truetype");
}

@font-face {
  font-family: neue-haas-600;
  src: url("../fonts/neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayBold.ttf");
}
@font-face {
  font-family: neue-haas-500;
  src: url("../fonts/neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayMediu.ttf");
}

a {
  text-decoration: none;
}
p {
  margin-bottom: 0px;
}
header {
  position: fixed;
  z-index: 9;
  width: 100vw;
  top: 0;
  background: transparent;
  transition: top 0.5s ease;
}
header.hide-header {
  top: -150px; /* or use -100% to completely hide */
}

.brand-logo {
  width: 100px;
}
.menu-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
}
.apply-cta {
  font-family: basis-gro-med;
  font-size: 22px;
  color: #fff;
  background: #c73d44;
  padding: 16px 24px;
  border-radius: 38px;
  border: 1px solid #c73d44;
}
.apply-cta:hover {
  background-color: transparent;
}
.btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
}
.header-quick-links {
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quick-links {
  display: inline-flex;
  list-style: none;
  gap: 25px;
}
.quick-links a {
  color: #232323;
  font-family: basis-gro-med;
  font-size: 20px;
  line-height: 30px;
  display: inline-block;
  position: relative;
}

.quick-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #f9c73b; /* or your underline color */
  transform: translateY(4px); /* push underline a bit down */
  opacity: 0;
  transition: opacity 0.3s ease;
}
.quick-links a:hover {
  color: #f9c73b;
}
.quick-links a:active {
  color: #f9c73b;
}
.quick-links a:hover::after,
.quick-links a:active::after,
.quick-links a.active::after {
  color: #f9c73b;
  opacity: 1;
}

.btn-wrapper {
  background: #c73d44;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  border: 2px solid #c73d44;
  transition: backhround 0.3s ease;
  cursor: pointer;
}
.btn-wrapper:hover {
  background: transparent;
}
.btn-wrapper:hover span {
  background: #c73d44;
}
.menu-bar1,
.menu-bar2,
.menu-bar3 {
  width: 18px;
  height: 2px;
  background-color: white;
}
.menu-bar2 {
  width: 24px;
}

.video-wrapper video {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
}

.about-section {
  position: relative;
  padding: 8rem 5rem;
}
.about-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content {
  padding: 0px 100px 0px 0px;
}

.aboutsubtext,
.subheading {
  color: #c73d44;
  font-family: "basis-gro-med";
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.aboutHead,
.heading {
  color: #c73d44;
  font-family: "neue-haas-600";
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 68.4px;
  letter-spacing: 1.8px;
  margin: 24px 0px;
}
.content {
  color: #c73d44;
  font-family: "basis-gro-400";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.54px;
  margin-bottom: 48px;
}
.about-img-wrapper {
  height: 600px;
  width: 600px;
  display: flex;
  justify-self: end;
}
.about-img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

img.backlogo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.3;
}
.cta-btn,
.uni-cta {
  display: inline-block;
  text-align: center;
  padding: 16px 20px;
  color: #c73d44;
  border-radius: 30px;
  background: #f9c73b;
  transition: all 0.3s ease;
  border: 1px solid #f9c73b;
  text-decoration: none; /* Optional: helps when it's an <a> */
}

.cta-wrapper {
  padding-top: 36px;
}

.cta-btn:hover {
  background: transparent;
  color: #f9c73b;
  font-weight: 500;
}

.university-tour-section {
  background: #eff1eb;
  padding: 2rem 1rem;
}
.uni-box,
.uni-box .img-box {
  border-radius: 20px;
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}
.uni-box .img-box img {
  height: 100%;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.uni-box .img-caption {
  background: #fff;
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 0 90px 20px 20px;
  transition: height 0.2s ease;
}

.uni-para {
  color: #c73d44;
  font-family: neue-haas-600;
  font-size: 22px;
  font-weight: 600;
  line-height: 134%;
  letter-spacing: 0.66px;
}
.uni-para-hide {
  display: none;
  color: #595959;
  font-family: basis-gro-400;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.54px;
  margin: 10px 0;
}
.uni-para-hide,
.uni-cta {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.uni-box:hover .uni-para-hide,
.uni-box:hover .uni-cta {
  opacity: 1;
  transform: translateY(0);
}
.uni-box:hover .img-caption {
  height: 400px; /* expanded height on hover */
}

.uni-box:hover .uni-para-hide {
  display: block;
}

.uni-cta {
  display: none;
  background: #c73d44;
  color: #f9c73b;
  width: max-content;
  transition: display 0.3 ease;
}

.uni-cta {
  display: none;
  width: max-content;
  padding: 5px 20px;
  background: transparent;
  border: 1px solid #c73d44;
  color: #c73d44;
  transition: all 0.4s ease;
}
.uni-cta:hover {
  background: #c73d44;
  color: #fff;
}

.uni-box:hover .uni-cta {
  display: block;
}
/* Positioning the nav arrows */
#uni-tour-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}

#uni-tour-carousel .owl-nav button.owl-prev,
#uni-tour-carousel .owl-nav button.owl-next {
  background-color: #c73d44;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 38px;
  pointer-events: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
#uni-tour-carousel .owl-nav button span {
  display: inline-block;
  line-height: 1;
  font-size: 38px;
  margin-bottom: 10px;
  margin-left: -7px;
}
/* Optional hover effect */
#uni-tour-carousel .owl-nav button.owl-prev:hover,
#uni-tour-carousel .owl-nav button.owl-next:hover {
  background-color: #a52a35;
}

/* our course */
.ourcourse {
  color: #c73d44;
  font-family: neue-haas-600;
  font-size: 300px;
  line-height: 134%;
  letter-spacing: -6px;
}

.courses-left {
  display: inline-flex;
  align-items: start;
  justify-content: start;
}
.courses-right {
  position: relative;
  height: 750px;
  overflow: hidden;
}
.course-list ul {
  list-style: none;
  width: 100%;
}

.course-list ul li {
  color: #c73d44;
  font-family: neue-haas-600;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 25px 0px;
  border-top: 1px solid #c73d44;
  border-bottom: 1px solid #c73d44;
}

.course-list ul li:first-child {
  border-top: none;
}

.course-list ul li:last-child {
  border-bottom: none;
}

.course-box {
  display: flex;
  gap: 10px;
}

.course-detail-box {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out;
  z-index: 0;
}
.course-detail-box.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.course-list {
  width: 100%;
  padding: 0px 5rem;
}

.courses-right .img-wrapper img {
  height: 100%;
  width: 100%;
}

.course-detail {
  background-color: rgba(199, 61, 68, 0.85);
  padding: 40px 50px;
  position: absolute;
  right: 50px;
  bottom: 50px;
}

.course-detail p {
  color: #fff;
}

.couser-heading {
  font-family: neue-haas-600;
  font-size: 28px;
}

.couser-content {
  color: #fff;
  font-family: basis-gro-med;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 134%;
  letter-spacing: 0.36px;
}

.courses-left .course-list li:hover .course-box {
  color: #f9c73b;
  transition: color 0.3s ease;
}

.courses-left .course-list li:hover .course-box .course-name {
  font-size: 22px;
}

.courses-left .course-list li.active .course-box {
  color: #f9c73b;
}

.courses-left .course-list li.active .course-box .course-name {
  font-size: 22px;
}
/* our couse list end */
.news-event-section {
  background: #eff1eb;
  padding: 2rem 1rem;
}
.news-event-wrapper {
  padding: 2rem 4rem 0rem;
}
.news-event {
  position: relative;
  background: #c73d44;
  border-radius: 20px;
}
.news-event .img-box {
  height: 200px;
  border-radius: 20px;
}
.news-event .img-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.news-event .news-img-caption {
  padding: 30px;
  color: #fff;
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-date {
  position: absolute;
  top: -38px;
  background: #c73d44;
  padding: 10px 14px 10px;
  left: 0;
  border-radius: 0px 20px 0px 0px;
  font-family: neue-haas-500;
  font-size: 18px;
  line-height: 134%; /* 24.12px */
  letter-spacing: 0.54px;
}

.news-event-heading {
  font-family: neue-haas-600;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.72px;
}

.news-event-content {
  color: #fff;
  text-align: justify;
  font-family: basis-gro-400;
  font-size: 18px;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.54px;
  margin-top: 15px;
}

.news-cta {
  display: block;
  color: #f9c73b;
  font-family: basis-gro-med;
  font-size: 18px;
  line-height: 134%;
  border-radius: 38px;
  border: 1px solid #f9c73b;
  width: max-content;
  padding: 8px 16px;
  margin-top: 20px;
}
.news-cta:hover {
  border: none;
  background: #f9c73b;
  color: #c73d44;
  font-weight: 500;
}

#news-and-event .owl-dots {
  display: none;
}

.partner-left-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: center;
  align-self: center;
}

.partner-heading {
  color: #c73d44;
  font-family: neue-haas-600;
  font-size: 80px;
  line-height: 114%;
  letter-spacing: 2.4px;
}
.partner-section {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem 3rem;
}
.marquee-partner {
  overflow: hidden;
  height: 95vh; /* Adjust as needed */
  position: relative;
}

.marquee-content {
  display: flex;
  flex-direction: column;
}

.up-top .marquee-content {
  animation: scroll-up 10s linear infinite;
}

.top-bottom .marquee-content {
  animation: scroll-down 10s linear infinite;
}

.partner-box {
  padding: 30px 10px;
  border-radius: 20px;
  background: #f1f1f1;
  margin: 30px 30px;
  display: flex;
  justify-content: center;
}
.logo-box img {
  width: 100px; /* Adjust as needed */
  height: auto;
}

/* Keyframe animations */
@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.partner-right-box {
  position: relative;
}
.partner-right-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 40px; /* adjust height */
  width: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
  z-index: 1;
}

/* Bottom Gradient */
.partner-right-box:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40px; /* adjust height */
  width: 100%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
  z-index: 1;
}

.testimonials {
  background: #eff1eb;
  padding: 2rem 3rem;
}
#testimonial {
  width: 100%;
  height: 70vh;
  padding: 20px;
}

.testimonial-right {
  padding: 10px;
  background: white;
}
.testimonial-right .img-box {
  overflow: hidden;
  width: 100%;
  height: 550px;
}
.testi-wrapper {
  padding: 15px;
  text-align: center;
  border-radius: 6.606px;
  width: 90%;
  display: flex;
  justify-self: end;
}

#testimonial-person {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.2s ease;
}
.testimonial-right:hover .img-box #testimonial-person {
  transform: scale(1.1);
}
#testimonial .img-detail {
  text-align: center;
  padding: 40px;
}
.testimonal-batch {
  color: #5b5b5b;
  font-family: basis-gro-400;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.54px;
  transform: scale(1);
  transition: transform 0.2s ease;
}
.testimonal-name {
  color: #5b5b5b;
  text-align: center;
  font-family: neue-haas-600;
  font-size: 32px;
  font-style: normal;
  line-height: 160%; /* 51.2px */
  letter-spacing: 0.96px;
  transform: scale(1);
}
.testimonial-right:hover .img-detail .testimonal-name {
  transform: scale(1.1);
}
.testimonial-right:hover .img-detail .testimonal-batch {
  transform: scale(1.1);
}
.img-detail {
  padding: 40px;
  text-align: center;
}

.testimonial-content {
  color: #0f3b48;
  font-family: "GT Walsheim Trial";
  font-size: 24px;
  font-weight: 500;
  line-height: 44.907px; /* 166.324% */
  letter-spacing: 1.08px;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Show only 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.3;
  background-color: #fafafa;
}
.swiper-slide {
  margin: 15px;
  height: 180px !important;
  padding: 15px;
  text-align: center;
  border-radius: 6.606px;
  display: flex;
  justify-self: end;
  margin-left: 60px;
}
.swiper-slide:before {
  content: url("../imgs/comma.png");
  position: absolute;
  left: 30px;
  top: -20px;
  opacity: 0.3;
}
.swiper-slide-active {
  background-color: white;
  padding: 15px;
  text-align: center;
  border-radius: 6.606px;
  display: flex;
  justify-self: end;
  margin-left: 60px;
  opacity: 1;
  height: 250px !important;
}

.swiper-slide-active:before {
  content: url("../imgs/comma.png");
  position: absolute;
  left: 30px;
  top: -20px;
  opacity: 1;
}
.swiper-slide-active .testimonial-content {
  opacity: 1;
  text-align: left;
  overflow: visible;
  display: block;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: hidden;
  height: auto;
  background-color: #fff;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 24px;
  transform: rotate(90deg);
  top: 50%;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  left: 24px;
  transform: rotate(90deg);
  top: 59%;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 10px;
  height: 35px;
  width: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}
footer {
  position: relative;
  padding: 2rem 4rem;
  height: 100vh;
  display: flex;
  align-items: center;
}

.address-socials .contact-list li:hover p,
.address-socials .contact-list li:hover a {
  border-bottom: 1px solid #c73d44;
  width: fit-content;
  color: #c73d44;
}

form {
  margin-top: 30px;
}
.footer-row {
  display: flex;
}
.backlogo-footer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.3;
  width: 650px;
}
.contact-list {
  list-style: none;
}
input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  background: transparent;
}
.social-media-list {
  display: inline-flex;
  list-style: none;
  gap: 20px;
  justify-content: start;
  margin-top: 20px;
}
label {
  color: #2d2d2d;
  font-family: basis-gro-med;
  font-size: 20px;
  line-height: 134%;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.contact-us-intro {
  color: #2d2d2d;
  font-family: Inter;
  font-size: 28px;
  font-weight: 500;
  line-height: 134%;
  letter-spacing: -0.56px;
}
input:focus {
  padding: 10px;
  border: none;
  outline: none;
  background-color: transparent;
  border-bottom: 1px solid #000;
}

.submit-btn {
  display: inline;
  width: max-content;
  padding: 10px 32px;
}
.social-media-text {
  color: #2d2d2d;
  font-family: neue-haas-500;
  font-size: 60px;
  line-height: 134%; /* 80.4px */
  letter-spacing: -1.2px;
}
.footer-content {
  color: #2d2d2d;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 134%;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}
.contact-no {
  color: #2d2d2d;
  font-family: neue-haas-500;
  font-size: 28px;
  line-height: 200%;
}
address,
.footer-contact {
  color: #2d2d2d;
  font-family: basis-gro-med;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.54px;
  margin-bottom: 20px;
}
.footer-contact {
  line-height: 200%;
  text-transform: uppercase;
}
.quick-links-footer {
  color: #2d2d2d;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 134%; /* 21.44px */
  letter-spacing: 0.48px;
  text-transform: uppercase;
}
.quick-links-list {
  list-style: none;
}
.quick-links-list li {
  margin-bottom: 40px;
}

.quicklinks-footer {
  display: flex;
  justify-content: center;
}

.social-media-box {
  margin-top: 90px;
}

.social-media-list li a img {
  transition: filter 0.3s ease; /* Smooth transition */
}
.insta-square {
  fill: #C73D44;
  stroke: #C73D44;
  stroke-width: 0.6; /* or increase to 2 for more thickness */
  transition: all 0.3s ease;
}
.social-media-list li:hover svg {
  fill: #c73d44;
}
.social-media-list li:hover .alphate {
  fill: #fff;
  stroke: #fff;
}

.insta-icon:hover .alphate-stroke {
  stroke: #fff;
}

.insta-icon:hover .alphate-insta {
  fill: #fff;
}

.quick-links-list li:hover {
  border-bottom: 2px solid #c73d44;
}

/* menu */
/* Initial position of the menu (hidden above the screen) */
.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  background-color: #eff1eb;
  padding: 6rem 4rem;
  transition: top 0.5s ease;
  height: 100vh;
  display: flex;
  justify-content: space-between;
}

.menu .level-1-menu li {
  margin: 50px 0;
}
.menu .level-2-menu li {
  margin: 15px 0;
}

.menu-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-bar1,
.menu-bar2,
.menu-bar3 {
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

/* Styles for the "open" state of the hamburger menu */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: #333;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
}

/* === Main Menu Wrapper === */

.menu.open {
  top: 0;
}

/* === Menu Background Logo === */
.cancel-btn {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}
.cancel-btn p {
  color: #000;
  font-family: basis-gro-400;
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 0.9px;
}
/* Cancel icon container */
.cancel-icon {
  position: relative;
  width: 24px;
  height: 24px;
}

/* Cross lines */
.cancel-icon span {
  position: absolute;
  height: 2px;
  width: 100%;
  background: #000;
  top: 50%;
  left: 0;
  transform-origin: center;
}

/* Create "X" shape */
.cancel-icon span:nth-child(1) {
  transform: rotate(45deg);
}

.cancel-icon span:nth-child(2) {
  transform: rotate(-45deg);
}
.cover {
  position: relative;
}
.menu-backlogo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(0%, -50%);
  z-index: -1;
  opacity: 0.3;
}

/* === Menu List === */
.menu .level-1-menu {
  list-style: none;
  padding: 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.Menu-list a {
  display: block;
  color: #5a5a5a;
  font-family: neue-haas-500;
  font-size: 30px;
  letter-spacing: -0.6px;
  line-height: 134%;
  transition: background 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
}

.Menu-list li > a {
  position: relative;
  text-decoration: none;
  width: fit-content;
}

.Menu-list li.active > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* controls gap between text and line */
  width: 100%;
  height: 2px;
  background-color: #c73d44;
}

/* Wrapper for Scroll or Containment */
.menu-list-wrapper {
  height: 89vh;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.menu-list-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* === Submenu Common Styles === */
.level-2-menu,
.level-3-menu {
  position: absolute;
  min-width: 200px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1000;
  padding: 0;
  list-style: none;
}

.level-2-menu a,
.level-3-menu a {
  color: #c73d44;
  font-size: 20px;
  font-family: basis-gro-400;
  text-align: left;
  padding: 0px;
  text-transform: capitalize;
}

/* Positioning */
.level-2-menu {
  top: 160px;
  left: 55%;
}

.level-3-menu {
  top: 0;
  left: -100%;
}

/* JS-Toggled Visibility */
.level-2-menu.visible,
.level-3-menu.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  display: block;
}
