* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100%;
  height: 100vh;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
/* Navbar */
.navbar {
  width: 100%;
  height: 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  color: white;
  position: fixed;
  z-index: 2;
}
.logo {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 2px;
  padding: 10px 20px;
}
.sidepanel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 100%; /* Specify a height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0;
  right: 0;
  background-color: #111; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidepanel */
}

/* The sidepanel links */
.sidepanel a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 1.2em;
  color: #818181;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidepanel a:hover {
  color: #00c2ff;
}

/* Position and style the close button (top right corner) */
.sidepanel .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style the button that is used to open the sidepanel */
.openbtn {
  height: 100%;
  font-size: 25px;
  cursor: pointer;
  background-color: #222;
  color: white;
  padding: 10px 15px;
  border: none;
}

.openbtn:hover {
  background-color: #444;
}

/* ========================================= home page=========================================== */
/* Slideshow container */
.slideshow {
  margin-top: 10px;
}
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* Courses */
.courses {
  padding: 60px 20px;
  background: #f5f5f5;
  text-align: center;
  border-radius: 15px;
  max-width: fit-content;
  margin: 20px 60px;
}
.courses h2 {
  margin-bottom: 30px;
  font-size: 2.5rem;
  color: #222;
}
.course-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.courses .course {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  width: 250px;
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: default;
}
.course:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.course h3 {
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Student Experience Section */
.experience-section {
  padding: 60px 20px;
  background: #e3f2fd;
  text-align: center;
  border-radius: 15px;
  max-width: 900px;
  margin: 0 auto 60px;
}
.experience-section h2 {
  margin-bottom: 30px;
  font-size: 2.5rem;
  color: #222;
}
.experience-container {
  max-width: 700px;
  margin: 0 auto;
}
.experience {
  display: none;
  font-size: 1.2em;
  font-style: italic;
  color: #555;
  background-color: #e3f2fd;
}

.experience.active {
  display: block;
}

/* Hero Section */
.hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-radius: 30px;
  margin: 20px;
}
.hero img.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: brightness(0.5);
}
.hero-content {
  z-index: 1;
  color: white;
  padding: 0 20px;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 1.2rem;
}
.hero-content .cta-button {
  display: inline-block;
  padding: 10px 20px;
  background: #00c2ff;
  color: white;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.3s;
}
.hero-content .cta-button:hover {
  background: #0099cc;
}
/* ========================================== ignou page========================================= */
/* Introduction Section */
.introduction {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 15px;
  text-align: center;
}
.introduction img {
  width: 250px;
  height: 150px;
  border-radius: 15px;
  box-shadow: 0 0 0 5px rgba(20, 19, 19, 0.5);
  margin-bottom: 20px;
}
.introduction h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}
.introduction p {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Assignment Section */
.assignments {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: #e3f2fd;
  border-radius: 15px;
  text-align: center;
}
.assignments img {
  width: 250px;
  height: 150px;
  border-radius: 15px;
  box-shadow: 0 0 0 5px rgba(20, 19, 19, 0.5);
  margin-bottom: 20px;
}
.assignments h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}
.assignments h3 {
  font-size: 1.5rem;
  margin: 20px 0 10px;
  color: #222;
}
.assignments p {
  font-size: 1rem;
  margin-bottom: 15px;
}
.assignments ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}
.assignments ul li {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.assignments ul li a {
  color: #00c2ff;
  font-weight: 500;
}
.assignments ul li a:hover {
  text-decoration: underline;
}
.assignments ul li:hover {
  transform: translateY(-3px);
}

/* Student Zone Section */
.student-zone {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 15px;
  text-align: center;
}
.student-zone img {
  width: 250px;
  height: 150px;
  border-radius: 15px;
  box-shadow: 0 0 0 5px rgba(20, 19, 19, 0.5);
  margin-bottom: 20px;
}
.student-zone h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}
.student-zone ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}
.student-zone ul li {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.student-zone ul li a {
  color: #00c2ff;
  font-weight: 500;
}
.student-zone ul li a:hover {
  text-decoration: underline;
}
.student-zone ul li:hover {
  transform: translateY(-3px);
}
/* ===================================== bosse page================================== */
/* Subjects Section */
.subjects {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: #e3f2fd;
  border-radius: 15px;
}
.subjects h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
  text-align: center;
}
.subjects h3 {
  font-size: 1.5rem;
  margin: 20px 0 10px;
  color: #222;
}
.subjects ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}
.subjects ul li {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.subjects ul li a {
  color: #00c2ff;
  font-weight: 500;
}
.subjects ul li a:hover {
  text-decoration: underline;
}
.subjects ul li:hover {
  transform: translateY(-3px);
}

/* Admission Image Section */
.admission-image {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}
.admission-image h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}
.admission-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* bosse links */
.bosse-links {
  padding: 1rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  max-width: 90%;
  margin: auto;
}
.bosse-links h1{
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
  text-align: center;
}
.bosse-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bosse-links li {
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.bosse-links a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}
.bosse-links a:hover {
  color: #007bff;
}
.bosse-links i {
  margin-right: 8px;
  color: #007bff;
}

