/* =========================================================
   PREMIUM SARASWATI FOUNDATION WEBSITE
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  background: #f8f8f8;
  color: #333;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

/* =========================================================
   COLOR SYSTEM
========================================================= */

:root {
  --primary: #3977ad;
  --primary-dark: #285f91;
  --accent: #f47778;
  --accent-dark: #e45e61;

  --cream: #faf8f5;
  --light-blue: #eef5fa;

  --dark: #111820;
  --text: #555;
  --white: #fff;

  --shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   MAIN PAGE
========================================================= */

.website {
  width: calc(100% - 40px);
  max-width: 1800px;
  margin: 20px auto;

  background: #fff;

  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);

  overflow: hidden;
}

/* =========================================================
   TOP INTRO SECTION
========================================================= */

.top-section {
  min-height: 491px;

  display: grid;

  grid-template-columns:
    1fr
    320px
    1fr;

  overflow: hidden;
}

/* LEFT */

.foundation-box {
  background: var(--accent);

  color: white;

  display: flex;
  align-items: center;

  padding: 45px;
}

.foundation-box .top-content {
  max-width: 380px;
}

.foundation-box h1 {
  font-size: 30px;
  font-weight: 400;
  font-family: "Roboto Slab", serif;
  margin-bottom: 20px;
}

.foundation-box p {
  font-family: Arial, sans-serif;

  font-size: 16px;

  line-height: 1.8;

  opacity: 0.95;
}

/* CENTER IMAGE */

.chairman-box {
  position: relative;

  min-height: 330px;

  overflow: hidden;

  background: #ddd;
}

.chairman-box img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.chairman-name {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;

  padding: 15px;

  text-align: center;

  color: white;

  font-size: 13px;

  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

/* RIGHT */

.message-box {
  background: var(--primary);

  color: white;

  display: flex;
  align-items: center;

  padding: 45px;
}

.message-box .top-content {
  max-width: 380px;
}

.message-box h2 {
  font-size: 27px;

  font-weight: 400;

  margin-bottom: 20px;
  font-family: "Roboto Slab", serif;
}

.message-box p {
  font-family: Arial, sans-serif;

  font-size: 16px;

  line-height: 1.8;
}

/* ARROW */

.round-arrow {
  display: flex;

  width: 34px;
  height: 34px;

  margin-top: 25px;

  border: 1px solid rgba(255, 255, 255, 0.7);

  border-radius: 50%;

  align-items: center;
  justify-content: center;

  transition: 0.3s;
}

.round-arrow:hover {
  background: white;
  color: var(--primary);
}

/* =========================================================
   FOCUS AREA
========================================================= */

.focus-section {
  padding: 80px 30px;

  background: white;
}

.focus-container {
  width: 600px;
  height: 520px;

  max-width: 100%;

  position: relative;

  margin: auto;
}

/* CENTER */

.focus-center {
  position: absolute;

  width: 145px;
  height: 145px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  border: 3px solid var(--primary);

  border-radius: 50%;

  background: white;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  z-index: 5;

  display: flex;

  flex-direction: column;

  justify-content: center;
  align-items: center;
}

.focus-symbol {
  width: 55px;
  height: 55px;

  position: relative;

  margin-bottom: 8px;
}

.focus-symbol span {
  position: absolute;

  left: 20px;
  top: 0;

  color: var(--primary);

  font-size: 32px;
}

.focus-symbol i {
  position: absolute;

  width: 35px;
  height: 45px;

  left: 8px;
  top: 12px;

  border-left: 9px solid var(--accent);

  border-radius: 50%;

  transform: rotate(-25deg);
}

.focus-center strong {
  color: var(--primary);

  font-family: Arial, sans-serif;

  font-size: 14px;

  letter-spacing: 4px;

  line-height: 1.3;
}
.focus-item a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* =========================================================
   CONNECTING LINES
========================================================= */

.connector {
  position: absolute;

  width: 220px;
  height: 2px;

  left: 50%;
  top: 50%;

  background: var(--primary);

  transform-origin: left center;

  opacity: 0.75;

  z-index: 1;
}

.connector-1 {
  transform: rotate(-137deg);
}

.connector-2 {
  transform: rotate(-43deg);
}

.connector-3 {
  transform: rotate(137deg);
}

.connector-4 {
  transform: rotate(43deg);
}

/* =========================================================
   FOCUS CIRCLES
========================================================= */

.focus-item {
  position: absolute;

  width: 125px;
  height: 125px;

  overflow: hidden;

  border-radius: 50%;

  border: 3px solid var(--primary);

  background: white;

  z-index: 3;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.focus-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.focus-item:hover img {
  transform: scale(1.08);
}

.focus-item div {
  position: absolute;

  left: 0;
  bottom: 28px;

  width: 100%;

  text-align: center;

  color: white;

  font-family: Arial, sans-serif;

  font-size: 15px;

  line-height: 1.15;

  text-shadow: 0 2px 8px #000;
}

/* POSITIONS */

.health {
  left: 25px;
  top: 15px;
}

.education {
  right: 25px;
  top: 15px;
}

.training {
  left: 25px;
  bottom: 15px;
}

.women {
  right: 25px;
  bottom: 15px;
}

/* =========================================================
   CTA SECTION
========================================================= */

.cta-section {
  min-height: 270px;

  background: linear-gradient(135deg, var(--primary), var(--primary-dark));

  display: flex;

  align-items: center;
  justify-content: center;

  text-align: center;

  position: relative;
}

.cta-content {
  color: white;

  padding: 30px;
}

.cta-content h2 {
  font-size: 27px;

  font-weight: 400;

  letter-spacing: 1px;

  margin-bottom: 10px;
}

.cta-content p {
  font-size: 18px;

  margin-bottom: 25px;
}

.join-button {
  display: inline-block;

  padding: 12px 27px;

  background: var(--accent);

  color: white;

  font-family: Arial, sans-serif;

  font-size: 12px;

  font-weight: bold;

  letter-spacing: 0.5px;

  border-radius: 4px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

  transition: 0.3s;
}

.join-button:hover {
  background: white;

  color: var(--accent);

  transform: translateY(-2px);
}

/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
  padding: 75px 60px;

  background: var(--cream);
}

/* INTRO */

.about-intro {
  max-width: 750px;

  margin: 0 auto 55px;

  text-align: center;
}

.about-intro h3 {
  color: var(--primary);

  font-size: 28px;
  line-height: 34px;

  font-weight: 400;
  font-family: "Roboto Slab", serif;
}

.about-intro p {
  color: var(--accent);

  font-size: 21px;

  font-style: italic;

  line-height: 1.7;

  margin-top: 12px;
  font-weight: 500px;
}

/* COLUMNS */

.about-columns {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 35px;
}

/* CARD */

.about-column {
  background: white;

  padding: 25px;

  text-align: center;

  border-radius: 8px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);

  transition: 0.3s;
}

