/* web fotn */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  box-sizing: border-box;
}

:root {
  --primary-dark: #23803E;
  --secondary-dark: #333333;
  --dark-gold: #D09006;
  --dark-red: #6B2D1B;
  --global-body-bg: #fcfcea;
  --error: red;
  --white: #fff;
  --black: #000;
  --raisinblack: #242021;
  --font-cormorand: "Cormorant", serif;
  --font-inter: "Inter", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  transition: 0.5s;
  font-family: var(--font-inter);
  background-color: var(--global-body-bg);
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
}

h2,
h3,
h4 {
  font-family: var(--font-cormorand);
}

h1,
h2,
h3,
h4,
h5,
h6,
li,
p,
ul {
  margin: 0;
  padding: 0;
}


h1 {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 40px;
  line-height: 55px;
  text-transform: capitalize;
}

h2 {
  font-weight: 600;
  font-size: 35px;
  line-height: 40px;
  text-transform: capitalize;
  color: var(--primary-dark);

}

h3 {
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
}

h4 {
  font-weight: 500;
  font-size: 25px;
  line-height: 100%;
}

h5 {
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
}

h6 {
  font-weight: 600;
  font-size: 19px;
  line-height: 100%;
  letter-spacing: 1%;
}

p {
  font-weight: 400;
  font-size: 19px;
  line-height: 34px;
}

.caption-big-inter {
  font-weight: 600;
  font-size: 17px;
  line-height: 100%;
}

.caption-big-inter-500 {
  font-weight: 500;
  font-size: 17px;
  line-height: 100%;
}

.caption-small-cormorant {
  font-weight: 900;
  font-size: 14px;
  line-height: 16px;
}

.caption-Small-inter {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
}

.H6-inter-500 {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

li {
  list-style: none;
}

a {
  color: var(--bs-link-color);
  text-decoration: none;
}

a:hover {
  cursor: pointer;
  text-decoration: none;
  color: var(--bs-link-hover-color);
}

a,
button {
  -webkit-transition: all 250ms ease 0s;
  -moz-transition: all 250ms ease 0s;
  -ms-transition: all 250ms ease 0s;
  -o-transition: all 250ms ease 0s;
  transition: all 250ms ease 0s;
}

button,
button:focus {
  outline: none;
  border: none;
  cursor: pointer;
}

.form-control:focus,
.form-check-input:focus {
  outline: 0;
  box-shadow: none;
}

input,
select,
textarea {
  font-size: 16px;
  line-height: 37px;
}

textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
  box-shadow: none;
}

input:hover,
input:active,
input:focus {
  outline: none;
  box-shadow: none;
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--black) !important;
  text-decoration: none;
  background-color: inherit;
  font-weight: 600;
}

select:hover,
select:active,
select:focus {
  outline: none;
  box-shadow: none;
}

.form-select:focus {
  border-color: transparent;
  outline: 0;
  box-shadow: 0 0 0 0;
}

input[type=number] {
  -moz-appearance: textfield;
  /*For FireFox*/
}

input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

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

.flex-box {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1* var(--bs-gutter-y));
}

.custom-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
}

h2.verticle-heading {
  font-size: 100px;
  color: #ffffff0a;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  height: 0px;
  left: -360px;
  transform: rotate(270deg) translate(0, -50%);
  bottom: 0;
}

nav.navbar .custom-container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.mobile-contact-list {
  display: none;
}

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

.owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  background: #D3D3D3;
  display: inline-flex;
  position: relative;
  margin-right: 16px;
  border-radius: 50%;
}

.owl-dots .owl-dot.active span {
  background: var(--primary-dark);
  position: relative;
}

.owl-dots .owl-dot.active span::before {
  content: '';
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid #a2c617;
  z-index: -1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.global-header {
  margin-bottom: 40px;
}

/* global solid button */
.global-light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 0px;
  line-height: 28px;
  font-family: var(--font-cormorand);
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 1%;
  color: var(--primary-dark);
  position: relative;
  overflow: hidden;
  box-shadow: 1px 6px 11px 0px #A2C6175C;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  background-color: var(--global-body-bg);
}

