@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");

:root {
  --primary--color: #126c94;
  --secondary--color: #ee3129;
  --primary-font: "Inter", sans-serif;
  --secondary-font: "Inter", serif;
  /* --tertiary-font: "Mukta", sans-serif; */
}

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

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

body {
  font-family: var(--primary-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondary-font);
}

.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  max-width: 120px;
  /* adjust size */
  height: auto;
}

.header-navigation {
  align-items: center;
  display: flex;
  align-self: stretch;
  margin: 0 0 0 auto;
  padding-right: 30px;
}

.header-navigation>div {
  height: 100%;
  display: flex;
  align-self: stretch;
}

.header-navigation>div>ul {
  width: 100%;
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.header-navigation>div>ul>li:not(:last-child) {
  margin-right: 25px;
}

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

.header-navigation>div>ul>li>ul,
.header-navigation>div>ul>li>ul>li>ul {
  position: absolute;
  top: 140%;
  z-index: 252;
  background: #fff;
  width: 350px;
  list-style-type: none;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
  box-shadow: 5px 8px 15px #0000001a;
}

.header-navigation>div>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.header-navigation>div>ul>li>span {
  display: inline-block;
  margin-left: 10px;
  font-size: 16px;
  vertical-align: middle;
  margin-top: 2px;
  color: #000;
}

.header-navigation>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;
}

.header-navigation>div>ul>li>ul>li,
.header-navigation>div>ul>li>ul>li>ul>li {
  position: relative;
  padding: 12px 20px;
  border-bottom: 1px solid #0000000f;
}

.header-navigation>div>ul>li>ul>li>ul>li {
  border-bottom: 1px solid #ffffff0f;
}

.header-navigation>div>ul>li>a,
.header-navigation>div>ul>li>ul>li>a,
.header-navigation>div>ul>li>ul>li>ul>li>a {
  display: block;
  height: 100%;
  font-size: 14px;
  height: auto;
  font-weight: bold;
  color: #000000e8;
  text-transform: uppercase;
}

.header-navigation>div>ul>li>ul>li>ul>li>a {
  color: #fff;
}

.header-navigation>div>ul>li:before {
  width: 0%;
  height: 2px;
  position: absolute;
  bottom: 0;
  background: var(--primary--color);
  transition: 0.3s linear;
  content: "";
  transform-style: left bottom;
}

.header-navigation>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: var(--primary--color);
  width: 400px;
}

.header-navigation>div>ul>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  left: 100%;
  transition: 0.3s linear;
}

.header-navigation>div>ul>li:hover>a,
.header-navigation>div>ul>li>ul>li:hover>a,
.header-navigation>div>ul>li>ul>li>ul>li:hover>a,
.header-navigation>div>ul>li:hover>span,
.header-navigation>div>ul>li>ul>li:hover>span {
  color: var(--primary--color);
}

.header-navigation>div>ul>li>ul>li:hover>span {
  opacity: 1;
  visibility: visible;
  transition: 0.3s linear;
  right: 13px;
}

.header-navigation>div>ul>li>ul>li>ul>li:hover a {
  color: #fff;
  opacity: 0.75;
}

.header-navigation>div>ul>li:hover:before {
  width: 100%;
}

.btn {
  border: 0;
  outline: none;
  cursor: pointer;
  display: inline-block;
  border-radius: 5px;
  padding: 12px 24px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  font-family: var(--primary-font);
  background: var(--primary--color);
  color: #fff;

  &:hover {
    background: var(--secondary--color);
    color: #fff;
  }
}

