/*!
Theme Name: nphf
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: nphf
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

nphf is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap");

:root {
  --primary--color: #194680;
  --secondary--color: #1a1a1a;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a,
a:hover,
a:active {
  text-decoration: none;
}

body {
  font-family: "Poppins", sans-serif;
}

p {
  line-height: 1.5;
  color: #000309;
}

h1,
h2,
h3,
h5,
h4,
h6 {
  font-family: "PT Sans", sans-serif;
  color: #000309;
  font-weight: 500;
}

.uk-container {
  max-width: 1280px;
}

.uk-container.uk-container-small {
  max-width: 900px;
}

.uk-container.uk-container-large {
  max-width: 1600px;
}

.uk-container.uk-container-xsmall {
  max-width: 750px;
}

.custom-logo {
  padding: 15px 0;
}

.main-navigation {
  background: #194680;
  position: relative;
}
.ham-menu {
  padding: 13px 15px;
  display: inline-block;
}
.main-navigation > div > div > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.main-navigation > div > div > ul > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.main-navigation > div > div > ul > li > a {
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 16px;
}

.main-navigation > div > div > ul > li > a:hover,
.main-navigation > div > div > ul > li.current_page_item > a {
  background: #0000001f;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-socials {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.header-socials > a {
  margin-left: 7px;
  vertical-align: middle;
}

.header-socials > a i {
  font-size: 20px;
  color: #111111a0;
}

.header-socials > a i:hover {
  color: var(--primary--color);
}

.header-socials > a svg {
  width: 20px;
}
.header-search {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #eee;
}

.header-search > a {
  color: #1a1a1a;
}

.banner__row {
  display: flex;
}

@media (max-width: 959px) {
  .banner__row {
    flex-flow: column;
  }
}

.banner__col--main,
.banner__col--side {
  min-width: 0;
}

@media (min-width: 959px) {
  .banner__col--main {
    flex: 0 0 calc(100% - 315px);
    padding-right: 35px;
  }
}

@media (min-width: 959px) {
  .banner__col--side {
    flex: 0 0 315px;
  }
}

.banner__slider--items {
  position: relative;
}

.banner__slider--items > figure {
  display: block;
  width: 100%;
  margin: 0;
  height: 473px;
}

.banner__slider--items > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.banner__text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 4px;
  padding: 64px 50px 40px;
}

.banner__text::after {
  background-image: linear-gradient(to bottom, transparent, #000);
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.banner__text > div {
  position: relative;
  z-index: 1;
  padding-left: 10px;
  width: 75%;
}

.banner__text > div::before {
  content: "";
  border-left: 3px solid #fff;
  position: absolute;
  background: #fff;
  top: 7px;
  bottom: 6px;
  left: -15px;
}

.banner__text > div > a {
  font-size: 23px;
  color: #fff;
  line-height: 1.4;
  font-weight: 600;
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.banner__slider .owl-nav {
  text-align: center;
}

.banner__slider .owl-nav {
  text-align: center;
  margin-top: 20px;
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 999;
}

.banner__slider .owl-nav button {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: #11111178 !important;
  text-align: center;
  color: #fff !important;
}

.banner__slider .owl-nav button::before {
  content: "\f104";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 15px;
  color: #fff;
}

.banner__slider .owl-nav button span {
  display: none;
}

.banner__slider .owl-nav button.owl-prev {
  left: 0;
}

.banner__slider .owl-nav button.owl-next {
  left: auto;
  right: 0;
  transform: rotate(180deg);
}

.banner__slider .owl-nav button.owl-prev,
.banner__slider .owl-nav button.owl-next {
  position: absolute;
}

.message__from--director {
  height: 100%;
  border-right: 1px solid #d0cece;
  border-radius: 2px;
  padding: 25px;
  padding-bottom: 0;
  padding-left: 10px;
  padding-top: 0;
  text-align: center;
  padding-right: 36px;
}

.message__from--director h2 {
  font-size: 16px;
  color: var(--primary--color);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.message__from--director h2 span {
  font-weight: 700;
  color: var(--primary--color);
  font-size: 22px;
  display: block;
  margin: 0;
}

.message__from--director > div img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.message__from--director span {
  flex: 2;
  margin-top: 9px;
  font-weight: 700;
  color: #444;
  font-size: 14px;
}

.message__from--director p {
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  color: #666;
  position: relative;
}
/* 
.message__from--director p::before {
	content: "\f10d";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 50px;
	position: absolute;
	left: -20px;
	top: -30px;
} */

/* .message__from--director p::after {
	content: "\f10e";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 34px;
	position: absolute;
	right: -12px;
	bottom: -10px;
} */

.banner__section,
.projects__cat--section {
  position: relative;
  overflow: hidden;
  background: url("./assets/img/bg-pattern.jpg") 0 0 repeat;
}

/* .banner__section::before,
.banner__section::after {
  content: "";
  position: absolute;
  left: -260px;
  top: -30px;
  width: 803px;
  height: 550px;
  opacity: 0.2;
  background: url("./assets/img/banner__svg.svg") 0 0 no-repeat;
  transform: rotate(130deg);
  -webkit-transform: rotate(130deg);
  -moz-transform: rotate(130deg);
  -ms-transform: rotate(130deg);
  -o-transform: rotate(130deg);
  z-index: -1;
}
.banner__section::after {
  left: auto;
  top: auto;
  right: -280px;
  bottom: -40px;
  transform: rotate(-130deg);
  -webkit-transform: rotate(-130deg);
  -moz-transform: rotate(-50deg);
  -ms-transform: rotate(-130deg);
  -o-transform: rotate(-130deg);
} */

.team__members {
  position: relative;
}

.team__members > a {
  display: block;
  width: 100%;
  height: 300px;
  position: relative;
}
.team__members > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.team__members--content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 15px 20px;
  z-index: 999;
  pointer-events: none;
}

.team__members > a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, #1111119c);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.team__members--content h3 {
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  line-height: 100%;
}

.team__members--content h3 a {
  color: #fff;
}

.banner__section {
  padding: 50px 0;
}

.team__members--content span {
  color: #ffffffe5;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  display: block;
  margin-top: 8px;
}

.heading-wrap {
  margin-bottom: 30px;
}

.heading-wrap > div > div > span,
.heading-wrap span {
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  color: #1a1a1aba;
  margin-left: 3px;
  display: inline-block;
}

.heading-wrap h2 {
  font-size: 30px;
  color: var(--primary--color);
  font-weight: bold;
  margin: 0;
  /* font-family: "Montserrat", sans-serif; */
  /* letter-spacing: -1px; */
  line-height: 1.1;
  text-transform: uppercase;
}

.heading-wrap h2 a {
  color: var(--primary--color);
}

.heading-wrap h2 a:hover {
  color: var(--secondary--color);
}

.slider__arrows > a {
  width: 35px;
  height: 35px;
  line-height: 24px;
  text-align: center;
  background: var(--primary--color);
  border-radius: 50px;
}

.slider__arrows > a svg {
  color: #fff;
  width: 7px;
}

.uk-icon:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve) {
  stroke-width: 3px;
}

