/*!
Theme Name: palpali Samaj
Theme URI: https://www.genesiswtech.com
Author: Genesis Web Technology
Author URI: https://www.genesiswtech.com
Description: Website for Palpali Samaj living abroad in UAE
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: palpali_samaj
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.

palpali_samaj 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/
*/

@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap");

@font-face {
  font-family: "Open Sauce One";
  src: url("./assets/fonts/OpenSauceOne-Light.woff2") format("woff2"),
    url("./assets/fonts/OpenSauceOne-Light.woff2") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sauce One";
  src: url("./assets/fonts/OpenSauceOne-Regular.woff2") format("woff2"),
    url("./assets/fonts/OpenSauceOne-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sauce One";
  src: url("./assets/fonts/OpenSauceOne-Medium.woff2") format("woff2"),
    url("./assets/fonts/OpenSauceOne-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sauce One";
  src: url("./assets/fonts/OpenSauceOne-SemiBold.woff2") format("woff2"),
    url("./assets/fonts/OpenSauceOne-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sauce One";
  src: url("./assets/fonts/OpenSauceOne-Bold.woff2") format("woff2"),
    url("./assets/fonts/OpenSauceOne-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --green: #007048;
  --yellow: rgba(253, 249, 196, 1);
  --blue: #c2f0f8;
  --pink: #ffb2c2;
  --dark-yellow: rgba(229, 181, 13, 1);
  --bg-color: rgba(199, 255, 241, 1);
  --bg-color-light: rgba(239, 254, 250, 1);
  --bg-color-grey: rgba(233, 233, 233, 1);
  --bt-color: rgba(9, 102, 91, 1);
  --light: #fff;
  --dark: #1d2222;
  --text: rgba(29, 34, 34, 1);
  --text-1: rgba(9, 102, 91, 1);

  --primary-font: "Caveat", sans-serif;
  --secondary-font: "Open Sauce One", sans-serif;
  --transition: all 0.5s linear;
  --transition-2: all 0.4s ease-in-out;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: var(--secondary-font);
  overflow-x: clip;
}

h2 {
  font-weight: 500;
  font-size: 48px;
  letter-spacing: -0.03em;
  line-height: 52px;
  color: var(--dark);
  margin: 0 0 10px 0;
}

p {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  opacity: 0.85;
  margin: 0;
}

.section {
  padding-top: 60px;
}

.custom-logo {
  width: 100px;
}

.menu-bar {
  background: #8fffe4;
  height: 40px;
  width: 40px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: none;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}

.site-header .main-navigation .sub-menu {
  position: absolute;
  left: 0;
  list-style: none;
  background: var(--blue);
  padding: 0 0 0 0;
  margin: 10px 0 0 0;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.sub-menu>li>a {
  display: block;
  color: var(--text);
  padding-bottom: 10px;
  font-size: 12px;
}

.sub-menu>li {
  padding: 14px;
  position: relative;
  z-index: 1;
}

.sub-menu>li:hover {
  background-color: #c7fff1;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.site-header .main-navigation .sub-menu {
  visibility: hidden;
  opacity: 0;
  width: 250px;
  transform: translate(3px, 8px);
}

.site-header .main-navigation .sub-menu::before {
  content: "";
  width: 15px;
  height: 15px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: var(--blue);
  position: absolute;
  left: 20px;
  top: -10px;
}

.site-header .main-navigation .sub-menu::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: -25px;
}

.main-navigation>ul>li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.uk-offcanvas-bar {
  padding: 0;
  background: #fff;
}

.uk-offcanvas {
  z-index: 99999999;
}
.uk-offcanvas-bar>div>ul>li {
  position: relative;
}

.uk-offcanvas-bar>div>ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.uk-offcanvas-bar>div>ul>li>a:hover {
  background: #00000012;
}

.uk-offcanvas-bar>div>ul>li>a {
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  display: block;
  line-height: 46px;
  color: #222 !important;
  font-weight: 600;
  padding: 0 20px;
  border-top: 1px solid #ffffff0a;
  border-bottom: 1px solid #00000011;
}

.uk-offcanvas-bar>div>ul>li i {
  color: #111;
}

.uk-offcanvas-bar>div>ul>li.menu-item-has-children>ul>li>a {
  display: block;
  padding: 10px 30px;
  font-weight: 500;
  font-size: 17px;
  border-top: 1px solid #ffffff0a;
  color: #111;
  border-bottom: 1px solid #0000002b;
}

.uk-offcanvas-bar>div>ul>li.menu-item-has-children>ul>li:first-child>a {
  border-top: 0;
}

.uk-offcanvas-bar>div>ul>li.menu-item-has-children span {
  position: absolute;
  right: 0;
  line-height: 48px;
  text-align: center;
  cursor: pointer;
  z-index: 5;
  top: 0;
  width: 48px;
  height: 48px;
}

.uk-offcanvas-bar>div>ul>li.menu-item-has-children>ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--light);
  display: none;
}

.uk-offcanvas-bar>div>ul>li.menu-item-has-children>ul>li>a:hover {
  background: #00000021;
}

.uk-offcanvas-close>svg {
  color: rgb(213, 17, 17);

  width: 18px;

}

.offcanvas-logo {
  height: 120px;
  background: var(--bg-color);
  padding: 8px;
}

/* .offcanvas-contact{
  margin-top: 10px;
}
.offcanvas-contact a{
  color: #000;
  display: block;
  padding: 12px ;
  
}
.offcanvas-contact a:hover{
  color: var(--green);
} */
.dropmenu-icon {
  position: absolute;
  top: 4px;
  right: 13px;
  color: var(--dark);
  font-size: 12px;
}

.header-socials.offcanvas a {
  color: var(--dark);
  font-size: 18px;
  display: block;
}

.header-socials>a {
  font-size: 16px !important;
  margin-left: 7px;
}

.site-header {
    background: var(--bg-color-light);
    position: relative;
    z-index: 11;
    padding: 5px;
    border-bottom: 1px solid #09665b6e;
    z-index: 9999999;}

.site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(73, 105, 73, 0.247);
}

.info-header {
  background: var(--bg-color);
}

.info-header-container {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}

.info-header-container>div>a,
.info-header-container>div>a>span {
  color: var(--text-1);
  font-size: 13px;
  font-weight: 600;
}

.header-contact a {
  margin-right: 10px;
}

.main-navigation>div>ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.main-navigation>div>ul>li {
  list-style: none;
  position: relative;
  font-family: var(--secondary-font);
}

.main-navigation>div>ul>li>a {
  color: var(--text);
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
}

.main-navigation>div>ul>li>a:hover {
  background: #8fffe4;
  border-radius: 12px;
}

.main-navigation>div>ul>li.menu-item-has-children>a {
  padding-right: 30px;
}

.flag-contact-wrap,
.flag-contact-wrap>div {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* .flag-contact-wrap img {
  margin-top: 10px;
} */
.banner-section {
  position: relative;
  height: calc(100vh - 139px);
}

.banner-img {
  height: calc(100vh - 139px);
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 10px 10px;
}

.banner-container , .banner-container.a{
  position: absolute;
  z-index: 1;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 0 20px;
  margin-bottom: 130px;
}

.banner-container>div {
  position: relative;
  z-index: 9999;
}

.banner-container::after {
  content: "";
  position: absolute;
  background: #000000;
  opacity: 0.31;
  top: 0;
  left: 60px;
  width: 100%;
  max-width: 500px;
  height: 100%;
  max-height: 700px;
  filter: blur(100px);
  transform: rotate(0.66deg);
  -webkit-transform: rotate(0.66deg);
  -moz-transform: rotate(0.66deg);
  -ms-transform: rotate(0.66deg);
  -o-transform: rotate(0.66deg);
  -webkit-filter: blur(100px);
}

.banner-btn-wrap {
  align-items: center;
}

.contact-btn a {
  background-color: var(--bt-color);
  color: var(--light);
  border-radius: 10px;
  padding: 12px 21px;
  display: inline-block;
  font-weight: 500;
  border: 1px solid var(--green);
}

.contact-btn a:hover {
  background-color: #fff;
  color: var(--bt-color);
}

.banner-text {
  max-width: 750px;
}

.banner-text>h2 {
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: clamp(40px, 4vw, 72px);
  position: relative;
  letter-spacing: -0.03em;
  line-height: clamp(42px, 4vw, 76px);
  color: #ffffff;
  z-index: 1;
  margin-bottom: 10px;
}

.banner-text>p {
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 18px;
  position: relative;
  line-height: 27px;
  color: #ffffff;
  opacity: 0.85;
  z-index: 1;
  max-width: none;
}

.banner-btn-wrap {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  z-index: 1;
  position: relative;
}

.donate-btn a {
  padding: 12px 30px;
  gap: 8px;
  background: var(--dark-yellow);
  /* box-shadow: 4px 31px 13px rgba(36, 255, 218, 0.01),
    2px 18px 11px rgba(36, 255, 218, 0.05), 1px 8px 8px rgba(36, 255, 218, 0.09),
    0px 2px 4px rgba(36, 255, 218, 0.1); */
  border-radius: 10px;
  color: var(--text);
  display: inline-block;
}

.donate-btn a:hover {
  background: rgb(205 144 1 / 94%);
}

.donate-btn i {
  background: #09665b;
  border-radius: 5px;
  padding: 5px;
  color: var(--light);
  transition: all ease-in-out 0.3s;
}

.donate-btn a:hover i {
    transform: translateX(5px);
  }

.explore-btn a {
  box-sizing: border-box;
  padding: 12px 30px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  color: var(--light);
}

.explore-btn a:hover {
  background: var(--light);
  color: var(--dark);
  border: 1px solid #000;
}

.feature-section {
  padding: 50px 0;
  background: var(--bg-color);
  margin-top: -12px;
}

.feature-container {
  max-width: 500px;
}

.feature-container>div {
  background: var(--bg-color);
  display: flex;
  gap: 16px;
  align-items: center;
}

.featured-card>div:first-child {
  min-width: 50px;
  width: 50px;
}

.featured-card>div>img {
  width: 100px;
}

.feature-content-wrap>h2 {
  font-size: 22px;
  color: var(--text);
  margin: 0;
  line-height: 28px;
  margin-bottom: 6px;
  font-weight: 500;
  font-family: var(--secondary-font);
}

.feature-content-wrap>p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  color: var(--text);
}

.heading-wrap>span {
  background: #c7fff1;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  color: var(--dark);
  font-family: var(--primary-font);
  padding: 3px 6px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
}

.heading-wrap h1,
.heading-wrap h2 {
  font-weight: 500;
  font-family: var(--secondary-font);
  font-size: 48px;
  letter-spacing: -0.03em;
  line-height: 52px;
  color: var(--dark);
  margin: 0 0 10px 0;
}

.heading-wrap h1{
 font-size: clamp(36px, 4vw, 48px);
 line-height:  clamp(40px, 4vw, 48px);
}

.readmore-btn {
  margin-top: 20px;
  display: inline-block;
}

.readmore-btn a {
  font-family: var(--secondary-font);
  font-weight: 500;
  display: inline-block;
  font-size: 14px;
  color: var(--text-1);
  box-sizing: border-box;
  border: 1px solid rgba(9, 102, 91, 0.3);
  border-radius: 10px;
  padding: 8px 22px;
}

.readmore-btn a:hover {
  background: var(--green);
  color: var(--light);
}

.about-section {
  padding-bottom: 180px;
}

.about-section p {
  width: 85%;
  font-size: 17px;
  font-weight: 500;
}

.about-gallery-container img {
  border-radius: 20px;
  height: 300px;
  width: 350px;
  object-fit: cover;
}

.about-gallery-container {
  position: relative;
}

.about-gallery-container img:nth-child(2) {
  border: 5px solid var(--light);
  position: absolute;
  left: 150px;
  width: 340px;
  bottom: -120px;
  height: 250px;
  object-fit: cover;
}

.about-gallery-container img:last-child {
  position: absolute;
  width: 140px;
  height: 140px;
  right: 80px;
  top: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.viewmore-btn a {
  display: inline-block;
  padding: 12px 20px;
  font-size: 14px;
  background: var(--green);
  border: 1px solid rgba(9, 102, 91, 0.3);
  border-radius: 10px;
  color: var(--light);
}

.viewmore-btn a:hover {
  background: #fff;
  border: 1px solid var(--green);
  color: var(--green);
  font-weight: 600;
}

.viewmore-btn i {
  color: var(--dark-yellow);
  transform: rotate(-40deg);
  margin-left: 5px;
  -webkit-transform: rotate(-40deg);
  -moz-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  -o-transform: rotate(-40deg);
}

.viewmore-btn.a {
  display: none;
}

.service-section {
  background: var(--bg-color-grey);
}

.service-wrap>div:nth-child(odd) .service-container {
  padding-left: 50px;
  max-width: 450px;
}
.service-wrap>div:nth-child(odd) .service-card img {
  border-radius: 20px 20px 0 20px;
}
.service-wrap>div:nth-child(even) .service-card img {
  border-radius:  0 20px 20px 20px;
}

.service-wrap>div:nth-child(even) .service-container {
  padding-right: 50px;
}

.service-container h3 {
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 12px;
  letter-spacing: -3%;
}

.service-container p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.service-wrap {
  padding: 40px 0;
}

/* .service-card,.service-cardd {
 max-width: 550px;
 height: 330px;

} */

.service-card img {
  position: sticky;
  /* border-radius: 20px 20px 0px 20px; */
  object-fit: cover;
  width: 100%;
  height: 100%;
}



.youth-worshops {}

.service-container ul {
  padding: 0;
  margin: 0;
  margin-top: 24px;
  list-style: none;
  columns: 2;
}

.service-container>ul>li {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 16px;
  color: #1d2222;
  opacity: 0.85;
  position: relative;
  padding-left: 20px;
}

.service-container>ul>li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--green);
  position: absolute;
  left: 0;
}