.global-dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  font-family: var(--font-cormorand);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 1%;
  border-radius: 0px 0px 24px 0px;
  line-height: 28px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  background-color: var(--primary-dark);
}

.global-light-button:hover,
.global-border-button:hover {
  color: var(--white);
}

.global-light-button img,
.global-dark-button img,
.global-border-button img {
  margin-left: 5px;
}

.global-light-button span,
.global-dark-button span,
.global-border-button span {
  position: relative;
  z-index: 2;
}

.global-dark-button:hover {
  color: var(--white);
}

.global-light-button::after,
.global-dark-button::after,
.global-border-button::after {
  content: '';
  left: -100%;
  width: 100%;
  position: absolute;
  height: 100%;
  background: var(--primary-dark);
  transition: all 0.4s ease-in-out;
}

.global-light-button:hover::after,
.global-dark-button:hover::after,
.global-border-button:hover::after {
  left: 0px;
}

.global-border-button {
  background-color: transparent;
  color: var(--primary-dark);
  border: 1px solid var(--primary-dark);
}

/* global solid button */
.global-header.side-by-side {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.global-headercntn {
  display: flex;
  align-items: center;
}

.cyan-light {
  color: var(--primary-dark);
}

.partner-item.slick-slide img {
  margin: 0 a;
}

.extra-space {
  padding: 0px 150px;
}

nav.navbar a.nav-link {
  font-family: var(--font-cormorand);
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  color: var(--global-body-bg);
  padding-top: 13px;
  padding-bottom: 13px;
  transform: all 0.4s ease-in-out;
}

li.nav-item.dropdown .dropdown-toggle {
  padding: 0px;
  font-size: 17px;
  position: relative;
  display: flex;
  align-items: center;
}

nav.navbar a.nav-link:hover {
  color: var(--dark-green);
  transform: all 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.dropdown-menu {
  -webkit-animation: fadeIn 0.3s alternate;
  animation: fadeIn 0.3s alternate;
  padding: 0px;
}

.nav-item.dropdown.dropdown-mega {
  position: static;
}

li.nav-item.dropdown .dropdown-menu a.dropdown-item {
  font-size: 22px;
  padding: 8px 19px;
  font-family: var(--font-cormorand);
  font-weight: 700;
  color: var(--primary-dark);
}

.nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 90%;
  top: auto;
  left: 5%;
}

.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  z-index: 11;
  right: 0px;
}

.only_mobile_view {
  display: none;
}

.navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left: auto;
  right: -12px;
  top: 50%;
  width: 50%;
  height: 50%;
  pointer-events: none;
}

.navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 4px;
  position: absolute;
  background: #000000;
  border-radius: 2px;
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
  left: 0px;
}

.navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
}

.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}

.navbar-toggler .hamburger-toggle .hamburger span:last-child {
  right: 0px;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
}

.navbar-toggler .hamburger-toggle .hamburger.active span {
  position: absolute;
  margin: 0;
}

nav.top-navbar {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 2px 0px;
  position: sticky;
  z-index: 99;
  position: -webkit-sticky;
  transition: all 0.3s ease-in-out;
  top: 0;
  width: 100%;
}

nav.top-navbar li.nav-item.dropdown {
  display: flex;
}

.top-navbar ul.navbar-nav {
  width: 100%;
  justify-content: space-between;
}

.top-navbar.sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0px;
  z-index: 99;
  background-color: var(--primary-dark);
  transition: all 0.3s ease-in-out;
  animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

nav.top-navbar li.nav-item {
  padding: 0px 6px;
}

.dropdown-toggle::after {
  font: normal normal normal 14px / 1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  content: "\f107";
  border-top: .0em solid !important;
  vertical-align: 0em;
  transition: all 0.4s ease-in-out;
  display: none;
}