.uk-slidenav.uk-icon.uk-slidenav.uk-invisible {
  background: #7097c9db;
  visibility: visible !important;
}

.scale {
  overflow: hidden;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  display: block;
}

.scale img {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.scale:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.nphf--card {
  position: relative;
  text-align: center;
  padding: 30px 17px;
  margin-bottom: 20px;
  background: #225fab;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.nphf--card-icon {
  position: relative;
}

.nphf--card-icon img {
  height: 50px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  animation: pulse 2s infinite alternate-reverse;
  -webkit-animation: pulse 2s infinite alternate-reverse;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.nphf--card:hover .nphf--card-icon img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
}

/* @keyframes pulse {
  0% {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  70% {
    transition: all 0.3s ease-in-out;
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
  }

  100% {
    transition: all 0.3s ease-in-out;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
  }
} */

.nphf--card h3 {
  margin: 0;
  color: #fff;
  font-size: 19px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0 0 5px 0;
}

.nphf--card p {
  margin: 0;
  color: #ffffffe0;
  font-size: 13px;
  font-weight: 500;
}

/* .nphf--card::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url("./assets/img/goal-img.png") 0 0 no-repeat;
  background-size: cover;
  opacity: 0.05;
} */

.mission__vision--section > .uk-grid > div:first-child .nphf--card,
.nphf--mission__vision > .nphf--card:first-child {
  background: #4074b6;
}

.mission__vision--section > .uk-grid > div:last-child .nphf--card,
.nphf--mission__vision > .nphf--card:last-child {
  background: #0f488e;
}

.activities__container > a {
  display: block;
  width: 100%;
  height: 350px;
  position: relative;
  background: #fff;
}

.activities__container > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-content {
  margin-top: 15px;
  /* height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 25px 25px 25px;
  border: 1px solid #ccc;
  border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  -o-border-radius: 0 0 4px 4px;
  align-items: first baseline; */
}

.activity-content h3,
.blog-content h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  margin: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.title {
  color: #000000cc;
}

.title:hover {
  color: var(--primary--color);
}

.activity-content p,
.blog-content p {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  line-height: normal;
  margin-bottom: 35px;
}

.btn {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  color: #666;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
}
.btn.btn-white {
  background-color: #fff;
  text-transform: uppercase;
  border-color: #fff;
  color: var(--primary--color);
}

.btn.btn-blue {
  background-color: var(--primary--color);
  border-color: var(--primary--color);
  color: #fff;
  text-transform: uppercase;
}

.btn.btn-white:hover,
.btn.btn-blue:hover {
  background: var(--secondary--color);
  border-color: var(--secondary--color);
}

.activity-content .btn {
  margin-top: auto;
}

.btn.btn-download {
  background: #006413;
  border-color: #006413;
  color: #fff;
}

.btn:hover {
  background: var(--primary--color);
  border-color: var(--primary--color);
  color: #fff;
}

.btn i {
  font-size: 10px;
  margin-left: 5px;
  vertical-align: middle;
}

.btn.btn-download i {
  margin: 0;
  margin-right: 5px;
}

.btn.btn-small {
  padding: 5px 10px;
  font-size: 12px;
}

.cta-btns {
  margin-top: auto;
}

.view__all--activities {
  position: relative;
  background: var(--primary--color);
  padding: 0 50px;
  height: 100%;
  vertical-align: middle;
  display: flex;
  flex-direction: column;
  align-items: first baseline;
  justify-content: center;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.view__all--activities p {
  font-weight: 500;
  color: #fff;
  position: relative;
}

.view__all--activities .btn {
  position: relative;
}

.section {
  padding: 50px 0;
}

.view__all--activities::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url("./assets/img/view-activities-img.png") 0 0 no-repeat;
  background-size: cover;
  opacity: 0.05;
}

/* .four__col-act .activities__container > a {
  height: 300px;
} */

.postDate {
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: var(--primary--color);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  z-index: 1;
}

.fhen__projects .heading-wrap > div > div:first-child {
  width: 35%;
}

.fhen__projects .heading-wrap h2 {
  font-size: 31px;
}

.logo__img {
  display: inline-block;
  margin: 0 6px;
  vertical-align: middle;
  max-width: 200px;
  white-space: nowrap;
  overflow-x: auto;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  display: flex;
  gap: 12px;
}

@media (min-width: 959px) {
  .projects__logos {
    margin-right: 75px;
  }
}

.bg-grey {
  padding: 75px 0;
  background: linear-gradient(-211deg, #082140, var(--primary--color));
  position: relative;
}
.bg-grey::before {
  content: url("./assets/img/foot-shape-left.webp");
  position: absolute;
  left: 0;
  top: 30px;
  width: 100%;
}

.bg-grey::after {
  content: url("./assets/img/foot-shape-right.webp");
  position: absolute;
  right: 0;
  bottom: 0;
  width: 501px;
}

.publication__container .activities__container > a,
.blog__container .activities__container > a {
  height: 280px;
}

.publication__container .activity-content h3 {
  font-size: 17px;
  line-height: 1.3;
}

.blog-content h3 {
  font-size: 17px;
  margin-top: 18px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-cat {
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: var(--primary--color);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  z-index: 1;
}

.blog-cat:hover {
  color: #fff;
}

.blog__data {
  margin-top: 15px;
}

.blog__data > span {
  font-size: 12px;
  font-weight: 600;
  color: #000000cc;
  margin-left: 5px;
}

.multimedia__section {
  padding: 50px 0;
  background: #204e88;
  position: relative;
}
.multimedia__section .heading-wrap span {
  color: #ffffffd6;
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.multimedia__section .heading-wrap h2 {
  color: #fff;
}

.overlay__video > a {
  display: block;
  width: 100%;
  height: 500px;
}

.overlay__video > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px;
  background: linear-gradient(to bottom, transparent, #000000cc);
}

.overlay-text h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
}

.overlay-text h3 a {
  color: #fff;
}

.multimedia__section .slider-nav .slick-slide {
  padding: 20px;
  display: block;
  width: 100% !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1215686275);
  color: #fff;
  transition: all 0.35s ease-in-out;
}

.multimedia__section .slider-nav .slick-slide.is-active {
  background: #111;
  transition: all 0.35s ease-in-out;
}

.thumbnail-news > a {
  display: flex;
  color: #000;
}

.thumbnail-news > a img {
  display: block;
  height: 80px;
  max-width: 110px;
  margin-right: 17px;
}

.thumbnail-news > a h3 {
  margin: 0;
  font-weight: 500;
  line-height: 1.45;
  font-size: 16px;
}

.multimedia__section .slider-nav {
  height: 500px;
  overflow-y: auto;
}

.slider-nav .slick-track {
  width: 100% !important;
  transform: none !important;
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
}

.multimedia__section .video-thumbnail .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.multimedia__section .autoflow {
  height: 510px;
  overflow: auto;
}
.multimedia__section .video-thumbnail .swiper-wrapper .swiper-slide {
  padding: 15px 0 15px 25px;
}
.multimedia__section
  .video-thumbnail
  .swiper-wrapper
  .swiper-slide:not(:last-child) {
  border-bottom: 1px solid #f1f1f13d;
}
.multimedia__section .videoSwiper .swiper-slide-thumb-active {
  background: #0000001a;
}
.multimedia__section iframe {
  width: 100%;
  height: 510px;
}
iframe {
  width: 100%;
}
.thumb-news > a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 21px;
  width: 100px;
  height: 90px;
}
.thumb-news > a img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
}
.thumb-news-wrap {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

.thumb-news-wrap h3 {
  cursor: pointer;
  color: #fff;
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding-right: 15px;
}
.thumb-news-wrap h3 a {
  color: #fff;
}
.thumb-news-wrap h3 a:hover {
  opacity: 0.9;
  color: #fff;
}
.thumb-news-wrap span {
  cursor: pointer;
  color: #ffffffb0;
  display: block;
  padding-right: 30px;
  font-size: 12px;
  margin: 10px 0 0;
  font-weight: 600;
}

.videoSwiper2 {
  overflow: hidden;
}

.videoSwiper2 .swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* .multimedia__section .heading-wrap > div > div {
  position: relative;
  padding-left: 60px;
}

.multimedia__section .heading-wrap > div > div svg {
  position: absolute;
  left: 0;
  top: 5px;
} */

.project__tab {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
}

.project__tab > li {
  margin-left: 5px;
}
/* 
.project__tab > li a {
  padding: 5px 15px;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.25);
  color: #666;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.32px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.project__tab > li.uk-active a {
  background: var(--primary--color);
  border-color: var(--primary--color);
  color :#fff;
} */

.project__tab li a {
  font-size: 13px;
  font-weight: 700;
  color: #1c1c1c;
  letter-spacing: 0.2px;
  position: relative;
  border-radius: 40px;
  text-transform: uppercase;
  padding-bottom: 12px;
  display: inline-block;
  margin-left: 15px;
}

.project__tab li a::before {
  width: 0;
  height: 1px;
  content: "";
  transition: 0.3s linear;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--primary--color);
}

