/*!
  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=Mukta:wght@200;300;400;500;600;700;800&display=swap");

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

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

@font-face {
  font-family: "Helvetica";
  src: url("./assets/fonts/HelveticaNeue-Roman.woff2") format("woff2"),
    url("./assets/fonts/HelveticaNeue-Roman.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --primary: #ad3438;
  --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: #811417;
  --light: #fff;
  --dark: #1d2222;
  --text: rgba(29, 34, 34, 1);
  --text-1: rgba(9, 102, 91, 1);

  --primary-font: "Caveat", sans-serif;
  --secondary-font: "Helvetica", sans-serif;
  --mukkta-font: "Mukta", sans-serif;
  --transition: all 0.3s 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: clamp(24px, 3vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1.5;
  color: var(--dark);
  margin: 0 0 10px 0;
}

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


.section {
  padding-top: 60px;
}

.wrapper {
  max-width: 1600px;
}

.wrapper-small {
  max-width: 1200px;
}

.padding-tb {
  padding: 70px 0;
}

.custom-logo {
  width: 90px;
}

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

.menu-bar {
  background: var(--primary);
  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;
}

.menu-bar i {
  color: var(--light);
}

.main-navigation>div>ul>li.menu-item-has-children {
  position: relative;
}

.main-navigation .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 250px;
  max-width: 700px;
  background-color: #f1f1f1;
  box-shadow: 0 12px 40px 0 rgba(99, 153, 122, 0.2),
    0 70px 100px -60px rgba(99, 153, 122, 0.4);
  border-radius: 10px;
  padding: 10px;
  margin: 0;
  list-style: none;
  z-index: 9999;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.main-navigation>div>ul>li.menu-item-has-children:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.sub-menu>li {
  position: relative;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.sub-menu>li>a {
  display: block;
  padding: 14px 30px 14px 18px;
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sub-menu>li>a:hover {
  background: #ad3438;
  color: var(--light);
}

#primary-menu .sub-menu .drop-menu-icon:hover i {
  rotate: 180deg;
  color: var(--light);
  transition: all linear .3s;
}

.sub-menu>li.menu-item-has-children>a::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  font-size: 12px;
  transform: translateY(-50%);
  transition: right 0.3s ease;
}

.sub-menu>li>a:hover::after {
  right: 10px;
}

.main-navigation .sub-menu .sub-menu {
  left: 100%;
  top: 0;
  margin-top: 0;
}

.main-navigation .sub-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 20px;
  width: 15px;
  height: 15px;
  background-color: #f1f1f1;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 1;
}

.main-navigation .sub-menu:hover,
.main-navigation li:hover>.sub-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.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-grid > * > :last-child {
  margin-bottom: clamp(10px, 3vw, 20px);
} */

.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: unset !important;
}

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

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

.sticky__top {
  position: sticky;
  top: 110px;
}