.dropdown-toggle.show::after,
li.nav-item.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
  transition: all 0.4s ease-in-out;
}

li.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  top: 48px;
  left: 0;
  min-width: 210px;
  border-radius: 0px;
  padding: 18px 0px;
  background-color: var(--global-body-bg);
  margin-top: var(--bs-dropdown-spacer);
  box-shadow: 1px -4px 20px 0px #4a4a4a6e !important;
  transition: all 0.4s ease-in-out;
}

.dropdown-menu {
  border: none;
}

.navbar-brand.top-logo-part {
  display: none;
}

.top-bar-wrapper {
  display: flex;
  max-width: calc(100% - 400px);
  margin-left: auto;
  align-items: center;
  justify-content: space-between;
}

.top-bar-sec .top-bar-wrapper ul {
  max-width: 400px;
  width: 100%;
  text-align: right;
}

.top-bar-sec .tp-logo-part {
  max-width: -webkit-fill-available;
  width: 100%;
  text-align: center;
}

.top-bar-sec .tp-logo-part img {
  max-width: 90%;
  width: 100%;
}

.top-bar-sec a.global-dark-button {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translate(0px, -50%);
}

.top-bar-sec {
  position: relative;
  padding: 30px 0px;
}

.top-bar-sec .top-bar-wrapper ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: var(--white);
  font-size: 22px;
  background: var(--primary-dark);
  transition: all 0.3s ease-in-out;
}

.top-bar-sec .top-bar-wrapper ul li a:hover {
  background-color: var(--secondary-dark);
}

.top-bar-wrapper ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

.header-search-box input.form-control {
  border: 0px;
}

.header-search-box {
  position: relative;
  display: flex;
  border: 1px solid var(--primary-dark);
}

.header-search-box button {
  background: var(--primary-dark);
  border: 0px;
  color: var(--white);
  width: 48px;
  font-size: 19px;
  transition: all 0.3s ease-in-out;
}

.header-search-box button:hover {
  background-color: var(--secondary-dark);
}

nav.top-navbar li.nav-item.active-parent {
  position: relative;
}

nav.top-navbar li.nav-item.active-parent a.nav-link.active {
  color: var(--global-body-bg);
}

nav.top-navbar li.nav-item.active-parent::after {
  content: '';
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translate(0%, -50%);
  background: url(../images/small-fruit-shape.png)no-repeat;
  background-size: contain;
  background-position: center;
}

/* navbar end */
/* hero banner start */
.hero-banner {
  padding: 10px 0px 100px;
  min-height: 670px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-banner::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  /* clip-path: ellipse(60% 70% at 58% 100%); old */
  clip-path: ellipse(60% 40% at 58% 100%);
  background: var(--global-body-bg);
  height: 180px;
  width: 100%;
}

.hero-inner-banner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-inner-banner .content-box {
  max-width: calc(100% - 768px);
  width: 100%;
}

.hero-banner .content-inner h4 {
  max-width: 580px;
  margin-top: 11px;
  line-height: 40px;
}

.details-box {
  max-width: 270px;
  background: #fcfceaeb;
  padding: 15px;
  text-align: center;
}

.hero-inner-banner .content-box h1 {
  color: var(--global-body-bg);
}

.details-box ul.deatils-date {
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.hero-inner-banner .content-box h6 {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--primary-dark);
  position: relative;
}