.project__tab li.uk-active a {
  color: var(--primary--color);
}

.project__tab li.uk-active a::before {
  width: 100%;
}

.project__tab li a:hover::before {
  width: 100%;
  transition: 0.3s linear;
}

.project__tab li a:hover {
  color: var(--primary--color);
}

.overlay {
  position: relative;
}

.overlay > a {
  display: block;
  width: 100%;
  height: 360px;
}

.overlay > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay__text {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 25px;
  padding-top: 50px;
  background: linear-gradient(to bottom, transparent, #000000b0);
  width: 100%;
  pointer-events: none;
}

.overlay__text h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-top: 10px;
  text-transform: uppercase;
}

.overlay__text .postDate {
  position: static;
}

.opportunity-col {
  background: #1b5299e5;
  padding: 30px 37px;
  color: #fff;
  border-radius: 10px;
}
.opportunity-col-header {
  color: #fff;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
  z-index: 1;
  align-items: self-start;
}
.opportunity-icon {
  background: #1113;
  min-height: 70px;
  min-width: 70px;
  margin-left: 9px;
  border-radius: 100%;
  text-align: center;
  line-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.opportunity-col-header div img {
  width: 38px;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
.blog-header .entry-title a p {
  margin: 0;
}
.opportunity-col-header .title {
  margin: 0;
  font-size: 25px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 9px;
}
.opportunity-col p {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  opacity: 0.95;
  margin: 0px 0 18px 0;
  color: #fff;
}

.opportunity-col .btn-secondary {
  background: linear-gradient(135deg, #f1970d 50%, #00000021 0%) 100%;
  background-size: 250%;
  z-index: 1;
  position: relative;
}
.opportunity-col .btn-secondary:hover {
  background-position: 0 !important;
}

.opportunity-col.internship {
  background: #4074b6e5;
}

.opportunity-col::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url("./assets/img/goal-img.png") 0 0 no-repeat;
  background-size: cover;
  opacity: 0.05;
}

.opportunity-col.internship::before {
  background-image: url("./assets/img/activity-9.webp");
}

.opportunity-col.internship > img {
  border-radius: 10px;
  opacity: 0.1;
}

.partner__section .item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.partner__section .owl-carousel.owl-drag .owl-item,
.partner__section .owl-carousel .owl-stage {
  height: 100%;
}

.partner__section .item img {
  width: 145px;
  display: block;
  margin: 0 auto;
  height: 55px;
  object-fit: contain;
}

.partner__section {
  background: #f1f1f1;
  padding-bottom: 50px;
}

.site-footer {
  background: #194680;
  padding: 50px 0 50px 0;
  position: relative;
}

.site-footer::before {
  content: "";
  background: url("./assets/img/activity-1.jpg") center center no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.05;
  background-attachment: fixed;
  background-position: initial;
}

.site-footer > div {
  position: relative;
  z-index: 99;
}

.footer-socials > a {
  width: 40px;
  height: 40px;
  font-size: 15px;
  display: inline-block;
  background: #fff;
  line-height: 40px;
  text-align: center;
  color: #194680;
  margin-right: 5px;
  border-radius: 50px;
}

.footer__logo {
  padding: 10px;
  background: #fff;
  display: inline-block;
}

.footer__logo .custom-logo {
  padding: 0;
  max-width: 300px;
}
/* 
.newsLetter {
  text-align: center;
} */

.newsLetter h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  margin: 0;
  margin-bottom: 15px;
}

.newsLetter .form-data {
  display: flex;
}

.newsLetter form p {
  margin: 0;
}

.newsLetter form input {
  width: 100%;
  max-width: 278px;
  padding: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  outline: none;
  border: none;
}

.newsLetter form input[type="submit"] {
  background: #00000021;
  outline: none;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  padding: 15px 25px;
  max-width: 117px;
  height: 100%;
}

.footer-bottom {
  margin-top: 35px;
  padding-top: 35px;
  border-top: 1px solid #ffffff26;
}

.quick__links h5,
.newsLetter h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.quick__links p {
  margin: 0;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding-left: 25px;
}

.quick__links p i {
  position: absolute;
  left: 0;
  top: 4px;
}

.quick__links p a {
  color: #fff;
}

.quick__links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick__links ul li {
  padding-bottom: 6px;
}

.quick__links ul li a {
  color: #fff;
  font-size: 14px;
  padding-left: 15px;
  position: relative;
}

.quick__links ul li a::before {
  left: 0;
  top: 2px;
  content: "\f054";
  position: absolute;
  font-size: 10px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.footer-copyright p {
  text-align: center;
  color: #ffffffc0;
  font-size: 13px;
  margin: 0;
}

.footer-copyright p strong,
.footer-copyright p a {
  color: #fff;
  font-weight: 500;
}

.footer-copyright {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #ffffff26;
}

.search-icon {
  background: #00000026;
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
}

.header--sidebar__nav .contact-info > div {
  text-align: center;
}

/* .header--sidebar__head img {
  width: 150px;
} */

.header--sidebar__overlay {
  background-color: rgba(0, 0, 0, 0.82);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 1026;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform-origin: 100% 50%;
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  -o-transform-origin: 100% 50%;
  -webkit-transition: transform 0.8s ease 0s;
  -khtml-transition: transform 0.8s ease 0s;
  -moz-transition: transform 0.8s ease 0s;
  -ms-transition: transform 0.8s ease 0s;
  -o-transition: transform 0.8s ease 0s;
  transition: transform 0.8s ease 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  /* cursor: url("../img/pointer.png"), auto; */
}

.header--sidebar__menu {
  position: fixed;
  z-index: 1029;
  top: 0;
  left: 0;
  bottom: 0;
  width: 265px;
  background-color: #fff;
  font-size: 15px;
  line-height: 26px;
  color: #383838;
  overflow: hidden;
  transform: translateX(-500px);
  -webkit-transform: translateX(-500px);
  -moz-transform: translateX(-500px);
  -ms-transform: translateX(-500px);
  -o-transform: translateX(-500px);
  -webkit-transition: transform 0.8s ease 0s;
  -khtml-transition: transform 0.8s ease 0s;
  -moz-transition: transform 0.8s ease 0s;
  -ms-transition: transform 0.8s ease 0s;
  -o-transition: transform 0.8s ease 0s;
  transition: transform 0.8s ease 0s;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  display: flex;
  flex-direction: column;
}

.header--sidebar__shownav .header--sidebar__menu {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}

.header--sidebar__shownav .header--sidebar__overlay {
  transform: scaleX(100%);
  -webkit-transform: scaleX(100%);
  -moz-transform: scaleX(100%);
  -ms-transform: scaleX(100%);
  -o-transform: scaleX(100%);
}
.header--sidebar__menu > div > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header--sidebar__menu > div > ul > li {
  padding: 7px 10px;
  border-bottom: 1px solid #eee;
  transform: translateX(100px);
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  -o-transform: translateX(100px);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.header--sidebar__menu > div > ul > li > ul {
  display: none;
  list-style: none;
  background-color: #f3f3f3;
  padding: 0;
  margin: 10px 0 0 0;
}
.header--sidebar__menu > div > ul > li > ul > li a {
  padding: 7px 15px;
  display: block;
  color: var(--secondary--color);
  font-size: 14px;
  font-weight: 500;
}
.header--sidebar__menu > div > ul > li > a {
  color: #1a1a1a;
  position: relative;
  font-weight: 500;
  /* text-transform: uppercase; */
  display: block;
  font-size: 14px;
  -webkit-align-items: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}

.header--sidebar__shownav .header--sidebar__menu > div > ul > li {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  position: relative;
}
.header--sidebar__shownav .header--sidebar__menu > div > ul > li > i {
  position: absolute;
  right: 15px;
  cursor: pointer;
  color: var(--primary--color);
  padding: 10px;
  top: 2px;
}

.header--sidebar__head {
  background: #eee;
  text-align: center;
  padding: 15px;
}

.header--sidebar__footer {
  padding: 15px;
}

.main-navigation > div > div > ul > li > ul,
.main-navigation > div > div > ul > li > ul > li > ul {
  position: absolute;
  top: 140%;
  z-index: 252;
  background: #fff;
  width: 250px;
  list-style-type: none;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
  box-shadow: 5px 8px 15px #0000001a;
}
.main-navigation > div > div > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.main-navigation > div > div > ul > li > span {
  display: inline-block;
  margin-left: 10px;
  font-size: 16px;
  vertical-align: middle;
  margin-top: 2px;
  color: #000;
}
.main-navigation > div > div > ul > li > ul > li > span {
  position: absolute;
  transform: rotate(270deg);
  top: 12px;
  right: 13px;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
}
.main-navigation > div > div > ul > li > ul > li,
.main-navigation > div > div > ul > li > ul > li > ul > li {
  position: relative;
  padding: 12px 20px;
  border-bottom: 1px solid #0000000f;
}
.main-navigation > div > div > ul > li > ul > li > ul > li {
  border-bottom: 1px solid #ffffff0f;
}

.main-navigation > div > div > ul > li > ul > li > a,
.main-navigation > div > div > ul > li > ul > li > ul > li > a {
  display: block;
  height: 100%;
  font-size: 14px;
  height: auto;
  font-weight: 500;
  color: #000000e8;
}
.main-navigation > div > div > ul > li > ul > li > ul > li > a {
  color: #111;
}
.main-navigation > div > div > ul > li > ul > li > ul {
  position: absolute;
  left: 60%;
  top: 0;
  list-style-type: none;
  opacity: 0;
  transition: 0.3s linear;
  visibility: hidden;
  background: #fff;
  width: 300px;
}
.main-navigation > div > div > ul > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  left: 100%;
  transition: 0.3s linear;
}

.main-navigation > div > div > ul > li > ul > li:hover > a,
.main-navigation > div > div > ul > li > ul > li > ul > li:hover > a,
.main-navigation > div > div > ul > li:hover > span,
.main-navigation > div > div > ul > li > ul > li:hover > span {
  color: var(--primary--color);
}
.main-navigation > div > div > ul > li > ul > li:hover > span {
  opacity: 1;
  visibility: visible;
  transition: 0.3s linear;
  right: 13px;
}
.main-navigation > div > div > ul > li:hover:before {
  width: 100%;
}

.main-navigation > div > div > ul > li a i {
  font-size: 12px;
  color: #fff;
  margin-left: 8px;
}

.main-navigation > div > div > ul > li > ul > li > i {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 14px;
}

.about-container-first {
  /* text-align: center; */
  padding: 50px 0;
  background: #fafafa;
}

.default__banner figure {
  height: 500px;
  width: 100%;
  display: block;
  margin: 0;
}

.default__banner figure img {
  max-height: 500px;
  width: 100%;
  object-fit: cover;
}

.main-title h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary--color);
  text-transform: uppercase;
  text-align: center;
}