/* .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: 15px;
  right: 13px;
  color: var(--dark);
  font-size: 12px;
}

.btn i {
  font-size: 13px;
  margin-right: 4px;
  transform: rotate(-40deg);
}

.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(--light);
  position: relative;
  z-index: 1050;
  padding: 10px 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

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

.info-header {
  background: #09665b;
}

.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(--light);
  font-size: 13px;
  font-weight: 500;
}

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

.header-contact a i {
  padding-right: 5px;
}

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

.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: 10px 10px;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Mukta', sans-serif;
  display: inline-block;
}

.main-navigation>div>ul>li:hover>a {
  color: #fff;
  background-color: #b13539;
  border-radius: 10px;
}

.main-navigation ul li:hover>a,
.main-navigation ul li:hover .dropmenu-icon i {
  color: #fff;
}

.main-navigation>div>ul>li.current-menu-item>a,
.main-navigation>div>ul>li.current_page_item>a,
.main-navigation>div>ul>li.current-menu-parent>a {
  color: #fff;
  background-color: #b13539;
  border-radius: 10px;
  font-family: "Mukta", sans-serif;
}

.main-navigation>div>ul>li:hover .dropmenu-icon i,
.main-navigation>div>ul>li.current-menu-item .dropmenu-icon i,
.main-navigation>div>ul>li.current-menu-parent .dropmenu-icon i {
  color: #fff;
  font-size: 12px;
}

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

.uk-offcanvas-bar ul li.current-menu-item>a,
.uk-offcanvas-bar ul li.current_page_item>a,
.uk-offcanvas-bar ul li.current-menu-parent>a {
  color: #fff !important;
  background-color: #b13539;
  border-radius: 0;
}

.uk-offcanvas-bar ul li.current-menu-item .dropmenu-icon i,
.uk-offcanvas-bar ul li.current-menu-parent .dropmenu-icon i {
  color: #fff !important;
}


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

.flag-contact-wrap img {
  position: relative;
  width: 60px;
  height: 60px;
}

#offcanvas-slide .uk-nav-default li.menu-item-has-children>.submenu-toggle {
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

/* Mobile Offcanvas Submenu Styles */
#offcanvas-slide .uk-nav-default>li.menu-item-has-children>ul {
  display: none;
  overflow: hidden;
  height: 0;
  transition: height 0.35s ease;
  padding-left: 20px;
  background: #f9f9f9;
  margin: 0;
}

#offcanvas-slide .uk-nav-default>li.menu-item-has-children>ul>li>a {
  padding: 12px 20px;
  font-size: 15px;
  color: #333;
  border-bottom: 1px solid #eee;
}

#offcanvas-slide .uk-nav-default>li.menu-item-has-children>.submenu-toggle {
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--dark);
}

#offcanvas-slide .uk-nav-default>li.menu-item-has-children>a {
  padding-right: 60px !important;
  display: block;
  width: 100%;
}

#offcanvas-slide .uk-nav-default .submenu-toggle i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

#offcanvas-slide .uk-nav-default li.menu-item-has-children.open>a {
  background: #0000000f;
  font-weight: 600;
}

.uk-offcanvas-bar .dropmenu-icon i {
  display: none;
}

/* .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-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
  gap: 10px;
  row-gap: 5px;
}

.page__banner .breadcrumb ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* .breadcrumbs__data {
  padding: 12px 0;
} */
.breadcrumb ul li {
  position: relative;
}

.breadcrumb ul li:not(:last-child) {
  padding-right: 20px;
}

.breadcrumb ul li a {
  font-size: 16px;
  color: #ccc;
  font-weight: 500;
  letter-spacing: 1%;
}

.page__banner .breadcrumb ul li a {
  color: #fff;
}

.breadcrumb ul li:after {
  content: "\f054";
  font-family: "font awesome 6 free";
  font-size: 10px;
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  color: #ccc;
}

.page__banner .breadcrumb ul li:after {
  color: #fff;
}

.breadcrumb ul li:last-child:after {
  content: " ";
}

.breadcrumb ul li a.active {
  pointer-events: none;
  color: #fff;
  opacity: 50%;
}

.breadcrumb ul li a:hover {
  opacity: 0.9;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

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

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 20px;
}

.medium {
  margin-left: -30px;
  padding-left: 30px;
}

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

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

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

.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(32px, 4vw, 58px);
  position: relative;
  letter-spacing: -0.03em;
  text-align: left;
  line-height: clamp(42px, 4vw, 66px);
  color: #ffffff;
  z-index: 1;
  margin-bottom: 10px;
}