.about-column:hover {
  transform: translateY(-6px);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* IMAGE */

.round-photo {
  width: 110px;
  height: 110px;

  margin: 0 auto 20px;

  overflow: hidden;

  border-radius: 50%;

  border: 3px solid white;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.round-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* TITLE */

.about-column h3 {
  color: var(--primary);

  font-size: 15px;

  letter-spacing: 1px;

  margin-bottom: 15px;
}

.about-column p {
  color: var(--text);

  font-family: Arial, sans-serif;

  font-size: 12px;

  line-height: 1.8;

  text-align: left;
}

/* =========================================================
   STORIES
========================================================= */

.stories-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #03000091 !important;
  background-image: url("../image/impact-awards.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  -webkit-background-size: cover;
}

.stories-section > h2 {
  text-align: center;

  font-size: 40px;

  font-weight: 400;

  margin-bottom: 45px;
  color: #fff;
  font-family: "Roboto Slab", serif;
}

/* COLLAGE */

.impact-collage {
  width: 100%;
  height: 270px;

  overflow: hidden;

  margin-bottom: 55px;

  border-radius: 6px;

  opacity: 0.65;
}

.impact-collage img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* STORIES */

.stories-list {
  max-width: 850px;

  margin: auto;
}

.story {
  display: flex;

  gap: 18px;

  margin-bottom: 25px;

  padding-bottom: 25px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar {
  width: 48px;
  height: 48px;

  flex: 0 0 48px;

  background: #eee;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #999;

  border-radius: 3px;
}

.story-text p {
  color: #ccc;

  font-family: Arial, sans-serif;

  font-size: 11px;

  line-height: 1.7;
}

.story-text span {
  display: block;

  color: var(--accent);

  font-size: 12px;

  margin-top: 8px;
}

/* =========================================================
   ASSOCIATIONS
========================================================= */

.association-section {
  padding: 65px 60px 75px;

  background: white;
}

.association-section > h2 {
  text-align: center;

  color: var(--primary);

  font-size: 25px;

  font-weight: 400;

  margin-bottom: 35px;
}

.association-list {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border: 1px solid #eee;
}

.association {
  height: 95px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;

  transition: 0.3s;
}

.association:hover {
  background: #fafafa;
}

.association img {
  max-width: 100px;
  max-height: 55px;

  object-fit: contain;
}

/* =========================================================
   FOOTER
========================================================= */

footer {
  background: var(--accent);

  color: white;
}

.footer-columns {
  padding: 45px 50px;

  display: grid;

  grid-template-columns:
    1.2fr
    1fr
    1fr
    1.2fr;

  gap: 40px;
}

.footer-column h4 {
  font-size: 28px;

  font-weight: 400;

  margin-bottom: 15px;
  font-family: "Roboto Slab", serif;
}

.footer-column p,
.footer-column a {
  display: block;

  color: white;

  font-family: Arial, sans-serif;

  font-size: 16px;

  line-height: 2;
}

.footer-column a:hover {
  text-decoration: underline;
}

.brochure {
  width: 153px;
  height: 165px;

  object-fit: cover;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
  padding: 15px 50px;

  border-top: 1px solid rgba(255, 255, 255, 0.2);

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.footer-bottom > span {
  font-family: Arial, sans-serif;

  font-size: 10px;
}

.social-icons {
  display: flex;

  gap: 6px;
}

.social-icons a {
  width: 28px;
  height: 28px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: var(--primary);

  color: white;

  font-family: Arial, sans-serif;

  font-size: 11px;

  border-radius: 3px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .top-section {
    grid-template-columns: 1fr 260px 1fr;
  }

  .foundation-box,
  .message-box {
    padding: 30px;
  }

  .foundation-box h1 {
    font-size: 24px;
  }

  .message-box h2 {
    font-size: 21px;
  }

  .focus-container {
    width: 520px;
  }

  .about-section {
    padding: 55px 35px;
  }

  .stories-section {
    padding: 60px 35px;
  }

  .association-section {
    padding: 50px 35px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
  .website {
    width: 100%;

    box-shadow: none;
  }

  /* TOP */

  .top-section {
    grid-template-columns: 1fr;

    min-height: auto;
  }

  .foundation-box {
    min-height: 220px;

    padding: 35px 25px;
  }

  .chairman-box {
    height: 300px;
  }

  .message-box {
    min-height: 220px;

    padding: 35px 25px;
  }

  /* FOCUS */

  .focus-section {
    padding: 50px 15px;
  }

  .focus-container {
    width: 350px;
    height: 390px;
  }

  .focus-center {
    width: 105px;
    height: 105px;
  }

  .focus-center strong {
    font-size: 10px;
  }

  .focus-item {
    width: 90px;
    height: 90px;
  }

  .focus-item div {
    font-size: 10px;

    bottom: 18px;
  }

  .health {
    left: 0;
    top: 5px;
  }

  .education {
    right: 0;
    top: 5px;
  }

  .training {
    left: 0;
    bottom: 5px;
  }

  .women {
    right: 0;
    bottom: 5px;
  }

  /* CTA */

  .cta-section {
    min-height: 220px;
  }

  .cta-content h2 {
    font-size: 20px;
  }

  .cta-content p {
    font-size: 14px;
  }

  /* ABOUT */

  .about-section {
    padding: 50px 20px;
  }

  .about-intro h2 {
    font-size: 20px;
  }

  .about-columns {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  /* STORIES */

  .stories-section {
    padding: 50px 20px;
  }

  .stories-section > h2 {
    font-size: 23px;
  }

  .impact-collage {
    height: 180px;
  }

  /* ASSOCIATIONS */

  .association-section {
    padding: 50px 20px;
  }

  .association-list {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FOOTER */

  .footer-columns {
    padding: 35px 20px;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
  }

  .footer-bottom {
    padding: 15px 20px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
  .focus-container {
    width: 300px;
    height: 350px;
  }

  .focus-item {
    width: 78px;
    height: 78px;
  }

  .focus-center {
    width: 95px;
    height: 95px;
  }

  .connector {
    width: 115px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   VIDEO CTA SECTION
========================================= */

.cta-section {
  position: relative;

  width: 100%;

  height: 745px;

  overflow: hidden;

  display: flex;

  align-items: center;
  justify-content: center;

  text-align: center;

  background: #3873ab;
}

/* =========================================
   BACKGROUND VIDEO
========================================= */

.cta-video {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 100%;
  height: 100%;

  transform: translate(-50%, -50%);

  object-fit: cover;

  z-index: 1;
}

/* =========================================
   DARK OVERLAY
========================================= */

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000a3;
  z-index: 2;
}

/* =========================================
   CTA CONTENT
========================================= */

.cta-content {
  position: relative;

  z-index: 3;

  color: #ffffff;

  padding: 30px;

  max-width: 800px;

  margin: 0 auto;
}

.cta-content h2 {
  font-size: 50px;

  font-weight: 400;

  letter-spacing: 1px;

  margin-bottom: 15px;
  font-family: "Roboto Slab", serif;
}

.cta-content p {
  font-size: 18px;

  margin-bottom: 25px;
}

/* =========================================
   JOIN BUTTON
========================================= */

.join-button {
  display: inline-block;

  padding: 12px 27px;

  background: #f47778;

  color: #ffffff;

  font-family: Arial, sans-serif;

  font-size: 12px;

  font-weight: bold;

  letter-spacing: 0.5px;

  border-radius: 4px;

  transition: 0.3s;
}

.join-button:hover {
  background: #ffffff;

  color: #f47778;

  transform: translateY(-2px);
}
/* ================================
   ABOUT COLUMNS SECTION
   ================================ */

.about-columns {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 30px 70px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;

  background: transparent;
}

/* EACH COLUMN */

.about-column {
  text-align: center;

  /* Remove card appearance */
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;

  padding: 30px;
}

/* ================================
   ROUND PHOTO
   ================================ */

.round-photo {
  width: 225px;
  height: 225px;

  margin: 0 auto 35px;

  border-radius: 50%;
  overflow: hidden;

  /* No shadow */
  box-shadow: none;
}

/* IMAGE */

.round-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
}

/* ================================
   HEADING
   ================================ */

.about-column h3 {
  margin: 0 0 20px;

  color: #2874b2;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 25px;
  font-weight: 500;

  text-align: center;
}

/* ================================
   PARAGRAPH
   ================================ */

.about-column p {
  margin: 0;

  color: #111;

  font-size: 17px;
  line-height: 1.75;

  text-align: left;
}

/* ================================
   TABLET
   ================================ */

@media (max-width: 991px) {
  .about-columns {
    gap: 35px;
    padding: 40px 25px 60px;
  }

  .round-photo {
    width: 190px;
    height: 190px;
  }

  .about-column h3 {
    font-size: 22px;
  }

  .about-column p {
    font-size: 15px;
  }
}

/* ================================
   MOBILE
   ================================ */

@media (max-width: 767px) {
  .about-columns {
    grid-template-columns: 1fr;

    gap: 55px;

    padding: 40px 25px 60px;
  }

  .round-photo {
    width: 190px;
    height: 190px;

    margin-bottom: 25px;
  }

  .about-column h3 {
    font-size: 23px;
    margin-bottom: 15px;
  }

  .about-column p {
    font-size: 15px;
    line-height: 1.7;
  }
}
/* =====================================
   ASSOCIATIONS SECTION
   ===================================== */

.association-section {
  width: 100%;
  background: #fff;

  padding: 55px 4% 70px;
}

/* HEADING */

.association-section h2 {
  text-align: center;

  color: #2874b2;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 34px;
  font-weight: 400;

  margin: 0 0 55px;
}

/* =====================================
   ASSOCIATION LIST
   ===================================== */

.association-list {
  width: 100%;
  max-width: 1240px;

  margin: 0 auto;

  /* ONE ASSOCIATION PER ROW */
  display: grid;
  grid-template-columns: 1fr;

  gap: 5px;
}

/* =====================================
   EACH ASSOCIATION BOX
   ===================================== */

.association {
  width: 100%;
  height: 133px;

  border: 1px solid #d5d5d5;

  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px;
}

/* =====================================
   ASSOCIATION LOGO
   ===================================== */

.association img {
  max-width: 190px;
  max-height: 105px;

  width: auto;
  height: auto;

  object-fit: contain;

  display: block;
}
/* =========================================
   REMOVE SIDE GAPS FROM ENTIRE WEBSITE
   ========================================= */

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
}

.website {
  width: 100%;
  max-width: none;
  margin: 0;
  box-shadow: none;
  border-radius: 0;
}

/* Make all major sections full width */

.top-section,
.focus-section,
.cta-section,
.about-section,
.stories-section,
.association-section,
footer {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
/* ==============================
   FOOTER BOTTOM
================================ */

.footer-bottom {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 25px 45px;

  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* COPYRIGHT */

.footer-bottom span {
  color: #fff;
  font-size: 15px;
}

/* ==============================
   SOCIAL ICONS
================================ */

.social-icons {
  display: flex;
  align-items: center;

  gap: 6px;
}

/* EACH ICON */

.social-icons a {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  text-decoration: none;

  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;

  border-radius: 2px;
}

/* FACEBOOK */

.social-icons .facebook {
  background: #3b5998;
}

/* GOOGLE */

.social-icons .google {
  background: #db4437;
}

/* TWITTER */

.social-icons .twitter {
  background: #1da1f2;
}

/* YOUTUBE */

.social-icons .youtube {
  background: #e62117;
}

/* LINKEDIN */

.social-icons .linkedin {
  background: #0077b5;
}

/* HOVER */

.social-icons a:hover {
  opacity: 0.85;
}
/* =========================================
   PAGE HEADER
========================================= */

.page-header {
  width: 100%;
  height: 100px;

  background: #fff;

  margin: 0;
  padding: 0;

  position: relative;
  z-index: 1000;
}

/* HEADER CONTAINER */

.header-container {
  width: 100%;
  height: 100%;

  padding: 0 55px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================
   LOGO
========================================= */

.header-logo {
  display: flex;
  align-items: center;

  text-decoration: none;
}

.header-logo img {
  width: 250px;
  height: auto;

  display: block;
}

/* =========================================
   NAVIGATION
========================================= */

.main-navigation {
  display: flex;
  align-items: center;

  gap: 38px;
}

.main-navigation a {
  color: #f47778;

  text-decoration: none;

  font-family: Arial, sans-serif;

  font-size: 16px;
  font-weight: 600;

  white-space: nowrap;

  transition: 0.3s ease;
}

/* DROPDOWN ARROW */

.main-navigation .arrow {
  font-size: 15px;

  margin-left: 3px;

  position: relative;
  top: -1px;
}

/* HOVER */

.main-navigation a:hover {
  color: #e85d60;
}
@media (max-width: 991px) {
  .page-header {
    height: 80px;
  }

  .header-container {
    padding: 0 20px;
  }

  .header-logo img {
    width: 190px;
  }

  .main-navigation {
    display: none;
  }
}
.mobile-menu-btn {
  display: none;
}
.mobile-menu {
  display: none;
}
@media (max-width: 991px) {
  /* MOBILE HEADER */

  .page-header {
    width: 100%;
    height: 70px;
  }

  .header-container {
    width: 100%;
    height: 70px;

    padding: 0 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* LOGO LEFT */

  .header-logo {
    order: 1;
  }

  .header-logo img {
    width: 190px;
    height: auto;
  }

  /* MENU BUTTON - RIGHT */

  .mobile-menu-btn {
    display: block;

    order: 2;

    margin-left: auto;

    border: none;
    background: transparent;

    color: #f47778;

    font-size: 30px;

    cursor: pointer;
  }

  /* HIDE DESKTOP NAVIGATION */

  .main-navigation {
    display: none;
  }

  /* =================================
       MOBILE SLIDE MENU
    ================================= */

  .mobile-menu {
    display: block;

    position: fixed;

    top: 0;
    left: -50%;

    width: 50%;
    height: 100vh;

    background: #fff;

    z-index: 9999;

    transition: left 0.35s ease;

    overflow-y: auto;
  }

  /* OPEN */

  .mobile-menu.active {
    left: 0;
  }

  /* OVERLAY */

  .mobile-menu-overlay {
    display: block;

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background: rgba(0, 0, 0, 0.45);

    z-index: 9998;

    opacity: 0;
    visibility: hidden;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}
/* =========================================
   MOBILE MENU - HIDDEN ON DESKTOP
========================================= */

.mobile-menu-btn {
  display: none;
}

.mobile-menu {
  display: none;
}

.mobile-menu-overlay {
  display: none;
}

/* =========================================
   MOBILE ONLY
========================================= */

@media (max-width: 991px) {
  /* HEADER */

  .page-header {
    width: 100%;
    height: 70px;
    background: #fff;
  }

  .header-container {
    width: 100%;
    height: 70px;

    padding: 0 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* LOGO LEFT */

  .header-logo {
    order: 1;
  }

  .header-logo img {
    width: 150px;
    height: 50px;
    display: block;
  }

  /* MENU BUTTON RIGHT */

  .mobile-menu-btn {
    display: block;

    order: 2;

    margin-left: auto;

    border: none;
    background: transparent;

    color: #f47778;

    font-size: 30px;

    cursor: pointer;
  }

  /* HIDE DESKTOP NAV */

  .main-navigation {
    display: none;
  }

  /* =====================================
       MOBILE MENU
       OPENS FROM LEFT
    ===================================== */

  .mobile-menu {
    display: block;

    position: fixed;

    top: 0;
    left: -50%;

    width: 50%;
    height: 100vh;

    background: #fff;

    z-index: 9999;

    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.2);

    transition: left 0.35s ease;

    overflow-y: auto;
  }

  /* OPEN */

  .mobile-menu.active {
    left: 0;
  }

  /* =====================================
       OVERLAY
    ===================================== */

  .mobile-menu-overlay {
    display: block;

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background: rgba(0, 0, 0, 0.45);

    z-index: 9998;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* =====================================
       CLOSE BUTTON
    ===================================== */

  .mobile-menu-header {
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding: 0 20px;

    border-bottom: 1px solid #eee;
  }

  .mobile-menu-close {
    border: none;

    background: transparent;

    color: #f47778;

    font-size: 32px;

    line-height: 1;

    cursor: pointer;
  }

  /* =====================================
       MENU LINKS
    ===================================== */

  .mobile-navigation {
    display: flex;

    flex-direction: column;

    padding: 10px 20px;
  }

  .mobile-navigation a {
    display: block;

    padding: 16px 5px;

    border-bottom: 1px solid #eee;

    color: #f47778;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;
  }
}
/* =====================================================
   ABOUT FOUNDATION HERO
===================================================== */

.about-hero {
  width: 100%;
  height: 280px;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("../image/impact-awards.webp");

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.about-hero-overlay {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero h1 {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 48px;
  font-weight: normal;

  text-align: center;
}

/* =====================================================
   ABOUT FOUNDATION CONTENT
===================================================== */

.about-content {
  width: 100%;

  padding: 55px 40px 20px;

  background: #ffffff;
}

.about-content p {
  margin: 0 0 18px 0;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 16px;

  line-height: 1.65;

  color: #222;

  text-align: justify;
}

/* =====================================================
   COMMON SECTION
===================================================== */

.content-section {
  width: 100%;

  padding: 15px 40px 30px;

  background: #ffffff;
}

.section-title {
  width: 100%;

  margin: 20px 0 35px;

  text-align: center;
}

.section-title h2 {
  position: relative;

  display: inline-block;

  margin: 0;

  padding-bottom: 15px;

  color: #3b80b9;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 36px;

  font-weight: normal;
}

/* Horizontal line below heading */

.section-title h2::after {
  content: "";

  position: absolute;

  left: 50%;

  bottom: 0;

  width: 100vw;

  height: 1px;

  transform: translateX(-50%);

  background: #e5e5e5;
}

/* =====================================================
   OUR FOUNDER
===================================================== */

.founder-content {
  width: 100%;

  display: grid;

  grid-template-columns: 23% 77%;

  gap: 25px;

  align-items: start;
}

.founder-image {
  width: 100%;
}

.founder-image img {
  width: 100%;

  height: 350px;

  display: block;

  object-fit: cover;
}

.founder-text {
  width: 100%;
}

.founder-text p {
  margin: 0 0 14px 0;

  color: #222;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 16px;

  line-height: 1.6;

  text-align: justify;
}

/* =====================================================
   CHAIRMAN'S MESSAGE
===================================================== */

.chairman-content {
  width: 100%;
}

.chairman-content p {
  margin: 0 0 16px 0;

  color: #222;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 16px;

  line-height: 1.6;

  text-align: justify;
}

/* First highlighted paragraph */

.chairman-intro {
  margin-bottom: 20px !important;

  color: #f27d7d !important;

  font-family: Georgia, "Times New Roman", serif !important;

  font-size: 21px !important;

  font-style: italic;

  font-weight: 500;

  line-height: 1.45 !important;

  text-align: justify;
}

/* Last highlighted paragraph */

.chairman-final {
  margin-top: 20px !important;

  color: #f27d7d !important;

  font-family: Georgia, "Times New Roman", serif !important;

  font-size: 21px !important;

  font-style: italic;

  font-weight: 500;

  line-height: 1.45 !important;

  text-align: justify;
}

/* =====================================================
   BROCHURE
===================================================== */

/* =====================================================
   TABLET / MOBILE
===================================================== */

@media (max-width: 991px) {
  /* HERO */

  .about-hero {
    height: 220px;
  }

  .about-hero h1 {
    font-size: 38px;
  }

  /* ABOUT CONTENT */

  .about-content {
    padding: 35px 20px 15px;
  }

  .about-content p {
    font-size: 14px;

    line-height: 1.6;

    text-align: left;
  }

  /* SECTIONS */

  .content-section {
    padding: 15px 20px 30px;
  }

  .section-title h2 {
    font-size: 29px;
  }

  /* FOUNDER */

  .founder-content {
    display: block;
  }

  .founder-image {
    margin-bottom: 25px;

    text-align: center;
  }

  .founder-image img {
    width: 100%;

    max-width: 400px;

    margin: 0 auto;
  }

  .founder-text p {
    text-align: left;
  }

  /* CHAIRMAN */

  .chairman-content p {
    text-align: left;
  }

  .chairman-intro,
  .chairman-final {
    font-size: 17px !important;

    text-align: left;
  }

  /* FOOTER */
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 600px) {
  /* HERO */

  .about-hero {
    height: 180px;
  }

  .about-hero h1 {
    font-size: 30px;
  }

  /* ABOUT */

  .about-content {
    padding: 30px 15px 10px;
  }

  /* SECTIONS */

  .content-section {
    padding: 10px 15px 25px;
  }

  .section-title {
    margin-bottom: 25px;
  }

  .section-title h2 {
    font-size: 26px;
  }
}
/* =========================================
   WORK WITH US PAGE
   HEADER AND FOOTER NOT INCLUDED
========================================= */

/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #222;
}

/* =========================================
   HERO SECTION
========================================= */

.work-hero {
  width: 100%;
  height: 280px;

  position: relative;

  background-image: url("../image/impact-awards.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

/* DARK OVERLAY */

.work-hero-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.35);
}

/* HERO TITLE */

.work-hero-content {
  position: relative;
  z-index: 2;

  text-align: center;
}

.work-hero-content h1 {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 52px;
  font-weight: 400;

  line-height: 1.2;
}

/* =========================================
   CONTRIBUTION SECTION
========================================= */

.contribute-section {
  width: 100%;
  background: #ffffff;

  padding: 58px 0 85px;
}

.contribute-container {
  width: 100%;
  max-width: 1400px;

  margin: 0 auto;
  padding: 0 75px;
}

/* SECTION TITLE */

.contribute-container h3 {
  margin: 0 0 55px;

  color: #f47b7d;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 28px;
  font-weight: 400;

  line-height: 1.4;
}

/* =========================================
   FORM + IMAGE
========================================= */

.contribute-content {
  width: 100%;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 32px;

  align-items: center;
}

/* =========================================
   FORM
========================================= */

.work-form {
  width: 100%;
}

.work-form form {
  width: 100%;
}

.form-row {
  width: 100%;

  display: grid;

  grid-template-columns: 125px 1fr;

  gap: 12px;

  align-items: center;

  margin-bottom: 18px;
}

.form-row label {
  color: #222;

  font-size: 16px;

  line-height: 1.4;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;

  border: 1px solid #aaa;

  background: #ffffff;

  padding: 8px 10px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 14px;

  outline: none;
}

.form-row input,
.form-row select {
  height: 32px;
}

.form-row textarea {
  height: 130px;

  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #4d86b8;
}

/* MESSAGE ROW */

.message-row {
  align-items: center;
}

/* =========================================
   SUBMIT BUTTON
========================================= */

.form-submit {
  margin-left: 137px;

  margin-top: 22px;
}

.form-submit button {
  border: none;

  background: #397caf;

  color: #ffffff;

  padding: 9px 18px;

  border-radius: 4px;

  font-size: 14px;

  cursor: pointer;

  transition: 0.3s ease;
}

.form-submit button:hover {
  background: #28648f;
}

/* =========================================
   IMAGE
========================================= */

.work-image {
  width: 610px !important;

  padding: 0;
}

.work-image img {
  display: block;

  width: 610px;

  height: 520px;

  max-height: 380px;

  object-fit: cover;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
  .work-hero {
    height: 250px;
  }

  .work-hero-content h1 {
    font-size: 45px;
  }

  .contribute-container {
    padding: 0 30px;
  }

  .contribute-content {
    grid-template-columns: 1fr 1fr;

    gap: 25px;
  }

  .form-row {
    grid-template-columns: 110px 1fr;
  }

  .form-submit {
    margin-left: 122px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .work-hero {
    height: 210px;
  }

  .work-hero-content h1 {
    font-size: 38px;
  }

  .contribute-section {
    padding: 40px 0 55px;
  }

  .contribute-container {
    padding: 0 20px;
  }

  .contribute-container h2 {
    font-size: 24px;

    margin-bottom: 35px;

    text-align: left;
  }

  .contribute-content {
    display: flex;

    flex-direction: column;

    gap: 35px;

    align-items: stretch;
  }

  /* FORM */

  .form-row {
    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 7px;

    margin-bottom: 18px;
  }

  .form-row label {
    font-size: 14px;
  }

  .form-row input,
  .form-row select {
    height: 40px;
  }

  .form-row textarea {
    height: 110px;
  }

  .form-submit {
    margin-left: 0;

    margin-top: 10px;
  }

  .form-submit button {
    padding: 10px 22px;
  }

  /* IMAGE */

  .work-image {
    width: 100%;
  }

  .work-image img {
    width: 100%;

    max-height: none;

    object-fit: cover;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .work-hero {
    height: 180px;
  }

  .work-hero-content h1 {
    font-size: 32px;
  }

  .contribute-section {
    padding: 32px 0 45px;
  }

  .contribute-container {
    padding: 0 15px;
  }

  .contribute-container h2 {
    font-size: 22px;
  }
}
/* =========================================
   MOBILE RESPONSIVE
   ========================================= */

@media (max-width: 767px) {
  /* HERO */
  .work-hero {
    width: 100%;
    height: 200px;
    background-position: center center;
  }

  .work-hero-content {
    width: 100%;
    padding: 0 20px;
  }

  .work-hero-content h1 {
    font-size: 34px;
    line-height: 1.2;
    text-align: center;
  }

  /* CONTRIBUTION SECTION */
  .contribute-section {
    width: 100%;
    padding: 35px 0 50px;
    overflow: hidden;
  }

  .contribute-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
  }

  /* TITLE */
  .contribute-container h2,
  .contribute-container h3 {
    width: 100%;
    margin: 0 0 30px;
    font-size: 25px;
    line-height: 1.3;
    text-align: left;
    box-sizing: border-box;
  }

  /* FORM + IMAGE */
  .contribute-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: stretch;
    box-sizing: border-box;
  }

  /* FORM */
  .work-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .work-form form {
    width: 100%;
    box-sizing: border-box;
  }

  /* FORM ROW */
  .form-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    margin-bottom: 18px;
    box-sizing: border-box;
  }

  /* LABEL */
  .form-row label {
    width: 100%;
    font-size: 14px;
    line-height: 1.4;
    box-sizing: border-box;
  }

  /* INPUTS */
  .form-row input,
  .form-row select,
  .form-row textarea {
    width: 100%;
    max-width: 280px;
    min-width: 0;

    box-sizing: border-box;

    border: 1px solid #aaa;
    background: #fff;

    padding: 10px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
  }

  /* INPUT + SELECT HEIGHT */
  .form-row input,
  .form-row select {
    height: 42px;
  }

  /* TEXTAREA */
  .form-row textarea {
    height: 120px;
    min-height: 120px;
    resize: vertical;
  }

  /* FOCUS */
  .form-row input:focus,
  .form-row select:focus,
  .form-row textarea:focus {
    border-color: #397caf;
    outline: none;
  }

  /* MESSAGE ROW */
  .message-row {
    align-items: stretch;
  }

  /* SUBMIT BUTTON */
  .form-submit {
    width: 100%;
    margin: 5px 0 0;
    padding: 0;
  }

  .form-submit button {
    display: inline-block;

    padding: 11px 24px;

    border: none;
    border-radius: 4px;

    background: #397caf;
    color: #fff;

    font-size: 14px;

    cursor: pointer;
  }

  /* IMAGE */
  .work-image {
    width: 100% !important;
    max-width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  .work-image img {
    display: block;

    width: 100% !important;
    max-width: 100%;

    height: auto;
    max-height: none;

    object-fit: cover;

    box-sizing: border-box;
  }
}

/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {
  .work-hero {
    height: 180px;
  }

  .work-hero-content {
    padding: 0 15px;
  }

  .work-hero-content h1 {
    font-size: 30px;
  }

  .contribute-section {
    padding: 30px 0 45px;
  }

  .contribute-container {
    padding: 0 15px;
  }

  .contribute-container h2,
  .contribute-container h3 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 28px;
  }

  .contribute-content {
    gap: 30px;
  }

  .form-row {
    margin-bottom: 16px;
    gap: 6px;
  }

  .form-row label {
    font-size: 14px;
  }

  .form-row input,
  .form-row select {
    height: 42px;
    padding: 9px;
    font-size: 14px;
  }

  .form-row textarea {
    height: 115px;
  }

  .form-submit button {
    padding: 10px 22px;
  }

  .work-image img {
    width: 300px !important;
    height: auto;
  }
}

/* =========================================
   VERY SMALL PHONES
   ========================================= */

@media (max-width: 360px) {
  .work-hero {
    height: 165px;
  }

  .work-hero-content h1 {
    font-size: 27px;
  }

  .contribute-container {
    padding: 0 12px;
  }

  .contribute-container h2,
  .contribute-container h3 {
    font-size: 21px;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    font-size: 14px;
  }
}
/* =========================================
   BASIC RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f1f1f1;
  color: #111;
}

/* =========================================
   IMPACT PAGE
========================================= */

.impact-page {
  width: 100%;
  min-height: 100vh;
}

/* =========================================
   HERO SECTION
========================================= */

.impact-hero {
  position: relative;

  width: 100%;
  height: 280px;

  background-image: url("../image/impact-awards.webp");

  background-size: cover;
  background-position: center top;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

/* Dark overlay exactly like the old website */

.impact-hero-overlay {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.35);
}

/* Hero title */

.impact-hero-content {
  position: relative;
  z-index: 2;

  text-align: center;
}

.impact-hero-content h1 {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 58px;
  font-weight: 400;

  line-height: 1.2;
}

/* =========================================
   IMPACT CONTENT SECTION
========================================= */

.impact-content-section {
  width: 100%;

  padding: 70px 32px 40px;

  background: #f1f1f1;
}

/* White content box */

.impact-content {
  width: 100%;
  max-width: 1280px;

  margin: 0 auto;

  background: #ffffff;

  padding: 38px 16px 42px;

  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Paragraph */

.impact-content p {
  margin: 0 0 24px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 16px;

  line-height: 1.8;

  color: #111;

  text-align: left;
}

/* Remove margin from last paragraph */

.impact-content p:last-child {
  margin-bottom: 0;
}

/* =========================================
   BOTTOM CORAL AREA
========================================= */

.impact-bottom {
  width: 100%;

  height: 150px;

  background: #f77676;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .impact-hero {
    height: 300px;
  }

  .impact-hero-content h1 {
    font-size: 50px;
  }

  .impact-content-section {
    padding: 55px 25px 35px;
  }

  .impact-content {
    padding: 30px 20px 35px;
  }

  .impact-content p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .impact-hero {
    height: 240px;

    background-position: center;
  }

  .impact-hero-content h1 {
    font-size: 42px;
  }

  .impact-content-section {
    padding: 35px 15px 25px;
  }

  .impact-content {
    padding: 25px 18px 30px;
  }

  .impact-content p {
    font-size: 14px;

    line-height: 1.7;

    text-align: left;

    margin-bottom: 20px;
  }

  .impact-bottom {
    height: 100px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .impact-hero {
    height: 210px;
  }

  .impact-hero-content h1 {
    font-size: 36px;
  }

  .impact-content-section {
    padding: 25px 10px 20px;
  }

  .impact-content {
    padding: 22px 15px 25px;
  }

  .impact-content p {
    font-size: 13px;
    line-height: 1.65;
  }
}
/* =========================================
   GALLERY PAGE
   HEADER AND FOOTER NOT INCLUDED
========================================= */

/* =========================================
   RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;

  font-family: Arial, Helvetica, sans-serif;

  background: #ffffff;
  color: #222;

  overflow-x: hidden;
}

/* =========================================
   MAIN PAGE
========================================= */

.gallery-page {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* =========================================
   HERO SECTION
========================================= */

.gallery-hero {
  width: 100%;
  height: 280px;

  position: relative;

  background-image: url("../image/impact-awards.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  margin-bottom: 50px;
}

/* =========================================
   HERO DARK OVERLAY
========================================= */

.gallery-hero-overlay {
  position: absolute;

  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  background: rgba(0, 0, 0, 0.35);
}

/* =========================================
   HERO TITLE
========================================= */

.gallery-hero-content {
  position: relative;
  z-index: 2;

  width: 100%;

  text-align: center;
}

.gallery-hero-content h1 {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 52px;
  font-weight: 400;

  line-height: 1.2;
}

/* =========================================
   GALLERY SECTION
========================================= */

.gallery-section {
  width: 100%;

  background: #ffffff;

  padding: 18px 0 45px;
}

/* =========================================
   GALLERY CONTAINER
========================================= */

.gallery-container {
  width: 100%;

  margin: 0;
  padding: 0 24px;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  column-gap: 14px;
  row-gap: 24px;

  align-items: start;
}

/* =========================================
   GALLERY ITEM
========================================= */

.gallery-item {
  width: 100%;

  overflow: hidden;

  background: #ffffff;
}

/* =========================================
   GALLERY IMAGE
========================================= */

.gallery-item img {
  display: block;

  width: 100%;
  height: 208px;

  max-width: 294px;

  object-fit: cover;

  transition: transform 0.35s ease;
}

/* =========================================
   IMAGE HOVER
========================================= */

.gallery-item {
  cursor: pointer;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {
  .gallery-hero {
    height: 250px;
  }

  .gallery-hero-content h1 {
    font-size: 46px;
  }

  .gallery-container {
    padding: 0 20px;

    grid-template-columns: repeat(3, 1fr);

    column-gap: 15px;
    row-gap: 22px;
  }
}

/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 767px) {
  .gallery-hero {
    height: 220px;

    background-position: center center;
  }

  .gallery-hero-content h1 {
    font-size: 40px;
  }

  .gallery-section {
    padding: 20px 0 40px;
  }

  .gallery-container {
    padding: 0 15px;

    grid-template-columns: repeat(2, 1fr);

    column-gap: 12px;
    row-gap: 18px;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {
  .gallery-hero {
    height: 190px;
  }

  .gallery-hero-content h1 {
    font-size: 34px;
  }

  .gallery-section {
    padding: 18px 0 35px;
  }

  .gallery-container {
    padding: 0 12px;

    grid-template-columns: 1fr 1fr;

    column-gap: 10px;
    row-gap: 15px;
  }

  .gallery-item {
    width: 100%;
  }

  .gallery-item img {
    width: 100%;
    height: 101.73px;

    transform: none !important;
  }
}

/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 360px) {
  .gallery-hero {
    height: 170px;
  }

  .gallery-hero-content h1 {
    font-size: 30px;
  }

  .gallery-container {
    padding: 0 10px;

    column-gap: 8px;
    row-gap: 12px;
  }
}
/* ==========================================
   BASIC RESET
========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #222;
}

/* ==========================================
   HERO
========================================== */

.events-hero {
  position: relative;

  width: 100%;
  height: 260px;

  background-image: url("../image/impact-awards.webp");
  background-size: cover;
  background-position: center top;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

/* Dark overlay */

.events-hero-overlay {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.42);
}

/* Hero title */

.events-hero-content {
  position: relative;
  z-index: 2;

  text-align: center;
}

.events-hero-content h1 {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 52px;
  font-weight: 400;

  line-height: 1.2;
}

/* ==========================================
   EVENTS SECTION
========================================== */

.events-section {
  width: 100%;

  background: #ffffff;

  padding: 30px 0 70px;
}

/* Main container */

.events-container {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;

  padding: 0 30px;
}

/* ==========================================
   EVENT ROW
========================================== */

.event-row {
  width: 100%;

  display: grid;

  grid-template-columns: 1fr 1fr;

  column-gap: 55px;

  align-items: start;

  margin-bottom: 55px;
}

/*
   Reverse row

   Event 2:
   Content Left
   Image Right
*/

.event-row.reverse {
  grid-template-columns: 1fr 1fr;
}

/* ==========================================
   EVENT IMAGE
========================================== */

.event-image {
  width: 100%;

  display: flex;

  align-items: flex-start;
  justify-content: center;
}

.event-image img {
  width: 100%;

  max-width: 540px;

  height: auto;

  display: block;

  object-fit: cover;
}

/* ==========================================
   EVENT CONTENT
========================================== */

.event-content {
  width: 100%;

  padding-top: 0;
}

/* Event heading */

.event-content h3 {
  margin: 0 0 15px;

  color: #4f82ac;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 28px;

  font-weight: 400;

  line-height: 1.08;
}

/* Paragraph */

.event-content p {
  margin: 0 0 7px;

  color: #222;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 16px;

  line-height: 1.55;

  font-weight: 400;
}

/* ==========================================
   SPACING BETWEEN EVENTS
========================================== */

.event-row + .event-row {
  margin-top: 35px;
}

/* ==========================================
   DESKTOP IMAGE / CONTENT ALIGNMENT
========================================== */

/*
   Normal:
   Image | Content

   Reverse:
   Content | Image
*/

.event-row:not(.reverse) .event-image {
  order: 1;
}

.event-row:not(.reverse) .event-content {
  order: 2;
}

.event-row.reverse .event-content {
  order: 1;
}

.event-row.reverse .event-image {
  order: 2;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {
  .events-hero {
    height: 230px;
  }

  .events-hero-content h1 {
    font-size: 45px;
  }

  .events-container {
    padding: 0 25px;
  }

  .event-row {
    column-gap: 35px;
    margin-bottom: 45px;
  }

  .event-content h2 {
    font-size: 24px;
  }

  .event-content p {
    font-size: 13.5px;
    line-height: 1.5;
  }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
  /* Hero */

  .events-hero {
    height: 190px;

    background-position: center;
  }

  .events-hero-content h1 {
    font-size: 38px;
  }

  /* Section */

  .events-section {
    padding: 35px 0 50px;
  }

  /* Container */

  .events-container {
    padding: 0 20px;
  }

  /* Stack events */

  .event-row,
  .event-row.reverse {
    display: flex;

    flex-direction: column;

    gap: 25px;

    margin-bottom: 60px;
  }

  /* Reset order */

  .event-row:not(.reverse) .event-image,
  .event-row:not(.reverse) .event-content,
  .event-row.reverse .event-image,
  .event-row.reverse .event-content {
    order: unset;
  }

  /* Image */

  .event-image {
    width: 100%;
  }

  .event-image img {
    width: 100%;

    max-width: 100%;

    height: auto;
  }

  /* Content */

  .event-content {
    width: 100%;
  }

  .event-content h2 {
    font-size: 24px;

    line-height: 1.15;

    margin-bottom: 14px;
  }

  .event-content p {
    font-size: 14px;

    line-height: 1.6;

    margin-bottom: 9px;
  }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {
  .events-hero {
    height: 160px;
  }

  .events-hero-content h1 {
    font-size: 32px;
  }

  .events-container {
    padding: 0 15px;
  }

  .event-row,
  .event-row.reverse {
    gap: 20px;

    margin-bottom: 50px;
  }

  .event-content h2 {
    font-size: 21px;
  }

  .event-content p {
    font-size: 13.5px;

    line-height: 1.55;
  }
}
/* ================================
   ASSOCIATION SECTION
================================ */

.association-section {
  width: 100%;
  padding: 70px 30px;
  background: #fff;
}

/* Heading */

.association-section h2 {
  text-align: center;
  margin-bottom: 45px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 400;
  color: #4f82ac;
}

/* ================================
   ASSOCIATION GRID
================================ */

.association-list {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 35px 40px;

  align-items: center;
}

/* Individual association */

.association {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
}

/* Images */

.association img {
  width: 100%;
  max-width: 180px;
  height: 110px;

  object-fit: contain;

  display: block;
}
@media (max-width: 767px) {
  .association-section {
    padding: 50px 20px;
  }

  .association-section h2 {
    font-size: 30px;
    margin-bottom: 35px;
  }

  .association-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 20px;
  }

  .association img {
    max-width: 150px;
    height: 90px;
  }
}
