:root {
  --primary-color: #283792;
  /* Soft Blue */
  --primary-hover: #4A69BB;
  /* Deeper Blue */
  --secondary-color: #8dc442;
  /* Muted Pastel Blue */
  --background-color: #EAF2F8;
  /* Lightest Blue/Gray */
  --card-background: #FDFDFD;
  /* Almost White */
  --success-color: #6ABF69;
  /* Calm Green */
  --success-hover: #5A9F58;
  /* Deeper Green */
  --warning-color: #F4D03F;
  /* Soft Yellow */
  --warning-hover: #E6B800;
  /* Muted Golden */
  --error-color: #E57373;
  /* Gentle Red */
  --error-hover: #C74C4C;
  /* Deeper Red */
  /* --text-primary: #37474F; */
  /* Soft Dark Gray */
  --text-primary: #333;
  /* Muted Blue-Gray */
  --text-white: #ffffff;

  --our-blue: #2196f3;
  /* Muted Blue-Gray */
}


/* Page Wrapper */
.profile-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
}

/* Header */
.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  margin-bottom: 30px;
}

.profile-avatar {
  width: 70px;
  height: 70px;
  background: #1976d2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  font-weight: 700;
}

.profile-name {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.profile-meta {
  margin-top: 4px;
  color: #666;
  font-size: 14px;
}

/* Card */
.card-modern {
  background: #fff;
  padding: 22px 24px;
  border-radius: 14px;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

/* Titles */
.section-title-modern {
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 700;
}

/* Info Grid */
.info-grid {
  display: grid;
  gap: 10px 20px;
}


/* Activities List */
.modern-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modern-list li {
  padding: 12px 14px;
  background: #f5f7fa;
  border-radius: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

/* Contacts */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: #f5f7fa;
  border-radius: 12px;
}

.contact-avatar {
  width: 55px;
  height: 55px;
  background: #283593;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 700;
  font-size: 22px;
}

.contact-info h4 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 700;
}

.empty-text {
  color: #888;
  font-style: italic;
}


.student-name {
  flex: 1;
  min-width: 0;
  /* prevents breaking layout */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.view-link {
  flex-shrink: 0 !important;
  /* prevents disappearing */
  color: #1976d2;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  margin-left: 12px;
}

.view-link:hover {
  color: #0d47a1;
}


/* Full width but padded nicely */
.students-wrapper {
  width: 100%;
  padding: 20px 40px;
}

/* Center search bar and make it wider */
.search-wrapper {
  max-width: 500px;
  width: 90%;
  margin: 0 auto 20px auto;
}


/* ————————————————
   STUDENT LIST (MODERN STYLE)
   ———————————————— */

/* Wrapper UL */
.student-collapsible {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: none !important;
  margin: 0;
  padding: 0;
}

/* Remove Materialize’s built-in popout shadows */
.student-collapsible,
.student-collapsible li,
.student-collapsible * {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

/* Each Row */
.student-collapsible li {
  border-bottom: 1px solid #e0e0e0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove border on last row */
.student-collapsible li:last-child {
  border-bottom: none !important;
}

/* Collapsible Header */
.student-collapsible .collapsible-header {
  background: #fff !important;
  padding: 16px 20px !important;
  font-size: 17px;
  font-weight: 500;
  align-items: center;
  justify-content: space-between;
  display: flex;
  color: #333;
  gap: 10px;
}

/* Icon spacing in header */
.student-collapsible .collapsible-header i {
  margin-right: 12px;
  color: #555;
}

/* Body styling */
.student-collapsible .collapsible-body {
  background: #fafafa !important;
  padding: 18px 22px !important;
  color: #444;
  border: none !important;
}

/* “View” link on the far right */
.student-collapsible .view-link {
  margin-left: auto;
  font-size: 14px;
  color: #1976d2;
  text-decoration: underline;
  font-weight: 500;
}

.student-collapsible .view-link:hover {
  color: #0d47a1;
}

/* Remove padding inside header caused by Materialize */
.student-collapsible .collapsible-header span,
.student-collapsible .collapsible-header a {
  padding: 0 !important;
}

/* Optional: subtle hover effect */
.student-collapsible .collapsible-header:hover {
  background: #f7f7f7 !important;
}




#adminCollapse {
  margin: 15px;
  border-radius: 8px !important;
}

#msg-flash {
  margin: 20px auto;
  padding: 15px 25px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  /* animation: fadeInOut 5s ease forwards; */
}

/* Success variant */
.alert-success {
  background-color: #43a047;
  /* Materialize green darken-1 */
}

/* Error variant */
.alert-danger {
  background-color: #e53935;
  /* Materialize red darken-1 */
}

/* Info variant */
.alert-info {
  background-color: #1e88e5;
  /* Materialize blue darken-1 */
}

/* Subtle fade animation */
@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  10%,
  90% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}



section {
  padding-top: 60px;
  padding-bottom: 60px;
}



/* Make section full width */
.no-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;

}