.btn-secondary {
  color: #fff;
  background: linear-gradient(135deg, #f1970d 50%, #ff9f0d 0%) 100%;
  background-size: 250%;
  transition: 0.3s ease-in-out;
  padding: 12px 24px;
}

.btn-secondary:hover {
  color: #fff;
  background-position: 0;
}

.header-branding {
  padding: 15px 0;
}

.btn-search {
  margin-left: 15px;
  display: inline-block;
}

.banner {
  position: relative;
  display: flex;
  flex-direction: column;
}

.banner .flexslider {
  position: relative;
  background: none;
  padding: 0;
  margin: 0;
  border: none;
}

.slides__item {
  position: relative;
}

.info-item ul {
  list-style: none;
  /* padding-left: 0; 
    margin-left: 0;  */
  margin: 0;
  padding: 0;
}

.slides__item img {
  display: block;
  width: 100%;
  max-height: 100vh;
  object-fit: cover;
  object-position: center;
}

.banner .flex-control-nav {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
}

.banner .flex-control-nav li a {
  background: #fff;
  height: 8px;
  width: 16px;
  transition: width 0.3s ease-in-out;
}

.banner .flex-control-nav li a.flex-active {
  background: var(--secondary--color);
  cursor: default;
  transition: width 0.3s ease-in-out;
  width: 30px;
}

.slides__item--content {
  position: absolute;
  top: 50%;
  /* left: 50%; */
  z-index: 4;
  width: 100%;
  display: flex;
  justify-content: center;
  color: #fff;
  align-items: center;
  text-align: center;

}

.slides__item--content .slides-title {
  font-size: 45px;
  color: #fff;
  margin: 0;
  line-height: 1.1;
  font-weight: 700;
  width: 75%;
  margin: auto;
  margin-bottom: 100px;
}

.slides__item--content p {
  margin: 0;
  padding: 35px 0 35px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  opacity: 0.85;
}

.slides__item--content>div {
  width: 100%;
}

.btn-small {
  padding: 12px 25px;
  font-size: 18px;
}

.servicesCol {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  color: #000000bd;
}

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

.servicesCol strong {
  color: #0e509e;
}

.header {
  position: sticky;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  box-shadow: 0 5px 12px #00000012;
}

.banner .flexslider .slides img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.banner {
  display: flex;
  flex-direction: column;
}



/* .servicesCol:nth-child(2n) strong {
  color: #fcc81c;
}
.servicesCol:nth-child(2n) + .servicesCol strong {
  color: #ff9801;
} */
.heart-vector {
  animation: rotation 7s linear infinite;
  position: absolute;
  width: auto;
  top: 0;
  left: 10px;
  border-radius: 100%;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.servicesCol strong {
  font-size: 30px;
  display: block;
  font-family: var(--secondary-font);
  font-weight: 700;
  line-height: 1.2;
}

/* .servicesCol:last-child strong {
  color: #8cca4f;
} */
.servicesCol-img {
  margin-right: 23px;
}

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

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

.section-about {
  position: relative;
  background: #ffa41512;
}

.section-about:before {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  top: 0;
  background-image: url(./assets/img/about-pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.about-title {
  color: var(--primary--color);
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
}

.about-title-container p {
  font-size: 16px;
  line-height: 1.8;
  color: #000000d4;
  padding-top: 20px;
  margin: 0 0 35px 0;
}

.title-cap {
  color: var(--secondary--color);
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 8px;
  text-transform: uppercase;
  display: inline-block;
}

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

/* .about-imgcontainer {
  -webkit-mask-image: url(assets/img/Splash-GC.png);
  mask-image: url(assets/img/Splash-GC.png);
  -webkit-mask-size: 90%;
  mask-size: 90%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: center;
  filter: drop-shadow(15px 15px 0px #0e4f9ead);
  -webkit-mask-position: center;
} */
.about-imgcontainer img {
  width: 100%;
  height: 100%;
  z-index: 3;
  position: relative;
  border-radius: 114px 8px 114px 8px;
  filter: drop-shadow(12px 12px 0px var(--secondary--color));
}

.about-imgcontainer {
  position: relative;
}

/* .about-imgcontainer::after {
  content: " ";
  position: absolute;
  right: -20px;
  top: 20px;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  z-index: 2;
  border: 2px solid var(--secondary--color);
}
.about-imgcontainer::before {
  content: " ";
  position: absolute;
  left: -10px;
  top: -10px;
  width: 30%;
  height: 40%;
  border-radius: 4px;
  z-index: 2;
  background-color: var(--secondary--color);
} */
/* .about-imgcontainer::before {
  content: " ";
  position: absolute;
  right: -105px;
  top: 0;
  width:145px;
  height: 145px;
  background-image: url("./assets/img/pattern.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 4;
} */
.anchor-text {
  font-weight: bold;
  color: #000000e8;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 10px;
  letter-spacing: 0.4px;
  font-size: 12px;
  position: relative;
}

.anchor-text:before {
  width: 20%;
  height: 2px;
  background: #000;
  content: "";
  position: absolute;
  transition: 0.3s linear;
  bottom: 0;
  left: 0;
}

.anchor-text:hover {
  color: var(--primary--color);
  transition: 0.3s linear;
}

.anchor-text:hover:before {
  width: 100%;
  transition: 0.3s linear;
  background: var(--primary--color);
}

/* Alignments
 --------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;

  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;

  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

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

.main-title-wrap {
  font-size: 18px;
  color: var(--secondary--color);
  font-weight: 600;
  margin-bottom: 60px;
}

.entry-header {
  margin-bottom: 25px;
}

.error-404 .page-header {
  margin: 20px 0;
}

.error-404 .error-text .btn {
  margin-top: 15px;
}

.main-title,
.entry-title {
  color: var(--primary--color);
  font-weight: 700;
  font-size: 40px;
  margin: 0;
}

.main-title-wrap .main-title {
  /* line-height: 0.7; */
  letter-spacing: -0.5px;
}

.project-tab {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-tab li {
  display: inline-block;
  margin-left: 25px;
}

.project-tab li a {
  font-size: 13px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.2px;
  position: relative;
  border-radius: 40px;
  text-transform: uppercase;
  padding-bottom: 12px;
  display: inline-block;
}

.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 a:hover:before {
  width: 100%;
  transition: 0.3s linear;
}

.load-more {
  margin-top: 35px;
  text-align: center;
}

.project-tab li.active a,
.project-tab li:hover a {
  color: var(--primary--color);
}

.project-tab li.active a:before {
  width: 100%;
}

.tab-content .grid,
.journal__template .grid {
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
}

.journal__template .project-card {
  margin-bottom: 15px;
}

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

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

.slug {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--primary--color);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
}

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

.project-description {
  padding: 10px 20px;
  font-size: 15px;
  line-height: 1.75;
  color: #000;
  height: 200px;
  border-radius: 0 0 4px 4px;
}

.project-description p {
  margin: 0 0 10px;
  opacity: 0.65;
  font-family: var(--tertiary-font);
  font-size: 14px;
  line-height: 1.56;
}

.project-description .anchor-text {
  font-size: 12px;
}

.project-title {
  font-size: 18px;
  font-family: var(--primary-font);
  line-height: 25px;
  font-weight: 600;
  margin: 0 0 10px;
  opacity: 0.85;
}

.project-title a {
  color: #000;
  display: block;
}

.project-title a:hover {
  color: var(--primary--color);
  opacity: 1;
}

.video--container {
  position: relative;
}

.video-content p {
  margin-bottom: 30px;
  text-shadow: 1px 1px 1px #00000069;
  line-height: 1.45;
}

.video-content .uk-container {
  display: flex;
  align-items: center;
}

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

#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%);
}

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

#fullScreen:hover {
  background: #f1970d;
}

.opportunity-col {
  background: var(--primary--color);
  padding: 50px 30px;
  color: #fff;
  border-radius: 10px;
}

.opportunity-col-header {
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  z-index: 1;
}

.opportunity-col-header div {
  background: #1113;
  min-height: 70px;
  min-width: 70px;
  border-radius: 100%;
  text-align: center;
  line-height: 70px;
  margin-right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opportunity-col-header div img {
  width: 45px;
  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;
}

.opportunity-col p {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
  opacity: 0.95;
  margin: 0px 0 30px 0;
}

.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>img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.opportunity-col.internship {
  background: linear-gradient(to right,
      var(--primary--color),
      #0082c8,
      #0082c8,
      var(--primary--color));
}

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

.fx-slider .flexslider {
  background: none;
  padding: 0;
  margin: 0;
  border: none;
}

.fx-slider .flexslider .project-card>a img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.fx-slider .flexslider .flex-viewport {
  display: flex;
  flex-direction: column;
}

.fx-slider .flexslider .flex-viewport>ul,
.fx-slider .flexslider .flex-viewport>ul>li {
  display: flex !important;
  border-radius: 4px;
}

.fx-slider .flex-direction-nav a::before {
  font-family: "Material-Design-Iconic-Font";
  display: inline-block;
  content: "\f2fa";
  color: rgba(0, 0, 0, 0.8);
  font-size: 45px;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}

.events--block .project-card {
  background: #fff;
  border: none;
}

.fx-slider .flex-direction-nav a {
  opacity: 1 !important;
  top: 0;
  margin: 0;
  width: auto;
  height: auto;
  font-size: 0;
  position: static;
}

.flex-direction-nav .flex-prev,
.flexslider:hover .flex-direction-nav .flex-prev {
  left: 0 !important;
}

.flex-direction-nav .flex-next,
.flexslider:hover .flex-direction-nav .flex-next {
  right: 0 !important;
}

.fx-slider .flex-direction-nav .flex-next::before {
  content: "\f2fb";
}

.fx-slider .flex-direction-nav {
  position: absolute;
  top: -75px;
  right: 0;
  line-height: 1;
}

.fx-slider .flex-direction-nav li {
  display: inline-block;
  vertical-align: middle;
  margin-left: 25px;
}

.fx-slider .flex-direction-nav li a:hover:before {
  color: var(--primary--color);
}

.main-title-wrap span {
  margin-bottom: 8px;
  display: block;
}

.fx-slider .flex-prev.flex-disabled::before {
  opacity: 0.1 !important;
  pointer-events: none;
}

.partners-col {
  border: 1px solid #0000000f;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  width: 100%;
  height: 125px;
}

.site-footer {
  background: var(--primary--color);
  color: #fff;
  padding-bottom: 0;
  position: relative;
}

.site-footer::before {
  content: "";
  background: url(./assets/img/wood.svg);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  opacity: 0.07;
}

.site-footer .uk-container {
  position: relative;
}

.footer-col img {
  margin-bottom: 16px;
}

.footer-col p {
  margin: 0 0 5px;
  position: relative;
  padding-left: 25px;
  font-size: 16px;
  line-height: 1.75;
  text-align: left;
}

.footer-col p i {
  position: absolute;
  top: 5px;
  left: 0;
  font-size: 18px;
}

.footer-col strong {
  font-size: 16px;
  display: inline-block;
  opacity: 0.8;
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 11px;
  position: relative;
  text-transform: uppercase;
}

.footer-col ul li a {
  color: #fffffff7;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  padding: 6px 0;
}

.footer-col ul {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col p a {
  color: #fff;
}

.footer-social {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.footer-social li {
  display: inline-block;
}

.footer-social li a {
  color: #fff;
  background: #ffffff26;
  display: inline-block;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 18px !important;
  border-radius: 100%;
  padding: 0 !important;
}

.footer-social li a:hover {
  color: var(--primary--color);
  background: #fff;
  opacity: 1 !important;
}

.footer-last {
  position: relative;
  margin-top: 15px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.205);
}

.footer-last p {
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
}

.footer-last p a {
  color: #fff;
}

.footer-last ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.footer-last ul li a {
  display: inline-block;
  margin-right: 16px;
  font-size: 13px;
  color: #ffffffe5;
  padding: 5px 0;
  font-weight: 600;
}

.footer-last ul li a:hover {
  color: #fff;
}

.footer-last {
  color: #ffffffcf;
  font-size: 15px;
}

.footer-end {
  text-align: center;
  background-color: var(--primary--color);
  color: white;
  padding: 10px;
}

.footer-col ul li:hover a {
  opacity: 0.75;
}

.hamburger {
  display: none;
}

::selection {
  background: #0e509e;
  color: wheat;
  opacity: 0.86;
}

.responsive--nav {
  background-color: #efefef;
  position: fixed;
  top: 0;
  right: -100%;
  will-change: transform;
  height: 100%;
  width: 100%;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  z-index: 1000;
  max-width: 370px;
}

.show__side--menu .responsive--nav {
  right: 0;
  transition: all 0.4s ease;
}

.nav__inner {
  padding: 6px 0px 100px 0px;
  position: relative;
  height: calc(100vh - 120px);
  overflow-y: auto;
}

.nav__inner nav {
  height: 100%;
}

.menu--mobile>div>ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu--mobile>div>ul>li,
.menu--mobile>div>ul>li>ul>li {
  position: relative;
  border-bottom: 1px solid #0000000f;
}

.menu--mobile>div>ul>li:not(:last-child) {
  border-bottom: 1px solid #9b9b9b17;
}

.menu--mobile>div>ul>li>a {
  color: #110101c2;
  padding: 15px 0px 15px 20px;
  /* font-size: 24px; */
  display: inline-block;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
}

.menu--mobile>div>ul>li>ul>li>ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  background: var(--primary--color);
}

.menu--mobile>div>ul>li>ul>li>a,
.menu--mobile>div>ul>li>ul>li>ul>li>a {
  color: #000000b5;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  display: inline-block;
  padding: 15px 30px 15px 20px;
  line-height: 1.6;
}

.menu--mobile>div>ul>li>ul>li>ul>li>a {
  font-size: 13px;
  display: block;
  border-bottom: 1px solid #1111110a;
  color: #fff;
}

.menu--mobile>div>ul>li:hover>a,
.menu--mobile>div>ul>li:hover>span,
.menu--mobile>div>ul>li>ul>li:hover>span,
.menu--mobile>div>ul>li>ul>li:hover>a {
  color: var(--primary--color);
}

.menu--mobile>div>ul>li>ul>li>ul>li:hover>a {
  color: #fff;
  opacity: 0.85;
}

.menu--mobile>div>ul>li>span,
.menu--mobile>div>ul>li>ul>li>span {
  position: absolute;
  right: 20px;
  font-size: 25px;
  top: 13px;
  cursor: pointer;
  transition: transform 0.3s linear;
}

.menu--mobile>div>ul>li>ul>li>span {
  top: 13px;
  font-size: 20px;
}

.black-layer {
  position: fixed;
  top: 0px;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  display: none;
  transition: all 0.3s ease-out;
  cursor: crosshair;
}

.black-layer--secondary {
  position: fixed;
  top: 0px;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  display: none;
  transition: all 0.3s ease-out;
}

.show__side--menu .black-layer,
.search-menu--active .black-layer--secondary {
  transition: all 0.3s ease-out;
  display: block;
}

.menu--mobile>div>ul>li>ul {
  list-style-type: none;
  transition: 0.3s linear;
  margin: 0;
  padding: 0;
  background: #fff;
  display: none;
}

.search-menu {
  background-color: #f1f1f1;
  left: 0;
  position: fixed;
  top: -20px;
  transform: translateY(-100%);
  width: 100%;
  z-index: 1000;
  transition: 0.2s ease-in-out;
  padding: 30px 0;
}

.search-menu--active .search-menu {
  pointer-events: auto;
  transition: 0.2s ease-in-out;
  transform: translateY(0);
  top: 0;
}

.search-menu__form {
  height: 100%;
  position: relative;
}

.search-menu__form input {
  border: 1px solid #1111112e;
  outline: 0;
  background-color: #fff;
  color: #1d1d1deb;
  letter-spacing: 0;
  text-indent: 0;
  padding-bottom: 0;
  padding-top: 0;
  padding-left: 35px;
  font-size: 16px;
  width: 100%;
  height: 50px;
  border-radius: 41px;
  font-family: var(--primary-font);
  padding-right: 62px;
}

.search-menu__form button {
  border: none;
  background: none;
  padding-right: 0;
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 15px;
}

.cta--btns {
  width: 100%;
  position: fixed;
  bottom: 0;
  background: #fff;
  padding: 15px;
  box-shadow: 0 5px 12px #00000054;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta--btns .btn {
  width: 160px;
  text-align: center;
  margin: auto;
}

.page-banner {
  position: relative;
}

.bcg {
  text-align: center;
  position: relative;
  min-height: 520px;
}

.page-banner .page-banner-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}

.page-banner .page-banner-wrap .uk-container {
  width: 100%;
}

.page-banner-wrap h1 {
  font-size: 45px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.page-banner-wrap span {
  display: block;
  font-size: 20px;
  color: #fff;
  margin-top: 0;
  font-weight: 300;
  line-height: 37px;
}

.bcg img {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  object-fit: cover;
}

.bcg::before {
  background: linear-gradient(to bottom,
      transparent,
      transparent 40%,
      rgba(59, 59, 59, 0.14) 50%,
      rgba(0, 0, 0, 0.23) 85%);
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  z-index: 1;
}

.main-content-area blockquote {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.65;
  padding: 0 50px;
  color: #000;
}

.breadcrumb {
  align-items: center;
  overflow-x: auto;
  white-space: nowrap;
  margin: 0;
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.breadcrumb li.active {
  opacity: 1;
  color: #fff;
}

.breadcrumb li a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffffab;
}

ul.breadcrumb li+li::before {
  content: "/";
  padding: 0 12px;
  color: #fff;
  font-size: 13px !important;
  display: inline-block;
  vertical-align: text-bottom;
}

.section-about-intro {
  position: relative;
  background: #0e509e0a;
}

.contentarea p:last-child {
  margin-bottom: 0;
}

.section-about-intro:before {
  content: "";
  background: url(./assets/img/vector-pattern.png) no-repeat top right;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.section-about-intro .contentarea {
  padding-top: 30px;
}

.contentarea p,
.contentarea {
  line-height: 32px;
  color: #000000d4;
  font-size: 18px;
  font-weight: 400;
}

.overlay-col>a {
  position: relative;
  display: block;
  overflow: hidden;
  height: 440px;
}

.overlay-col>a::before {
  content: "";
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to top,
      rgb(0, 0, 0),
      rgba(0, 0, 0, 0.58),
      transparent,
      transparent);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.overlay-col>a:hover .anchor-text:before {
  width: 100%;
  background: #fff;
}

.overlay-col>a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s linear;
}

.overlay-col>a:hover img {
  transition: 0.3s linear;
  transform: scale(1.1);
}

.overlay-content-area {
  position: absolute;
  padding: 25px;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  padding-bottom: 35px;
  color: #fff;
  text-align: center;
}

.overlay-content-area h3 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
  margin: 0 0 6px 0;
}

.overlay-col>a:hover .overlay-content-area h3 {
  opacity: 0.75;
}

.overlay-content-area .anchor-text {
  color: #fff;
}

.team-tab {
  border-bottom: 2px solid #0000000a;
  margin: 35px 0 35px 0;
  padding: 15px 0 0 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 2px solid #0000000a;
}

.team-tab li {
  display: inline-block;
  margin-left: 35px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  color: #000000e8;
  font-size: 14px;
  padding-bottom: 15px;
  position: relative;
  letter-spacing: 0.44px;
}

.team-tab li:before {
  width: 0%;
  height: 2px;
  content: "";
  position: absolute;
  transition: 0.3s linear;
  background: var(--primary--color);
  top: 100%;
}

.team-tab li:hover:before,
.team-tab li.active:before {
  transition: 0.3s linear;
  width: 100%;
}

.team-tab li:hover,
.team-tab li.active {
  color: var(--primary--color);
}

.team-col {
  background: #f1f1f1;
}

.team-col img {
  width: 100%;

  min-height: 300px;
}

.team-col-detail {
  padding: 20px 25px;
  text-align: center;
  border: 1px solid #00000012;
  border-top: none;
}

.team-col-detail .title {
  font-size: 18px;
  font-family: var(--primary-font);
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 1px 0;
}

.team-col-detail .designation {
  font-weight: 500;
  font-size: 15px;
}

.contact-information span {
  position: relative;
  display: block;
  padding: 0 19px 0px 48px;
  font-size: 16px;
  font-weight: 500;
  color: #111111d4;
  line-height: 1.5;
}

.contact-information>div {
  border-top: 1px solid #00000014;
  padding: 20px 0;
}

.contact-information>div:first-child {
  border-top: none;
  padding-top: 0;
}

.contact-information span i {
  position: absolute;
  left: 0;
  color: var(--primary--color);
  top: 3px;
}

.contact-information span a {
  color: #000;
}

.contact-information span strong {
  text-transform: uppercase;
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 6px;
  color: #000;
  letter-spacing: 0.4px;
}

.social-links h4 {
  text-transform: uppercase;
  font-size: 18px;
  font-family: var(--primary-font);
  font-weight: 700;
  margin: 0 0 15px 0;
}

.social-links a {
  display: inline-block;
  color: #fff;
  background: #80838666;
  display: inline-block;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 18px !important;
  border-radius: 100%;
  margin-right: 12px;
  padding: 0 !important;
}

.social-links a:hover {
  background: var(--primary--color);
}

.g-map iframe {
  width: 100%;
  height: 100%;
}

.g-map {
  height: 400px;
}

.inquiry-form-wrap .form {
  margin-top: 30px;
}

.inquiry-form-wrap .form h5 {
  margin: 0;
  font-size: 26px;
  color: var(--primary--color);
  font-weight: 600;
}

.inquiry-form-wrap .form p {
  margin: 10px 0 0 0;
  font-size: 15px;
  font-weight: 600;
  opacity: 0.75;
}

.inquiry-form-wrap .form form {
  margin-top: 25px;
}

.project-card>a {
  display: block;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.project-card.journal-card>a {
  height: 150px;
}

.project-card>a:hover img {
  transform: scale(1.2);
  transition: 0.3s linear;
}

.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;
}

.blog-wrap .blog {
  border-top: 1px solid #0b0b001c;
  padding: 35px 0;
}

.blog-wrap .blog:first-child {
  padding-top: 0;
  border-top: none;
}

.blog-header {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: #000000a6;
}

.blog-wrap .entry-content {
  padding-top: 20px;
}

.sidebar-item:last-child {
  margin-bottom: 0;
}

.blog-header .entry-title {
  padding-top: 10px;
  font-weight: 700;
  font-size: 25px;
  margin: 0;
  line-height: 1.44;
  text-transform: capitalize;
  font-family: var(--primary-font);
}

.blog-header .entry-title a {
  color: #111;
}

.blog-header .entry-title:hover a {
  color: var(--primary--color);
}

.blog-wrap {
  margin-top: 30px;
}

.blog-wrap .entry-content figure {
  margin-right: 15px;
}

.blog-wrap .entry-content .btn {
  padding: 12px 24px;
  font-size: 12px;
  line-height: 22.5px;
}

.blog-wrap .blog:last-child {
  padding-bottom: 0;
}

.blog-wrap .entry-content .contentarea p,
.blog-wrap .entry-content .contentarea {
  line-height: 25px;
  color: #000;
  font-size: 15px;
  font-weight: 400;
}

.page-numbers {
  border: 1px solid #00000021;
  display: inline-block;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  overflow: hidden;
  margin-right: 11px;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  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-radius: 3px;
}

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

.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;
}

