
/* ================= SUB NAV ================= */
.sub-nav {
  background: var(--primary-color);
}

.sub-nav ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 12px 0;
  flex-wrap: wrap;
}

.sub-nav a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
}

/* ================= ACADEMICS ================= */
.academics {
  padding: 50px 0;
  font-size: 24px;
}

.school-list {
  margin-top: 20px;
}

.school-list li {
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* ================= GALLERY ================= */
.gallery {
  padding: 50px 0;
  text-align: center;
}

.gallery h2 {
  letter-spacing: 4px;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid div {
  height: 350px;
  border-radius: 5px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  border-radius: 5px;
}

.gallery-grid div:first-child img {
  object-position: center;
}

.slider-dots {
  text-align: center;
  margin: 30px 0;
}

.slider-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 5px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #444;
}

.slider-dots .active {
  background: #e51c23;
  border-color: #e51c23;
}


/* ================= RESPONSIVE ================= */
@media(max-width: 768px) {
  .gallery-grid {
      grid-template-columns: 1fr;
  }
}