.main-title-small h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary--color);
  text-align: center;
  text-transform: uppercase;
}

.default-pages .main-title-small h2 {
  text-align: left;
}

.structure-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary--color);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.structure-title-small {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary--color);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.the-content p,
.the-content {
  line-height: 1.85;
  color: #000000a8;
  font-size: 17px;
}

.the-content ul,
.the-content ol {
  margin: 0;
  padding: 0 0px 0 19px;
}

.the-content ul li {
  margin-top: 11px;
  line-height: 1.6;
}

.the-content p img {
  width: 100%;
  margin-bottom: 15px;
}

.the-content h1,
.the-content h2,
.the-content h3,
.the-content h4,
.the-content h5,
.the-content h6 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 16px 0;
  line-height: 32px;
  color: #0d0d0d;
  text-transform: uppercase;
}

.the-content h1 {
  font-size: 40px;
  line-height: 50px;
}

.the-content h2 {
  margin-top: 32px;
  font-size: 28px;
  line-height: 40px;
}

.the-content h3 {
  margin-top: 32px;
  font-size: 24px;
}

.the-content h4 {
  font-size: 20px;
}

.readmore-text {
  height: 314.5px;
  overflow: hidden;
  position: relative;
}

.readmore-text::after {
  content: "";
  height: 88px;
  width: 100%;
  content: "";
  bottom: 0;
  left: 0;
  z-index: 1;
  position: absolute;
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    #fafafa 80%
  );
}