#pricing {
  background: linear-gradient(to bottom, #e3f2fd 0%, #ffffff 100%);
}

/* Add space between cards */
.pricing-card {
  margin: 15px;
  border-radius: 8px;
  overflow: hidden;
}

/* Optional: make center card pop slightly */
.pricing-card:nth-child(2) {
  transform: scale(1.03);
  z-index: 2;
}

/* Button styling */
#pricing .btn {
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.card-content-header {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.card-content-body {
  background-color: var(--text-white);
  color: var(--primary-color);
}

.section-little-man {
  position: relative;
  height: 100px;
  /* or whatever space you need */
}

.section-little-man .little-man img {
  position: absolute;
  top: -40px;
  /* how far he overlaps upward */
  right: 0;
}

.registerButton {
  background-color: var(--primary-color) !important;
}


/* Back to Top Button */
#backToTop {
  position: fixed !important;
  bottom: 25px;
  right: 25px;
  z-index: 99999 !important;
  display: none;
  /* hidden by default */
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  background-color: var(--our-blue);
  box-shadow: 0 0 12px 2px rgba(255, 255, 255, 0.7);
}

#backToTop.show {
  display: flex !important;
  opacity: 1;
  transform: translateY(0);
}



.classes-box a {
  margin-top: 800px !important;
}



.classes-box {
  background-color: var(--secondary-color);
  padding-right: 60px;
  padding-left: 80px;
  padding-top: 80px;
  padding-bottom: 60px;
  margin-top: 0px;
  /* height: 300px; */
}

.classes-box h4 {
  color: var(--text-white);
  margin: 0 !important;
  padding: 0 !important;
}


.classes-box span {
  color: var(--text-white);
}



#mobile-nav {
  background-color: var(--primary-color);
  color: var(--background-color) !important;
}

#footer {
  background-color: var(--primary-color);
  color: var(--background-color);
}

html {
  scroll-behavior: smooth;
}


.circle {
  background-color: var(--primary-color) !important;
}





.top-text-section-box,
.top-text-section-text,
.top-text-section-image,
.top-text-section-button {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Unique Starting Positions */
.top-text-section-box {
  transform: scale(0.5);
  /* Boxes start small */
}

.top-text-section-text {
  transform: translateY(30px);
  /* Text slides up */
}

.top-text-section-image {
  transform: translateX(-50px);
  /* Images slide in from left */
}

.top-text-section-button {
  transform: scale(0.3);
  /* Button starts tiny */
}

/* When Visible */
.visible {
  opacity: 1;
  transform: scale(1) translateX(0) translateY(0);
}


.animate__animated.animate__fadeInDown {
  --animate-duration: 2s;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw !important;
  /* Full width */
  height: 100vh !important;
  /* Full height */
  background: rgba(0, 0, 0, 0.95);
  /* Darker background */
  justify-content: center;
  align-items: center;
  z-index: 999999 !important;
  /* Make sure it's above everything */
  flex-direction: column;

}



.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none !important;
  /* Remove background */
  border: none;
  padding: 5px;
  font-size: 40px;
  color: white !important;
  /* Change icon color */
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}

.lightbox-btn i {
  font-size: 50px;
  /* Make icon bigger */
}

.lightbox-btn:hover {
  color: rgba(255, 255, 255, 0.8) !important;
  /* Lighter icon on hover */
}

.lightbox-btn.prev {
  left: 15px;
}

.lightbox-btn.next {
  right: 15px;
}



.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 3 equal columns */
  grid-auto-flow: dense;
  /* Ensures tighter packing */
  gap: 5px;
  /* Reduce spacing */
}

.grid-item {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
  pointer-events: auto !important;
  /* Ensures image receives clicks */
  z-index: 0 !important;
  /* Ensures image is on top */
  position: relative !important;
  /* Ensures it’s clickable */
}

