/* Advanced Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(230, 43, 30, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(230, 43, 30, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(230, 43, 30, 0);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 5px rgba(230, 43, 30, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(230, 43, 30, 0.8), 0 0 30px rgba(230, 43, 30, 0.2);
  }
  100% {
    text-shadow: 0 0 5px rgba(230, 43, 30, 0.5);
  }
}

@keyframes backgroundScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.gradient-animation {
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
}

.text-glow {
  animation: textGlow 2s ease-in-out infinite;
}

.background-scroll {
  background-size: 200% 100%;
  animation: backgroundScroll 10s linear infinite;
}

/* Enhanced button effects */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-red-dark), var(--primary-red-light));
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary {
  background-color: var(--primary-red);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background-color: transparent;
  color: var(--light-text);
  border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
  background-color: var(--primary-red);
  transform: translateY(-2px);
}

/* Enhanced section styling */
.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 20px;
  animation: textGlow 3s ease-in-out infinite;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
  border-radius: 2px;
}

/* Enhanced hero section */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.7)),
              url('Image/mis photo (1).png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding: 100px 0;
  position: relative;
  background-attachment: scroll; /* Changed from fixed to scroll for better performance */
  background-size: cover;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(230, 43, 30, 0.5);
  animation: textGlow 3s ease-in-out infinite;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--secondary-text);
  margin-bottom: 30px;
}

/* Enhanced speaker cards */
.speaker-card {
  flex: 0 0 auto;
  width: 250px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Removed transform-style: preserve-3d and perspective for performance */
}

.speaker-card:hover {
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 10px 30px rgba(230, 43, 30, 0.4);
}

.speaker-card.hover-active {
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 10px 30px rgba(230, 43, 30, 0.4);
}

.speaker-card.hover-active .speaker-content {
  opacity: 1;
  transform: translateY(0);
}

.speaker-image {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.speaker-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(230, 43, 30, 0.1), transparent);
  z-index: 1;
}

.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) brightness(0.7);
  transition: all 0.4s ease;
}

.speaker-card:hover .speaker-image img {
  filter: blur(0) brightness(1);
}

.speaker-card.hover-active .speaker-image img {
  filter: blur(0) brightness(1);
}

.speaker-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(10, 10, 10, 0.8);
  border-top: 1px solid rgba(230, 43, 30, 0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.speaker-name {
  margin-bottom: 5px;
  color: var(--light-text);
  font-size: 1.3rem;
}

.speaker-title {
  color: var(--primary-red);
  margin-bottom: 10px;
  font-style: italic;
  font-size: 0.9rem;
}

.speaker-bio {
  font-size: 0.85rem;
  color: var(--secondary-text);
  margin: 0;
}

/* Speaker social links */
.speaker-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.speaker-social-link {
  color: var(--secondary-text);
  font-size: 1.2rem;
  transition: var(--transition);
}

.speaker-social-link:hover {
  color: var(--primary-red);
  transform: translateY(-3px);
}

/* Enhanced team section */
.team-card {
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  /* Removed transform-style: preserve-3d and perspective for performance */
}

.team-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: rgba(230, 43, 30, 0.3);
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.team-member-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(230, 43, 30, 0.3);
  transition: var(--transition);
}

.team-card:hover .team-member-avatar {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(230, 43, 30, 0.5);
}

.team-member-info h3 {
  margin-bottom: 5px;
  color: var(--light-text);
  font-size: 1.3rem;
  transition: var(--transition);
}

.team-card:hover .team-member-info h3 {
  color: var(--primary-red);
}

.team-member-info p {
  margin: 0;
  color: var(--secondary-text);
  font-size: 0.9rem;
}

.team-member-teams {
  margin-bottom: 20px;
}

.team-member-teams h4 {
  margin-bottom: 10px;
  color: var(--light-text);
  font-size: 1rem;
}

.team-teams-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-tag {
  background-color: rgba(230, 43, 30, 0.1);
  color: var(--primary-red);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
}

.team-tag:hover {
  background-color: rgba(230, 43, 30, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(230, 43, 30, 0.2);
}

.team-member-grade {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--light-text);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.team-member-grade:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.team-member-role {
  display: inline-block;
  background-color: rgba(230, 43, 30, 0.1);
  color: var(--primary-red);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-top: 10px;
  transition: var(--transition);
}

.team-member-role:hover {
  background-color: rgba(230, 43, 30, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(230, 43, 30, 0.2);
}

.team-member-bio {
  font-size: 0.85rem;
  color: var(--secondary-text);
  margin-top: 15px;
  line-height: 1.5;
}

/* Section separators */
.section-separator {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.separator-line {
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
  position: relative;
}

.separator-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: var(--primary-red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-red);
}

/* Enhanced ticket cards */
.ticket-card {
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  /* Removed transform-style: preserve-3d and perspective for performance */
}

.ticket-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: rgba(230, 43, 30, 0.3);
}

.ticket-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.ticket-card:hover::before {
  transform: scaleX(1);
}

.ticket-card h3 {
  margin-bottom: 20px;
  color: var(--light-text);
  font-size: 1.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-right: 10px;
}

.original-price {
  font-size: 1.2rem;
  color: var(--secondary-text);
  text-decoration: line-through;
}

/* Enhanced schedule items */
.schedule-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  gap: 30px;
  transition: transform 0.3s ease;
  /* Removed transform-style: preserve-3d and perspective for performance */
}