.readmore-text.expanded::after {
  display: none;
}

.read-more {
  font-weight: 500;
  color: var(--primary--color);
}

.breadcrumb {
  align-items: center;
  overflow-x: auto;
  white-space: nowrap;
  margin: 0;
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
}
.breadcrumb li.active {
  opacity: 1;
  color: #fff;
}
.breadcrumb li a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffffab;
}
ul.breadcrumb li + li::before {
  content: "/";
  padding: 0 12px;
  color: #fff;
  font-size: 12px !important;
  display: inline-block;
  vertical-align: text-bottom;
}

.breadcrumbs-wrapper {
  padding: 5px 0;
  border-bottom: 1px solid #00000012;
}
.breadcrumbs-wrapper .breadcrumb li a {
  color: #0d0d0dab;
  font-size: 12px;
}
.page-banner-wrap .breadcrumb {
  padding: 0;
}
.breadcrumbs-wrapper .blogpost__byline {
  padding: 6px 0;
}
.breadcrumbs-wrapper ul.breadcrumb li,
.breadcrumbs-wrapper li::before {
  color: #1210104d !important;
  font-size: 12px !important;
  vertical-align: middle;
  display: inline-block;
}
.breadcrumbs-wrapper .breadcrumb li.active {
  font-size: 12px !important;
  color: var(--primary--color) !important;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
}

.column-6 {
  grid-column: span 6;
}

.mv-img img {
  min-height: 450px;
  object-fit: cover;
  width: 100%;
}

.missionvision .mv-container .mv-img img {
  min-height: 550px;
  height: 100%;
}

.missionvision .mv-container .mv-content h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.missionvision .mv-container .mv-content p {
  color: #ffffffde;
  font-size: 1rem;
  line-height: 1.5;
}

.missionvision {
  background-color: #254977;
}

