/**************************/
/* HEADER - SUBPAGES */
/**************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e4e4e7;

  /* Because we want header to be sticky later */
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
}

.logo {
  height: 8rem;
}

/**************************/
/* HERO SECTION - SUBPAGES*/
/**************************/

.section-hero {
  background-color: #e4e4e7;
  padding: 4.8rem 0 9.6rem 0;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

.hero-img {
  width: 100%;
}

/* Adding space below hero section */

/**************************/
/* ABOUT US PAGE */
/**************************/

.about-us-section {
  padding: 2rem 0 2rem 0;
  background-color: #ffffff;
}

.about-us {
max-width: 130rem;
margin: 0 auto;
padding: 0 1rem;
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
align-items: center;
}

.meet-the-team-image {
  width: 100%;
}

.feature-icon {
  color: #6985e2;
  height: 3.2rem;
  width: 3.2rem;
  background-color: #ebebee;
  margin-bottom: 3.2rem;
  padding: 1.6rem;
  border-radius: 50%;
}

.feature-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.feature-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

/**************************/
/* About Us page - contact section */
/**************************/
.contact-section {
  padding: 2rem 0 2rem 0;
  background-color: #e4e4e7;
}

.contact {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  }


/**************************/
/* EVENTS PAGE - Events section */
/**************************/

.section-events-gallery {
  background-color: #ffffff;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
}

.testimonials-container {
  padding: 9.6rem;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 4.8rem;
  column-gap: 8rem;
}

.testimonial-img {
  width: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.testimonial-name {
  font-size: 1.6rem;
  color: #6f6f6f;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  padding: 1.6rem;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  transition: all 0.4s;
}

.gallery-item img:hover {
  transform: scale(1.1);
}


/**************************/
/* EDUCATION PAGE */
/**************************/

.education-section {
  padding: 2rem 0 2rem 0;
  background-color: #ffffff;
}

/*
.education {
display: grid;
grid-template-columns: 1fr 1fr;
 max-width: 130rem; 
margin: 0 auto;
padding: 0 1rem;
}
*/

.education {
display: grid;
grid-template-columns: 1fr 1fr; 
margin: 0 auto;
padding: 0 1rem;
}

.heading-tertiary-education {
  font-weight: 700;
  color: #333;
  letter-spacing: -0.5px;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;

}