.page-numbers:hover::before,
.page-numbers.current::before {
  color: #fff;
  width: 100%;
  left: 0;
}

.page-numbers.prev,
.page-numbers.next {
  width: auto;
  padding: 0 20px;
}

.pagination-wrap {
  margin-top: 30px;
}

.right-sidebar {
  position: sticky;
  top: 130px;
}

.sidebar-item {
  border: 1px solid #15151117;
  color: #262626;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  background: #fff;
  border-radius: 4px;
}

.sidebar-title {
  font-size: 26px;
  padding: 16px 25px 17px;
  text-align: left;
  font-weight: 700;
  color: var(--primary--color);
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar-item ul {
  padding: 18px 0 0px 0;
  margin: 0;
  list-style-type: none;
}

.sidebar-item.recent-post ul li {
  padding: 8px 35px;
  position: relative;
}

.sidebar-item ul li {
  border-top: 1px solid #0000000f;
  padding: 15px 25px 10px 40px;
  position: relative;
  transition: 0.3s linear;
}

.sidebar-item ul li:hover {
  background: #11111105;
  transition: 0.3s linear;
}

.sidebar-item.recent-posts ul li::before {
  position: absolute;
  left: 20px;
  top: 26px;
  content: "";
  background: #0000003b;
  height: 5px;
  width: 5px;
  border-radius: 100%;
}

.sidebar-item ul li a {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 3px;
  display: block;
  position: relative;
  color: #000;
  line-height: 1.55;
}

.author-metadata img {
  width: 92px;
  height: 92px;
  border-radius: 100%;
  object-fit: cover;
}

.eachauthor {
  margin-top: -45px;
}

.sidebar-item ul li small,
.blogpost__byline small {
  font-size: 12px;
  color: #19171799;
  display: block;
  margin: 12px 0;
  line-height: 1.5;
  font-weight: 500;
}

.blogpost__byline p {
  margin: 0;
  margin-top: 10px;
}

.blogpost__byline p span:first-child {
  color: var(--primary--color);
  font-size: 17px;
}

.blogpost__byline small {
  font-weight: 600;
  display: inline-block;
  margin-right: 18px;
  padding-right: 18px;
  border-right: 3px solid #ccc;
  line-height: 1;
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 0;
}

.blogpost__byline small:last-child {
  border-right: 0;
}

.eventmetadata {
  margin: 15px 0;
}

.breadcrumbs-wrapper {
  padding: 5px 0 5px 0px;
  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 6px 0;
}

.breadcrumbs-wrapper ul.breadcrumb li,
.breadcrumbs-wrapper li::before {
  color: #1210104d !important;
  font-size: 12px !important;
}

.breadcrumbs-wrapper .breadcrumb li.active {
  font-size: 12px !important;
  color: var(--primary--color) !important;
}

.blogpost__heading .card__tag {
  color: #fff;
  padding: 12px 15px;
  font-size: 12px;
  margin: 0;
  background: var(--primary--color);
  font-weight: 500;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 0.4px;
}

.blogpost__heading h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  margin: 25px 0 0 0;
  font-family: var(--primary--color);
}

