/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --givewell-font: "DM Sans", sans-serif;
  --givewell-font-two: "Caveat", cursive;
  --givewell-font-three: 'Source Sans Pro',Helvetica,Arial,Lucida,sans-serif;
  --givewell-gray: #7b7b7b;
  --givewell-gray-rgb: 123, 123, 123;
  --givewell-base: #820401;
  --givewell-base-rgb: 255, 102, 0;
  --givewell-primary: #286769;
  --givewell-primary-rgb: 40, 103, 105;
  --givewell-black: #151515;
  --givewell-black-rgb: 21, 21, 21;
  --givewell-extra: #f4f1f0;
  --givewell-extra-rgb: 244, 241, 240;
  --givewell-white: #ffffff;
  --givewell-white-rgb: 255, 255, 255;
  --givewell-bdr-color: #e7e7e7;
  --givewell-bdr-color-rgb: 231, 231, 231;
  --givewell-bdr-radius: 20px;
}

.row {
  --bs-gutter-x: 24px;
}

.gutter-y-24 {
  --bs-gutter-y: 24px;
}

body {
  font-family: var(--givewell-font);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--givewell-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

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

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--givewell-font-three);
  color: var(--givewell-black);
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 12px;
  padding-right: 12px;
}

.list-unstyled {
  padding-left: 0;
}

@media (min-width: 1344px) {
  .container {
    max-width: 1344px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}


/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--givewell-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--givewell-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--givewell-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}

/* Section Title Css */

.section-title {
  position: relative;
  display: block;
  margin-bottom: 49px;
  z-index: 1;
}

.section-title__tagline-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.section-title__tagline-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--givewell-base);
  border-radius: 50%;
}

.section-title__tagline-icon i {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--givewell-white);
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 30px;
  color: var(--givewell-primary);
  font-weight: 900;
  text-transform: capitalize;
  font-family: var(--givewell-font-three);
  font-style: normal;
}

.section-title__title {
  color: var(--givewell-black);
  font-size: 42px;
  line-height: 52px;
  font-weight: 700;
  margin: 15px 0 0;
}

.section-title__title .split-line {
  text-transform: none;
}

.section-title-two .section-title__tagline-icon {
  background-color: var(--givewell-primary);
}

.section-title-two .section-title__tagline {
  color: #286769;
}


/* Thm Btn Css */
.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: var(--givewell-white);
  padding: 23px 30px 21px;
  border-radius: 35px;
  background-color: var(--givewell-base);
  z-index: 2;
  gap: 8px;
  text-align: center;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-btn::before {
  content: "";
  background-color:linear-gradient(to right, #FF865B, #fe8959);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.thm-btn:hover::before {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

.thm-btn:hover {
  color: var(--givewell-white);
}

.thm-btn i {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  width: 80px;
  background-color: rgba(var(--givewell-black-rgb), .20);
  border-radius: 35px;
  z-index: -1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-btn i::before {
  content: "";
  background-color: rgba(var(--givewell-white-rgb), .15);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.thm-btn:hover i::before {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
  transition-delay: 500ms;
}


/* Proloader Css */

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(../images/loader.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top:hover {
  color: var(--givewell-base);
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-left: 10px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--givewell-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--givewell-black);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 40px;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin-right: 11px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 0%;
  color: rgba(var(--givewell-gray-rgb), .50);
  font-size: 16px;
  line-height: 45px;
  font-weight: 600;
  border: 1px solid rgba(var(--givewell-gray-rgb), .50);
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--givewell-font);
  z-index: 1;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
  color: var(--givewell-white);
  background: var(--givewell-base);
  border-color: var(--givewell-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  border-radius: 0%;
  color: rgba(var(--givewell-gray-rgb), .50);
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: var(--givewell-white);
}

.styled-pagination li a span:before {
  position: relative;
  top: 0px;
  color: rgba(var(--givewell-gray-rgb), .50);
  font-size: 14px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
  color: var(--givewell-white);
}


/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu__top {
  position: relative;
  display: block;
  background-color: var(--givewell-base);
}

.main-menu__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-menu__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li+li {
  margin-left: 46px;
}

.main-menu__contact-list li:before {
  content: "";
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--givewell-white-rgb), .30);
}

.main-menu__contact-list li:first-child:before {
  display: none;
}

.main-menu__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li .icon i {
  font-size: 18px;
  color: var(--givewell-white);
  position: relative;
  display: inline-block;
}

.main-menu__contact-list li .text {
  margin-left: 10px;
}

.main-menu__contact-list li .text p {
  font-size: 17px;
  line-height: 17px;
  color: var(--givewell-white);
  font-weight: 500;
}

.main-menu__contact-list li .text p a {
  color: var(--givewell-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__contact-list li .text p a:hover {
  color: var(--givewell-extra);
}

.main-menu__top-social-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  background: rgba(0, 0, 0, 0.20);
  border-radius: 0px;
  padding: 12px 25px 12px;
}

.main-menu__top-social-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--givewell-white);
  font-family: var(--givewell-font);
}

.main-menu__top-social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.main-menu__top-social a {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--givewell-white);
  border-radius: 50%;
  font-size: 14px;
  height: 32px;
  width: 32px;
  border: 1px solid rgba(var(--givewell-white-rgb), .10);
  transform: rotate(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu__top-social a:hover {
  color: var(--givewell-white);
  border: 1px solid var(--givewell-base);
}

.main-menu__top-social a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--givewell-base);
  border-radius: 50%;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.main-menu__top-social a:hover:before {
  transform: scaleX(1.0);
}


.main-menu {
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-menu__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-menu__left {
  display: block;
}

.main-menu__logo {
  display: block;
  padding: 14.5px 0 14.5px;
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}

.main-menu__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.main-menu__search-box {
  position: relative;
  display: block;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  border: 1px solid rgba(var(--givewell-black-rgb), .10);
  border-radius: 50%;
  font-size: 18px;
  color: var(--givewell-gray);
  background-color: var(--givewell-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--givewell-white);
  background-color: var(--givewell-base);
  border: 1px solid var(--givewell-base);
}

.main-menu__cart {
  position: relative;
  display: block;
}

.main-menu__cart a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  border: 1px solid rgba(var(--givewell-black-rgb), .10);
  border-radius: 50%;
  font-size: 18px;
  color: var(--givewell-gray);
  background-color: var(--givewell-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cart a:hover {
  color: var(--givewell-white);
  background-color: var(--givewell-base);
  border: 1px solid var(--givewell-base);
}

.main-menu__btn-box {
  position: relative;
  display: block;
}

.stricky-header.main-menu {
  background-color: var(--givewell-white);
}





.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}



@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 30px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--givewell-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 20px;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: white
}

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
  content: "";
  height: 2px;
  border-radius: 0px;
  background-color: white;
  position: absolute;
  bottom: -1px;
  left: 0px;
  right: 0px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list>li.dropdown>a {
  padding-right: 15px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 56%;
  right: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  font-size: 18px;
  color: white;
  transform: translateY(-50%);
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
  color: var(--givewell-base);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  background-color: rgb(255, 255, 255);
  padding: 31px 20px 31px;
}

.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: none;
  margin-top: 10px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  font-size: 16px;
  line-height: 16px;
  color: var(--givewell-black);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 12px 20px 12px;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: var(--givewell-white);
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  background-color: var(--givewell-extra);
  color: var(--givewell-black);
}