.hero-inner-banner .content-box .hero-buttons {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-banner .content-inner {
  backdrop-filter: blur(20px);
  background-color: #0000004a;
  padding: 30px;
  color: var(--white);
}

.hero-banner .content-inner h4 {
  font-family: var(--font-inter);
  color: var(--global-body-bg);
}

.details-box ul.deatils-date p {
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  margin-top: 8px;
}

.details-box .caption-small-cormorant,
.details-box .caption-small-cormorant a {
  color: var(--primary-dark);
  font-family: var(--font-cormorand);
}

.details-box h4 {
  font-family: var(--font-cormorand);
  font-weight: 900;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 1%;
  text-align: center;
  color: var(--dark-red);
  padding: 15px 0px;
  border-bottom: 1px solid var(--dark-red);
}

.hero-buttons .global-light-button span i {
  margin-right: 7px;
  font-size: 22px;
}

.hero-buttons .global-light-button {
  font-weight: bolder;
}

/* hero banner end */
/* zigzac section */
.zigzac-image-content .row:nth-child(even) {
  flex-direction: row-reverse;
  margin-top: 80px;
}

.zigzac-image-content {
  padding: 50px 0px 30px;
}

.zigzac-image-content .image-box img {
  width: 100%;
  border-radius: 0 0 20px 0;
}

.zigzac-image-content .content-box {
  padding-right: 70px;
}

.zigzac-image-content .row:nth-child(even) .content-box {
  padding-right: 0px;
  padding-left: 70px;
}

.zigzac-image-content .devider::after {
  content: '';
  position: absolute;
  border-bottom: 1px solid var(--dark-red);
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.zigzac-image-content .devider {
  position: relative;
  text-align: center;
  margin: 40px 0px;
}

.zigzac-image-content .devider img {
  position: relative;
  z-index: 2;
  background-color: var(--global-body-bg);
}

.zigzac-image-content .row .content-box h2 span {
  color: var(--raisinblack);
}

.zigzac-image-content .content-box h2 {
  text-transform: math-auto;
}

/* zigzac section end */

/* news section start */
.brder-top {
  border-top: 0px solid var(--dark-red);
}

.news-outer.brder-top {
  border-width: 3px;
  margin-top: 50px;
}

.news-outer {
  padding: 50px 0px 80px 0px;
}

.news-outer .global-header {
  text-align: center;
  margin-bottom: 55px;
}

.news-outer .global-header h2 {
  font-family: var(--font-inter);
  font-weight: 300;
  color: var(--dark-red);
}


.news-item img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 0 34px 0;
  transition: all 0.3s ease-in-out;

}

.news-item img:hover {
  transform: scale(1.1);
}

.news-item {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 34px 0;
}

.news-item .new-title {
  position: absolute;
  bottom: 0px;
  padding: 20px;
  color: var(--global-body-bg);
  text-align: right;
  width: 100%;
}

.news-item .new-title img {
  width: auto;
  height: auto;
}

.news-item .new-title h4 {
  font-family: var(--font-inter);
  text-align: left;
  max-width: calc(100% - 33px);
  width: 100%;
  margin-bottom: -21px;
}

.news-item span.new-tag {
  position: absolute;
  color: var(--black);
  text-transform: uppercase;
  top: 15px;
  right: 15px;
  font-size: 16px;
  font-weight: 600;
  background: var(--global-body-bg);
  padding: 3px 20px;
  border-radius: 40px;
  font-family: var(--font-cormorand);
}

/* news section end */

.left-30 .leftContent {
  max-width: 30%;
}

.left-40 .leftContent {
  max-width: 40%;
}

.rgc_content_box_two_col .rightContent img {
  border-bottom-right-radius: 40px;
}

.rgc_content_box_two_col p {
  padding-bottom: 10px;
}

.rgc_content_box_two_col.equal_col .rightContent img {
  border-bottom-right-radius: 0px;
}

/* footer start */
footer.footer {
  background-color: var(--primary-dark);
  padding: 150px 0px 50px;
  color: var(--white);
  overflow: hidden;
  position: relative;
}

footer.footer::after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  clip-path: ellipse(61% 100% at 43% 0%);
  background: var(--global-body-bg);
  height: 120px;
  width: 100%;
}

footer.footer .footer-inner-box {
  display: flex;
  gap: 9px 30px;
  flex-wrap: wrap;
}

footer.footer .footer-inner-box .footer-item {
  max-width: calc(50% - 23px);
  width: 100%;
}