.blogpost__heading h6 {
  margin: 0;
  margin-top: 13px;
  font-size: 14px;
  font-weight: 450;
  font-family: var(--primary-font);
  color: rgba(0, 0, 0, 0.7);
}

.divider {
  margin: 25px auto;
  width: 40%;
  height: 1px;
  border-radius: 80%;
  background-image: radial-gradient(circle,
      rgba(14, 80, 158, 0.7) 4%,
      rgba(34, 52, 67, 0.1) 100%);
}

.blogpost__byline {
  font-weight: 600;
  color: #000000b2;
  font-size: 14px;
}

.entry-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blogpost__byline .st-btn {
  border-radius: 31px !important;
  margin-left: 5px;
}

.project-detail .team-tab {
  margin-bottom: 35px;
}

.team-tab li:first-child {
  margin-left: 0px;
}

.news-content-area img,
.single-article img {
  text-align: center;
  margin: 0px auto 20px auto;
}

.alignleft img,
.alignright img,
.alignleft,
.alignright {
  width: auto !important;
}

.contentarea figure {
  width: auto !important;
}

.contentarea figure.aligncenter {
  text-align: center;
}

.contentarea figure.alignleft {
  text-align: left;
}

.contentarea figure.alignright {
  text-align: left;
}

.contentarea ul,
.contentarea ol {
  padding: 0 0 0 20px;
}