.schedule-item:hover {
  transform: translateY(-5px);
}

.schedule-time {
  flex-shrink: 0;
  width: 120px;
  text-align: center;
  position: relative;
}

/* Advanced animation classes */
.animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.card-hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: rgba(230, 43, 30, 0.3);
}

.hover-animation {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.team-card-hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: rgba(230, 43, 30, 0.3);
}

/* Fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeIn {
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.schedule-time::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-red);
  background-color: var(--dark-bg);
  border-radius: 50%;
  top: 50%;
  left: 20px;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.schedule-time span {
  background-color: var(--primary-red);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
}

.schedule-details {
  flex-grow: 1;
  background-color: var(--card-bg);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
}

.schedule-details h3 {
  margin-bottom: 10px;
  color: var(--light-text);
}

.schedule-details p {
  margin: 0;
  color: var(--secondary-text);
}

/* Enhanced FAQ items */
.faq-item {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background-color: var(--card-bg);
  transition: transform 0.3s ease;
  /* Removed transform-style: preserve-3d and perspective for performance */
}

.faq-item:hover {
  transform: translateY(-5px);
}

.faq-question {
  padding: 20px 25px;
  margin: 0;
  background-color: rgba(17, 17, 17, 0.8);
  color: var(--light-text);
  cursor: pointer;
  position: relative;
  font-size: 1.2rem;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-red);
}

.faq-question::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 25px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px 25px;
  max-height: 500px;
}

/* Enhanced contact items */
.contact-item {
  text-align: center;
  padding: 30px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  width: 250px;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  /* Removed transform-style: preserve-3d and perspective for performance */
}

.contact-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.contact-item i {
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: 20px;
}

.contact-item h3 {
  margin-bottom: 15px;
  color: var(--light-text);
}

/* Enhanced social icons */
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--card-bg);
  color: var(--light-text);
  font-size: 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
  /* Removed transform-style: preserve-3d and perspective for performance */
}

.social-icons a:hover {
  background-color: var(--primary-red);
  transform: translateY(-5px);
}

/* Enhanced back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-red);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  /* Removed transform-style: preserve-3d and perspective for performance */
}

.back-to-top:hover {
  background-color: var(--primary-red-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(230, 43, 30, 0.4);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Enhanced loading animation */
.loading-spinner {
  width: 48px;
  height: 48px;
  border: 5px solid rgba(230, 43, 30, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-red);
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

/* Enhanced time boxes */
.time-box {
  background-color: var(--card-bg);
  padding: 15px;
  border-radius: 8px;
  min-width: 80px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  /* Removed transform-style: preserve-3d and perspective for performance */
}

.time-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.time-box span {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-red);
}

.time-box p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--secondary-text);
}

/* Enhanced navigation */
.nav-link {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

.nav-link:hover {
  color: var(--primary-red);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

/* Enhanced footer */
.footer {
  background: linear-gradient(135deg, #000000 0%, #111111 100%);
  padding: 50px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(230, 43, 30, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(230, 43, 30, 0.03) 0%, transparent 30%);
  z-index: 0;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo .logo-link {
  flex-direction: row;
  align-items: center;
}

.footer-logo-image {
  height: 30px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--secondary-text);
  text-decoration: none;
  transition: var(--transition);
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--primary-red);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: var(--secondary-text);
  font-size: 1.2rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
  background-color: var(--primary-red);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--secondary-text);
  font-size: 0.9rem;
}

/* Enhanced animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Fade in animation for scroll reveal */
.contact-item.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    padding-right: 0;
    margin-bottom: 50px;
  }
  
  .location-content {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 20px;
  }
  
  .team-controls {
    flex-direction: column;
    align-items: center;
  }
  
  .search-container {
    width: 100%;
    max-width: 300px;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--card-bg);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 27px -10px rgba(0, 0, 0, 0.7);
    border-radius: var(--border-radius);
    padding: 20px 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 15px 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero {
    padding: 150px 0 100px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .countdown {
    flex-wrap: wrap;
  }
  
  .time-box {
    min-width: 70px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .speakers-track {
    animation-duration: 40s;
  }
  
  .school-logo {
    margin-left: 10px;
  }
  
  .school-logo-image {
    width: 40px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 576px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title::after {
    width: 50px;
  }
  
  .time-box {
    min-width: 60px;
    padding: 10px;
  }
  
  .time-box span {
    font-size: 1.5rem;
  }
  
  .speakers-track {
    animation-duration: 30s;
  }
  
  .school-logo-image {
    width: 35px;
  }
}