footer.footer .footer-inner-box .footer-item.get-touch-ftr img {
  transform: scale(1.1);
  margin-bottom: -30px;
  object-fit: contain;
}

footer.footer .footer-inner-box .footer-item.get-touch-ftr {
  max-width: calc(30% - 23px);
  display: flex;
  align-items: end;
}

footer.footer .footer-inner-box .footer-item.card-details-ftr {
  max-width: max-content;
  flex: 1;
}

.ftr-additional-details .ftr-inner-item {
  margin-top: 32px;
}

.ftr-additional-details .ftr-inner-item ul li {
  margin: 7px 0px;
}

.ftr-additional-details .ftr-inner-item h5 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 400;
}

.ftr-additional-details {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 20px;
}

.ftr-additional-details .ftr-adi-item-link {
  max-width: 170px;
  width: 100%;
}

.footer-item.card-details-ftr .details-box ul.deatils-date {
  color: var(--black);
}

.ftr-adi-item-lft {
  flex: 1;
}

footer.footer a {
  color: var(--white);
}

.ftr-adi-item-lft .ftr-inner-item:last-child h5 {
  font-size: 26px;
}

.footer-item.quick-link ul li {
  display: inline-flex;
  width: 49%;
  padding-right: 10px;
}

.ftr-social li a {
  display: inline-flex;
  height: 30px;
  width: 30px;
  background: #213f5b;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.ftr-social li a i {
  color: var(--primary-dark);
}

.footer-item.get-touch-ftr ul li {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0px;
  position: relative;
}

.footer-item.get-touch-ftr ul li span:last-child {
  display: flex;
  flex-direction: column;
}

/* footer end */

.lrContentWrap {
  gap: 35px;
}

.lrContentWrap a {
  color: var(--black);
}

.rightContent {
  flex: 1;
}

.lrContentWrap:has(.rgc_form_wrap) .leftContent a i,
.lrContentWrap:has(.rgc_form_wrap) .leftContent i {
  color: var(--primary-dark);
}

.rightContent img.alignright,
.rightContent img.alignleft {
  max-width: calc(50% - 10px);
  margin-right: 20px;
  border-radius: 0 0 15px 0px;
  transition: all 0.3s ease-in-out;
}

.rightContent img.alignright:hover,
.rightContent img.alignleft:hover {
  border-radius: 25px;
}

.leftContent {
  max-width: 50%;
  width: 100%;
}

.leftContent h2 {
  margin-bottom: 20px;
}

.rgc_divider {
  margin: 60px 0px;
  text-align: center;
  position: relative;
}

.rgc_divider .custom-container {
  position: relative;
}

.rgc_divider img {
  background: var(--global-body-bg);
  position: relative;
  z-index: 1;
}

.rgc_divider span.devider-border {
  width: calc(100% - 40px);
  border-bottom: 2px solid var(--dark-red);
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.gallery-thumb.rgcEnabledLightBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.gallery-thumb.rgcEnabledLightBox img:hover {
  border-radius: 35px;
}

.gallery-thumb.rgcEnabledLightBox {
  border-radius: 0 0 30px 0px;
  overflow: hidden;
  margin: 10px 0px;
  aspect-ratio: 1 / 1;
}

.rgc_gallery_lightbox {
  padding-top: 65px;
}

#lightboxCarousel img {
  max-height: 70vh;
  object-fit: contain;
}

#lightboxModal button.zindex-tooltip {
  position: relative;
  z-index: 999;
}

.rightContent p img {
  width: 100%;
}

.rgc_content_box_full_width h2 {
  margin-bottom: 10px;
}

.rgc_content_box_full_width {
  padding: 0px 0px 0px;
}

.rgc_content_box_full_width ul {
  column-count: 3;
  margin-top: 40px;
}

.rgc_content_box_full_width ul li {
  width: 100%;
}

.rgc_content_box_full_width ul li:last-child {
  padding-top: 22px;
}