.contentarea ul li,
.contentarea ol li {
  color: #000;
  margin: 0 9px 12px 0;
}

.contentarea p strong em {
  font-weight: bold;
  color: inherit;
}

.contentarea h1,
.contentarea h2,
.contentarea h3,
.contentarea h4,
.contentarea h5,
.contentarea h6 {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.section-blog-detail .contentarea {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  padding-top: 40px;
  text-align: justify;
}

.section-blog-detail .contentarea p {
  text-align: justify;
}

.contentarea p strong {
  font-weight: 700;
  margin-bottom: 6px;
}

.opportunities--title-wrap {
  margin-bottom: 40px;
}

.opportunity-card {
  transition: 0.3s linear;
  padding: 60px 35px;
  border-radius: 6px;
}

.bg-half-heart {
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: url(./assets/img/half-heart.png);
}

.op-card-title {
  margin: 5px 0 0 0;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.2px;
  line-height: 1.65;
}

.opportunity-card p {
  font-size: 15px;
  line-height: 1.85;
  color: #fff;
  opacity: 0.85;
  margin: 15px 0 22px 0;
}

.opportunity-card:hover,
.vaccancy-card:hover {
  transform: scale(1.04);
  transition: 0.3s linear;
  cursor: pointer;
}

.opportunity-card:hover .anchor-text::before {
  width: 100%;
}

.opportunity-card .anchor-text::before {
  background: #fff;
}

.opportunity-card i {
  color: #fff;
}

.opportunity-card.vacancies {
  background-color: #008294;
}

.opportunity-card.volunteers {
  background-color: #508142;
}

.opportunity-card.internship {
  background-color: #d54400;
}

.top-header {
  color: #fff;
  padding: 4px 0 6px 0px;
  font-size: 12px;
  font-weight: 500;
  background-color: var(--primary--color);
  position: relative;
}

.top-header:before,
.top-header:after {
  content: url(./assets/img/bg-pattern.png);
  position: absolute;
  top: 0;
  left: 0;
}

.top-header::after {
  top: 0;
  right: 0;
  left: inherit;
  transform: rotate(180deg);
}

.top-header p {
  margin: 0;
}

.top-header p i {
  display: inline-block;
  margin-right: 6px;
}

.top-header p:not(:last-child) {
  padding-right: 15px;
  border-right: 2px solid #ffffff4f;
  margin: 0 15px 0 0;
}

.top-header p a {
  color: #fff;
}

.section-search .main-title {
  background: none;
  padding: 0;
  border-right: 0;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea,
.input-text {
  padding: 0.93em 1.25em;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e8e8;
  -webkit-appearance: none;
  box-sizing: border-box;
  font-weight: 500;
  border-radius: 5px;
  outline: 0;
  transition: all ease-in-out 0.3s;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus {
  border: 1px solid var(--primary--color) !important;
  transition: all ease-in-out 0.3s;
}

.wpcf7-form label {
  display: inline-block;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.wpcf7-response-output {
  grid-column: span 12;
}

.wpcf7-form input:not([type="submit"]),
.wpcf7-form textarea {
  transition: all ease-in-out 0.3s;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  background-color: #fff;
  font-family: var(--primary-font);
  border-color: #e8e8e8;
  padding: 12px 19px 12px 20px;
  border-width: 1px;
  border-style: solid;
  margin-top: 15px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.contact-information {
  position: sticky;
  top: 130px;
}

.wpcf7-form input[type="submit"] {
  cursor: pointer;
  display: inline-block;
  border-radius: 3px;
  background-color: #ff9f0d;
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  transition: ease all 0.3s;
  font-family: var(--primary-font);
  font-size: 14px;
  letter-spacing: 0.4px;
  padding: 12px 20px;
  border-radius: 5px;
  opacity: 1;
}

.wpcf7-form input[type="submit"]:hover {
  background: #ffa415cc;
}

.page-no-banner {
  background: var(--primary--color);
  padding: 75px 0;
}

.vaccancy-card {
  transition: 0.3s linear;
  display: block;
  background: #fff;
  padding: 18px 25px;
  border: 1px solid #00000012;
  border-radius: 4px;
}

.vaccancy-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 5px 0 0 0;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0;
  line-height: inherit;
  font-family: var(--primary-font);
  color: #000;
}

.vaccancy-card p {
  font-size: 15px;
  line-height: 1.85;
  color: #111;
  opacity: 0.85;
  margin: 15px 0 22px 0;
}

.vaccancy-card-title span {
  width: 30px;
  width: 3;
  height: 30px;
  color: #fff;
  background: var(--secondary--color);
  display: inline-block;
  border-radius: 100%;
  text-align: center;
  line-height: 30px;
  font-size: 15px;
  font-weight: 700;
  margin-left: 15px;
}

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

.form-wrapper form p {
  margin: 0;
  grid-column: span 6;
}

.form-wrapper form p:nth-of-type(3),
.form-wrapper form p:nth-of-type(4) {
  grid-column: span 12;
}

.section-why-volunteer {
  background: #fff;
}

.section-why-volunteer .contentarea {
  padding-top: 15px;
}

.section-why-volunteer .main-title {
  line-height: 1.25;
  font-size: 35px;
}

.section-why-volunteer p,
.section-why-volunteer .contentarea {
  line-height: 1.9;
  color: #000;
  font-size: 15px;
  opacity: 0.85;
  font-weight: 600;
}

.apply-form p {
  margin-top: 8px;
  opacity: 0.75;
  font-weight: 500;
}

.wpcf7-form textarea {
  height: 150px;
}

/* .contentarea .gallery {
  display: grid;
  align-items: center;
  flex-wrap: wrap;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
} */
/* 
.contentarea .gallery .gallery-item {
  width: 100%;
  display: block;
  height: 300px;
  margin: 0;
}
.contentarea .gallery .gallery-item > div {
  height: 100%;
  width: 100%;
}
.contentarea .gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

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

.blog .entry-content figure>a {
  height: 240px;
  display: block;
}

.blog .entry-content figure>a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.contentarea blockquote {
  background: #fff;
  padding: 35px 50px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.75;
  margin: 0;
}

.contentarea blockquote p {
  margin: 0;
}

.header-navigation>div>ul>li>ul>li>a,
.header-navigation>div>ul>li>ul>li>ul>li>a {
  font-weight: 600;
}

.post-thumbnail img {
  margin-bottom: 20px;
}

.project-banner img {
  width: 100%;
}

.featured-img img {
  width: 100%;
  margin-top: 20px;
}

.sidebar-item ul li a:hover {
  color: var(--primary--color);
}

.section-contact .project-card>a {
  height: 200px;
}

.blogpost__heading {
  margin-bottom: 30px;
}

.thumbnail-col>a {
  height: 208px;
  display: block;
  width: 100%;
  position: relative;
  border-radius: 6px;
}

.thumbnail-col>a i {
  position: absolute;
  left: 50%;
  top: 50%;
  background: #ffa415a6;
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 45px;
  font-size: 25px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  transform: translate(-50%, -50%);
}

.thumbnail-col h3 {
  color: #fff;
  opacity: 1;
  padding-top: 14px;
}

.thumbnail-col h3 a {
  color: #fff;
  font-size: 17px;
  opacity: 1;
}

.thumbnail-col h3 a:hover {
  color: #fff;
  opacity: 0.75;
}

.video-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.48;
  font-family: var(--secondary-font);
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  flex-direction: column;
}

.video--container {
  position: relative;
  overflow: hidden;
}

.vaccancy-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
}

.vaccancy-status p {
  margin: 0;
  font-weight: 700;
  color: #090;
}

.vaccancy-status p.closed {
  color: #a81f00;
}

.vaccancy-card-title {
  flex-wrap: wrap;
}

.vaccancy-card-title span {
  margin: 0;
}

.video--container {
  color: #fff;
  background: var(--primary--color);
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right,
      var(--primary--color),
      #0082c8,
      #0082c8,
      var(--primary--color));
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right,
      var(--primary--color),
      #0082c8,
      #0082c8,
      var(--primary--color));
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.video--container .main-title-wrap .main-title {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
  line-height: 0.7;
  color: #fff;
}

.project-slug {
  background: var(--secondary--color);
  color: #fff;
  padding: 3px 10px 7px 10px;
  height: auto !important;
  width: auto !important;
  display: inline-block !important;
  position: absolute !important;
  z-index: 2;
  font-weight: 600;
  font-size: 14px;
}

.journal-cat .blog-header .entry-title {
  font-size: 20px;
}

.journal-cat.blog .entry-content figure>a {
  height: 200px;
}

.white-bg {
  background-color: #fff;
}

.blog-contentwrapper {
  padding-top: 0;
}

.singleblog-header {
  padding-bottom: 80px;
}

.author-metadata {
  column-gap: 25px;
  row-gap: 60px;
}

.singlecontentarea {
  margin-top: 45px;
}

.author-metadata p {
  text-align: center;
}

.author-metadata p span:last-child {
  color: rgba(0, 0, 0, 0.7);
  border-right: none;
  padding-right: 0;
  margin-right: 0;
  margin-top: 4px;
}

.author-metadata p span {
  display: block;
}

.journal-all .journal-cat.blog .entry-content figure>a {
  height: auto;
}

.video-block .content-heading h2 a {
  display: inline-block;
  margin-right: 0;
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 27px;
  background: var(--primary);
  padding: 10px 17px 6px 17px;
  margin-right: 11px;
  font-weight: bold;
  color: #fff;
}

.video-block .content-heading h2 a:hover {
  background: var(--secondary);
  color: #fff;
}

.video-block .content-heading {
  border: none;
  padding: 0;
}

.video-block .content-heading.fixedheading h2 {
  background: none;
  padding: 0;
  width: 100%;
}

.video-content {
  margin-top: 30px;
}

.video-block .flexslider {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.video-block .title--medium {
  font-size: 40px;
}

.video-block .title a {
  color: #fff;
}

.video-block .video-slides-thumb li>a {
  height: 150px;
  display: block;
  cursor: pointer;
}

.video-slides-thumb li {
  overflow: hidden;
  float: none !important;
  position: relative;
  display: block !important;
  cursor: pointer;
  border-bottom: 1px solid #f1f1f13d;
  padding: 15px 0;
  margin-right: 0 !important;
}

.video-slides-thumb li:first-child {
  padding-top: 0;
}

.video-slides-thumb li>a {
  flex: 1;
  margin-right: 21px;
  width: 100px;
  height: 90px;
}

.video-slides-thumb li>a img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.thumb-news-wrap .project-title a {
  color: #fff;
}

.thumb-news>a {
  flex: 1;
  margin-right: 10px;
  width: 100px;
  height: 90px;
}

.video-block .thumb-news>a {
  height: 105px;
}

.video-block iframe {
  border-radius: 10px;
}

.thumb-news>a img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.thumb-news-wrap {
  flex: 2;
  text-align: left;
}

.flex-direction-nav {
  display: none !important;
}

.video-block .flex-control-nav li a {
  height: 10px;
  width: 10px;
}

.video-block .video-slides-thumb li img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
  border-radius: 10px;
}

.video-block .flex-control-nav li a.flex-active,
.photo__story .flex-control-paging li a.flex-active {
  background: var(--primary);
}

.photo__story .flexslider {
  margin: 0;
  border: none;
  padding: 0;
}

.video-block .video-slides-thumb li .news--title {
  font-size: 18px;
  line-height: 22px;
  padding: 11px;
}

.video-block .video-slides-thumb {
  height: 100%;
}

.header-navigation>div>ul>li>ul>li>ul>li>ul>li>a {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-top: 10px;
}

.header-navigation>div>ul>li>ul>li>ul>li>ul>li {
  color: #fff;
}

/* Galleries
--------------------------------------------- */
.gallery {
  display: grid;
  grid-gap: 1.5em;
}

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

.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;
}

.contentarea table {
  border: none;
  border-collapse: collapse;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #f1f1f1;
  width: 100%;
}

.contentarea table tr td {
  padding: 8px 19px;
  border: 1px solid rgba(0, 0, 0, 0.19);
  font-size: 16px;
  /*! font-weight:600; */
  transition: 0.3s ease;
}

.contentarea table {
  margin-bottom: 25px;
}

.contentarea table tr td p {
  margin: 0;
  font-size: 16px;
}

.contentarea table tr:nth-child(2n) {
  background: #fffc;
}

.contentarea table tr:hover {
  background: #fff;
  transition: 0.3s ease;
}

.contentarea table tr {
  transition: 0.3s ease;
}

.content__wrapper {
  margin-top: 40px;
}

.content__wrapper .uk-grid>div:last-child {
  order: -1;
}

.event__right__section {
  position: relative;
}

.event__right__section .project-title {
  font-size: 18px;
}

.event__right__section .project-description {
  position: absolute;
  left: 50%;
  bottom: -67px;
  background: white;
  width: 80%;
  transform: translateX(-50%);
  border-radius: 10px;
}

.single__project__img a img {
  border-radius: 10px;
}

.event__right__section .project-card {
  border-radius: 10px;
}

.slug1 a {
  color: #333;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 5px;
}

.event__right__section .project-description h3 {
  margin: 0;
}

.project__img {
  min-width: 200px;
}

.project__img>a {
  display: block;
  min-width: 200px;
}

.event__section .project__img img {
  width: 200px;
  height: 156px;
  object-fit: cover;
}

.event__section .small__project__card {
  display: flex;
  gap: 30px;
}

.event__left__section .project__content {
  flex: 1;
}

.project__content .project-description {
  padding: 0;
}

.project__content .project-description>a {
  color: #333;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 5px;
}

.event__left__section .small__project__card:not(:last-child) {
  margin-bottom: 20px;
}

.single__project__img {
  position: relative;
}

.single__project__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hover__img {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.hover__img a img {
  transition: all 0.3s linear;
  width: 100%;
  object-fit: cover;
}

.hover__img:hover a img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.section {
  padding: 70px 0;
}

.section-b {
  margin-bottom: 70px;
}

.event__section .small__project__card {
  display: flex;
  gap: 30px;
}

.event__section .project__img img {
  width: 200px;
  height: 156px;
  object-fit: cover;
}

.event__left__section .project__content {
  flex: 1;
}



.project__content .project-description>a {
  color: #333;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 5px;
}

.project-title {
  font-size: 16px;
  font-family: var(--primary-font);
  line-height: 25px;
  font-weight: 600;
  margin: 0 0 10px;
  opacity: 0.85;
}

.project-title a {
  color: #000;
  display: block;
}

.small__project__card:not(:last-child) {
  margin-bottom: 20px;
}

.big__event__listing .project-card>a {
  height: 400px;
}

.big__event__listing .project-card .project-title {
  font-size: 24px;
  line-height: normal;
}

.footer-col img {
  max-width: 150px;
  /* adjust size */
  height: auto;
  filter: brightness(0) invert(1);
}

.services__wrapper {
  position: relative;
}

.services__wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(255, 255, 255, 0.748); */
}

.service__img {
  height: 100%;
  width: 100%;
  height: 400px;
}

.service__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services__content {
  /* position: absolute; */
  left: 0;
  top: 0;
  width: 100%;
  /* border: 1px solid #00000012; */
  height: 350px;
  background: #256C94;
  padding: 30px;
}

p.service_desc {
  margin: 0 0 10px;
  opacity: 0.65;
  font-family: var(--tertiary-font);
  font-size: 14px;
  line-height: 1.56;
  color: white;
  /* color: #E0E0E0; */
}

.sevice-title {
  color: white;
}

.services__content .anchor-text {
  color: #fff;
}

.services__content .anchor-text::before {
  background: #fff;
}

.blue_color {
  color: #013e58;
}

.services__wrapper h3 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
  text-align: left;
  font-weight: bold;
  color: #fff;

}

.services__wrapper p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 13px;
}

.event__page .big__event__listing .project-card .project-title {
  font-size: 19px;
  line-height: 1.3;
  font-family: var(--secondary-font);
}

.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;
}