.grid-item.large {
  grid-column: span 2;
  /* Larger images span 2 columns */
  grid-row: span 2;
  /* Larger images take up more vertical space */
}

/* .buttonCenter {
  margin-top: 100px;
  background-color: white;
  color: black;
  border: 2px solid white;
  border-radius: 30px;
  padding: 10px 50px;
  font-size: 12px;
  text-transform: uppercase;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  line-height: 15px;
  font-weight: 900;
} */

.book-us-box a {
  margin-top: 300px;
  ;
  /* background-color: var(--secondary-color); */
  /* padding-right: 60px;
  padding-left: 80px; */
  /* padding-top: 35px; */
  /* padding-bottom: 35px; */
  /* height: 300px; */
}

.book-us-box {
  background-color: var(--secondary-color);
  padding-right: 60px;
  padding-left: 80px;
  padding-top: 40px;
  padding-bottom: 24px;
  /* height: 300px; */
}

.book-us-box h4 {
  color: var(--text-white);
  margin: 0 !important;
  padding: 0 !important;
}


.book-us-box span {
  color: var(--text-white);
  /* Ensure it applies to both */
}


.parallax-image-1 {
  object-fit: cover;
  /* Ensures full coverage */
  object-position: bottom center;
  /* Adjust positioning (top, bottom, left, right) */
  width: 100%;
  height: 190%;
  /* Prevent cutoff at certain scroll points */
}

.parallax-image-2 {
  object-fit: cover;
  /* Ensures full coverage */
  object-position: left center;
  /* Adjust positioning (top, bottom, left, right) */
  width: 100%;
  height: 190%;
  /* Prevent cutoff at certain scroll points */
}


.music-list {
  list-style: none;
  /* Removes default bullet points */
  /* padding: 0; */
  margin: 0;
}

.music-list li {
  font-size: 18px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.music-list i {
  color: #004aad;
  /* Adjust to match your theme */
  margin-right: 10px;
  font-size: 16px;
}

.half-column-box h2 {
  padding-bottom: 8px;

}

.half-column-box {
  /* margin-top: 50px; */
  padding-top: 80px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 60px;
  height: 500px;
  background-color: #f7f7f7;
  /* margin-right: 30px; */
  /* width: 15px; */
}

.half-column-box-text {
  /* margin-top: 50px; */
  font-size: 14px;
  color: var(--text-primary);
  /* margin-right: 30px; */
  /* width: 15px; */
}


.column-box {
  /* margin-top: 50px; */
  padding-top: 80px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 60px;
  height: 350px;
  /* margin-right: 30px; */
  /* width: 15px; */
}

.column-box-text {
  /* margin-top: 50px; */
  font-size: 14px;
  color: var(--text-primary);
  /* margin-right: 30px; */
  /* width: 15px; */
}

.header-hr {
  /* width: 40%; */
  background-color: var(--hr-line);
  opacity: 0.3;
}

.header-slogan {
  font-size: 16px !important;
  color: var(--text-white) !important;
}

.custom-icon-light {
  font-size: 35px;
  color: var(--background-color);
}

.custom-icon-gray {
  font-size: 35px;
  color: #666666;
  vertical-align: middle;
  line-height: 1;
}


/* Caption text */
.caption {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}


.buttonCenter {
  margin-top: 150px;
  background-color: white;
  color: black;
  border: 2px solid white;
  border-radius: 30px;
  padding: 12px 60px;
  font-size: 12px;
  /* Ensure readable text */
  text-transform: uppercase;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  line-height: 15px;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/*  Add hover effect */
.buttonCenter:hover {
  background-color: white;
  color: black;
  /* margin: 50px; */

}

.buttonMenu {
  background-color: transparent;
  color: white;
  /* Ensure text is visible */
  border: 2px solid white;
  /* Reduce thickness */
  border-radius: 30px;
  /* Slightly rounded, not too much */
  padding: 10px 25px;
  /* Reduce padding for a normal shape */
  /* font-size: 16px; */
  /* Ensure readable text */
  text-transform: uppercase;
  /* Match other menu buttons */
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  line-height: 15px;
  margin: 20px;

}

.buttonHeader {
  background-color: transparent;
  color: white;
  /* Ensure text is visible */
  border: 2px solid white;
  /* Reduce thickness */
  border-radius: 30px;
  /* Slightly rounded, not too much */
  padding: 8px 8px;
  /* Reduce padding for a normal shape */
  /* font-size: 16px; */
  /* Ensure readable text */
  text-transform: uppercase;
  /* Match other menu buttons */
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  /* line-height: 15px; */
  /* margin: 20px; */

}




/*  Add hover effect */
.buttonMenu:hover {
  background-color: white;
  color: black !important;
  /* margin: 50px; */

}



/* Remove gap between Materialize Grid */
.row {
  margin-bottom: 0 !important;
}

.col {
  padding: 0 !important;
}

h4 {
  font-size: 18px;
  color: var(--text-primary);
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
}


h2 {
  font-size: 40px;
  color: var(--text-primary);
  font-weight: 700;

  font-family: 'Work Sans', sans-serif;
  /* font-weight: bold; */
}



/*  Work Sans for Headings */
h1,

h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 900;
  /* Extra bold for impact */
  text-transform: uppercase;
  /* Matches the Sweet Pan Entertainment style */
}

/*  Open Sans for Body Text */
body,
p,
a,
span {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;

  /* Regular weight for easy reading */
  color: var(--text-primary);
  /* Adjust as needed */
}

p {
  font-size: 1.1rem;
  /* Slightly larger for better reading */
  line-height: 1.6;
  /* More spacing for clarity */
}



/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 2.5s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}