.main-menu .main-menu__list>li>ul>li>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f105";
  font-size: 14px;
  color: var(--givewell-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu,
.main-menu-three__main-menu-box .main-menu__list>.megamenu,
.main-menu-two__main-menu-box .main-menu__list>.megamenu,
.main-menu__wrapper .main-menu__list>.megamenu {
  position: static;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu__wrapper .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
  padding: 0 !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

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

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--givewell-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--givewell-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--givewell-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--givewell-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--givewell-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--givewell-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--givewell-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--givewell-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--givewell-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--givewell-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--givewell-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--givewell-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--givewell-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--givewell-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--givewell-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--givewell-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--givewell-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}



/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.home-showcase {
  margin-top: -31px;
  margin-bottom: -31px;
}

.home-showcase__inner {
  padding: 40px 42px 30px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.home-showcase .row {
  --bs-gutter-x: 12px;
  --bs-gutter-y: 20px;
}

.home-showcase__item {
  position: relative;
  display: block;
  margin-bottom: 7px;
}

.home-showcase__image {
  position: relative;
  overflow: hidden;
}

.home-showcase__image>img {
  width: 100%;
  transition: filter 500ms ease;
  filter: blur(0px);
}

.home-showcase__image:hover>img {
  filter: blur(2px);
}

.home-showcase__image:hover .home-showcase__buttons {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
  background-color: rgba(var(--givewell-black-rgb), .70);
}

.home-showcase__buttons__item {
  justify-content: center;
  width: 162px;
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__title {
  margin: 0;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  color: var(--givewell-black);
  text-transform: capitalize;
  font-family: var(--givewell-font);
  margin-bottom: 20px;
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--givewell-white, #ffffff);
}

.mobile-nav__content .home-showcase {
  margin-top: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-two__top {
  position: relative;
  display: block;
}

.main-header-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: linear-gradient(to right, #FF865B, #f4b93b);
  padding: 10px 60px 10px;
}

.main-header-two__top-icon-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-header-two__top-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__top-icon span {
  font-size: 19px;
  color: white;
  position: relative;
  display: inline-block;
}

.main-header-two__top-icon-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--givewell-white);
}

.main-header-two__top-icon-text a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--givewell-white);
}

.main-header-two__top-icon-text a:hover {
  color: var(--givewell-base);
}

.main-header-two__search-box {
  position: relative;
  display: block;
}

.main-header-two__search {
  position: relative;
  display: block;
  max-width: 220px;
  width: 100%;
  margin-left: auto;
}

.main-header-two__search-input {
  position: relative;
  display: block;
}

.main-header-two__search-input:before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 33px;
  width: 1px;
  background-color: rgba(var(--givewell-white-rgb), .20);
}

.main-header-two__search-input input[type="search"] {
  display: block;
  outline: none;
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  padding-left: 50px;
  width: 100%;
  padding-right: 0;
  border: 0;
  color: var(--givewell-white);
  border-radius: 0;
}

.main-header-two__search-input button[type="submit"] {
  color: var(--givewell-white);
  font-size: 22px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0px;
  background-color: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__bottom {
  position: relative;
  display: block;
}

.main-header-two__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 13px 60px 13px;
}

.main-header-two__lan-switcher {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-header-two__lan-switcher-icon {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
}

.main-header-two__lan-switcher-icon span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--givewell-base);
}

.main-header-two__lan-switcher-icon p {
  font-weight: 600;
  color: var(--givewell-black);
}

.main-header-two__lan-switcher .select-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.main-header-two__lan-switcher .nice-select {
  position: relative;
  display: block;
  background-color: transparent;
  border-radius: 0;
  border: none;
  width: 100%;
  height: 26px;
  color: var(--givewell-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  outline: none;
  padding-left: 0;
  padding-right: 32px;
  transition: all 0.2s ease-in-out;
  font-family: var(--givewell-font);
}

.main-header-two__lan-switcher .nice-select:after {
  position: absolute;
  right: 17px;
  top: 50%;
  margin-top: -5px;
  display: block;
  border-bottom: 1px solid var(--givewell-black);
  border-right: 1px solid var(--givewell-black);
  content: '';
  width: 8px;
  height: 8px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.main-header-two__lan-switcher .nice-select .list {
  background-color: var(--givewell-primary);
  border-radius: 20px;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  padding: 0px 0 0px;
  margin-top: 0px;
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: scale(1.0) translateY(30px);
  -ms-transform: scale(1.0) translateY(30px);
  transform: scale(1.0) translateY(30px);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  height: 0;
  width: 120px;
  right: 0px !important;
  left: auto !important;
}

.main-header-two__lan-switcher .nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  height: auto;
}

.main-header-two__lan-switcher .nice-select .option {
  color: var(--givewell-white);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 40px;
  min-height: 40px;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.main-header-two__lan-switcher .nice-select .option+.option {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.main-header-two__lan-switcher .nice-select .option:hover,
.main-header-two__lan-switcher .nice-select .option.focus,
.main-header-two__lan-switcher .nice-select .option.selected.focus {
  color: var(--givewell-white) !important;
  background-color: var(--givewell-base);
}

.main-header-two__contact {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main-header-two__contact-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__contact-icon span {
  position: relative;
  display: inline-block;
  font-size: 25px;
  color: var(--givewell-base);
}

.main-header-two__contact-text {
  font-weight: 500;
}

.main-header-two__contact-text a {
  color: var(--givewell-black);
}

.main-header-two__contact-text a:hover {
  color: var(--givewell-base);
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
}

.main-menu-two__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content:space-evenly;
  flex-wrap: wrap;
}

.main-menu-two__logo {
  display: block;
  position: relative;
}

.main-menu-two__logo a {
  position: relative;
  display: flex;
  align-items: center;
  height: 80px;
  /**background-color: var(--givewell-white);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12); **/
 
  border-top-right-radius: 20px;
}

.main-menu-two__left {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #FF865B, #f4b93b);
  padding: 0% 2%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.main-menu-two__main-menu-box {
  display: block;
}

.main-menu-two__right {
  position: relative;
  display: block;
}

.main-menu-two__btn {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  background:linear-gradient(to right, #FF865B, #f4b93b);
  padding: 6px 35px 6px;
  border-top-left-radius: 20px;
}

.main-menu-two__btn span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background-color: var(--givewell-white);
  border-radius: 50%;
  font-size: 25px;
  color: var(--givewell-black);
}

.main-menu-two__btn p {
  color: var(--givewell-white);
  font-weight: 600;
  line-height: 26px;
}


.main-menu-two .main-menu__list>li,
.stricky-header.main-menu-two .main-menu__list>li {
  padding-top: 20px;
  padding-bottom: 20px;
}

.main-menu-two .main-menu__list>li>a,
.stricky-header.main-menu-two .main-menu__list>li>a {
  color: var(--givewell-white);
}

.main-menu-two .main-menu__list>li>a::before,
.stricky-header.main-menu-two .main-menu__list>li>a::before {
  background-color: white;
}

.main-menu-two .main-menu__list>li.dropdown>a:after {
  color: var(--givewell-white);
}

.main-menu-two .main-menu__list>li.current>a::after,
.main-menu-two .main-menu__list>li:hover>a::after,
.stricky-header.main-menu-two .main-menu__list>li.current>a::after,
.stricky-header.main-menu-two .main-menu__list>li:hover>a::after {
  color: var(--givewell-base);
}

.main-menu-two .main-menu__list>li.current>a,
.main-menu-two .main-menu__list>li:hover>a,
.stricky-header.main-menu-two .main-menu__list>li.current>a,
.stricky-header.main-menu-two .main-menu__list>li:hover>a {
  color: white;
}

.stricky-header.main-menu-two {
  background-color: white;
}

/*--------------------------------------------------------------
# Navigations three
--------------------------------------------------------------*/
.main-header-three {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-three__top {
  position: relative;
  display: block;
}

.main-header-three__top .container {
  max-width: 1624px;
}

.main-header-three__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #122f2a;
  padding: 10px 140px 10px;
}

.main-header-three__top-icon-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-header-three__top-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-three__top-icon span {
  font-size: 19px;
  color: white;
  position: relative;
  display: inline-block;
}

.main-header-three__top-icon-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--givewell-white);
}

.main-header-three__top-icon-text a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--givewell-white);
}