.missionvision .mv-container .mv-content {
  position: relative;
  z-index: 2;
  padding: 35px 50px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.missionvision .the-content ul li {
  color: #ffffffd5;
  font-weight: 400;
}

.missionvision .mv-container:nth-child(2n) .mv-img {
  order: 2;
}

.nogap.grid {
  grid-gap: 0;
}

.play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background: #d81715;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-video::after,
.play-video::before {
  content: "";
}

@keyframes play-animation {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }

  25% {
    transform: scale(1.05);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.55;
  }

  75% {
    transform: scale(1.32);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.play-video i {
  color: #fff;
  font-size: 20px;
}

.project__title h1,
.project__title h2 {
  font-size: 37px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--secondary--color);
  margin: 0;
  margin-top: 8px;
  text-transform: uppercase;
}

.projectStatus {
  display: inline-block;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  background: #194680;
  color: #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.featured-img {
  text-align: center;
}

.featured-img img {
  width: auto;
}

.project__single .project__tab {
  margin-bottom: 30px;
  justify-content: center;
}

.project__single .project__tab li {
  border-bottom: 1px solid rgba(37, 81, 57, 0.12);
  margin: 0;
}

.project__single .project__tab li a {
  padding: 15px 50px;
  margin: 0;
  border-right: 1px solid rgba(37, 81, 57, 0.12);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.postMeta {
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.proPostDate {
  font-size: 14px;
  color: #181818cc;
  font-weight: 500;
}

.proPostDate i {
  font-size: 12px;
}

.uk-modal-body form input {
  max-width: 100%;
  height: 45px;
  width: 100%;
  border: 0 none;
  padding: 0 10px;
  background: #fff;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #444;
  border: 1px solid #b6b6b6;
  transition-property: color, background-color, border;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.uk-modal-body .btn {
  padding: 10px 15px;
  background: #194680;
  color: #fff;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

.uk-modal-body h4 {
  font-size: 25px;
  text-transform: uppercase;
  color: #194680;
  font-weight: bold;
}

.csr__section .overlay > a {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.csr__section .overlay__text {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.pub__col {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.pub__col:last-child {
  padding: 0;
  border: none;
}

.pub__col > a {
  width: 75px;
  margin-right: 15px;
}

.publication-content {
  flex: 1;
}

.publication-content h3 {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.two__col--section .overlay > a {
  height: 457px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.two__col--section .overlay__text {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.journal-content h3,
.healthInfo-content h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
}

.journal-content span,
.healthInfo-content span {
  font-size: 14px;
  font-weight: 600;
}

.journal-content span i,
.healthInfo-content span i {
  margin-right: 5px;
}

.healthInfo-content span {
  font-size: 13px;
  margin-bottom: 5px;
  display: block;
}

.health__container .pub__col {
  margin-bottom: 10px;
  padding-bottom: 10px;
}

/* .healthInfo-content span {
  padding: 5px 10px;
  font-size: 12px;
  background-color: var(--primary--color);
  color: #fff;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  margin-bottom: 3px;
  display: inline-block;
} */

/* .journals__container .pub__col {
  padding: 0;
  border: none;
} */
.journal-content {
  position: relative;
  padding-left: 38px;
}
.journal-content::before {
  content: "\f0c1";
  position: absolute;
  left: 0;
  top: 7px;
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  font-size: 20px;
  color: var(--primary--color);
}

@media (min-width: 768px) {
  .tghn__projects .banner__col--main {
    margin-right: 35px;
    padding-right: 35px;
    border-right: 1px solid #ccc;
    flex: 0 0 calc(100% - 353px);
  }
}

@media (max-width: 959px) {
  .tghn__projects .banner__row {
    flex-flow: row;
  }

  .tghn__projects .banner__col--main {
    flex: 0 0 calc(100% - 350px);
  }
}

.team__members--new {
  text-align: center;
  background: #fff;
  padding: 14px;
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.team__members--new:hover {
  box-shadow: 0 0px 3px #0000001f;
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
}

.team__members--new > a {
  display: block;
  width: 100px;
  height: 100px;
  margin: auto;
}

.team__members--new > a img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  border-radius: 500px;
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  -ms-border-radius: 500px;
  -o-border-radius: 500px;
}

.team__members--contentNew h3 {
  font-size: 15px;
  color: #1f1f1f;
  margin: 0;
  margin-top: 8px;
  line-height: 1.3;
  font-weight: 600;
}

.team__members--contentNew h3 a {
  color: #1f1f1f;
}

.team__members--contentNew span {
  font-weight: 500;
  font-size: 12px;
  margin-top: 6px;
  line-height: 1.3;
  display: block;
  color: var(--primary--color);
}

.overall__projects--section {
  /* background: #f2f7fb; */
  padding: 50px 0;
  padding-bottom: 0;
}

.projects__data--content > a {
  /* display: block;
  width: 50px;
  margin: auto;
  margin-bottom: 8px;
  min-width: 50px;
  background: #fbf8f5;
  padding: 8px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -29px; */

  display: block;
  width: 100px;
  margin: auto;
  margin-bottom: 8px;
  min-width: 50px;
  background: #fbf8f5;
  padding: 8px;
  height: 50px;
  border-radius: 10%;
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -34px;
}

.projects__data--content > a img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.tns-ovh {
  padding-bottom: 30px;
}

/* .projects__data--new > div > div:nth-child(2) .projects__data--content > a {
  background: #ecebff;
}

.projects__data--new > div > div:nth-child(3) .projects__data--content > a {
  background: #eafde7;
}

.projects__data--new > div > div:nth-child(5) .projects__data--content > a {
  background: #fff0da;
}

.projects__data--new > div > div:nth-child(6) .projects__data--content > a {
  background: #eafde7;
}

.projects__data--new > div > div:nth-child(7) .projects__data--content > a {
  background: #fceef3;
}

.projects__data--new > div > div:nth-child(8) .projects__data--content > a {
  background: #e6fdfc;
} */

.projects__data--content {
  position: relative;
  height: 100%;
  text-align: center;
  background: #f2f7fb;
  padding: 15px 25px 30px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  /* padding-bottom: 0; */
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}

.projects__data--content h3 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  margin: 0;
}

.projects__data--content h3 a {
  color: #1a1a1a;
}

@media (min-width: 960px) {
  .uk-child-width-1-7\@m > * {
    width: calc(100% * 1 / 7.001);
  }
}

.team__members--new:hover,
.projects__data--content:hover {
  box-shadow: 0 0px 9px #0000001f;
  transition: 0.2s linear;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.projects__data--content span {
  font-size: 14px;
  margin-top: 10px;
  display: block;
  font-weight: 500;
}

.header--sidebar__nav {
  display: none;
}

.activity-content {
  margin-bottom: 15px;
}

.recent__activities--section {
  background: #ecebff;
  position: relative;
}

.recent__activities--section::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url("./assets/img/paper-pattern.jpg");
  opacity: 0.2;
}

.recent__activities--section > div {
  position: relative;
}

.gallery__container.activities__container > a {
  height: 260px;
}

.recent__activities.activities__container .activity-content {
  padding: 0;
  border: none;
  margin-top: 15px;
}

.board__members {
  background: #f2f7fb;
  padding-bottom: 50px;
  margin-top: 35px;
}

.tickercontainer .mask {
  position: relative;
  left: 10px;
  top: 0px;
  width: 100%;
  overflow: hidden;
}
ul#newsTicker {
  position: relative;
  left: 750px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}
ul#newsTicker li {
  margin: 0;
  padding: 0;
}
ul#newsTicker a {
  white-space: nowrap;
  font-weight: 600;
  padding: 0;
  color: #333;
  /* font: bold 10px Verdana; */
  margin: 0 23px 0 0;
  padding-left: 13px;
  font-size: 14px;
  font-family: "Mukta", sans-serif;
  position: relative;
}
ul#newsTicker a::before {
  width: 6px;
  height: 6px;
  content: "";
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 9px;
  border-radius: 1000%;
}

ul#newsTicker a:hover {
  color: var(--primary);
}
ul#newsTicker span {
  margin: 0 10px 0 0;
}

.newsTicker__wrap {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #f1f1f1;
}

.newsTicker__wrap .uk-flex {
  overflow: hidden;
}
.newsTicker__wrap .marquee-sibling {
  position: relative;
  padding: 11px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  /* padding-left: 0; */
  font-size: 12px;
  display: inline-block;
  border-right: 1px solid #ccc;
  text-transform: uppercase;
  background: #426e94;
  color: #fff;
}
/* .newsTicker__wrap .marquee-sibling::before {
  content: "";
  position: absolute;
  top: 12px;
  right: -20px;
  border-color: transparent transparent transparent #ccc;
  border-style: solid;
  border-width: 10px;
} */
.newsTicker__wrap .marquee-sibling::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -18px;
  border-color: transparent transparent transparent #426e94;
  border-style: solid;
  border-width: 10px;
}

/* .newsTickerTitle {
  font-size: 16px;
  font-weight: 600;
  color:#111;
  text-transform: uppercase;
  font-family: "PT Sans", sans-serif;
  padding: 5px;
} */

.message__director,
.message__director--page {
  position: relative;
  display: flex;
  margin-bottom: 30px;
  padding: 22px;
  border: 1px solid #005ea62e;
  background-image: linear-gradient(211deg, #082140, var(--primary--color));
  border-radius: 4px;
}

.message__director {
  background-image: linear-gradient(211deg, #2d4e75, var(--primary--color));
}

.message__director--page {
  background: transparent;
  border: none;
  padding: 0;
  display: block;
}

.banner__section .uk-container {
  max-width: 1400px;
}

.chairman-img img {
  width: 130px;
  min-width: 130px;
  height: 130px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  object-fit: cover;
}
.chairman-content h2 {
  font-weight: 700;
  color: #ffffffd9;
  font-size: 19px;
  display: block;
  text-transform: none;
  margin: 0;
  margin-bottom: 9px;
}
.chairman-content p {
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  line-height: 22px;
  color: #ffffffe0;
  position: relative;
}

.chairman-content span {
  margin-top: 9px;
  font-weight: 700;
  color: #ffffffd4;
  font-size: 14px;
  display: block;
}

.chairman-img {
  margin-right: 20px;
}

.message__director--page .chairman-content h2 {
  color: var(--primary--color);
  text-transform: uppercase;
  font-size: 30px;
  margin: 0;
}

.message__director--page .chairman-img img {
  width: 270px;
  min-width: 100%;
  height: 100%;
}

.message__director--page .chairman-img {
  width: 270px;
}

.message__director--page .chairman-content p {
  color: #333;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.message__director--page .chairman-content span {
  color: #666;
  font-weight: 500;
  font-size: 16px;
  margin-top: 4px;
}

.message__director--page hr {
  margin: 30px 0;
}

.banner__section .uk-width-3-5\@l {
  width: 65%;
}

.banner__section .uk-width-2-5\@l {
  width: 35%;
}

.nphf--card-icon img {
  margin-bottom: 9px;
  height: 35px;
}

.readMore-btn {
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.readMore-btn > a,
.readMore-btn > span {
  display: inline-block;
  margin: 0;
}

.readMore-btn > span {
  flex: 0 0 50%;
  margin-bottom: 5px;
}

.readMore-btn .btn-white {
  padding: 5px 10px;
  font-size: 11px;
}

.bg-grey .heading-wrap h2 {
  color: #ffffffec;
}

.bg-grey .title {
  color: #ffffffec;
}

.bg-grey > div,
.fhen__projects--section > div {
  position: relative;
  z-index: 1;
}

.bg-grey .slider__arrows > a {
  background: #fff;
}

.bg-grey .slider__arrows > a svg {
  color: var(--primary--color);
}

.bg-grey .uk-slidenav.uk-icon.uk-slidenav.uk-invisible {
  background: #ffffff70;
  visibility: visible !important;
}

.bg-grey .logo__img img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.healthInfo-content span i {
  color: var(--primary--color);
}

.board__member--idle {
  margin-right: 15px;
}

.healthInfo-content span i.fa-solid.fa-video {
  color: #df0303;
}

.overall__projects--section .overlay__text h3 {
  font-size: 18px;
}

.single-header {
  margin-bottom: 35px;
}

.contact--details .heading-wrap h2 {
  font-size: 20px;
}

.contact-detail {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.contact-detail li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 30px;
  font-size: 16px;
}

.contact-detail li i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 30px;
  color: var(--primary--color);
}

.contact-detail li:last-child {
  margin-bottom: 0px;
  padding-left: 0;
}

.contact-detail li h4 {
  color: #0f1419;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 7px;
  font-weight: bold;
}

.contact-detail li p {
  font-weight: 500;
  margin: 0;
  color: rgba(0, 0, 0, 0.8705882353);
}

.contact-detail li p a {
  font-weight: 500;
  color: #000;
}

.contact-detail li p a:hover {
  color: var(--primary--color);
}

.contact-detail .social-media {
  margin-top: 12px;
}

.contact-detail .social-media a,
.socials__accounts a {
  width: 35px;
  height: 35px;
  background: #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1803921569);
  text-align: center;
  color: var(--primary--color);
  border-radius: 100%;
  line-height: 35px;
  margin: 0 10px 5px 0;
}

.contact-detail .social-media a:hover,
.socials__accounts a:hover {
  background: var(--primary--color);
  color: #fff;
}

.socials__accounts {
  margin-top: 20px;
}

.socials__accounts a {
  display: inline-block;
}
.contact-detail {
  margin-top: 26px;
}

.contact-form {
  padding: 30px;
  box-shadow: 0 0 8px #00000012;
}

.contact-form p {
  margin: 0;
}

.contact-form form {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}

.contact-form form p:not(:last-child) {
  margin-bottom: 20px;
  flex: 0 0 48.8%;
}

.page-template-template-contact .contact-form form p:not(:last-child) {
  flex: 0 0 48.1%;
}

.page-template-template-contact .contact-form form p:nth-child(6),
.page-template-template-contact .contact-form form p:nth-last-child(3) {
  flex: 0 0 100%;
}

.register__form.contact-form form p:nth-child(6) {
  flex: 0 0 48.1%;
}

.contact-form form p label {
  display: block;
  font-size: 14px;
  margin-bottom: 7px;
  font-weight: 500;
}

.contact-form form input[type="text"],
.contact-form form input[type="tel"],
.contact-form form input[type="password"],
.contact-form form textarea,
.contact-form form input[type="email"],
.contact-form form select {
  margin-top: 5px;
  background: #fff;
  width: 100%;
  outline: none;
  color: #444;
  font-family: "Poppins", sans-serif;
  border: 1px solid #eee;
  height: 45px;
  box-sizing: border-box;
  padding: 8px 10px 8px 20px;
  /* border-radius: 0; */
  background: rgba(0, 0, 0, 0.06);
  font-weight: 600;
  font-size: 14px;
  border-bottom: solid 2px rgba(0, 0, 0, 0.14);
}

.contact-form form textarea {
  height: 100px;
}

.contact-form form input[type="submit"] {
  padding: 12px 18px;
  background: var(--primary--color);
  color: #fff;
  border: none;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin-top: 15px;
}

.a-header {
  margin-top: 30px;
}

.page-numbers::before,
.page-numbers.current::before {
  width: 100%;
  height: 100%;
  background: var(--primary--color);
  content: "";
  position: absolute;
  left: -100%;
  z-index: -1;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.sidebar ul {
  background: #f1f1f1;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-numbers {
  border-radius: 4px;
  display: inline-block;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  text-align: center;
  line-height: 40px;
  font-size: 15px;
  overflow: hidden;
  margin-right: 6px;
  position: relative;
  font-weight: 500;
  color: #000;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  border: 1px solid #ccc;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.page-numbers.next,
.page-numbers.prev {
  padding-left: 20px;
  width: auto;
  padding-right: 20px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--primary--color);
  color: #fff;
  border: 1px solid transparent;
}

.page__heading--wrap span {
  color: var(--primary--color);
}

.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

.gallery-item a {
  display: block;
  width: 100%;
  height: 300px;
}

.gallery-item a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.team__container .main-title {
  text-align: center;
}

.team__container .main-title h1 {
  color: #fff;
  margin: 0;
  margin-top: 15px;
}

.main-title h2 {
  font-size: 35px;
  font-weight: 600;
  color: var(--primary--color);
  text-transform: uppercase;
}

.team__designation {
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary--color);
  background: #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  z-index: 1;
}

.featured__img img {
  width: 100%;
  height: 100%;
}

.team__container.bg-grey {
  overflow: hidden;
}

.content-area.the-content p {
  font-size: 15px;
}

.quick-links {
  background: #f5f8fb;
  padding: 0;
  border-radius: 4px;
}

.quick-links h3 {
  color: var(--primary--color);
  font-size: 24px;
  /* padding: 15px; */
  position: relative;
  text-transform: uppercase;
  padding-bottom: 12px;
  font-weight: bold;
  margin: 15px;
  padding-top: 15px;
}
.quick-links h3:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--primary--color);
  width: 40px;
  height: 2px;
}
.quick-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-links ul li {
  position: relative;
  padding: 15px;
  padding-right: 35px;
  border-bottom: 1px solid #eee;
}

.quick-links ul li:last-child {
  border-bottom: none;
}

.quick-links ul li a {
  font-size: 15px;
  font-weight: 500;
  display: block;
  color: #1e1e1e;
}

.quick-links ul li a::before {
  content: "\f054";
  position: absolute;
  right: 20px;
  top: 11px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  width: 28px;
  height: 28px;
  line-height: 29px;
  text-align: center;
}

.quick-links ul li:hover {
  background: var(--primary--color);
}

.quick-links ul li:hover a {
  color: #fff;
}

.quick-links ul li:hover a::before {
  width: 28px;
  height: 28px;
  line-height: 29px;
  text-align: center;
  background-color: #fff;
  color: var(--primary--color);
  border-radius: 40px;
}

.default-pages h1 {
  text-align: left;
}

.structure__content .featured__img {
  text-align: center;
}

.structure__content .featured__img img {
  width: auto;
}

.the-content table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: center;
  border: 1px solid #eee;
}

.the-content table thead {
  background: rgba(255, 255, 255, 0.5);
}
.the-content table thead th {
  padding: 16px 12px;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
}

.the-content table tbody tr td {
  font-size: 14px;
  padding: 8px 12px;
  vertical-align: middle;
  color: #333333d0;
  font-weight: 600;
  position: relative;
  /* background: rgba(255, 255, 255, 0.5); */
}
.the-content table tbody tr td::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-transform: capitalize;
  font-size: 13px;
  line-height: 1.23;
  left: 10px;
  letter-spacing: 1px;
  color: #000;
  display: none;
  text-align: left;
}
.the-content table tbody tr:nth-child(even) {
  background: #f5f5f5;
}
.the-content table tbody tr:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.the-content table tbody tr:first-child {
  border-top: 1px solid #eee;
}
.the-content table tbody tr td:not(:last-child),
.the-content table thead th:not(:last-child) {
  border-right: 1px solid #eee;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  float: left;
  margin-right: 1.5em;
  width: auto;
  margin-bottom: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
  width: auto;
}