.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;
}

.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;
}

.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__tabs {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
}

.project__tabs li {
  margin-right: 15px;
  margin-bottom: 12px;
}

.project__tabs li a {
  font-size: 13px;
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid var(--primary--color);
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  color: var(--primary--color);

  &:hover {
    background: var(--primary--color);
    color: #fff;
  }
}

.project__tabs li.uk-active a {
  background: var(--primary--color);
  color: #fff;

}

.big__event__listing .small__project__card .project__img,
.big__event__listing .small__project__card .project__img>a {
  min-width: 100px;
}

.event__section .big__event__listing .project__img img {
  height: 100px;
  width: 100px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.event__type {
  padding: 7px 19px;
  font-size: 15px;
  font-weight: 600;
  background: var(--primary--color);
  color: #fff;
  display: inline-block;
  margin-bottom: 34px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.services__section .uk-grid>div {
  counter-increment: pillar-num;
}

.services__section .uk-grid>div .services__content::before {
  content: counter(pillar-num);
  color: var(--primary);
  border: 1px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-size: 18px;
  height: 35px;
  line-height: 35px;
  width: 35px;
  display: inline-block;
  text-align: center;
  color: #fff;
  margin: 0 auto 15px;
  font-weight: 400;
}

.partner-title {
  font-size: 20px;
  color: var(--primary--color);
  font-weight: 700;
  margin: 0;
}


.partner-wrap-title {
  margin-bottom: 30px;
}

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


/* mobile menu */
/* .responsive--nav {
  display: none;
  position: fixed;
  top: 54px;
  left: 0;
  width: 280px;
  max-width: 90vw;
  height: calc(100vh - 54px);
  background: rgba(255, 255, 255, 0.95);
  z-index: 9999;
  padding: 20px 30px;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
  border-radius: 0 8px 8px 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
} */

/* .responsive--nav.active {
  display: block;
  transform: translateX(0);
}


.hamburger {
  display: none;
} */
.hamburger i {
  color: #000 !important;
  z-index: 2000000 !important;
  position: relative;
}

/* When menu opens, also keep it visible */
.hamburger.active i {
  color: #000 !important;
}

/* Make sure button stays above menu */
.hamburger {
  z-index: 2000001 !important;
}

.hamburger {
  display: none;
  position: fixed;
  right: 20px;
  z-index: 1000002;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;

}

btn-search {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 1000003;
  background: none;
  border: none;
  cursor: pointer;
}

.responsive--nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 90%;
  height: 100%;
  background: #fff;
  box-shadow: -6px 0 18px rgba(0, 0, 0, 0.12);
  z-index: 1000001;
  transition: right 0.28s ease;
  padding-top: 84px;
  overflow-y: auto;
}

.responsive--nav.active {
  right: 0;
}

.responsive--nav .nav__inner {
  padding: 20px;
}

.responsive--nav .nav__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}