.slant-down {

  background: #2196f3;
  min-height: 300px;
  color: white;
  /* padding: 60px 20px; */
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%); */
}


.slant-top {
  /* background: #4caf50; */
  color: white;
  /* padding: 60px 20px; */
  text-align: center;
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
}


/* Fullscreen Header */
.main-header-admin {
  position: relative;
  height: 10vh;
  min-height: 250;
  overflow: hidden;
  background-color: var(--primary-color);
  /* background: #2196f3; */
  /* clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%); */
  z-index: 5 !important;


}

/* Fullscreen Header */
.main-header {
  position: relative;
  height: 80vh;
  min-height: 600;
  overflow: hidden;
  /* background: #2196f3; */
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  z-index: 5 !important;


}

/* Dark Overlay */
.primary-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.861); */
  z-index: 1 !important;
}

/* Slideshow Fullscreen */
.slideshow-container {
  background: var(--our-blue);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1 !important;
}



.academy-logos img,
.academy-logos .logo-circle {
  vertical-align: middle;
}

/* .academy-logos {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  gap: 15px;
} */


.formIconStyle {
  width: 80px !important;
  border-radius: 50% !important;
  margin-top: 80px !important;
  /* margin: 0 10px !important; */
}

.ciscoStyle {
  width: 160px !important;
  border-radius: 50% !important;
  margin: 0 10px !important;
}

.logo-circle {
  display: inline-flex;
  /* centers the image inside */
  justify-content: center;
  align-items: center;
  background: white;
  /* white circular background */
  border-radius: 50%;
  /* makes it round */
  width: 160px;
  height: 160px;
  margin: 0 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  /* optional subtle shadow */
}

.logo-circle img {

  width: 85% !important;
  height: auto !important;
  object-fit: fill;

}

.mySlides {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
}

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

/* Text on Top of Slideshow */
.showcase {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--text-white);
  z-index: 2 !important;
}

.showcase h1 {
  font-size: 4rem;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.508);
}

.showcase p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.508);
}

/* Scroll Icon */
.scroll-icon {
  position: absolute;
  /* Keeps it inside the image container */
  left: 50%;
  transform: translateX(-50%);
  bottom: 4px;
  /* Moves it slightly down between the sections */
  z-index: 10;
  /* Ensures it's above the image and not covered by the next div */

  width: 50px;
  height: 50px;
  background-color: var(--background-color);

  border-radius: 50%;
  border: 1px solid white;
  outline: 1px solid white;
  /* box-shadow: 0 0 10px rgba(255, 255, 255, 0.8); */

  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 24px;
  cursor: pointer;
}


.navbar-fixed {
  /* height: 500px; */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10 !important;
}



/* Navbar Transparent */
nav.transparent {
  background: transparent !important;
  position: absolute;
  z-index: 3;
  width: 100%;
  box-shadow: none !important;
  padding-right: 30px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .showcase h1 {
    font-size: 2rem;
  }

  .showcase p {
    font-size: 1rem;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
  }
}




.navbar-fixed {
  /* height: 500px; */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000 !important;
}