.aligncenter {
  clear: both;
  display: block;
  width: auto;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1.5em;
}

#button {
  display: inline-block;
  background-color: var(--primary--color);
  width: 50px;
  height: 50px;
  text-align: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  visibility: hidden;
  z-index: 1000;
  opacity: 0;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  -webkit-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  -moz-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  -ms-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  -o-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  line-height: 50px;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
#button::before {
  content: "\f176";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  line-height: 45px;
}
#button:hover {
  opacity: 0.9;
}

.global__health--section {
  position: relative;
}

.global__health--section::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url("./assets/img/gplaypattern.jpg");
  /* opacity: 0.7; */
  background-repeat: repeat;
  z-index: -1;
}

.fhen__projects--section,
.about__other--contents {
  position: relative;
  background: #fbf9ef; /* url("./assets/img/farming-nphf.jpg") 0 0 no-repeat; */
}

.fhen__projects--section::before,
.about__other--contents::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("./assets/img/paral-23.jpg") 0 0 no-repeat;
  /* background-position: bottom right;
  background-size: cover; */
}

.fhen__projects--section::before {
  /* background-image: url('./assets/img/bg-farming.png'); */
  background-image: url("./assets/img/pattern-2.jpg");
  /* opacity: 0.7; */
  background-repeat: repeat;
}

