/* ---------------- Main ---------------- */
body {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0px;
}
div {
  display: block;
  unicode-bidi: isolate;
}
.section {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0px;
}
.container {
  width: 100%;
}
.section-wrapper {
  width: 100%;
  margin: auto;
  display: block;
  max-width: 1280px;
}
.box-50 {
  width: 50%;
}
.box-40 {
  width: 40%;
}
.box-45 {
  width: 45%;
}
.box-60 {
  width: 60%;
}
.box-70 {
  width: 70%;
}
.box-30 {
  width: 30%;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-start {
  display: flex;
  justify-content: start;
}
.flex-between {
  display: flex;
  justify-content: space-between;
}
.flex {
  display: flex;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.padding-20 {
  padding: 20px;
}
.border {
  border: 2px solid black;
}

.content h2,
.program-section h2,
.text-section h2,
.result-section h2,
.activities-section h2,
.section h2,
.education-page h2,
.nukkad-natak h2,
.container h2,
.empowerment-page h2 {
  font-weight: 400;
  font-family: "Roboto Slab", serif;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: 0px;
  margin: 10px 0;
  padding-bottom: 10px;
  color: #3b80b9;
  position: relative;
  display: inline-block;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: start;
}

/* .intro-section {
  padding: 45px 0 35px;
} */

/* .activities-section {
  padding: 25px 0 55px;
} */

.content p,
.text-section p,
.program-section p,
.result-section p,
.activities-section p,
.education-page p,
.section p,
.empowerment-page p {
  color: black;
  font-size: 16px;
  font-family: Arial, sans-serif;
  line-height: 1.8;
  margin-top: 5px;
}

.image-box {
  width: 48%;
  overflow: hidden;
}

.image-box img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 220px;
  object-fit: cover;
}

hr {
  border: none;
  border-top: 1px solid #eee;
}

/* ---------------- Activities ---------------- */

.small-heading {
  font-size: 20px;
  text-transform: uppercase;
  margin-top: 15px;
}

/* ---------------- Programs ---------------- */

/* .program-section {
  padding: 20px 0 35px;
} */

.program-section ul,
.result-section ul,
.education-page ul,
.empowerment-page ul,
.content ul,
.section ul {
  padding-left: 20px;
}

.program-section li,
.result-section li,
.education-page li,
.empowerment-page li,
.content li,
.section li {
  margin-bottom: 10px;
  color: black;
  font-size: 16px;
  font-family: "Raleway", Arial, Tahoma, sans-serif;
  line-height: 1.8;
}

.result-section {
  /* padding: 5px 0 50px; */
  width: 1280px;
  margin: auto;
}

/* EDUCATION PAGE */

.red-text {
  font-size: 21px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: 0px;
  font-style: italic;
  font-family: "Playfair Display", Arial, Tahoma, sans-serif;
  color: #f67c77;
  margin-bottom: 15px;
  margin-top: 12px;
  font-weight: 500px;
}

.full-image {
  height: 550px;
  padding: 20px 0px;
}
.full-image img {
  height: 100%;
  width: 100%;
}
.nukkad-natak h2 {
  font-size: 28px;
  line-height: 34px;
  font-weight: 400;
  font-family: "Roboto Slab", serif;
}

.two-image {
  display: flex;
  flex-direction: row;
  height: 350px;
  width: 100%;
  margin-top: 20px;
}

.two-image img {
  height: 100%;
}

/* =========================================================
   RESPONSIVE DESIGN
   No HTML changes required
   ========================================================= */

/* ==========================================
   IMAGE + TEXT FLEX LAYOUT
   Desktop / Tablet
========================================== */

.flex {
  display: flex;
  align-items: center;
}

.flex-start {
  display: flex;
  align-items: flex-start;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Image + text boxes */

.flex > .box-30,
.flex > .box-40,
.flex > .box-45,
.flex > .box-50,
.flex > .box-60,
.flex > .box-70 {
  flex-shrink: 0;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {
  /* Any flex container containing image + text
     becomes vertical */

  .flex,
  .flex-start,
  .flex-between {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  /* Make both image and text full width */

  .flex > .box-30,
  .flex > .box-40,
  .flex > .box-45,
  .flex > .box-50,
  .flex > .box-60,
  .flex > .box-70 {
    width: 100%;
  }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {
  .flex,
  .flex-start,
  .flex-between {
    gap: 15px;
  }
}

/* -----------------------------
   GLOBAL RESPONSIVE FIXES
------------------------------ */

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

/* -----------------------------
   CONTAINER / SECTION
------------------------------ */

.container {
  width: 100%;
  max-width: 100%;
}

.section {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.section-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* -----------------------------
   FIX FIXED WIDTH
------------------------------ */

.result-section {
  width: 100%;
  max-width: 1280px;
  padding-left: 20px;
  padding-right: 20px;
}

/* -----------------------------
   TWO COLUMN LAYOUT
------------------------------ */

.two-column {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 55px;
}

/* -----------------------------
   WIDTH UTILITY CLASSES
------------------------------ */

.box-30,
.box-40,
.box-45,
.box-50,
.box-60,
.box-70 {
  max-width: 100%;
}

/* -----------------------------
   FULL IMAGE
------------------------------ */

.full-image {
  width: 100%;
  height: 550px;
  padding: 20px 0;
  overflow: hidden;
}

.full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* -----------------------------
   TWO IMAGES
------------------------------ */

.two-image {
  width: 100%;
  height: 350px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  margin-top: 20px;
  overflow: hidden;
}

.two-image img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

/* =========================================================
   TABLET
   769px - 1024px
   ========================================================= */

@media (max-width: 1024px) {
  .section {
    padding-left: 25px;
    padding-right: 25px;
  }

  .section-wrapper {
    max-width: 100%;
  }

  .result-section {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }

  /* Heading */

  .content h2,
  .program-section h2,
  .text-section h2,
  .result-section h2,
  .activities-section h2,
  .section h2,
  .education-page h2,
  .nukkad-natak h2,
  .container h2,
  .empowerment-page h2 {
    font-size: 26px;
    line-height: 32px;

    font-weight: 400;
    font-family: "Roboto Slab", serif;
  }

  /* Paragraph */

  .content p,
  .text-section p,
  .program-section p,
  .result-section p,
  .activities-section p,
  .education-page p,
  .section p,
  .empowerment-page p {
    font-size: 15px;
    line-height: 1.75;
    font-family: Arial, sans-serif;
  }

  /* Two columns */

  .two-column {
    gap: 30px;
  }

  /* Full image */

  .full-image {
    height: 450px;
  }

  /* Two images */

  .two-image {
    height: 280px;
    gap: 20px;
  }
}

/* =========================================================
   MOBILE
   <= 768px
   ========================================================= */

@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 25px;
  }

  /* -----------------------------
     SECTION
  ------------------------------ */

  .section {
    padding: 20px 16px;
  }

  .section-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .result-section {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }

  /* -----------------------------
     WIDTH CLASSES
     Make every box full width
  ------------------------------ */

  .box-30,
  .box-40,
  .box-45,
  .box-50,
  .box-60,
  .box-70 {
    width: 100%;
  }

  /* -----------------------------
     TWO COLUMN
  ------------------------------ */

  .two-column {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* -----------------------------
     HEADINGS
  ------------------------------ */

  .content h2,
  .program-section h2,
  .text-section h2,
  .result-section h2,
  .activities-section h2,
  .section h2,
  .education-page h2,
  .nukkad-natak h2,
  .container h2,
  .empowerment-page h2 {
    font-size: 24px;
    line-height: 31px;
    margin: 8px 0;
    padding-bottom: 7px;
    font-weight: 400;
    font-family: "Roboto Slab", serif;
  }

  /* Fix invalid original value: 32 -> 32px */

  .nukkad-natak h2 {
    font-size: 28px;
    line-height: 34px;
    font-weight: 400;
    font-family: "Roboto Slab", serif;
  }

  /* -----------------------------
     PARAGRAPHS
  ------------------------------ */

  .content p,
  .text-section p,
  .program-section p,
  .result-section p,
  .activities-section p,
  .education-page p,
  .section p,
  .empowerment-page p {
    font-size: 15px;
    line-height: 1.75;
    margin-top: 5px;
    font-family: Arial, sans-serif;
  }

  /* -----------------------------
     LIST
  ------------------------------ */

  .program-section ul,
  .result-section ul,
  .education-page ul,
  .empowerment-page ul,
  .content ul,
  .section ul {
    padding-left: 20px;
  }

  .program-section li,
  .result-section li,
  .education-page li,
  .empowerment-page li,
  .content li,
  .section li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
  }

  /* -----------------------------
     RED TEXT / QUOTE
  ------------------------------ */

  .red-text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 12px;
  }

  /* -----------------------------
     FULL WIDTH IMAGE
  ------------------------------ */

  .full-image {
    width: 100%;
    height: auto;
    padding: 15px 0;
  }

  .full-image img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: cover;
    display: block;
  }

  /* -----------------------------
     TWO IMAGES
  ------------------------------ */

  .two-image {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    overflow: visible;
  }

  .two-image img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: cover;
  }

  /* -----------------------------
     IMAGE BOX
  ------------------------------ */

  .image-box {
    width: 100%;
  }

  .image-box img {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  /* -----------------------------
     FLEX UTILITIES
  ------------------------------ */

  .flex-center,
  .flex-start,
  .flex-between {
    flex-wrap: wrap;
  }
}

/* =========================================================
   SMALL MOBILE
   <= 480px
   ========================================================= */

@media (max-width: 480px) {
  body {
    font-size: 14px;
    line-height: 24px;
  }

  /* -----------------------------
     SECTION
  ------------------------------ */

  .section {
    padding: 16px 12px;
  }

  .result-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* -----------------------------
     HEADINGS
  ------------------------------ */

  .content h2,
  .program-section h2,
  .text-section h2,
  .result-section h2,
  .activities-section h2,
  .section h2,
  .education-page h2,
  .nukkad-natak h2,
  .container h2,
  .empowerment-page h2 {
    font-size: 21px;
    line-height: 28px;
    margin: 6px 0;
    font-weight: 400;
    font-family: "Roboto Slab", serif;
  }

  .nukkad-natak h2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    font-family: "Roboto Slab", serif;
  }

  /* -----------------------------
     PARAGRAPHS
  ------------------------------ */

  .content p,
  .text-section p,
  .program-section p,
  .result-section p,
  .activities-section p,
  .education-page p,
  .section p,
  .empowerment-page p {
    font-size: 14px;
    line-height: 1.7;
    font-family: Arial, sans-serif;
  }

  /* -----------------------------
     LIST
  ------------------------------ */

  .program-section li,
  .result-section li,
  .education-page li,
  .empowerment-page li,
  .content li,
  .section li {
    font-size: 14px;
    line-height: 1.65;
  }

  /* -----------------------------
     QUOTE
  ------------------------------ */

  .red-text {
    font-size: 17px;
    line-height: 26px;
  }

  /* -----------------------------
     IMAGES
  ------------------------------ */

  .full-image {
    padding: 10px 0;
  }

  .two-image {
    gap: 12px;
  }
}