.responsive--nav .nav__menu ul li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.responsive--nav .nav__menu ul li a {
  color: #111;
  text-decoration: none;
  font-size: 16px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1000000;
  opacity: 0;
  pointer-events: none;
  transition: 0.24s;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

@media(max-width: 800px) {
  #site-navigation {
    display: none !important;
  }

  .hamburger {
    display: block !important;
  }
}

@media(min-width: 801px) {
  .responsive--nav {
    display: none !important;
  }
}


@media (min-width: 769px) {
  h4.footer-heading {
    text-align: left;
  }

  .footer-col p {
    text-align: left !important;
  }

  .logo img {
    max-width: 140px;
  }

  .header-navigation {
    display: block !important;
  }

  .hamburger,
  .responsive--nav,
  .responsive--nav.active {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .header-navigation {
    display: none !important;
  }

  .uk-first-column {
    text-align: center;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 100%;             */
  }

  .hamburger svg {
    display: block;
    width: 32px;
    height: 32px;
  }


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

  .responsive--nav ul li {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }

  .responsive--nav ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .responsive--nav ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    padding: 10px 0;
    display: block;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .responsive--nav ul li a:hover {
    color: #126c94;
  }
}


/* pagination */
.pagination-wrapper {
  margin: 40px 0;
}

.custom-pagination {
  display: inline-block;
}

.pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.pagination-item {
  margin: 0;
}

.pagination-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  margin: 0 2px;
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  min-width: 44px;
  justify-content: center;
}