/*  Make Navbar Background Visible */
nav {
  background: transparent !important;
  /* Transparent initially */
  /* Adjust transparency */
  transition: background 0.3s ease-in-out;
  height: 64px;
  /* Fixed height for consistency */
  line-height: 64px;
  /* Aligns items properly */
}

nav.scrolled {
  background: var(--primary-color) !important;
  /* Visible background */
}



/*  Properly Align Brand Logo */
.brand-logo {
  font-size: 1.8rem;
  padding-left: 20px;
  line-height: 64px;
  /* Ensures it is vertically aligned */
  display: flex;
  align-items: center;
  height: 64px;

}

.brand-logo img {
  padding-left: 20px !important;
  max-width: 120px;
  transition: max-width 0.3s ease-in-out;
}

nav.scrolled .brand-logo img {
  max-width: 130px;
}

/*  Fix Navbar Items */
nav ul {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 10px;
  /*  Increases spacing between menu items */
}

nav ul li a {
  font-weight: bold;
  /*  Makes text bold */
  text-transform: uppercase;
  color: var(--text-white) !important;
  font-size: 0.8rem;
  padding: 0 15px;
  /* Ensures even spacing */
  line-height: 64px;
  /* Aligns text in the middle */
}

/*  Ensure sidenav appears in front */
.side-nav {
  z-index: 1005 !important;
  /* Higher than navbar */
  position: fixed !important;
  /* Ensures it stays on top */
}

/*  Ensure sidenav appears in front */
.side-nav li a {
  color: var(--background-color);
  /* Ensures it stays on top */
}

/*  Ensure sidenav overlay is visible */
.sidenav-overlay {
  z-index: 99999 !important;
  /* background: rgba(0, 0, 0, 0.4) !important; */
  background: #ffffff !important;
  /* Change to white */
  color: #000000 !important;
  /* Change text color to black */
  /* Adjust overlay darkness */
}


/*  Fix Mobile Sidenav */
/* .sidenav {
  display: none;
  /* Hide by default */
/* } */


/* Ensure sidenav is hidden on desktop */
/*  Hide Mobile Menu Button on Desktop */
/* @media (min-width: 993px) {
  .sidenav-trigger {
    display: none !important;
  }
} */

@media (min-width: 360px) and (max-width: 760px) {
  .academy-logos {
    justify-content: center;
    gap: 10px;
  }

  .academy-logos img,
  .academy-logos .logo-circle {
    width: 110px !important;
    height: 110px !important;
  }

  .academy-logos .logo-circle img {
    width: 75% !important;
  }
}



/* Fix sidenav appearing unexpectedly */

@media (max-width: 600px) {

  #backToTop {
    bottom: 15px;
    right: 15px;
  }

  .main-header {
    position: relative;
    height: 50vh;
    min-height: 400;
    overflow: hidden;
    /* background: #2196f3; */
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    z-index: 5 !important;

  }

  .academy-logos {
    display: flex;
    /* puts items in a row */
    justify-content: center;
    /* centers them horizontally */
    align-items: center;
    /* vertically aligned */
    flex-wrap: nowrap;
    /* prevents stacking */
    gap: 5px;
    /* space between logos */
  }

  .academy-logos img,
  .academy-logos .logo-circle {
    width: 70px !important;
    height: 70px !important;
  }

  .academy-logos .logo-circle img {
    width: 75% !important;
    /* keeps full logo visible */
  }

  .lightbox-btn {
    padding: 8px 12px;
    font-size: 20px;
  }


  .book-us-box a {
    margin-top: 300px;
    ;
    /* background-color: var(--secondary-color); */
    /* padding-right: 60px;
  padding-left: 80px; */
    /* padding-top: 35px; */
    /* padding-bottom: 35px; */
    /* height: 300px; */
  }

  .half-column-box {
    /* margin-top: 50px; */
    padding-top: 80px;
    padding-left: 28px;
    padding-right: 28px;
    padding-bottom: 60px;
    height: 500px;
    background-color: #f7f7f7;
    /* margin-right: 30px; */
    /* width: 15px; */
  }


  .event-column-box {
    /* margin-top: 50px; */
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 60px;
    height: 1000px;
    /* background-color: #f7f7f7; */

    /* margin-right: 30px; */
    /* width: 15px; */

  }

  /* .sidenav {
    display: block !important;
    transform: translateX(-105%);
    transition: transform 0.3s ease-in-out;
  } */

  /* .sidenav.open {
    transform: translateX(0%);
  } */
}