.main-header-three__top-icon-text a:hover {
  color: var(--givewell-base);
}

.main-header-three__contact {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main-header-three__contact-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-three__contact-icon span {
  position: relative;
  display: inline-block;
  font-size: 25px;
  color: white;
}

.main-header-three__contact-text {
  font-weight: 500;
}

.main-header-three__contact-text a {
  color: var(--givewell-white);
}

.main-header-three__contact-text a:hover {
  color: var(--givewell-base);
}

.main-header-three__search-box {
  position: relative;
  display: block;
}

.main-header-three__search {
  position: relative;
  display: block;
  max-width: 220px;
  width: 100%;
  margin-left: auto;
}

.main-header-three__search-input {
  position: relative;
  display: block;
}

.main-header-three__search-input:before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 33px;
  width: 1px;
  background-color: rgba(var(--givewell-white-rgb), .20);
}

.main-header-three__search-input input[type="search"] {
  display: block;
  outline: none;
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  padding-left: 50px;
  width: 100%;
  padding-right: 0;
  border: 0;
  color: var(--givewell-white);
  border-radius: 0;
}

.main-header-three__search-input button[type="submit"] {
  color: white;
  font-size: 22px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0px;
  background-color: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
}

.main-menu-three__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-menu-three__logo {
  display: block;
  position: relative;
}

.main-menu-three__logo a {
  position: relative;
  display: block;
}

.main-menu-three__left {
  display: flex;
  align-items: center;
}

.main-menu-three__main-menu-box {
  display: block;
  background-color: var(--givewell-base);
  padding: 0 90px 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.main-menu-three__btn-box {
  position: relative;
  display: block;
}

.main-menu-three__btn {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  background-color: black;
  padding: 14px 35px 14px;
  border-bottom-left-radius: 20px;
}

.main-menu-three__btn span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background-color: var(--givewell-white);
  border-radius: 50%;
  font-size: 25px;
  color: var(--givewell-black);
}

.main-menu-three__btn p {
  color: var(--givewell-white);
  font-weight: 600;
  line-height: 26px;
}


.main-menu-three .main-menu__list>li,
.stricky-header.main-menu-three .main-menu__list>li {
  padding-top: 30px;
  padding-bottom: 30px;
}

.main-menu-three .main-menu__list>li>a,
.stricky-header.main-menu-three .main-menu__list>li>a {
  color: var(--givewell-white);
}

.main-menu-three .main-menu__list>li>a::before,
.stricky-header.main-menu-three .main-menu__list>li>a::before {
  background-color: white;
}

.main-menu-three .main-menu__list>li.dropdown>a:after {
  color: var(--givewell-white);
}

.main-menu-three .main-menu__list>li.current>a::after,
.main-menu-three .main-menu__list>li:hover>a::after,
.stricky-header.main-menu-three .main-menu__list>li.current>a::after,
.stricky-header.main-menu-three .main-menu__list>li:hover>a::after {
  color: var(--givewell-black);
}

.main-menu-three .main-menu__list>li.current>a,
.main-menu-three .main-menu__list>li:hover>a,
.stricky-header.main-menu-three .main-menu__list>li.current>a,
.stricky-header.main-menu-three .main-menu__list>li:hover>a {
  color: white;
}

.stricky-header.main-menu-three {
  background-color: var(--givewell-white);
}


/*--------------------------------------------------------------
# Navigations Four
--------------------------------------------------------------*/
.main-header-four .main-header-three__top-inner {
  background-color: rgba(var(--givewell-white-rgb), .12);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.main-menu-four .main-menu-three__logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--givewell-white);
  padding: 4.5px 30px 4.5px;
  border-bottom-right-radius: 20px;
  height: 80px;
}







/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 120px;
  width: 100%;
  z-index: 99999;
  transform: translateY(-100%);
  transition: all 0.5s;
}

.search-active .search-popup {
  transform: translateY(0%);
}

.search-popup .color-layer {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 120px;
  width: 100%;
  background-color: var(--givewell-base);
  transition: all 0.5s;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
}

.sidenav-bar-visible .search-popup {
  display: none;
}

.search-popup .close-search {
  position: absolute;
  right: 25px;
  top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0%;
  cursor: pointer;
  color: #ffffff;
  font-size: 30px;
  transition: all 0.5s;
  border: none;
  opacity: 0;
  transform: translateX(100px);
  visibility: hidden;
  z-index: 9999;
}

.search-popup .close-search:hover {
  color: var(--givewell-base);
  background-color: rgba(255, 255, 255, 1.0);
}

.search-active .search-popup .close-search {
  opacity: 1;
  transform: translateX(0px);
  visibility: visible;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}




.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 25px;
  left: 0px;
  right: 0px;
  margin: 0px auto 0;
  opacity: 0;
  transition: all 0.5s;
  z-index: 999;
}

.search-active .search-popup form {
  opacity: 1;
}

.search-popup .form-group {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
  position: relative;
  display: block;
  background-color: rgba(255, 255, 255, 1.0);
  font-size: 18px;
  color: var(--givewell-black);
  height: 70px;
  width: 100%;
  padding: 10px 30px 10px 75px;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: capitalize;
  border: 0px solid rgba(0, 0, 0, 0.10)
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"]:focus {
  outline: none;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 70px;
  background: var(--givewell-black);
  text-align: center;
  font-size: 20px;
  color: var(--givewell-white);
  padding: 0;
  cursor: pointer;
  border: none;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 60px;
}

.search-popup .form-group button i {
  font-style: normal;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
  background-color: var(--givewell-primary);
}

.search-popup input::placeholder {
  color: var(--givewell-black);
}


/*--------------------------------------------------------------
# Edit All Css
--------------------------------------------------------------*/







.thm-btn-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: var(--givewell-white);
    padding: 10px 30px;
    border-radius: 5px;
    background-color: var(--givewell-base);
    z-index: 2;
    gap: 8px;
    text-align: center;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-top: 10px;
    width: 80%;
}






.faded-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 6px; /* Space for underline, adjust as needed */
}

.faded-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px; /* Line thickness */
  width: 100%;
  background: linear-gradient(
    to left,
    #930a13 0%,         /* Solid color at start */
    #930a13 50%,        /* Solid up to 50% */
    rgba(147,10,19,0) 100% /* Fade out between 50% and end */
  );
}





/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/



/* --- Main Container for Responsiveness and Equal Height --- */
.custom-outcome-container {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 20px; /* Space between the boxes */
    padding: 20px;
    max-width: 1200px; /* Optional: Sets a max width for desktop layout */
    margin: 0 auto; /* Centers the container */
    align-items: stretch; /* Crucial for equal height across all boxes */
}

/* --- Individual Box Styling --- */
.custom-outcome-box {
    /* Base for desktop: 1/3 width minus gap space */
    flex: 1 1 23%; /* flex-grow, flex-shrink, flex-basis. flex-basis of 300px ensures a minimum size before wrapping. */
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Updated: Light spiritual background color */
    background-color: #fcfafa; /* Very light almost white, hint of warmth */
    transition: all 0.3s ease-in-out; /* Smooth transition for hover effects */
    display: flex; /* Makes the box content flexible */
    flex-direction: column; /* Stacks title and list vertically */
}

/* Updated: Hover effect */
.custom-outcome-box:hover {
    transform: translateY(-5px); /* Lifts the box slightly */
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1); /* More pronounced shadow */
    background-color: #f7f3f1; /* Slightly darker on hover */
}