.banner-text>p {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 16px;
  position: relative;
  line-height: 22px;
  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 20px;
  gap: 8px;
  background: var(--primary);
  /* 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(--light);
  display: inline-block;
}

.donate-btn a:hover {
  background: var(--bt-color);
  color: var(--light);
}

.donate-btn i {
  background: var(--light);
  border-radius: 5px;
  padding: 5px;
  margin-left: 4px;
  color: var(--primary);
  transition: all ease-in-out 0.3s;
}

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

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

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

.feature-section {
  padding: 50px 0;
  background: #f4f4f4;
}

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

.feature-container>div {
  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: 24px;
  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: 16px;
  line-height: 1.4;
  margin: 0;
  color: var(--text);
}

.heading-wrap>span {
  background: #f4f4f4;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  font-size: 18px;
  color: #09665b;
  font-family: var(--primary-font);
  padding: 5px 11px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
}

.btn-wrapper>span {
  background: #f4f4f4;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  color: #09665b;
  font-family: var(--primary-font);
  padding: 3px 14px;
  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: clamp(32px, 3vw, 48px);
  letter-spacing: -1;
  line-height: 1.2;
  color: var(--dark);
  margin: 0 0 10px 0;
}

.heading-wrap h1 {
  font-size: clamp(28px, 4vw, 35px);
  line-height: 1.3;
  font-family: "Mukta", sans-serif;
}

.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(--light);
  background: var(--primary);
  box-sizing: border-box;
  border: 1px solid var(--primary);
  border-radius: 10px;
  padding: 12px 18px;
}

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

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

.about-section p {
  width: 85%;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  font-family: 'Mukta', sans-serif;
  line-height: 1.6;
}

.about-section h2:nth-of-type(2) {
  font-family: 'Mukta', sans-serif;
  font-size: 40px;
  line-height: 1.3;
}

.about-section h2 {
  font-family: 'Mukta', sans-serif;
  font-size: 40px;
  line-height: 1.3;
}

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

.btn {
  font-family: var(--secondary-font);
  font-weight: 500;
  /* As requested */
  display: inline-block;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  color: var(--light);
  background: var(--primary);
  transition: all 0.3s ease;
}