.pagination-link:hover {
  background: #f8f9fa;
  border-color: #007bff;
  color: #007bff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.15);
}

.pagination-link.pagination-current {
  background: #007bff;
  border-color: #007bff;
  color: white;
  cursor: default;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.pagination-prev,
.pagination-next {
  padding: 10px 20px;
  font-weight: 600;
  gap: 8px;
}

.pagination-prev:hover,
.pagination-next:hover {
  background: #007bff;
  color: white;
}

.pagination-ellipsis {
  padding: 10px 8px;
  color: #6c757d;
  font-weight: 500;
}

.pagination-info {
  color: #6c757d;
  font-size: 14px;
}

/* feedback */
.feedback-card {
  padding: 20px;
  max-width: 500px;
  margin: 40px auto;
  padding: 25px;
  border-radius: 10px;
  background: var(--primary--color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#rating-buttons button {
  margin: 0 5px;
}

#feedback-icon {
  position: relative;
  display: inline-block;
}

/* Hidden text initially, slightly to the left of icon */
#feedback-icon .help-text {
  position: absolute;
  top: 4%;
  left: 90%;
  /* start just at the right edge of the icon */
  transform: translateX(-20px) translateY(-50%);
  /* shift left and center vertically */
  opacity: 0;
  background-color: #256c94;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.4s ease;
  pointer-events: none;
  /* avoid blocking clicks */
  font-size: 16px;
}

/* On hover: slide to the right and show */
#feedback-icon:hover .help-text {
  transform: translateX(10px) translateY(-50%);
  /* move right */
  opacity: 1;
}

#close-rating:hover {
  color: #ff4d4f;
  /* red on hover */
  transition: color 0.2s ease;
}

/* Container Box */
.rating-box {
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background-color: #f9f9f9;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Rating buttons container */
.rating-buttons-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  /* space between buttons */
  margin-top: 10px;
}

/* Circular rating buttons */
.rating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* makes circle */
  border: 2px solid #256c94;
  background-color: #fff;
  color: #256c94;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
}

.rating-btn:hover {
  background-color: #256c94;
  color: #fff;
  transform: scale(1.2);
}

#feedback-form-container {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background-color: var(--primary--color);

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* width: 500px; */
}

#feedback-form-container h4 {
  text-align: center;
  margin-bottom: 20px;
  color: white;
}

.thankyou-box {
  max-width: 500px;
  border: 1px solid #ddd;
  padding: 20px;
  margin: 40px auto;
  border-radius: 12px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 15px;
}

input,
select,
textarea {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  <<<<<<< HEAD padding: 10px;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  =======
  /* width: 100%; */
  padding: 10px;
  /* color: #fff; */
  border: none;
  border-radius: 6px;
  cursor: pointer;
  >>>>>>>6e2d6fcbf066fe527f15604b119616c720a017cd
}

.fa-smile:before {
  color: var(--primary--color);
  border-radius: 50%;
  padding: 5px;
  background-color: #93D0DA;
}

button.btn.feedback.btn-primary {
  background-color: var(--secondary);
}

button.btn.feedback.btn-primary:hover {
  background-color: whitesmoke;
  color: var(--primary--color);
}

@media (max-width: 768px) {
  .feedback-wrapper {
    bottom: 20px;
    left: 10px;
  }

  .feedback-wrapper {
    display: none !important;
  }

  .feedback-form-container,
  .rating-box {
    min-width: 400px;
  }

  #feedback-icon i {
    font-size: 2rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .pagination-list {
    gap: 4px;
  }

  .pagination-link {
    padding: 8px 12px;
    font-size: 13px;
    min-width: 36px;
  }

  .pagination-prev,
  .pagination-next {
    padding: 8px 16px;
  }

  .pagination-prev span,
  .pagination-next span {
    display: none;
  }
}

.pagination-link {
  padding: 8px 12px;
  font-size: 13px;
  min-width: 36px;
}

.pagination-prev,
.pagination-next {
  padding: 8px 16px;
}

.pagination-prev span,
.pagination-next span {
  display: none;
}
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
  .pagination-link {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
  }

  .pagination-link:hover {
    background: #4a5568;
    border-color: #63b3ed;
    color: #63b3ed;
  }

  .pagination-info {
    color: #a0aec0;
  }
}