.rgc_content_box_two_col:has(img.alignright) .leftContent p strong a {
  color: var(--primary-dark);
  margin-top: 10px;
  display: block;
}

.rgc_content_box_full_width a {
  color: var(--primary-dark);
}

.rgc_form_wrap .wpcf7-form-control {
  max-width: 100%;
  width: 100%;
  margin-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  background-color: transparent;
  border: 2px solid #939393;
  min-height: 75px;
}

.rgc_form_wrap textarea.wpcf7-form-control.wpcf7-textarea {
  max-height: 300px;
}

.rgc_form_wrap span.wpcf7-list-item-label {
  font-size: 16px;
}

.rgc_content_box_two_col.equal_col p:last-child {
  color: #565656;
}

.rgc_form_wrap span.wpcf7-form-control.optional {
  padding-left: 0px;
  border: 0px;
}

.rgc_form_wrap span.wpcf7-form-control.optional label {
  display: flex;
  flex-direction: row-reverse;
  gap: 9px;
  align-items: center;
}

.rgc_form_wrap span.wpcf7-form-control.optional input[name="acceptance-rgc"] {
  width: 18px;
  height: 18px;
  appearance: none;
  border: 2px solid var(--primary-dark);
  border-radius: 0px;
  cursor: pointer;
  position: relative;
}

.rgc_form_wrap span.wpcf7-form-control.optional input[name="acceptance-rgc"]:checked {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.rgc_form_wrap span.wpcf7-form-control.optional input[name="acceptance-rgc"]:checked::after {
  content: "✔";
  color: #fff;
  font-size: 14px;
  line-height: 15px;
  position: absolute;
  left: 2px;
  top: -1px;
  font-weight: bold;
}


.rgc_form_wrap span.wpcf7-form-control.optional .wpcf7-list-item {
  margin-left: 0px;
}

.contact_col2 .leftContent h4 {
  font-family: var(--font-inter);
}

body:has(.contact_col2) .rgc_content_box_full_width {
  margin: 20px 0px;
}

.contact_col2 .rightContent ul li {
  list-style-type: disc;
  margin-left: 20px;
  font-size: 19px;
  line-height: 34px;
}

.contact_col2 .leftContent p a,
.contact_col2 .rightContent p a {
  color: #23803e;
  border-bottom: 2px solid;
  display: inline-block;
  margin-top: 8px;
  line-height: 23px;
}

.lrContentWrap:has(.rgc_form_wrap) .leftContent p {
  margin-bottom: 8px;
}

.lrContentWrap:has(.rgc_form_wrap) .leftContent p a {
  color: #000000;
}

.lrContentWrap:has(.rgc_form_wrap) .leftContent p strong {
  color: var(--primary-dark);
  text-decoration: underline;
}

.lrContentWrap:has(.rgc_form_wrap) .leftContent {
  max-width: 30% !important;
}

.rgc_form_wrap .wpcf7-form-control.wpcf7-submit {
  background-color: transparent;
  border-color: var(--primary-dark);
  min-height: auto;
  max-width: fit-content;
  float: right;
  padding-left: 30px;
  padding-right: 30px;
  transition: all 0.3s ease-in-out;
}

.rgc_form_wrap .wpcf7-form-control.wpcf7-submit:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.equal_col img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin: 40px 0px;
}

.equal_col .leftContent h2 {
  margin-bottom: 0px;
}

.equal_col .leftContent h2,
.equal_col .rightContent h2 {
  color: #000;
}

.contact-dontae-btncntn-wrap .leftContent {
  max-width: max-content;
}

.contact-dontae-btncntn-wrap {
  margin-top: 70px;
}

.contact-dontae-btncntn-wrap .leftContent a {
  background: var(--primary-dark);
  color: var(--white);
  display: inline-block;
  padding: 12px 38px;
  border-radius: 0 0 30px 0;
  transition: all 0.3s ease-in-out;
}