.btn .text {
  position: relative;
  z-index: 2;
  display: block;
  color: #fff;
  transition: all 0.3s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 9px;
  background: radial-gradient(circle at 50% 100%, #e05a5e 8%, transparent 50%),
    linear-gradient(to bottom, #c7383c, #8f282c);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.15) 40%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Moving shine animation - appears and runs only on hover */
.btn:hover::before {
  opacity: 1;
}

.btn:hover::after {
  opacity: 1;
  animation: glossFade 0.4s ease forwards;
}

.btn:hover::before {
  animation: innerFade 0.4s ease forwards;
}

.btn:hover::after {
  background: linear-gradient(90deg,
      transparent 30%,
      rgba(255, 255, 255, 0.6) 50%,
      transparent 70%);
  background-size: 200% 100%;
  animation: shine 4s linear infinite, glossFade 0.4s ease forwards;
}

@keyframes shine {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes glossFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes innerFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

.btn:hover .text {
  color: var(--light);
}

.btn:active {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.viewmore-btn a {
  display: inline-block;
  padding: 12px 14px;
  font-size: 14px;
  background: var(--primary);
  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(--bt-color);
  color: var(--bt-color);
  font-weight: 600;
}

.viewmore-btn a:hover i {
  color: var(--primary);
}

.viewmore-btn i {
  color: var(--light);
  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: #f4f4f4;
}

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

.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 .btn {
  margin-top: 10px;
}

.service-container h3 {
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 3px;
  margin-top: 10px;
  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: #f4f4f4;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  max-width: 600px;
  width: calc(50% - 10px);
  transition: all 0.3s ease-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.program-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 40px rgba(149, 157, 165, 0.25);
}

.cardbg {
  background: #f4f4f4;
}

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

.program-card>div>h3 {
  font-size: 24px;
  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;
}

.our-teams .content-wrapper {
  padding-top: 20px;
}

.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(--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-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.date-wrapper .date p {
  font-weight: 500;
}

.date-wrapper .time>div {
  font-weight: 500;
  font-size: 13px;
}

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

.date-wrap {
  padding: 10px;
  text-align: center;
  background: #09665b;
  color: #fff;
  border-radius: 20px 0px 0px 0px;

  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}

.date-wrap>h2,
.date-wrap>p {
  font-family: var(--secondary-font);
  color: #fff;
  margin: 0;
  letter-spacing: -0.03em;
  /* text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */
  font-size: 21px;
  text-align: center;
  padding: 0 10px;
}

.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: #f4f4f4;
  padding: 10px;
  margin-top: 10px;
  font-weight: 600;
  border-radius: 10px;
}

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

.events-container .btn {}

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

.event-card>div {
  font-size: 14px;
  font-family: "Mukta", sans-serif;
}

.event-card>div>a {
  color: var(--text-1);
  font-family: "Mukta", sans-serif;
  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: 5px 0;
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.06em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-content>h3>a {
  color: var(--dark);
  font-family: "Mukta", sans-serif;
}

.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;
  display: flex;
  flex-direction: column;
}

.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;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.article-content .btn {
  margin-top: 10px;
  width: fit-content;
}

.article-content h3 {
  margin: 8px 0 5px 0;
  font-family: 'Mukta', sans-serif;
}

.article-card h3 a {
  color: var(--dark);
}

.article-content p {
  font-family: "Mukta", sans-serif;
}

.article-content>h3>a {
  /* font-family: var(--secondary-font); */
  font-family: "Mukta", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.5;
  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 14px;
  gap: 8px;
  border: 1px solid rgb(173 52 56);
  border-radius: 10px;
  color: rgb(173 52 56);
  margin-top: 12px;
  font-weight: 500;
  font-size: 12px;
  display: inline-block;
}

.readmore_btn a:hover {
  background: rgb(173 52 56);
  color: white;
}

.footer-container .uk-grid {
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
  margin: 0;
}

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

.footer-widget {
  width: 20%;
}

.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: 14px;
}

.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 {
  position: relative;
  background: #09665b;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-top: clamp(20px, 3vw, 40px);
}

.site-footer h2 {
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: clamp(16px, 3vw, 20px);
  letter-spacing: -0.03em;
  color: var(--light);
}

.site-footer .uk-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}

.site-footer .uk-container::after {
  content: "";
  position: relative;
  bottom: 0;
  right: -10px;
  background-image: url(assets/img/footer-bg.png);
  background-repeat: no-repeat;
  display: block;
  width: 335px;
  height: 389px;
  background-position: center;
  background-size: contain;
}

.site-footer .uk-container>div {
  width: 100%;
}

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

.contact-info .contact-info-wrap>ul>li>a>i {
  padding-right: 5px;
  font-size: 14px;
}

.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: 10px;
  font-size: 16px;
  display: flex;
  gap: 10px;
}

.contact-info-wrap ul>li a:hover {
  text-decoration: underline;
}

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

.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;
  max-width: 1030px;
  margin: 0 0 0 auto;
}

.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: 14px;
  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: 999;
  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-section {
  padding-bottom: 0 !important;
}

.about-us-section .content-wrapper p {
  margin-bottom: 15px;
}

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

.about-us-section .content-wrapper {
 max-width: 1080px;
  margin: 0 auto;
}

.about-us-section .contact-wrapper p {
  margin-bottom: 20px;
}

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

.content-area p,
.content-area ul li {
  font-weight: 400;
  margin-bottom: clamp(14px, 3vw, 20px);
  font-size: 16px;
  text-align: left;
  font-family: "Mukta", sans-serif;
  line-height: 1.5;
  opacity: 85%;
  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%;
  border-radius: 4px;
}

.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: 500;
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 34px;
  color: #363636;
  font-family: var(--secondary-font);
}

.sidebar .list__item {
  background: #f0f2f7;
  padding: 15px 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 #ccc;
} */

.sidebar .list__item ul li a {
  font-size: 20px;
  color: var(--text);
  /* padding: 15px 0; */
  display: block;
  font-weight: 500;
  position: relative;
  font-family: "Mukta", sans-serif;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  /* padding-right: 20px; */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.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: #ad3438;
}