.youth-worshops>ul>li>i {
  color: var(--green);
}

.service-wrap>div:nth-child(even) {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 0;
}

/* .service-wrap > div:nth-child(event) > div:first-child {
  padding-left: 0;
} */
.program-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.program-card>img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.program-card {
  box-sizing: border-box;
  padding: 33px 20px;
  background: #c7fff1;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  max-width: 600px;
  width: calc(50% - 10px);
}

.program-card:hover {
  box-shadow: 129px 94px 64px rgba(44, 129, 115, 0.01),
    73px 53px 54px rgba(44, 129, 115, 0.05),
    32px 23px 40px rgba(44, 129, 115, 0.09),
    8px 6px 22px rgba(44, 129, 115, 0.1);
}

.cardbg {
  background: #fdf9c4;
}

.program-card>div {
  max-width: 300px;
  padding: 5px;
  margin-top: 50px;
}

.program-card>div>h3 {
  font-size: 26px;
  line-height: 31px;
  color: #1d2222;
  opacity: 0.9;
  margin: 0;
  font-weight: 600;
}

.program-card>div>p {
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  margin-top: 12px;
  color: var(--text);
}

.our-events-section,
.program-activities-section {
  padding-bottom: 60px;
}

.program-activities-section {
  position: relative;
  overflow: hidden;
}