.contact-dontae-btncntn-wrap .leftContent a:hover {
  background-color: #50ba5a;
}

.donate-item-space p {
  margin: 24px 0px;
}

.error-404 {
  padding: 150px 0px 120px;
  text-align: center;
}

.error-404 .page-content {
  margin-top: 20px;
}

.error-404 .page-content a.backToHome {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 0px;
  font-family: var(--font-cormorand) "Cormorant", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  background-color: var(--primary-dark);
}

.error-404 .page-content a.backToHome:hover {
  background-color: var(--black);
}

.search-result {
  padding: 100px 0px 50px;
}

.search-item {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-item a {
  color: var(--black);
}

.search-item a.view-page {
  color: var(--primary-dark);
  font-size: 18px;
  text-decoration: underline;
  display: inline-block;
}

.header-search-box ul li {
  text-align: left;
  width: 100%;
  padding: 8px;
  border-bottom: 1px solid var(--global-body-bg);
  cursor: pointer;
}

.header-search-box ul li:hover {
  background-color: var(--primary-dark);
  color: var(--global-body-bg);
}

.header-search-box ul {
  flex-direction: column;
  gap: 0px;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  background: #fff;
}

.header-search-box .no_data {
  text-align: left;
  padding: 10px;
}

.lrContentWrap:has(.rgc_form_wrap) .leftContent p a:hover,
.contact_col2 p a:hover {
  color: var(--primary-dark);
}

.left-40 h2.txt-black {
  color: var(--black);
}

.rgc_content_box_two_col ul.have-bullets li {
  list-style: disc;
  margin-left: 18px;
}

/* Search Results Styling */
.search-highlight {
  color: var(--primary-dark);
  font-weight: 700;
}

.suggestion-snippet {
  display: block;
  font-size: 13px;
  color: #666;
  margin-top: 4px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.search-snippet {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Search Suggestions Dropdown */
#search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 2px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  z-index: 9999;
  display: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  max-height: 400px;
  overflow-y: auto;
}

#search-suggestions ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#search-suggestions li.search-suggestion-item {
  padding: 12px 15px;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  transition: background-color 0.2s;
}

#search-suggestions li.search-suggestion-item:hover {
  background-color: #f9f9f9;
}

#search-suggestions li.search-suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-title {
  font-weight: 600;
  color: var(--primary-dark);
  display: block;
  font-size: 15px;
}

/* Single Post Styles */
.single-post-wrapper {
  padding: 80px 0px 50px;
}

.single-post-article {
  margin-bottom: 60px;
}