/* 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;
  padding: 12px;
  background: #f4f4f4;
  border-radius: 14px;
  align-items: center;
  flex-direction: column;
}

.member-container {
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: #ffffff;
}

.member-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.18);
}

.member-img img {
  transition: transform 0.6s ease;
  width: 100%;
  height: auto;
  display: block;
}

.member-container:hover .member-img img {
  transform: scale(1.1);
}

.member-wrap {
  transition: all 0.4s ease;
}

.member-container:hover .member-wrap {
  transform: translateY(-5px);
}

.member-wrap {
  color: #111;
  text-align: center;
  font-weight: 500;
  font-family: "Mukta", sans-serif;
  position: relative;
  top: -50px;
  font-size: 16px;
  margin-top: 25px;
}

.member-wrap>h3 {
  color: #000000ed;
  font-weight: 500;
  font-family: "Mukta", sans-serif;
  /* font-family: var(--secondary-font); */
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0;
}

.member-wrap>h3>a {
  color: #09665b;
  font-weight: 500;
  font-family: "Mukta", sans-serif;
  /* font-family: var(--secondary-font); */
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 0;
}

.team__all .uk-grid {
  row-gap: 70px;
  padding-bottom: clamp(20px, 3vw, 40px);
}

.team__all h2 {
  margin-bottom: clamp(60px, 6vw, 80px);
}

.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;
  position: relative;
}

.member-img img {
  height: 100px;
  min-width: 100px;
  width: 100%;
  object-fit: cover;
  border: 1px solid #e6e6e6;
  border-radius: 50%;
  object-position: top;
  position: absolute;
  top: -65px;
}

.team__all .content-wrapper>.uk-grid.uk-grid-medium {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.team__all .member-wrapper:nth-child(1) {
  width: 100% !important;
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.team__all .member-wrapper:nth-child(1) .member-container {
  width: 100%;
  max-width: 265px;
  margin: 0 auto;
}

.team__all .member-wrapper:not(:nth-child(1)) {}

.team__all:nth-child(even) {
  background-image: url(assets/img/temas-bg.jpg);
}

.team__all:nth-child(even) h2 {
  color: #fff;
}

.team__all:nth-child(even) .uk-grid {
  padding-bottom: 20px;
  row-gap: 70px;
}

.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: 1.5;
  color: var(--text);
  opacity: 0.85;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -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;
}

.about-palpa {
  display: flex;
  gap: 50px;
  margin-bottom: clamp(40px, 6vw, 80px);
  align-items: center;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.about-palpa>div {
  flex: 1;
}

.banner__img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  aspect-ratio: 16 / 9;
}

.view__img {
  color: #000;
  font-weight: 500;
  border-radius: 2px;
  padding: 8px 8px;
  font-size: 12px;
  z-index: 99;
  position: absolute;
  top: 0;
  right: 0;
  background: #effefa;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6.6px);
  border-radius: 8px;
  cursor: pointer;
}

.about-palpa .content-wrapper {
  text-align: left;
  width: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.view__img:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 500;
}

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

.item {
  grid-column: span 8;
}

.item:nth-child(even) {
  grid-column: span 4;
  position: relative;
}

.about-palpa:nth-child(even) .content-wrapper {
  order: -1;
}

.image-wrapper.single-image {
  display: block;
  /* remove grid */
}

.image-wrapper.single-image .item {
  grid-column: auto;
  width: 100%;
}

.image-wrapper.single-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.image-wrapper.single-image .view__img {
  display: none;
}

.entry-content {
  overflow: hidden;
  transition: max-height 0.6s ease;
  max-height: 9999px;
}

.entry-content.collapsed {
  max-height: 11.2em;
  position: relative;
}

.entry-content.collapsed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(transparent, white 80%);
  pointer-events: none;
}