.program-activities-section>h2 {
  position: sticky;
  top: 0;
}

.program-activities-section {
  position: relative;
}

.program-activities-section::before {
  content: url("./assets/img/bgimg.png");
  position: absolute;
  left: 0;
  top: 32%;
}

.bgimg {
  position: absolute;
  top: 35%;
  left: 0;
  max-width: 500px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.our-events-section,
.news-section,
.about-section {
  background: var(--bg-color-light);
}

.event-container {
  margin-top: 40px;
}

.event-card {
  position: relative;
}

.our-events-section>div:last-child>div :first-child>.event-content>h3>a {
  font-size: 32px;
}

.event-card img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.date-wrap {
  padding: 10px;
  text-align: center;
  background: #e5b50d;
  color: #fff;
  border-radius: 20px 0px 0px 0px;
  width: 90px;
  height: 88px;
  position: absolute;
  top: 0;
  left: 0;
}

.date-wrap>h2,
.date-wrap>p {
  font-family: var(--secondary-font);
  color: var(--light);
  margin: 0;

  letter-spacing: -0.03em;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.event-wrap {
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.event-wrap>div {
  font-size: 14px;
  padding-bottom: 5px;
}

.event-wrap>div>a {
  color: var(--text-1);
  font-weight: 600;
}

.event-content>h3 {
  margin: 0;
  padding: 0;
  font-family: var(--secondary-font);
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.event-content>p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text);
  opacity: 0.85;
}

.event-location {
  background: #c7fff1;
  padding: 10px;
  margin-top: 10px;
}

.event-location a {
  color: var(--text-1);
  font-size: 14px;
}

.event-card {
  display: flex;
  gap: 20px;
  padding-bottom: 12px;
  align-items:start;
}

.event-card>div {
  font-size: 14px;
}

.event-card>div>a {
  color: var(--text-1);
  font-size: 14px;
  font-weight: 600;
}

.event-card>a>img {
  min-width: 200px;

  height: 125px;
  border-radius: 12px;
  object-fit: cover;
}

.event-content h3 {
  margin: 8px 0;
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 13px;
}

.event-content>h3>a {
  color: var(--dark);
}
 .event__section--page{
    margin-bottom: 40px;
  }

.news-section {
  padding-bottom: 60px;
}

.article-container {
  margin-top: 40px;
}

.article-card {
  background: #ffffff;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}

.article-card>div {
  position: relative;
}

.article-card>a>img {
  border-radius: 20px 20px 0px 0px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-btn {
  box-sizing: border-box;
  align-items: center;
  padding: 3px 9px;
  gap: 8px;
  background: #09665b;
  border: 1px solid #09665b;
  border-radius: 10px;
  display: inline-block;
  position: absolute;
  bottom: -20px;
  left: 10px;
}

.article-btn:hover {
  background-color: rgb(1, 37, 33);
}

.article-btn>a {
  color: var(--light);
  font-size: 16px;
  font-weight: 500;
}

.article-content {
  padding: 15px;
}

.article-content>h3 {
  margin: 0;
}

.article-content>h3>a {
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 27px;
  color: var(--dark);
  display: block;
}

.article-content>div>i,
.article-content>div {
  color: var(--green);
  margin-bottom: 5px;
  font-size: 12px;
}

.readmore_btn {
  margin-top: 5px;
  display: inline-block;
}

.readmore_btn a {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  gap: 8px;
  border: 1px solid rgba(229, 181, 13, 0.5);
  border-radius: 10px;
  color: var(--dark-yellow);
  margin-top: 12px;
  font-weight: 500;
  font-size: 12px;
  display: inline-block;
}

.readmore_btn a:hover {
  background: rgb(190, 147, 4);
  color: var(--light);
}

.footer-container {
  background: #09665b;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-top: 30px;
}

.footer-logo p {
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 16px;
  width: 80%;
  color: var(--light);
  margin: 20px 0;
}

.social-icons a {
  margin-top: 40px;
  color: var(--light);
  font-size: 18px;
  margin-right: 10px;
}

.quick-link-wrap span {
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: var(--light);
}

.quick-link-wrap ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.quick-link-wrap ul>li {
  margin-top: 10px;
  font-size: 15px;
}

.quick-link-wrap ul>li>a {
  color: var(--light);
}

.quick-link-wrap ul>li>a:hover {
  border-bottom: 1px solid var(--light);
  padding: 0 0 2px 0;
}
    
.site-footer h2 {
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: var(--light);
}

.contact-info>div>p {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--light);
}

.contact-info>div>h3 {
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--light);
  font-size: 20px;
  border-bottom: 1px solid var(--light);
  display: inline-block;
  margin: 5px;
}

.contact-info-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info-wrap ul>li {
  margin-top: 8px;
  font-size: 16px;
  display: flex;
  gap: 10px;
}

.contact-info-wrap ul>li>a {
  color: var(--light);
}

.subscribe-btn {
  display: flex;
  gap: 10px;
  margin: 22px 0;
}

.subscribe-btn>input {
  padding: 10px;
  border-radius: 10px;
  border: none;
  outline: none;
  box-sizing: border-box;
  position: absolute;
  width: 391px;
  height: 56px;
  border: 1px solid var(--light);
  border-radius: 8px;
  font-family: var(--secondary-font);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--light);
  opacity: 0.5;
}

.subscribe-btn>div:last-child>a {
  background: var(--dark-yellow);
  padding: 10px 20px;
  border-radius: 10px;
  color: #09665b;
  font-weight: 500;
  font-family: var(--secondary-font);
  max-width: fit-content;
  font-size: 16px;
  font-weight: 600;
  height: 100%;
  display: block;
}

.subscribe-btn>div:last-child>a:hover {
  background: #f3df98;
}

.subscribe-btn input:not([type="submit"]) {
  padding: 12px;
  background-color: transparent;
  outline: unset;
  border: 1px solid #effefa;
  border-radius: 8px;
  color: #effefa;
  margin: 0;
}

.subscribe-btn input::placeholder {
  color: #effefa8a;
  font-family: var(--secondary-font);
  font-size: 14px;
}

.site-info-bottom {
  padding: 60px 0 0;
}

.site-info-bottom>div {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #ffffff40;
}

.site-info-bottom>div>p {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--light);
}