.fhen__projects--section {
  background: RGBA(255, 255, 255, 0.9);
  padding-bottom: 75px;
}
.the-content figure {
  width: 100% !important;
  margin: 0;
  margin-bottom: 15px;
}

.the-content figcaption {
  padding: 5px;
  font-size: 14px;
  text-align: center;
  font-style: italic;
  font-weight: 500;
}

.related__section {
  margin: 50px 0;
}

.proPostDate p {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}

.album__content > a {
  display: block;
  width: 100%;
  height: 200px;
}

.album__content > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category__content .activities__container > a {
  height: 200px;
}

.mini-title,
.mini-title a {
  font-size: 23px;
  text-transform: uppercase;
  font-weight: 600;
  /* text-align: center; */
  margin-bottom: 9px;
  color: #101010;
}

.mini-title a:hover {
  color: var(--primary--color);
}

.garp__section {
  position: relative;
  background: #f1f1f1;
}

.garp__section::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url("./assets/img/map-anim.png") left center;
  opacity: 0.25;
  background-repeat: no-repeat;
}

@-webkit-keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

@keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.garp__section::before {
  content: " ";
  /*! opacity: 0.25; */
  /*! z-index: -1; */
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.garp__section .activities__container > a {
  height: 280px;
}

.garp__section > div {
  position: relative;
}

.related__section .activities__container > a {
  height: 280px;
}

.tartist-tiny-slider-wrap {
  width: 100%;
  padding: 0;
}
.tartist-tiny-slider .wrap {
  display: inline-grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  grid-row-gap: 40px;
}
.tns-nav {
  text-align: center;
  margin-top: 30px;
}
.tns-nav button {
  width: 15px;
  height: 15px;
  border-radius: 20px;
  border: none;
  margin: 0 5px;
  background-color: #dddddd;
}
.tns-nav button.tns-nav-active {
  background-color: #2779a8;
}

@media (min-width: 800px) {
  .tartist-tiny-slider[data-chunksize="1"] .wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .tartist-tiny-slider[data-chunksize="2"] .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .tartist-tiny-slider[data-chunksize="3"] .wrap {
    grid-template-columns: repeat(3, 1fr);
  }
  .tartist-tiny-slider[data-chunksize="4"] .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .tartist-tiny-slider[data-chunksize="5"] .wrap {
    grid-template-columns: repeat(3, 1fr);
  }
  .tartist-tiny-slider[data-chunksize="6"] .wrap {
    grid-template-columns: repeat(3, 1fr);
  }
  .tartist-tiny-slider[data-chunksize="7"] .wrap {
    grid-template-columns: repeat(4, 1fr);
  }
  .tartist-tiny-slider[data-chunksize="8"] .wrap {
    grid-template-columns: repeat(4, 1fr);
  }
  .tartist-tiny-slider[data-chunksize="9"] .wrap {
    grid-template-columns: repeat(5, 1fr);
  }
  .tartist-tiny-slider[data-chunksize="10"] .wrap {
    grid-template-columns: repeat(5, 1fr);
  }
}

.about-other {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #1111113d;
}

.about-other:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.about-other h3 {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--primary--color);
}

.about__other--contents {
  background: #f1f1f1;
  margin-top: 50px;
}

.sticky-team-img {
  position: sticky;
  top: 100px;
}

.gallery-col .project-description {
  padding: 15px 25px;
}
.gallery-col .project-card {
  height: 100%;
}
.gallery-col .project-card .project-title {
  font-size: 16px;
  line-height: 1.6;
  margin: 0px 0 00;
}

.gallery-col .project-card > a #fullScreen {
  width: 50px;
  height: 50px;
  position: absolute;
  display: inline-block;
  bottom: 20px;
  right: 20px;
}

#fullScreen {
  width: 60px;
  height: 60px;
  background: var(--primary--color);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

#fullScreen::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.project-card {
  border: 1px solid #00000012;
  border-radius: 4px;
  background: #fff;
}

.project-card > a {
  height: 280px;
  width: 100%;
  display: block;
  position: relative;
}

.project-card > a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s linear;
  border-radius: 4px 4px 0 0;
}

.gallery-col .project-card .project-title {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
}

.gallery-col .project-card .project-title a {
  color: var(--primary--color);
}

.projects__cat--section {
  position: relative;
}

.projects__cat--section::before {
  content: "";
}

.single-btn-download {
  padding: 10px 20px;
  font-size: 14px;
}

.fhen__projects--section .logo__img {
  max-width: 100%;
  max-height: 50px;
}

.global__health--section .logo__img img {
  height: 50px;
}

.multimedia__section::before {
  content: "";
  background: url("./assets/img/footerDrop.png") 0 0 no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.2;
}

.multimedia__section > div {
  position: relative;
}

.fhen__projects--section .logo__img img {
  max-width: 100px;
}

.project__single .team__members--new {
  background: #f2f7fb;
}
.team__members--contentNew .socials__accounts {
  margin-top: 9px;
}

.team__details {
  margin-top: 8px;
}

.team__details > a {
  font-size: 13px;
  color: #555;
  font-weight: 500;
  display: block;
}

.project__pdf ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.project__pdf ul li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.project__pdf ul li a {
  color: #333;
  font-weight: 600;
  margin-right: 5px;
}

.activities__container.recent__activities.publication__page > a,
.term-annual-report .activities__container.recent__activities > a {
  height: 410px;
}


.health__info--page .activities__container.recent__activities {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #eee;
}

.health__info--page .activities__container.recent__activities .activity-content,
.health__info--page .activities__container.recent__activities .activity-content h3 {
  margin: 0;
}

.health__info--page .activities__container.recent__activities .activity-content h3 {
  font-size: 18px;
}