.entry-content img,
.text-collapse img {
  max-width: 100%;
  width: auto;
  height: auto !important;
  display: block;
  margin: 15px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.text-collapse {
  line-height: 1.6;
  margin: 0;
}

.view-more-btn {
  display: none;
  margin-top: 12px;
  color: #0073aa;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.view-more-btn.visible {
  display: inline-block;
}

.hidden-image {
  display: none;
}

.uk-container .content-area {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-top: 30px;
}

.uk-section {
  padding-top: clamp(20px, 3vw, 50px);
  padding-bottom: clamp(20px, 3vw, 50px);
}

.banner-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(270deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.8) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.card-wrapper.secondary .card__content {
  background: #f4f4f4;
}

.card-wrapper.rounded .card__content {
  border-radius: 22px;
  height: 100%;
}

.card-wrapper .the__content {
  text-align: left;
}

.hover__card {
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.hover__card:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.mv__icon img {
  filter: brightness(0) saturate(100%) invert(31%) sepia(92%) saturate(665%) hue-rotate(140deg) brightness(93%) contrast(101%);
  font-size: 40px;
  width: clamp(40px, 3vw, 60px);
  height: clamp(40px, 3vw, 60px);
  margin-bottom: 20px;
}

.the__title {
  font-family: var(--secondary-font);
  font-size: clamp(18px, 3vw, 24px);
  color: var(--text);
  margin: 0;
  margin-bottom: 10px;
}

.the-content p {
  font-family: var(--secondary-font);
  color: rgba(29, 34, 34, 1);
}

.card__content {
  padding: 30px;
  background: #f2f2f2;
}

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

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

.gallery-item img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  margin: 0 !important;
}

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

.default-section .default-image {
  margin-bottom: clamp(20px, 3vw, 40px);
}

.default-section .default-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


.single-wrapper {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
}

.single-wrapper .heading-wrapper span {
  font-size: 15px;
}

.image-single-wrapper {
  width: 30%;
}

.image-single-wrapper img {
  display: block;
  width: 100%;
  height: 90px;
  object-fit: cover;
}

.heading-wrapper {
  display: block;
  width: 70%;
}

.heading-wrapper h3 {
  margin: 0 !important;
}

.heading-wrapper span {
  font-size: 14px;
}

.heading-wrapper span i {
  padding-right: 5px;
}

.gallery .img-wrapper {
  position: relative;

}

.gallery .img-wrapper::before {
  content: "";
  position: absolute;
  background-image: url(./assets/img/gallery-icon.png);
  background-repeat: no-repeat;
  top: 12px;
  right: 15px;
  z-index: 2;
  height: 50px;
  width: 50px;
  background-size: contain;
}

.gallery .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.gallery .img-wrapper p {
  margin: 10px 0;
  font-family: var(--mukkta-font);
  font-weight: 600;
  font-style: SemiBold;
  font-size: 22px;
  line-height: 25.97px;
  letter-spacing: 0%;

}

.group a {
  display: none;
}

.group a:first-child {
  display: inline-block;
  height: 380px;
}


.video-gallery a img {
  height: 260px;
  object-fit: cover;
  width: 100%;
  border-radius: 12px;
}

.gallery .video-wrapper {
  position: relative;
  margin: 0;
}

.gallery .video-wrapper:first-child .featured-image {
  height: 100%;
}

.gallery .video-wrapper .featured-image {
  position: relative;
}

.gallery .video-wrapper .featured-image::after {
  content: "";
  position: absolute;
  background-image: url(./assets/img/video-icon.png);
  background-repeat: no-repeat;
  bottom: 12px;
  right: 15px;
  z-index: 2;
  height: 40px;
  width: 40px;
  background-size: contain;
}

.video-gallery .video-wrapper:first-child {
  grid-column: span 2;
  grid-row: span 2;

  position: relative;

}

.video-gallery .video-wrapper:first-child img {
  height: 668px;
}

.video-gallery .video-wrapper p {
  font-family: var(--mukkta-font);
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0%;
  margin: 10px 0 0;

}

.video-gallery .video-wrapper:first-child p {
  position: absolute;
  bottom: 20px;
  left: 30px;
  color: white;
  width: 420px;
  font-family: var(--mukkta-font);
  font-weight: 600;
  font-style: SemiBold;
  font-size: 27px;

  letter-spacing: 0%;
}

.img-gallery,
.video-gallery {
  padding: 60px 0;
}

.time img {
  max-width: 16px;
  opacity: 0.7;
}

.date img {
  max-width: 16px;
}

.time {
  display: flex;
  gap: 7px;
}

.date_time_section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.gallery .video-wrapper:first-child .featured-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
  top: 0;
  border-radius: 12px;
}
.mail_button {
    margin-top: 22px;
}