/* --- Title Styling --- */
.custom-box-title {
    font-size: 19px; /* 20px */
    font-weight: bold;
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

/* --- List Styling --- */
.custom-bullet-list {
    list-style: none; /* Removes default bullets */
    padding: 0;
    margin: 0;
}

.custom-bullet-list li {
    margin-bottom: 15px;
    padding-left: 30px; /* Space for the custom bullet */
    position: relative;
    line-height: 21px;
    color: #000000;
    font-size:19px;
}

/* --- Custom Round Icon Bullet --- */
.custom-icon-bullet {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    margin-right: 10px;
    color: #5e6d8a; /* A calming color for the icon */
}

/* --- Mobile Responsiveness (Screen width less than 768px) --- */
@media (max-width: 767px) {
    .custom-outcome-container {
        flex-direction: column; /* Stack boxes vertically on small screens */
        padding: 10px;
        gap: 15px;
    }

    .custom-outcome-box {
        flex: 1 1 100%; /* Each box takes full width */
        margin-bottom: 0; /* Gap is managed by the container 'gap' property */
    }

    .custom-box-title {
        font-size: 22px;
        text-align: left;
    }
   
}


@media screen and (min-resolution: 120dpi) and (min-width: 1024px) {
    p.benefits-one__text {
        font-size: 13px;
        line-height: 15px;
    }
}

 


/* moon popup */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lato:wght@300&display=swap');

    /* 1. THE OVERLAY */
    .popup-overlay {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background-color: rgba(0, 0, 0, 0.85);
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s;
        backdrop-filter: blur(5px);
    }

    .popup-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    /* 2. THE POPUP BOX */
    .popup-content {
        position: relative;
        width: 90%;
        max-width: 700px;
        /* Deep Space Gradient */
        background: radial-gradient(circle at center, #1a2639 0%, #050813 100%);
        color: #fff;
        padding: 50px 20px;
        text-align: center;
        border-radius: 8px;
        box-shadow: 0 0 50px rgba(135, 171, 255, 0.15);
        font-family: 'Cinzel', serif;
        overflow: hidden;
    }

    /* Close Button */
    .close-btn {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 28px;
        color: rgba(255, 255, 255, 0.6);
        cursor: pointer;
        background: none;
        border: none;
        transition: color 0.3s;
        z-index: 10;
    }
    .close-btn:hover { color: #fff; }

    /* 3. VISUAL ELEMENTS */
    
    /* Moon Graphic */
    .moon-graphic {
        width: 150px;
        height: 150px;
        background: radial-gradient(circle at 35% 35%, #ffffff, #dbe9f4 25%, #6b8cce 85%, #3a5282 100%);
        border-radius: 50%;
        margin: 0 auto 35px auto;
        box-shadow: 
            0 0 60px rgba(173, 216, 230, 0.5), 
            inset -10px -10px 40px rgba(0,0,0,0.5);
        position: relative;
        z-index: 2;
    }

    /* Stars Background */
    .stars-bg {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-image: 
            radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 3px),
            radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 2px);
        background-size: 550px 550px, 350px 350px;
        background-position: 0 0, 40px 60px;
        opacity: 0.7;
        pointer-events: none;
        z-index: 1;
    }

    /* Typography */
    h1 {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        z-index: 2;
        font-weight: 600;
        color: #ffffff; /* Top line white */
    }

    /* The Icy Blue Bottom Line */
    .supermoon-text {
        display: block;
        color: #a8caff; /* Matches image blue */
        text-shadow: 0 0 15px rgba(168, 202, 255, 0.4);
        font-weight: 700;
        margin-top: 5px;
    }

    .subtitle {
        font-family: 'Lato', sans-serif;
        font-size: 13px;
        letter-spacing: 3px;
        text-transform: uppercase;
        border-top: 1px solid rgba(255,255,255,0.2);
        border-bottom: 1px solid rgba(255,255,255,0.2);
        display: inline-block;
        padding: 12px 0;
        margin-bottom: 35px;
        color: #ccc;
        width: 80%;
        position: relative;
        z-index: 2;
    }

    /* Countdown Styles */
    .countdown-container {
        font-size: 26px;
        letter-spacing: 3px;
        color: #f0f0f0;
        margin-bottom: 40px;
        position: relative;
        z-index: 2;
        font-variant-numeric: tabular-nums; /* Keeps numbers from jumping */
    }

    /* Read More Button */
    .read-more-btn {
        display: inline-block;
        padding: 12px 35px;
        border: 1px solid rgba(168, 202, 255, 0.5);
        color: #fff;
        text-transform: uppercase;
        text-decoration: none;
        font-size: 14px;
        letter-spacing: 2px;
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
        background: rgba(0,0,0,0.2);
    }

    .read-more-btn:hover {
        background: rgba(168, 202, 255, 0.15);
        border-color: #fff;
        box-shadow: 0 0 15px rgba(168, 202, 255, 0.3);
    }

    /* Mobile Responsiveness */
    @media (max-width: 600px) {
        .popup-content { padding: 40px 15px; }
        .moon-graphic { width: 100px; height: 100px; margin-bottom: 25px; }
        h1 { font-size: 20px; }
        .subtitle { font-size: 10px; width: 100%; }
        .countdown-container { font-size: 20px; }
        .read-more-btn { padding: 10px 25px; font-size: 12px; }
    }


    /* video testimonail */

     /* --- SCOPED CSS FOR TESTIMONIALS SECTION --- */
        /* All classes prefixed with 'upt-' to prevent theme conflicts */

        #upt-testimonials-section {
            --upt-gold: #D4AF37;
            --upt-gold-hover: #B5952F;
            --upt-dark: #1A1A1A;
            --upt-cream: #F9F7F2;
            --upt-white: #ffffff;
            --upt-grey-text: #4A4A4A;
            --upt-border: #f3f3f3;
            
            font-family: 'Poppins', sans-serif;
            background-color: var(--upt-cream);
            color: var(--upt-dark);
            padding: 4rem 1rem;
            position: relative;
            overflow: hidden;
            box-sizing: border-box;
            line-height: 1.5;
        }

        #upt-testimonials-section * {
            box-sizing: border-box;
        }

        /* Typography */
        #upt-testimonials-section h2 {
            font-size: 2.2rem;
            margin: 0.5rem 0;
            color: #111;
            line-height: 1.2;
        }
        
        @media (min-width: 768px) {
            #upt-testimonials-section h2 {
                font-size: 3rem;
            }
        }

        .upt-italic-gold {
            color: var(--upt-gold);
        }

        .upt-subtitle {
            color: var(--upt-gold);
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-size: 0.875rem;
            display: block;
            margin-bottom: 0.5rem;
        }

        .upt-rating-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
            color: var(--upt-grey-text);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .upt-stars {
            display: flex;
            color: var(--upt-gold);
            align-items: center;
            gap: 2px;
        }

        /* Layout */
        .upt-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .upt-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .upt-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 640px) {
            .upt-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .upt-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Card Styles */
        .upt-card {
            background: var(--upt-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            border: 1px solid var(--upt-border);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .upt-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        /* Video Area */
        .upt-video-wrapper {
            position: relative;
            width: 100%;
            height: 320px; /* Fixed height for consistency */
            background: #000;
            cursor: pointer;
        }

        .upt-video-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .upt-play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.2);
            transition: opacity 0.3s ease;
            z-index: 5;
        }

        /* When playing, hide overlay */
        .upt-video-playing .upt-play-overlay {
            opacity: 0;
            pointer-events: none;
        }

        .upt-play-btn {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: transform 0.2s ease;
        }

        .upt-video-wrapper:hover .upt-play-btn {
            transform: scale(1.1);
        }

        /* SVG Icons */
        .upt-icon {
            width: 18px;
            height: 18px;
            fill: currentColor;
            display: inline-block;
            vertical-align: middle;
        }
        
        .upt-play-icon-svg {
            width: 24px;
            height: 24px;
            fill: var(--upt-gold);
            margin-left: 4px; /* Optical center */
        }
        
        .upt-pause-icon-svg {
            width: 24px;
            height: 24px;
            fill: var(--upt-gold);
            display: none;
        }

        /* Toggle Icons based on state */
        .upt-video-playing .upt-play-icon-svg {
            display: none;
        }

        .upt-video-playing .upt-pause-icon-svg {
            display: block;
            margin-left: 0;
        }

        /* Card Footer */
        .upt-card-footer {
            padding: 1rem;
            background: var(--upt-white);
            border-top: 1px solid var(--upt-border);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }

        .upt-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--upt-cream);
        }

        .upt-user-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: #111;
            margin: 0;
        }

        /* Section Footer Button */
        .upt-section-footer {
            text-align: center;
            margin-top: 3rem;
        }

        .upt-btn-primary {
            background-color: var(--upt-gold);
            color: var(--upt-white);
            font-weight: 600;
            padding: 0.875rem 2rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
            box-shadow: 0 4px 6px rgba(212, 175, 55, 0.3);
            transition: all 0.3s ease;
            text-decoration: none;
            font-family: inherit;
        }

        .upt-btn-primary:hover {
            background-color: var(--upt-gold-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(212, 175, 55, 0.4);
        }

        /* Decorative Background Blobs */
        .upt-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.5;
            z-index: 1;
            pointer-events: none;
        }
        .upt-blob-1 { top: -5%; left: -5%; width: 300px; height: 300px; background: #FFF8E1; }
        .upt-blob-2 { bottom: -5%; right: -5%; width: 300px; height: 300px; background: #FFF3E0; }




        @media (min-width: 768px) {
    .md\:text-8xl {
        font-size: 6rem;
        line-height: 1;
    }
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.tracking-tighter {
    letter-spacing: -0.05em;
}

.font-bold {
    font-weight: 700;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.mb-4 {
    margin-bottom: 1rem;
}
.text-shadow-glow {
    text-shadow: var(--text-glow);
}


@media (max-width: 767px) {
  .feature-two__inner-content-box {
    flex-wrap: wrap;
  }

  section.donate-one {
    margin-top: 0px !important;
    padding: 90px 0px 0px;
  }

  section.about-three {
    margin-top: 0px !important;
  }

  div#slideContainer {
    margin-top: 0px !important;
  }

  .testimonial-two__ratting-box {
    max-width: 100% !important;
  }

  .donate-one__bg-color {
    height: 20%;
    /* background-size: contain !important; */
  }

  .mym {
    height: 100% !important;
  }


  h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .myup {
    display: flex;
    flex-wrap: wrap;
  }

  .benefits-one__inner {
    padding: 10px !important;
  }

  .myheading {
    margin-bottom: 50px !important;
  }

  .benefits-one__single-inner {
    height: 100% !important;
  }
}

/* Scoped CSS for Testimonial Slider */
.dj-testimonial-section {
    padding: 60px 20px;
    background-color: #f9f9f9; 
    font-family: inherit;
    overflow: hidden;
}

.dj-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.dj-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.dj-title {
    font-size: 2.2rem; /* Slightly adjusted for elegance */
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dj-separator {
    width: 60px;
    height: 3px;
    background-color: #d4af37; /* Gold accent */
    margin: 0 auto;
}

.dj-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dj-slider-track-container {
    overflow: hidden;
    width: 100%;
}

.dj-slider-track {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform 0.5s ease-in-out;
}

/* Slide Width Logic */
.dj-slide {
    flex: 0 0 33.333%; /* Show 3 by default */
    max-width: 33.333%;
    padding: 15px;
    box-sizing: border-box;
    display: flex; /* Ensures heights match */
}

/* Card Styling */
.dj-card {
    background: #fff;
    padding: 40px 25px 30px; /* Top padding for quote icon */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    position: relative;
    border-top: 4px solid transparent;
}

.dj-card:hover {
    transform: translateY(-5px);
    border-top: 4px solid #d4af37;
}

.dj-quote-icon {
    font-size: 5rem;
    line-height: 1;
    color: #f0f0f0;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
    z-index: 0;
    pointer-events: none;
}

.dj-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
    flex-grow: 1; /* Pushes name to bottom */
}

.dj-name {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.dj-name::before {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: #d4af37;
    margin: 0 auto 10px auto;
}

/* Navigation */
.dj-nav-btn {
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dj-nav-btn:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #fff;
}
.dj-prev { margin-right: 15px; }
.dj-next { margin-left: 15px; }

/* Dots */
.dj-dots-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.dj-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: #e0e0e0;
    margin: 0 6px;
    cursor: pointer;
    transition: background 0.3s;
}
.dj-dot.active-dot { background: #d4af37; }

/* Mobile Response */
@media (max-width: 768px) {
    .dj-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .dj-nav-btn { display: none; } /* Use dots on mobile */
    .dj-title { font-size: 1.6rem; }
}

 .angel-unique-section {
           
            background-color: #fff;
            color: #000000;
            padding: 60px 20px;
            line-height: 1.6;
            box-sizing: border-box;
        }

        .angel-unique-section * {
            box-sizing: border-box;
        }

        .angel-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        /* Typography */
        .angel-title {
            font-size: 2.5rem;
            font-weight: normal;
            margin-bottom: 10px;
            color: #2c3e50;
            letter-spacing: 0.5px;
            text-transform: capitalize;
        }

        .angel-subtitle {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 40px;
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-weight: 300;
        }

        .angel-section-heading {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 30px;
            color: #d35400; /* Warm accent color */
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        }

        /* Grid Layout */
        .angel-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 50px;
            text-align: left;
        }

        .angel-card {
            background: #fafafa;
            padding: 25px;
            border-left: 4px solid #d35400; /* Accent border */
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .angel-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background: #fff;
        }

        .angel-card-text {
           
            font-size: 19px;
            color: #444;
            margin: 0;
        }
        @media screen and (min-width: 900px) {
    .angel-grid > div:last-child {
        grid-column: 2; /* Force the last box into the center column */
    }
}

        /* Footer Content */
        .angel-footer-text {
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-size: 19px;
            color: #555;
            max-width: 800px;
            margin: 0 auto 40px auto;
            line-height: 1.8;
        }

        .angel-highlight-box {
            background-color: #fff8f0; /* Very light orange/gold bg */
            border: 1px solid #fae5d3;
            padding: 30px;
            border-radius: 8px;
            display: inline-block;
            margin-top: 20px;
        }

        .angel-quote {
            font-size: 1.8rem;
            font-style: italic;
            color: #d35400;
            margin: 0;
            font-family: "Georgia", serif;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .angel-title {
                font-size: 2rem;
            }
            .angel-grid {
                grid-template-columns: 1fr;
            }
        }

         .angel-unique-section {
            background-color: #fff;
            color: #333;
            padding: 60px 20px;
            line-height: 1.6;
            box-sizing: border-box;
        }

        .angel-unique-section * {
            box-sizing: border-box;
        }

        .angel-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        /* Typography */
        .angel-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #000000;
            letter-spacing: 0.5px;
            text-transform: capitalize;
        }

        .angel-subtitle {
            font-size: 19px;
            color: #555;
            margin-bottom: 40px;
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-weight: 300;
        }

        /* Divider */
        .angel-divider {
            height: 1px;
            background-color: #eee;
            width: 60%;
            margin: 80px auto;
            border: none;
        }

        /* --- SECTION: SPECIAL (Checklist Layout) --- */
        .angel-special-container {
            background-color: #fffbf5; /* Warm, distinct background */
            padding: 40px;
            border-radius: 12px;
            border: 1px dashed #d35400;
            text-align: left;
            margin-bottom: 50px;
        }

        .angel-checklist {
            display: grid;
            grid-template-columns: 1fr 1fr; /* Two columns */
            gap: 20px 40px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .angel-check-item {
            position: relative;
            padding-left: 35px;
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-size: 19px;
            color: #444;
            display: flex;
            align-items: center;
        }

        /* Custom Checkmark */
        .angel-check-item::before {
            content: "✓"; 
            position: absolute;
            left: 0;
            top: 2px;
            color: #d35400;
            font-weight: bold;
            font-size: 1.2rem;
            background: rgba(211, 84, 0, 0.1);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* --- SECTION: TAKEAWAYS (Gift Tiles) --- */
        .angel-gift-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .angel-gift-tile {
            background: white;
            border: 1px solid #e0e0e0;
            border-bottom: 3px solid #f1c40f; /* Gold bottom border */
            padding: 20px 30px;
            border-radius: 8px;
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-weight: 500;
            color: #2c3e50;
            min-width: 250px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.04);
            transition: transform 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
        }

        .angel-gift-tile:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.08);
            border-color: #f1c40f; /* Full gold border on hover */
        }

        .angel-star-icon {
            font-size: 1.4rem;
            margin-right: 10px;
            color: #f1c40f; /* Gold star */
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .angel-title {
                font-size: 2rem;
            }
            .angel-checklist {
                grid-template-columns: 1fr; /* Stack checklist on mobile */
            }
            .angel-divider {
                margin: 50px auto;
            }
            .angel-gift-tile {
                width: 100%;
            }
        }

        .angel-doorway-section {
            font-family: "Georgia", "Times New Roman", serif;
            background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
            min-height: 80vh; /* Takes up substantial vertical space */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
            color: #4a4a4a;
            position: relative;
            overflow: hidden;
        }

        /* Ambient Glow Background */
        .angel-doorway-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 223, 186, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 0;
            pointer-events: none;
        }

        .angel-doorway-container {
            max-width: 100%;
            position: relative;
            z-index: 1;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.8);
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            padding: 60px 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.05);
            border-radius: 4px; /* Slight rounding, mostly crisp */
        }

        /* Decorative "Doorway" Frame Lines */
        .angel-doorway-container::after {
            content: '';
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            border: 1px solid rgba(211, 84, 0, 0.2); /* Faint accent color border */
            pointer-events: none;
        }

        .angel-headline {
            font-size: 3rem;
            line-height: 1.2;
            color: #2c3e50;
            margin-bottom: 30px;
            font-weight: normal;
        }

        .angel-headline span {
            display: block;
            font-size: 1.5rem;
            color: #d35400; /* Warm accent */
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .angel-intro-text {
            font-size: 1.25rem;
            line-height: 1.6;
            margin-bottom: 40px;
            color: #555;
        }

        .angel-truths-list {
            list-style: none;
            padding: 0;
            margin: 0 auto 50px auto;
            text-align: center;
        }

        .angel-truth-item {
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-size: 19px;
            color: #030303;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
            font-weight: 500;
        }

       
        .angel-final-call {
            margin-top: 40px;
        }

        .angel-final-text {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 25px;
        }

        .angel-cta-button {
            display: inline-block;
            padding: 18px 40px;
            background-color: #d35400;
            color: white;
            text-decoration: none;
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
        }

        .angel-cta-button:hover {
            background-color: #e67e22;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(211, 84, 0, 0.4);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .angel-headline {
                font-size: 2.2rem;
            }
            .angel-headline span {
                font-size: 1.1rem;
            }
            .angel-doorway-container {
                padding: 40px 20px;
            }
        }

          /* Benefits Grid */
        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1px;
            background-color: var(--line-color);
            border: 1px solid var(--line-color);
        }
        @media (min-width: 768px) {
            .benefits-grid { grid-template-columns: repeat(2, 1fr); }
        }
        .benefit-card {
            background: linear-gradient(to right, #ffede1, #ffd8be) !important;
            padding: 2.5rem;
            transition: background-color 0.3s ease;
        }
        .benefit-card:hover { background-color: #fcfbf9; }


         /* Scoped Reset for this section */
        .jp-wrapper * { margin: 0; padding: 0; box-sizing: border-box; }

        .jp-wrapper {
      
            background-color: var(--jp-bg-stone-50);
            color: var(--jp-text-stone-600);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            width: 100%;
        }

        /* --- Layout --- */
        .jp-section-inner {
            padding: 6rem 1.5rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        /* --- Components --- */
        .jp-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background-color: rgba(231, 229, 228, 0.5); /* stone-200/50 */
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-weight: 500;
            color: var(--jp-text-stone-600);
            margin-bottom: 1.5rem;
        }

        .jp-header {
            text-align: center;
            max-width: 48rem;
            margin: 0 auto 5rem auto;
        }

        h2.jp-title-main {
          
            font-weight: 700;
            color: var(--jp-text-stone-800);
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        
        @media (min-width: 768px) {
          
        .jp-title-main span {
            
            color: var(--jp-text-stone-500);
        }

        p.jp-lead {
         
            color: var(--jp-text-stone-600);
        }
      }
        /* --- Feature Split Section --- */
        .jp-feature-split {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            background-color: var(--jp-bg-white);
            border-radius: 1.5rem;
            padding: 2rem;
            margin-bottom: 6rem;
            border: 1px solid #f3f4f6;
            box-shadow: var(--jp-shadow-sm);
        }

        @media (min-width: 768px) {
            .jp-feature-split {
                grid-template-columns: 1fr 1fr;
                padding: 3rem;
                gap: 3rem;
            }
        }

        .jp-feature-content {
            position: relative;
        }

        /* Abstract blurred circle behind text */
        .jp-blur-circle {
            position: absolute;
            top: -1.5rem;
            left: -1.5rem;
            width: 5rem;
            height: 5rem;
            background-color: var(--jp-color-amber-100);
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.5;
            z-index: 0;
        }

        .jp-relative-z { position: relative; z-index: 10; }

        h3.jp-title-sub {
           
            font-weight: 700;
            color: var(--jp-text-stone-800);
            margin-bottom: 1rem;
        }

        ul.jp-feature-list {
            list-style: none;
            margin-top: 1.5rem;
        }

        ul.jp-feature-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--jp-text-stone-700);
            font-weight: 500;
            margin-bottom: 0.75rem;
        }

        .jp-check-icon {
            width: 1.5rem;
            height: 1.5rem;
            background-color: #dcfce7; /* green-100 */
            color: #16a34a; /* green-600 */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .jp-quote-box {
            background-color: var(--jp-bg-stone-50);
            border-radius: 1rem;
            padding: 2rem;
            border: 1px solid var(--jp-bg-stone-200);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            height: 100%;
        }

        .jp-quote-text {
            
            color: var(--jp-text-stone-500);
        }

        /* --- Grid Section --- */
        .jp-grid-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .jp-divider {
            height: 4px;
            width: 5rem;
            background-color: #d6d3d1;
            margin: 1rem auto 0;
            border-radius: 9999px;
        }

        .jp-card-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 768px) { .jp-card-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1024px) { .jp-card-grid { grid-template-columns: repeat(3, 1fr); } }
        @media (min-width: 1280px) { .jp-card-grid { grid-template-columns: repeat(4, 1fr); } }

        /* --- Cards --- */
        .jp-card {
            background-color: var(--jp-bg-white);
            border: 1px solid var(--jp-bg-stone-200);
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s ease-out;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            cursor: default;
        }

        .jp-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--jp-shadow-lg);
        }

        .jp-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .jp-icon-box {
            padding: 0.75rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }

        /* Hover effect for icon box background opacity */
        .jp-card:hover .jp-icon-box { filter: brightness(0.95); }

        .jp-arrow-icon {
            color: var(--jp-text-stone-400);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .jp-card:hover .jp-arrow-icon { opacity: 1; }

        .jp-card-title {
           
            font-weight: 600;
            color: var(--jp-text-stone-800);
            margin-bottom: 0.75rem;
            transition: color 0.3s;
        }

        .jp-card:hover .jp-card-title { color: var(--jp-text-stone-900); }

        .jp-card-desc {
        
            font-weight: 500;
            color: var(--jp-text-stone-600);
            margin-bottom: 1rem;
            line-height: 1.5;
            flex-grow: 1;
        }

        .jp-card-footer {
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid var(--jp-bg-stone-100);
        }

        .jp-card-detail {
            
            color: var(--jp-text-stone-500);
        }

        /* --- CTA Card --- */
        .jp-cta-card {
            background-color: var(--jp-bg-stone-50);
            border: 2px dashed #d6d3d1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            cursor: pointer;
        }
        
        .jp-cta-card:hover {
            background-color: var(--jp-bg-stone-100);
        }

        .jp-cta-icon-circle {
            width: 4rem;
            height: 4rem;
            background-color: var(--jp-bg-stone-200);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--jp-text-stone-400);
            margin-bottom: 1rem;
            transition: all 0.3s;
        }

        .jp-cta-card:hover .jp-cta-icon-circle {
            background-color: #d6d3d1;
            color: var(--jp-text-stone-600);
        }

        .jp-cta-link {
         
            font-weight: 600;
            color: var(--jp-color-amber-600);
            text-decoration: underline;
            text-decoration-thickness: 2px;
            text-underline-offset: 4px;
        }
        
        .jp-cta-link:hover { color: #b45309; }

        /* --- Utilities --- */
        .jp-text-blue { color: var(--jp-theme-blue-text); }
        .jp-bg-blue { background-color: var(--jp-theme-blue-bg); }
        
        .jp-text-amber { color: var(--jp-theme-amber-text); }
        .jp-bg-amber { background-color: var(--jp-theme-amber-bg); }
        
        .jp-text-purple { color: var(--jp-theme-purple-text); }
        .jp-bg-purple { background-color: var(--jp-theme-purple-bg); }
        
        .jp-text-emerald { color: var(--jp-theme-emerald-text); }
        .jp-bg-emerald { background-color: var(--jp-theme-emerald-bg); }
        
        .jp-text-rose { color: var(--jp-theme-rose-text); }
        .jp-bg-rose { background-color: var(--jp-theme-rose-bg); }
        
        .jp-text-teal { color: var(--jp-theme-teal-text); }
        .jp-bg-teal { background-color: var(--jp-theme-teal-bg); }
        
        .jp-text-orange { color: var(--jp-theme-orange-text); }
        .jp-bg-orange { background-color: var(--jp-theme-orange-bg); }

        :root {
            --jp-bg-stone-50: #fafaf9;
            --jp-bg-white: #ffffff;
            --jp-bg-stone-100: #f5f5f4;
            --jp-bg-stone-200: #e7e5e4;
            
            --jp-text-stone-900: #1c1917;
            --jp-text-stone-800: #292524;
            --jp-text-stone-700: #44403c;
            --jp-text-stone-600: #57534e;
            --jp-text-stone-500: #78716c;
            --jp-text-stone-400: #a8a29e;
            
            --jp-color-amber-500: #f59e0b;
            --jp-color-amber-600: #d97706;
            --jp-color-amber-100: #fef3c7;
            
            /* Theme Colors */
            --jp-theme-blue-bg: rgba(59, 130, 246, 0.1); --jp-theme-blue-text: #2563eb;
            --jp-theme-amber-bg: rgba(245, 158, 11, 0.1); --jp-theme-amber-text: #d97706;
            --jp-theme-purple-bg: rgba(168, 85, 247, 0.1); --jp-theme-purple-text: #9333ea;
            --jp-theme-emerald-bg: rgba(16, 185, 129, 0.1); --jp-theme-emerald-text: #059669;
            --jp-theme-rose-bg: rgba(244, 63, 94, 0.1); --jp-theme-rose-text: #e11d48;
            --jp-theme-teal-bg: rgba(20, 184, 166, 0.1); --jp-theme-teal-text: #0d9488;
            --jp-theme-orange-bg: rgba(249, 115, 22, 0.1); --jp-theme-orange-text: #ea580c;
            
            --jp-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --jp-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            
            
        }
#pdp-section-container {
            /* Reset basics for this section only */
            box-sizing: border-box;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background-color: #f9fafb; /* gray-50 */
            color: #FF865B; /* gray-800 */
            padding: 4rem 1rem; /* py-16 px-4 */
            line-height: 1.5;
            width: 100%;
        }

        #pdp-section-container * {
            box-sizing: border-box;
        }

        /* Layout Helpers */
        .pdp-wrapper {
            max-width: 64rem; /* max-w-5xl */
            margin: 0 auto;
        }

        /* Header Styles */
        .pdp-header {
            text-align: center;
            margin-bottom: 3rem; /* mb-12 */
        }

        .pdp-main-title {
            font-weight: 700;
            color: #111827; /* gray-900 */
            margin: 0 0 1rem 0;
        }

        .pdp-subtitle {
          
            color: #4b5563; /* gray-600 */
            max-width: 42rem;
            margin: 0 auto;
        }

        /* Grid System */
        .pdp-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem; /* gap-6 */
        }

        /* Card Styles */
        .pdp-card {
            background-color: #ffffff;
            border-radius: 0.75rem; /* rounded-xl */
            padding: 1.5rem; /* p-6 */
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
            border-left-width: 4px;
            border-left-style: solid;
            transition: box-shadow 0.3s ease;
        }

        .pdp-card:hover {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
        }

        .pdp-card-title {
           
            font-weight: 600;
            color: #111827; /* gray-900 */
            margin: 0 0 0.5rem 0;
        }

        .pdp-card-text {
            color: #4b5563; /* gray-600 */
            line-height: 1.625;
            margin: 0;
        }

        /* Border Color Variations */
        .pdp-border-teal { border-left-color: #14b8a6; }
        .pdp-border-indigo { border-left-color: #6366f1; }
        .pdp-border-blue { border-left-color: #3b82f6; }
        .pdp-border-emerald { border-left-color: #10b981; }
        .pdp-border-rose { border-left-color: #f43f5e; }
        .pdp-border-amber { border-left-color: #f59e0b; }
        .pdp-border-purple { border-left-color: #a855f7; }

        /* Responsive Breakpoints */
        @media (min-width: 768px) {
            .pdp-main-title {
                font-size: 2.25rem; /* md:text-4xl */
            }
            
            .pdp-grid {
                grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
            }

            .pdp-col-span-2 {
                grid-column: span 2 / span 2;
            }
            
            #pdp-section-container {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            #pdp-section-container {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }
        

         #rhythm-section-container {
            box-sizing: border-box;
            color: #1f2937; /* gray-800 */
            padding: 5rem 1rem;
            line-height: 1.6;
            width: 100%;
            overflow: hidden; /* Prevent horizontal scroll on some mobile animations */
        }

        #rhythm-section-container * {
            box-sizing: border-box;
        }

        .rhythm-wrapper {
            max-width: 72rem;
            margin: 0 auto;
        }

        /* Header Styles */
        .rhythm-header {
            text-align: center;
            margin-bottom: 5rem;
            padding: 0 1rem;
        }

        .rhythm-main-title {
           
            font-weight: 700;
            color: #111827;
            margin: 0 0 1.5rem 0;
            line-height: 1.2;
        }

        .rhythm-subtitle {
            
            color: #4b5563;
            max-width: 38rem;
            margin: 0 auto;
        }

        /* TIMELINE CONTAINER */
        .rhythm-timeline {
            position: relative;
            max-width: 64rem;
            margin: 0 auto;
        }

        /* The Vertical Line */
        .rhythm-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 2rem; /* Mobile: Line is on the left */
            width: 3px;
            background: #e5e7eb; /* Neutral gray line */
            border-radius: 1.5px;
        }

        /* Timeline Item Wrapper */
        .rhythm-item {
            position: relative;
            margin-bottom: 4rem;
            min-height: 100px;
        }
        
        .rhythm-item:last-child {
            margin-bottom: 0;
        }

        /* The Icon Marker */
        .rhythm-marker {
            position: absolute;
            left: 0.5rem; /* Center marker on the 2rem line (marker width 3rem) */
            top: 0;
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 50%;
            background-color: #fff;
            border: 3px solid;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .rhythm-item:hover .rhythm-marker {
            transform: scale(1.1);
        }

        .rhythm-marker svg {
            width: 1.5rem;
            height: 1.5rem;
            fill: currentColor;
        }

        /* Phase Colors */
        .rhythm-phase-start { color: #059669; border-color: #059669; background-color: #ecfdf5; } /* Emerald */
        .rhythm-phase-mid { color: #d97706; border-color: #d97706; background-color: #fffbeb; }   /* Amber */
        .rhythm-phase-end { color: #4f46e5; border-color: #4f46e5; background-color: #eef2ff; }   /* Indigo */

        /* Content Box */
        .rhythm-content {
            margin-left: 5.5rem; /* Space for marker */
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            border: 1px solid #f3f4f6;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            position: relative;
        }

        .rhythm-item:hover .rhythm-content {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            transform: translateY(-2px);
        }

        /* Little arrow connecting card to line on mobile */
        .rhythm-content::before {
            content: '';
            position: absolute;
            top: 1.25rem;
            left: -8px;
            width: 16px;
            height: 16px;
            background: white;
            transform: rotate(45deg);
            border-left: 1px solid #f3f4f6;
            border-bottom: 1px solid #f3f4f6;
        }

        .rhythm-card-title {
            
            font-weight: 700;
            color: #111827;
            margin: 0 0 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .rhythm-card-desc {
            color: #4b5563;
            
            line-height: 1.7;
            margin: 0;
        }

        .rhythm-badge {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 0.25rem 0.75rem;
            border-radius: 99px;
            margin-bottom: 0.75rem;
        }
        
        .badge-start { background-color: #d1fae5; color: #065f46; }
        .badge-mid { background-color: #fef3c7; color: #92400e; }
        .badge-end { background-color: #e0e7ff; color: #3730a3; }

        /* DESKTOP STYLES (Min-width 768px) */
        @media (min-width: 768px) {
            .rhythm-main-title {
                font-size: 2.5rem;
            }

            /* Center the main line */
            .rhythm-timeline::before {
                left: 50%;
                margin-left: -1.5px; /* Half width to center perfectly */
            }

            /* Reset Content Layout */
            .rhythm-item {
                display: flex;
                align-items: flex-start;
                justify-content: center;
                width: 100%;
                margin-bottom: 6rem;
            }

            /* Center Marker */
            .rhythm-marker {
                left: 50%;
                transform: translateX(-50%);
                top: 0;
                width: 4rem;
                height: 4rem;
            }
            
            .rhythm-item:hover .rhythm-marker {
                transform: translateX(-50%) scale(1.1);
            }

            .rhythm-marker svg {
                width: 1.75rem;
                height: 1.75rem;
            }

            /* Card Styling Desktop */
            .rhythm-content {
                width: 46%; /* Less than 50% to leave gap */
                margin: 0;
                padding: 2.5rem;
            }

            /* === Alternating Logic === */

            /* LEFT SIDE ITEMS */
            .rhythm-item:nth-child(odd) {
                flex-direction: row;
            }
            .rhythm-item:nth-child(odd) .rhythm-content {
                margin-right: auto; /* Push to left */
                text-align: right;
            }
            /* Arrow for Left Side */
            .rhythm-item:nth-child(odd) .rhythm-content::before {
                left: auto;
                right: -8px;
                border-left: none;
                border-bottom: none;
                border-right: 1px solid #f3f4f6;
                border-top: 1px solid #f3f4f6;
            }
            /* Align title/badge right */
            .rhythm-item:nth-child(odd) .rhythm-card-title {
                flex-direction: row-reverse;
            }
            
            /* RIGHT SIDE ITEMS */
            .rhythm-item:nth-child(even) {
                flex-direction: row-reverse; /* Flip flex direction */
            }
            .rhythm-item:nth-child(even) .rhythm-content {
                margin-left: auto; /* Push to right */
                text-align: left;
            }
            /* Arrow for Right Side */
            .rhythm-item:nth-child(even) .rhythm-content::before {
                left: -8px; 
                border-right: none;
                border-top: none;
                border-left: 1px solid #f3f4f6;
                border-bottom: 1px solid #f3f4f6;
            }
        }


         #wtdm-section-container {
            box-sizing: border-box;
            background:linear-gradient(to right, #ffd6bb, #ffffff) !important;
            color: #000000;
            padding: 5rem 1rem;
            line-height: 1.6;
            width: 100%;
        }

        #wtdm-section-container * {
            box-sizing: border-box;
        }

        .wtdm-wrapper {
            max-width: 72rem;
            margin: 0 auto;
        }

        .wtdm-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
        }

        .wtdm-col {
            padding: 0 0.5rem;
        }

        /* Typography */
        .wtdm-title {
            font-weight: 700;
            color: #000000;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
        }

        

        .wtdm-text {
            color: #000000;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }
        
        .wtdm-highlight {
            font-weight: 600;
            color: #000000;
        }

        /* List Styles */
        .wtdm-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }

        .wtdm-list li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 0.75rem;
            color: #000000;
            font-weight: 500;
            display: flex;
            align-items: center;
        }

        .wtdm-list li::before {
            content: '';
            position: absolute;
            left: 0;
            width: 1.25rem;
            height: 1.25rem;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2310b981'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }

        /* Feature Card */
        .wtdm-card {
            background-color: #fff7ed; /* Very light orange bg */
            border-left: 4px solid #f97316;
            padding: 2rem;
            border-radius: 0 0.75rem 0.75rem 0;
            margin-top: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

        .wtdm-punchline {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #9a3412; /* Darker orange text */
            
        }

        .wtdm-big-statement {
            font-weight: 800;
            color: #000000;
            margin-top: 1.5rem;
            display: block;
            line-height: 1.2;
        }
        
        .wtdm-connector {
            margin-top: 1.5rem; 
            display: block;
            color: #000000;
        }

        /* Footer Quote */
        .wtdm-footer {
            margin-top: 5rem;
            text-align: center;
            padding-top: 3rem;
            border-top: 1px dashed #e5e7eb;
            position: relative;
        }
        
       
        .wtdm-script-tag {
            font-weight: 600;
            color: #000000; /* Indigo accent */
            line-height: 1.5;
            max-width: 48rem;
            margin: 0 auto;
        }

        /* Responsive */
        @media (min-width: 768px) {
            .wtdm-grid {
                grid-template-columns: 1fr 1fr;
                gap: 5rem;
                align-items: start;
            }
            
            .wtdm-title {
                font-size: 2.25rem;
            }

            .wtdm-script-tag {
                font-size: 2rem;
            }
            
            #wtdm-section-container {
                padding: 6rem 2rem;
            }
        }

        .sideimg
        {
          width: 40%;
        }
        @media (max-width: 768px) {
            .sideimg {
               width: 100%;
            }
          }