/***** Project Description Section *****/
.project-description-section .description-columns {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 60px;
       column-gap: 60px;
  line-height: 1.7;
  color: var(--black-color);
}
.project-description-section .description-columns p {
  margin-bottom: 18px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  font-size: var(--fs-md);
}
.project-description-section .link {
  text-decoration: none;
  font-weight: var(--fw-bold);
  color: var(--dark-blue);
}
.project-description-section .unesco-link {
  font-style: italic;
  font-size: var(--fs-md);
  margin-top: 20px;
  line-break: anywhere;
}

@media screen and (max-width: 768px) {
  .project-description-section .description-columns {
    -moz-column-count: 1;
         column-count: 1;
  }
}
/***** Project Description Section End *****/
/***** Mandate Section *****/
.mandate-section {
  background-color: #a6bdf6;
}
.mandate-section .mandate-img img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 1.25;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: all 0.3s ease;
  aspect-ratio: 4/5;
}
.mandate-section .mandate-content {
  -moz-column-count: 1;
       column-count: 1;
  -moz-column-gap: 60px;
       column-gap: 60px;
  line-height: 1.7;
  color: var(--black-color);
}
.mandate-section .mandate-content p {
  margin-bottom: 18px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  font-size: var(--fs-md);
}
.mandate-section .mandate-content ul {
  padding-left: 20px;
  margin-bottom: 0;
}
.mandate-section .mandate-content ul li {
  margin-bottom: 18px;
  font-size: var(--fs-md);
}
.mandate-section .mandate-content ul li:last-child {
  margin-bottom: 0 !important;
}

/***** Mandate Section End *****/
/***** Other Initiatives Section *****/
.other-initiatives-section .intiatives-blog {
  overflow: hidden;
}
.other-initiatives-section .intiatives-blog .blue-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  height: 360px;
  border-radius: 8px;
  text-align: center;
  background-color: var(--dark-blue);
  color: var(--white-color);
  padding: 20px;
  position: relative;
  transition: 0.4s ease;
  overflow: visible;
}
.other-initiatives-section .intiatives-blog .blue-card .icon img {
  width: 90px;
  height: auto;
}
.other-initiatives-section .intiatives-blog .blue-card .common-subtitle {
  color: var(--white-color);
  font-size: var(--fs-lg);
}
.other-initiatives-section .intiatives-blog .blue-card .card-image {
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.4s ease;
  z-index: 100;
  border-radius: 8px;
}
.other-initiatives-section .intiatives-blog .blue-card .card-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.other-initiatives-section .intiatives-blog .blue-card:hover .card-image {
  opacity: 1;
  transform: scale(1.15);
}
.other-initiatives-section .intiatives-blog .blue-card:hover h3, .other-initiatives-section .intiatives-blog .blue-card:hover .icon {
  opacity: 0;
}

/***** Other Initiatives Section End*****/
/***** Other Initiatives Page Start*****/
.blue-line {
  position: relative;
}
.blue-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 100%;
  background-color: var(--dark-blue);
  z-index: 99;
}

.initiative-banner {
  background-color: #e5e5e5;
  height: 35vh;
  display: flex;
  position: relative;
  align-items: center;
}
.initiative-banner .banner-title {
  color: var(--dark-blue);
}
.initiative-banner .corner-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #7aa300 50%, transparent 50%);
}

.other-initiative-page .initiative-content {
  -moz-column-count: 1;
       column-count: 1;
  -moz-column-gap: 60px;
       column-gap: 60px;
  line-height: 1.7;
  color: var(--black-color);
}
.other-initiative-page .initiative-content p {
  margin-bottom: 18px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  font-size: var(--fs-md);
}

/***** Other Initiatives Page End*****/
/***** Collaborators Page Start*****/
.collaborators-section .collaborators-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.collaborators-section .collaborators-content img {
  height: 90px;
  max-width: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(0.8);
  transition: 0.4s ease;
  opacity: 0.3;
}
.collaborators-section .collaborators-content img:hover {
  opacity: 1;
  filter: grayscale(0);
  scale: 1.05;
}

/***** Collaborators Page End*****/
/*****  Default Page Start*****/
.default-page h2 {
  font-size: var(--fs-xl);
  color: var(--dark-blue);
}
.default-page h3 {
  font-size: var(--fs-lg);
  color: var(--dark-blue);
}
.default-page p,
.default-page li {
  font-size: var(--fs-md);
}
.default-page p a,
.default-page li a {
  text-decoration: none;
  color: var(--dark-blue);
  font-weight: var(--fw-bold);
  line-break: anywhere;
}

/***** Default Page End*****//*# sourceMappingURL=style.css.map */