.site-info-bottom>div>p>a {
  color: var(--light);
}

.footer-sticky {
  background: var(--bg-color);
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  display: none;
  visibility: hidden;
}

.stickyfooter-contact a {
  display: block;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
}

.footer-sticky.active {
  opacity: 1;
  visibility: hidden;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

/* aboutus template */
.about-us-section>div>p {
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: var(--text);
  opacity: 0.85;
  max-width: 100%;
}

.about-us-gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.about-us-gallery-container>img {
  width: 100%;
  max-width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-bottom: 60px;
}

.content-area ul {
  padding-left: 16px;
}

.content-area p,
.content-area ul li {
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 30px;
  color: rgba(0, 0, 0, 0.8);
}

.content-area ul {
  padding-left: 18px;
  margin: 0;
}

.content-area ul li:not(:last-child) {
  margin-bottom: 15px;
}

.content-area h2,
.content-area h3,
.content-area h4,
.content-area h5,
.content-area h6 {
  color: var(--green);
  margin-top: 25px;
  margin-top: 12px;
  margin-bottom: 18px;
  font-weight: 300;
}

.content-area h2 {
  font-size: 35px;
}

.content-area h3 {
  font-size: 30px;
}

.content-area h4 {
  font-size: 28px;
}

.content-area em {
  color: var(--text);
}

.content-area figure {
  width: 100% !important;
}

.content-area figure img {
  width: 100%;
}

.content-area figcaption {
  display: block;
  margin-top: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #44403cd5;
}

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

.the__title {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 34px;
  color: #363636;
  font-family: var(--secondary-font);
}

.sidebar .list__item {
  background: #f0f2f7;
  padding: 0 15px;
  border-left: 5px solid var(--green);
}

.sidebar .list__item ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.sidebar .list__item ul li:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.sidebar .list__item ul li a {
  font-size: 15px;
  color: var(--green);
  padding: 15px 0;
  display: block;
  font-weight: 700;
  position: relative;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  padding-right: 20px;
}

.sidebar .list__item ul>li>a::before,
.sidebar .list__item ul>li>a::after {
  content: "\f054";
  font-family: "font awesome 6 free";
  font-weight: 900;
  position: absolute;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  font-size: 12px;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sidebar .list__item ul>li>a::after {
  opacity: 0;
  visibility: hidden;
}

.sidebar .list__item ul>li>a:hover::after {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.sidebar .list__item ul>li>a:hover {
  color: #1e1e1e;
}

/* contact-information */

.form-section .wrapper {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background: #fff;
  padding: 40px;
}

.contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.con-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.contact-info .con-info {
  width: 100%;
  background-color: white;
  padding: 20px 0;
}

.contact-info .con-info a {
  color: black;
}

.contact-info .con-info a:hover {
  color: rgba(0, 0, 0, 0.8);
}

.con-info i {
  font-size: 25px;
  color: var(--green);
}

.con-info {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-info .con-info img {
  width: 30px;
}

.con-info p {
  margin: 0;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
}

.con-info span,
.con-info a {
  font-size: 16px;
  color: black;
}

.con-info .social-icon i {
  font-size: 16px;
}

.contact-info .con-info:last-child {
  border-bottom: none;
}

.location-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.location-icon i,
.contact-wrapper .social__icons a i {
  font-size: 14px;
  background: #294d9112;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  color: var(--green);
}

.contact-wrapper .social__icons a i:hover {
  background: var(--green);
  color: #fff;
}

.location-icon .location p {
  margin: 0;
  font-size: 16px;
}

.location-icon.contact-phone .location p {
  margin-bottom: 5px;
}

.location-icon .location p strong {
  color: rgba(0, 0, 0, 0.8);
}

.location-icon .location span,
.location-icon .location p a {
  color: rgba(0, 0, 0, 0.6);
  font-family: var(--secondary-font);
  font-weight: 500;
}

.location-icon .location p a:hover {
  color: var(--green);
}

.contact-heading {
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
  color: #363636;
}

.contact-us .contact-wrapper {
  margin-bottom: 30px;
}

.contact-wrapper .location-icon {
  margin-bottom: 25px;
}

.location-icon.contact-phone {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

/* contact-form */

input:not([type="submit"]),
select,
textarea {
  width: 100%;
  outline: none;
  font-size: 16px;
  padding: 12px 14px;
  border: none;
  color: #555;
  margin-top: 7px;
  background: #ffffff12;
  background: #0000000c;
  font-family: var(--secondary-font);
  border-bottom: 1px solid var(--green);
}

input[type="submit"] {
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 14px;
  z-index: 20;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  border: none;
  color: white;
  background: var(--green);
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: 600;
}

.contact-form form p {
  margin-bottom: 12px;
  font-size: 14px;
}

.uk-grid-divider> :not(.uk-first-column)::before {
  border-color: #09665b80;
}


/* membership */
.mb {
  margin-bottom: 40px;
}

.member-container {
  display: flex;
  gap: 26px;
  padding: 12px;
  background: #EFFEFA;

  border-radius: 12px;
  align-items: center;
  /* flex-direction: column; */
}

.member-wrap {
  color: #00000089;
  font-weight: 500;
  font-family: var(--secondary-font);
  font-size: 16px;

}

.member-wrap>h3 {
  color: #000000ed;
  font-weight: 500;
  font-family: var(--secondary-font);
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 0;

}

.member-wrap>h3>a {
  color: #000000ed;
  font-weight: 500;
  font-family: var(--secondary-font);
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 0;
}

.member-wrap>p {
  color: #000000cb;
  font-weight: 500;
  font-family: var(--secondary-font);
  font-size: 18px;
  padding: 0;
}

.member-wrap>span {
  color: #6b6b6b;
  font-size: 16px;
  display: block
}

.member-img {
  width: 100px;
  height: 100px;
}

.member-img img {
  height: 100px;
  min-width: 100px;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  object-position: top;

}

.section.team__single>h1 {
  font-weight: 600;
}

.team__single__details {
  background: var(--bg-color-light);
  padding: 20px;
  color: #000;
}

.single__heading>h2 {
  font-size: 28px;

}

.about__org__grid {
  background: var(--blue);
  color: var(--green);
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 12px;

}

/*  */


.single__team_img img {
  max-width: 550px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;


}

/* .single__team_img > h3 {
	padding: 0;
	margin: 0;
	font-weight: 500;
	font-size: 24px;
	line-height: 24px;
} */

.contact-info>div>a {
  color: var(--green);
}


/* .wrapper {
  margin-top: 20px;
} */

.wrapper>h2 {
  font-size: 24px;
  line-height: 24px;
}

.the-content>h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 0;
}

.the-content>p {
  font-weight: 400;
  margin-bottom: 20px;
}
.the-content > ul >li {
  margin-bottom: 10px;
}

.about__org__grid {
  margin-top: 20px;
}

.about__org__grid>div>h2 {
  font-size: 24px;
  line-height: 24px;
}

.contact-info>div {
  /* padding: 5px; */
  color: var(--green);
}

/* .contact-info > div:hover {
	background:#EFFEFA;
	border-radius: 5px;

} */
.contact-info>div>i {
  margin-right: 10px;
}

.member-info {
  margin: 12px 0 12px 0;
  font-weight: 500;
  color: #363636bb;
}

.member-info h3 {
  font-size: 24px;
  padding-bottom: 0;
  margin-bottom: 0;
  font-weight: 500;

}

.member-info p {
  padding: 0;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  color: #363636bb;
}

.the-content>ul {
  margin: 0;
}

.the-content>div {
  margin: 0;
  padding-bottom: 10px;
}


.member-info>span>.content-date {
  color: var(--green);

  font-size: 16px;
}

.team__single__info {
  background: #C7FFF1;
  padding: 5px 10px;
  margin-top: 10px;
  border-radius: 12px;
}

.team__single__info>.wrapper {
  margin-top: 5px;
}

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


    .event-content > p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text);
    opacity: 0.85;

    display: -webkit-box;
    -webkit-line-clamp:3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.uk-grid-divider{
  color: #09665B80;
}

.wpcf7-form-control.wpcf7-textarea{
      resize: vertical;
}

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

.uk-grid-divider.uk-grid-stack>.uk-grid-margin::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    border-top: 1px solid #09665B80;
}