/*=================================== happy holy school ===============================*/
/* Logo Section */
.logo-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
  background: #f5f5f5;
  border-radius: 15px;
}
.logo-section img {
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Gallery Sections (Competitions & Extracurricular) with Slider */
.gallery {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: #e3f2fd;
  border-radius: 15px;
  text-align: center;
}
.gallery h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}
.slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.slider .slides {
  position: relative;
  width: 100%;
  height: 400px;
}
.slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.slider .slide.active {
  opacity: 1;
}
.slider .slide img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
}
.slider .slide .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  font-size: 0.9rem;
  text-align: center;
}
.slider .dots {
  text-align: center;
  margin-top: 10px;
}
.slider .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #bbb;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.slider .dot.active {
  background: #00c2ff;
}

Map Section .map {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}
.map h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}
.map iframe {
  width: 100%;
  height: 400px;
  padding: 1em;
  border-radius: 50px;
  border: none;
}

/*==================================== computer education =========================*/

/* Course Section */
.course {
  /* border: 1px solid red; */
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 15px;
}
.course h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
  text-align: center;
}
.course h3 {
  font-size: 1.5rem;
  margin: 20px 0 10px;
  color: #222;
}
.course p,
.course ul {
  margin-bottom: 15px;
  font-size: 1rem;
}
.course ul {
  list-style: disc;
  margin-left: 20px;
}

/* Gallery Section */
.gallery {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}
.gallery h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/*========================================== about page ========================================*/
/* About Section */
.about {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 15px;
}
.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
  text-align: center;
}
.about p {
  margin-bottom: 15px;
  font-size: 1rem;
}
/* Affiliations Section */
.affiliations {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: #e3f2fd;
  border-radius: 15px;
  text-align: center;
}
.affiliations h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}
.affiliations ul {
  list-style: none;
  margin-bottom: 20px;
}
.affiliations ul li {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Leadership Section */
.leadership {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.leadership h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}
.leadership .persons {
  display: flex;
  width: 80%;
  gap: 2em;
  justify-content: center;
  align-items: center;
}
.leadership .person {
  width: 80%;
  padding: 1em;
  border: 2px solid gray;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.leadership img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/*====================================== Contact page ======================================*/
/* Centers Section */
.centers {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 15px;
}
.centers h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
  text-align: center;
}
.center {
  margin-bottom: 20px;
}
.center h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #222;
}
.center p {
  font-size: 1rem;
  margin-bottom: 5px;
}
.center a {
  color: #00c2ff;
}
.center a:hover {
  text-decoration: underline;
}