.post-featured-image {
  margin-bottom: 30px;
  border-radius: 0 0 34px 0;
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.post-featured-image img:hover {
  transform: scale(1.05);
}

.single-post-article .entry-header {
  margin-bottom: 30px;
}

.single-post-article .entry-title {
  font-family: var(--font-inter);
  font-size: 42px;
  color: var(--dark-red);
  margin-bottom: 20px;
  line-height: 1.3;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: #666;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--dark-red);
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-meta i {
  color: var(--primary-dark);
}

.post-meta a {
  color: #666;
  transition: color 0.3s ease;
}

.post-meta a:hover {
  color: var(--primary-dark);
}

.single-post-article .entry-content {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

.single-post-article .entry-content p {
  margin-bottom: 20px;
}

.single-post-article .entry-content h2,
.single-post-article .entry-content h3,
.single-post-article .entry-content h4 {
  font-family: var(--font-inter);
  color: var(--dark-red);
  margin-top: 30px;
  margin-bottom: 15px;
}

.single-post-article .entry-content h2 {
  font-size: 32px;
}

.single-post-article .entry-content h3 {
  font-size: 26px;
}

.single-post-article .entry-content ul,
.single-post-article .entry-content ol {
  margin-left: 30px;
  margin-bottom: 20px;
}

.single-post-article .entry-content li {
  margin-bottom: 10px;
}

.single-post-article .entry-content blockquote {
  border-left: 4px solid var(--primary-dark);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #555;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 0 0 20px 0;
}

.post-tags i {
  color: var(--primary-dark);
  font-size: 18px;
}

.post-tags a {
  background: var(--white);
  color: var(--primary-dark);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
}

.post-tags a:hover {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}

/* Post Navigation */
.post-navigation-wrapper {
  margin-bottom: 60px;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  flex: 1;
  max-width: calc(50% - 10px);
}

/* Post navigation link styles */
.post-navigation a {
  display: block;
  padding: 20px;
  color: var(--primary-dark);
  border-radius: 0 0 20px 0;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-dark);
}

.post-navigation a:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post-navigation .nav-subtitle {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  opacity: 0.7;
}

.post-navigation .nav-title {
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-red);
}

.post-navigation a:hover .nav-title {
  color: var(--white);
}

/* Comments Area */
.comments-area {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 3px solid var(--dark-red);
}

.comments-title,
.comment-reply-title {
  font-family: var(--font-inter);
  font-size: 32px;
  color: var(--dark-red);
  margin-bottom: 30px;
}

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

.comment-list .comment {
  margin-bottom: 30px;
}

.comment-body {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: #f9f9f9;
  border-radius: 0 0 20px 0;
  transition: all 0.3s ease;
}

.comment-body:hover {
  background: #f5f5f5;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.comment-author-avatar {
  flex-shrink: 0;
}

.comment-author-avatar img {
  border-radius: 50%;
  border: 3px solid var(--primary-dark);
}

.comment-content-wrap {
  flex: 1;
}

.comment-meta {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.comment-author-info {
  margin-bottom: 5px;
}

.comment-author-info .fn {
  font-size: 18px;
  color: var(--primary-dark);
  font-weight: 600;
}

.comment-author-info a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.comment-author-info a:hover {
  color: var(--dark-red);
}

.comment-metadata {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #666;
  flex-wrap: wrap;
}

.comment-metadata a {
  color: #666;
  text-decoration: none;
}

.comment-metadata a:hover {
  color: var(--primary-dark);
}

.reply-link a,
.edit-link a {
  color: var(--primary-dark);
  font-weight: 600;
}

.reply-link a:hover,
.edit-link a:hover {
  color: var(--dark-red);
}

.comment-content {
  color: #333;
  line-height: 1.7;
}

.comment-content p {
  margin-bottom: 10px;
}

.comment-awaiting-moderation {
  background: #fff3cd;
  padding: 10px 15px;
  border-radius: 5px;
  color: #856404;
  margin-bottom: 10px;
  font-size: 14px;
}

/* Nested Comments */
.comment-list .children {
  list-style: none;
  margin-left: 40px;
  margin-top: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--primary-dark);
}

.comment-list .children .comment-body {
  background: #ffffff;
  border: 1px solid #e0e0e0;
}

.no-comments {
  padding: 20px;
  background: #f9f9f9;
  border-radius: 0 0 15px 0;
  text-align: center;
  color: #666;
  font-style: italic;
}

/* Comment Form */
.comment-respond {
  margin-top: 40px;
  padding: 30px;
  border-radius: 0 0 30px 0;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comment-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 15px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
  border-color: var(--primary-dark);
  outline: none;
  box-shadow: 0 0 0 3px rgba(35, 128, 62, 0.1);
}

.comment-form textarea {
  min-height: 150px;
  resize: vertical;
}

.comment-form .submit-button {
  background: var(--primary-dark);
  color: var(--white);
  padding: 14px 40px;
  border: none;
  border-radius: 0 0 20px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.comment-form .submit-button:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.comment-form .form-submit {
  margin-bottom: 0;
}

.comment-notes,
.logged-in-as {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.comment-notes a,
.logged-in-as a {
  color: var(--primary-dark);
}

.comment-notes a:hover,
.logged-in-as a:hover {
  color: var(--dark-red);
}