.feedback {
  padding: 1em;
}
.feedback-form {
  max-width: 500px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feedback-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

.feedback-form label {
  display: block;
  margin-top: 15px;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.feedback-form button {
  margin-top: 20px;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}

.success-message {
  text-align: center;
  color: green;
  margin-top: 15px;
}

/*========================================== courses page ======================================*/
/* Category Section */
.category {
  padding: 20px 20px;
  background: #f5f5f5;
  text-align: center;
  border-radius: 15px;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.category h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #222;
}
.course-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.course-card {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  width: 250px;
  transition: transform 0.3s ease;
  cursor: default;
}
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.course-card i {
  font-size: 3rem;
  color: #00c2ff;
  margin-bottom: 10px;
}
.course-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
}
.course-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}
.syllabus-btn,
.enroll-now {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
}
.syllabus-btn {
  background-color: #00c2ff;
}
.syllabus-btn:hover {
  background-color: #0099cc;
}
.enroll-now {
  background-color: #00c2ff;
}
.enroll-now:hover {
  background-color: #0099cc;
}
/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 10;
  padding: 1em;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-sizing: border-box;
}

/* Flex container for title and close button */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

/* Title styling */
#modal-title {
  font-size: 2rem;
  color: #222;
  margin: 0;
}

/* Close button styling */
.close-btn {
  font-size: 2rem;
  cursor: pointer;
  color: #333;
  background: none;
  border: none;
  padding: 0;
  margin-left: 20px;
  line-height: 1;
}

/* Modal content body text */
#modal-content {
  font-size: 1rem;
  color: #666;
}

/*============================================ achievements page ==============================*/

/* Container for all achievement columns */
.multi-achievement-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
  background-color: #f5f5f5;
}

/* Each column */
.achievement-slider-column {
  flex: 1 1 300px;
  max-width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Wrapper for slides in a column */
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
}

/* Each individual slide */
.multi-slide {
  display: none;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out;
}

.multi-slide img {
  width: 100%;
  height: 100%;
   /*object-fit: cover; */
}

/* Active slide visible */
.multi-slide.active {
  display: block;
}

/* Responsive: stack columns on mobile */
@media screen and (max-width: 768px) {
  .multi-achievement-section {
    flex-direction: column;
    align-items: center;
  }
}

/* testimonial */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

h1 {
  text-align: center;
  margin: 1rem;
}

.filter-container {
  text-align: center;
  margin-bottom: 2rem;
}

select {
  padding: 0.5rem;
  font-size: 1rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-card iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
}

.badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.8rem;
  background: #007bff;
  color: white;
  border-radius: 20px;
  font-size: 0.85rem;
}

/*=========================================== Footer ============================================*/
.footer {
  padding: 10px;
  background: #222;
  color: white;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 1em;
  /* position: fixed; */
}
.footer .outer {
  display: flex;
  align-items:center;
  justify-content: space-evenly;
}
.footer .head {
  width: 40%;
  display: flex;
  flex-direction: column;
}
.footer .head h3{
    margin-bottom: 1em;
}
.footer .contact-links {
  display: flex;
  flex-direction: column;
}
.footer a {
  display: inline-block;
  margin: 10px 5px;
  color: #00c2ff;
}
.contact-links a:hover {
  text-decoration: underline;
}
.footer-content .horizontal {
  width: 100vw;
  border: 1px solid white;
  margin-bottom: 1em;
}
.social-links {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.social-links a {
  margin: 0 10px;
  font-size: 1.5rem;
  color: #ffffff;
}
.social-links a:hover {
  color: #00c2ff;
}
@media screen and (max-width: 767px) {
  .footer .head,
  .contact-links,
  .social-links {
    width: 100%;
  }
  .footer .outer {
    flex-direction: column;
    align-items: center;
  }
  .footer .contact-links {
    flex-direction: row;
    justify-content: space-around;
    padding: 5px;
  }
  .footer .social-links {
    flex-direction: row;
    justify-content: space-evenly;
  }
  .leadership .persons {
    flex-direction: column;
  }
}
