@charset "UTF-8";

:root {
  /* default */
  --white: #fff;
  --black: #000;
  --img: #eaeaea;

  /* new-var */
  --primary: #886638;
  --primary-dark: #42301C;
  --primary-900: #412E17;

  --gray-900: #2D2D2D;
  --gray-800: #6B6B6B;
  --gray-700: #FFEFDE;
  --gray-600: #FFF9F2;
  --gray-500: #EBEBEB;

  --bg-color: var(--white);

  --font-base: "Inter", system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-secondary: "IBM Plex Serif", system-ui, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-tinos: "Tinos", system-ui, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-outfit: "Outfit", system-ui, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  --h1: clamp(30px, 4.49vw, 72px);
  --h2: clamp(22px, 2.66vw, 42px);
  --h3: clamp(20px, 1.77vw, 28px);
  --h4: clamp(18px, 1.52vw, 24px);
  --h5: clamp(18px, 1.27vw, 20px);
  --h6: clamp(16px, 1.14vw, 18px);

  --base: clamp(16px, 1.14vw, 18px);
  --text-sm: clamp(14px, 0.89vw, 14px);
  --text-md: clamp(17px, 1.27vw, 20px);

  --transition: all 0.3s ease-in-out;

  --size-200: clamp(60px, 12.66vw, 200px);
  --size-190: clamp(55px, 12.03vw, 190px);
  --size-180: clamp(55px, 11.39vw, 180px);
  --size-170: clamp(50px, 10.76vw, 170px);
  --size-160: clamp(50px, 10.13vw, 160px);
  --size-150: clamp(50px, 9.49vw, 150px);
  --size-140: clamp(45px, 8.86vw, 140px);
  --size-130: clamp(45px, 8.23vw, 130px);
  --size-120: clamp(45px, 7.59vw, 120px);
  --size-110: clamp(45px, 6.96vw, 110px);
  --size-100: clamp(40px, 6.33vw, 100px);
  --size-90: clamp(40px, 5.7vw, 90px);
  --size-80: clamp(40px, 5.06vw, 80px);
  --size-75: clamp(35px, 4.75vw, 75px);
  --size-70: clamp(35px, 4.43vw, 70px);
  --size-60: clamp(35px, 3.8vw, 60px);
  --size-55: clamp(35px, 3.48vw, 55px);
  --size-50: clamp(35px, 3.16vw, 50px);
  --size-40: clamp(25px, 2.53vw, 40px);
  --size-30: clamp(25px, 1.9vw, 30px);
  --size-20: clamp(15px, 1.27vw, 20px);
  --size-10: clamp(10px, 0.63vw, 10px);
}

/* CSS Document */

/*==============================================================
	Common Styles Initials
==============================================================*/

html {
  -webkit-text-size-adjust: none;
  /* Prevent font scaling in landscape */
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: inherit !important;
}

*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: break-word;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: var(--font-base);
  font-size: var(--base);
  line-height: 1.6666;
  color: var(--black);
  font-weight: 400;
  background: var(--bg-color);
  width: 100%;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scrollbar-color: var(--white) var(--primary);
  scrollbar-width: thin;
}

body.pause {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: var(--primary);
}

#smooth-wrapper {
  overflow: hidden;
}

#smooth-content {
  position: relative;
  width: 100%;
  will-change: transform;
}

[gsap-data] {
  transform: translate3d(0, 0, 0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

a {
  outline: none;
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover,
a:focus {
  outline: none;
  text-decoration: none;
  color: var(--primary);
}

.btn:focus {
  color: var(--black);
  box-shadow: none;
}

input,
textarea,
select {
  outline: none;
  resize: none;
}

a,
input,
button {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
  padding: 0;
  font-weight: 500;
  color: var(--black);
  font-family: var(--font-secondary);
}

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

p+p {
  padding-top: 20px;
}

input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search-dropdown input {
  -webkit-appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*==============================================================
	Bootstrap Hack
==============================================================*/

.form-control::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  opacity: 1;
  color: var(--primary);
}

.form-control:-moz-placeholder,
input:-moz-placeholder {
  opacity: 1;
  color: var(--primary);
}

.form-control::-moz-placeholder,
input::-moz-placeholder {
  opacity: 1;
  color: var(--primary);
}

.form-control:-ms-input-placeholder,
input:-ms-input-placeholder {
  opacity: 1;
  color: var(--primary);
}

.form-control::placeholder,
input::placeholder {
  opacity: 1;
  color: rgba(0, 0, 0, 0.4);
}

/*==============================================================
	Custom Style
==============================================================*/

.section {
  position: relative;
}

.section .shape {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
}

.section .shape.shape-top {
  top: 0;
  align-items: flex-start;
}

.section .shape.shape-top img {
  margin-top: -1px;
}

.section .shape.shape-bottom {
  bottom: 0;
  align-items: flex-end;
}

.section .shape.shape-bottom img {
  margin-bottom: -1px;
}

.section .shape img {
  width: 100%;
}

.container {
  max-width: 1327px;
  width: 100%;
}

.h1 {
  font-size: var(--h1);
  line-height: 130%;
}

.h2 {
  font-size: var(--h2);
  line-height: 120%;
}

.h3 {
  font-size: var(--h3);
  line-height: 120%;
}

.h4 {
  font-size: var(--h4);
  line-height: 120%;
}

.h5 {
  font-size: var(--h5);
  line-height: 1.5;
}

.h6 {
  font-size: var(--h6);
  line-height: 120%;
}

.title-30 {
  font-size: var(--title-30);
}

.text-base {
  font-size: var(--base);
  line-height: 1.875;
}

.text-md {
  font-size: var(--text-md);
  line-height: 1.6;
}

.text-sm {
  font-size: var(--text-sm);
  line-height: 1.5714;
}

.text-black {
  color: var(--black);
}

.text-gray {
  color: rgba(45, 45, 45, 0.8);
}

.font-inter {
  font-family: var(--font-base);
}

.pt-200 {
  padding-top: var(--size-200);
}

.pt-190 {
  padding-top: var(--size-190);
}

.pt-180 {
  padding-top: var(--size-180);
}

.pt-170 {
  padding-top: var(--size-170);
}

.pt-160 {
  padding-top: var(--size-160);
}

.pt-150 {
  padding-top: var(--size-150);
}

.pt-140 {
  padding-top: var(--size-140);
}

.pt-130 {
  padding-top: var(--size-130);
}

.pt-120 {
  padding-top: var(--size-120);
}

.pt-110 {
  padding-top: var(--size-110);
}

.pt-100 {
  padding-top: var(--size-100);
}

.pt-90 {
  padding-top: var(--size-90);
}

.pt-80 {
  padding-top: var(--size-80);
}

.pt-75 {
  padding-top: var(--size-75);
}

.pt-70 {
  padding-top: var(--size-70);
}

.pt-60 {
  padding-top: var(--size-60);
}

.pt-55 {
  padding-top: var(--size-55);
}

.pt-50 {
  padding-top: var(--size-50);
}

.pt-40 {
  padding-top: var(--size-40);
}

.pt-30 {
  padding-top: var(--size-30);
}

.pt-20 {
  padding-top: var(--size-20);
}

.pt-10 {
  padding-top: var(--size-10);
}

.pb-200 {
  padding-bottom: var(--size-200);
}

.pb-190 {
  padding-bottom: var(--size-190);
}

.pb-180 {
  padding-bottom: var(--size-180);
}

.pb-170 {
  padding-bottom: var(--size-170);
}

.pb-160 {
  padding-bottom: var(--size-160);
}

.pb-150 {
  padding-bottom: var(--size-150);
}

.pb-140 {
  padding-bottom: var(--size-140);
}

.pb-130 {
  padding-bottom: var(--size-130);
}

.pb-120 {
  padding-bottom: var(--size-120);
}

.pb-110 {
  padding-bottom: var(--size-110);
}

.pb-100 {
  padding-bottom: var(--size-100);
}

.pb-90 {
  padding-bottom: var(--size-90);
}

.pb-80 {
  padding-bottom: var(--size-80);
}

.pb-75 {
  padding-bottom: var(--size-75);
}

.pb-70 {
  padding-bottom: var(--size-70);
}

.pb-60 {
  padding-bottom: var(--size-60);
}

.pb-55 {
  padding-bottom: var(--size-55);
}

.pb-50 {
  padding-bottom: var(--size-50);
}

.pb-40 {
  padding-bottom: var(--size-40);
}

.pb-30 {
  padding-bottom: var(--size-30);
}

.pb-20 {
  padding-bottom: var(--size-20);
}

.pb-10 {
  padding-bottom: var(--size-10);
}

/* space */

.gap-20 {
  margin: 0 -10px;
  row-gap: 20px;
}

.gap-20>div {
  padding: 0 10px;
}


.gap-22 {
  margin: 0 -11px;
  row-gap: 22px;
}

.gap-22>div {
  padding: 0 11px;
}

.gap-24 {
  margin: 0 -12px;
  row-gap: 24px;
}

.gap-24>div {
  padding: 0 12px;
}

.gap-30 {
  margin: 0 -15px;
  row-gap: 30px;
}

.gap-30>div {
  padding: 0 15px;
}

.gap-40 {
  margin: 0 -20px;
  row-gap: 40px;
}

.gap-40>div {
  padding: 0 20px;
}

/* space */

:is(.img-cover, .img-contain) {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--img);
}

:is(.img-cover, .img-contain)> :is(img, video, iframe) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain> :is(img, video, iframe) {
  object-fit: contain;
}

.bullet ul li {
  padding-left: 25px;
  position: relative;
}

.bullet ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  border-radius: 100%;
  left: 5px;
  top: 13px;
  background: var(--primary);
}

.bullet ol {
  counter-reset: item 0;
}

.bullet ol li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
}

.bullet ol li:before {
  content: counters(item, ".") ". ";
  counter-increment: item 1;
  position: absolute;
  left: 0;
  top: 0px;
  display: block;
  color: var(--primary);
}

.bullet ol li ol {
  margin-top: 12px;
}

.bullet ol li ol li {
  padding-left: 0;
}

.bullet ol li ol li:before {
  position: relative;
  display: inline;
}

.bullet ol li ol ol {
  padding-left: 20px;
}

.bullet-tick>ul {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
}

.bullet-tick>ul li {
  padding-left: 34px;
  position: relative;
  background: url("../images/icons/bullet-tick.svg") no-repeat top 7px left / 24px;
}

/*==============================================================
	Button Style
==============================================================*/
.btn {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--primary);
  border-radius: 100px;
  padding: 22px 40px;
  transition: var(--transition);
  box-shadow: none;
  outline: none;
  text-transform: uppercase;
  border: 0;
}

.btn:is(:hover, :focus, :active) {
  color: var(--white);
  background: var(--primary-dark);
}

.btn.btn-primary:is(:hover, :focus, :active) {
  color: var(--white);
  background: var(--primary-dark);
}

.btn.btn-white {
  color: var(--black);
  background: var(--white);
}

.btn.btn-white:is(:hover, :focus, :active) {
  color: var(--white);
  background: var(--primary);
}

/*==============================================================
	Common Css 
==============================================================*/

.title-wrap .sub-title {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.035em;
  font-weight: 700;
  color: var(--black);
  display: inline-flex;
  padding: 9px 20px;
  border: 1px solid transparent;
  background: var(--gray-600);
  border-radius: 100px;
  text-transform: uppercase;
}

.title-wrap .sub-title.black-outline {
  border-color: var(--black);
  background: transparent;
}

.title-wrap .sub-title.white-outline {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.title-wrap .sub-title.gray {
  border-color: var(--gray-600);
  background: var(--gray-600);
  color: var(--black);
}

.max-1010 {
  max-width: 1010px;
}

/* .social {
  display: inline-flex;
}

.social ul {
  display: inline-flex;
  align-items: center;
  column-gap: var(--size-20);
}

.social ul li {
  display: inline-flex;
  align-items: center;
  color: var(--black);
}

.social ul li a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: currentColor;
  color: var(--white);
  transition: var(--transition);
  border: 1px solid var(--white);
  border-radius: 100%;
}

.social ul li a:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
} */

/* .section .shape {
  position: absolute;
}
.section .shape.shape-left {
  left: 0;
}
.section .shape.shape-right {
  right: 0;
}
.section .shape.shape-circle,
.section .shape.shape-circle-1 {
  color: #bdccb8;
  opacity: 0.5;
}
.section .shape.shape-circle .icon {
  width: clamp(150px, 19.68vw, 311px);
  height: auto;
}
.section .shape.shape-circle-1 .icon {
  width: clamp(100px, 11.58vw, 183px);
  height: auto;
}

.section .shape.shape-leaf-1 .icon {
  width: clamp(180px, 22.85vw, 361px);
  height: auto;
}
.section .shape.shape-leaf-2 .icon {
  width: clamp(180px, 19.49vw, 308px);
  height: auto;
}
.section .shape.shape-leaf-4 .icon {
  width: clamp(180px, 15.19vw, 240px);
  height: auto;
  opacity: 0.03;
} */

/* === HEADER === */
.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header-wrap header {
  position: relative;
  transition: var(--transition);
  padding: 15px 0;
}

.header-wrap header .container {
  display: flex;
}

header .logo {
  display: inline-flex;
  margin-bottom: -50px;
  transition: var(--transition);
}

header .logo a {
  width: 146px;
  height: 146px;
  display: inline-flex;
  transition: var(--transition);
  position: relative;
}

header .logo a img {
  position: absolute;
  inset: 0;
  transition: var(--transition);
}

div:not(.sticky) header .logo a img.logo {
  opacity: 0;
}

.sticky header .logo a img.logo-white {
  opacity: 0;
}

header .header-menu {
  padding-left: 15.2%;
}

header .header-menu .menu>ul {
  display: flex;
  align-items: center;
  column-gap: 56px;
}

header .header-menu .menu>ul>li>a {
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  display: inline-flex;
  color: var(--white);
  text-transform: capitalize;
  transition: var(--transition);
  padding: 38px 0;
}

header .header-menu .menu>ul>li:is(.current-menu-item, .current-menu-parent, .current-menu-ancestor, :hover)>a {
  color: var(--primary);
}

header .header-menu .menu>ul>li .sub-menu li a {
  display: block;
  font-size: 16px;
  line-height: 1;
  color: var(--primary);
  min-height: 48px;
  padding: 15px 20px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

header .header-menu .menu>ul>li .sub-menu li a:hover {
  background: var(--primary);
  color: var(--white);
}

.header-wrap.sticky header {
  background: var(--white);
}

.header-wrap.sticky .header-menu .menu>ul>li>a,
.header-wrap.sticky .header-menu .menu>ul>li>.menu-arrow {
  color: var(--primary);
}

.header-wrap.sticky .header-menu .menu>ul>li:is(.current-menu-item, .current-menu-parent, .current-menu-ancestor, :hover)>a {
  color: var(--primary-dark);
}

header .header-menu .menu>ul>li>a {
  padding: 30px 0;
}

header .header-menu .social {
  display: inline-flex;
  margin-left: auto;
  padding-right: 20px;
}
header .header-menu .social ul {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
}
header .header-menu .social ul li {
  display: inline-flex;
  align-items: center;
}
header .header-menu .social ul li a{
  display: inline-flex;
}

@media (min-width: 1101px) {
  .menu-toggle>button {
    display: none;
  }

  header .header-menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  header .header-menu .btn-wrap .btn {
    color: var(--primary-dark);
  }

  header .header-menu .btn-wrap .btn.btn:is(:hover, :focus, :active) {
    color: var(--white);
  }

  .sticky header .header-menu .btn-wrap .btn {
    color: var(--white);
    background: var(--primary);
  }

  header .header-menu .menu>ul>li {
    position: relative;
    display: inline-flex;
    align-items: center;
    column-gap: 12px;
  }

  header .header-menu .menu>ul>li .menu-arrow {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    color: var(--white);
  }

  header .header-menu .menu>ul>li .menu-arrow .icon {
    color: currentColor;
    transition: var(--transition);
  }

  header .header-menu .menu>ul>li:hover .menu-arrow .icon {
    transform: rotate(180deg);
  }

  header .header-menu .menu>ul>li .sub-menu>li:is(.current-menu-item, .current-menu-parent, .current-menu-ancestor, :hover)>a {
    color: var(--white) !important;
    background: var(--primary);
  }

  header .header-menu .menu>ul>li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 300px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
  }

  header .header-menu .menu>ul>li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header-wrap.sticky header .logo {
    margin: 0;
  }

  .header-wrap.sticky header .logo a {
    width: 80px;
    height: 80px;
  }
  header .header-menu .social ul li a{
    color: var(--white);
  }
  .sticky header .header-menu .social ul li a{
    color: var(--primary);
  }
}

@media (max-width: 1280px) {
  header .header-menu {
    padding-left: 10%;
  }
  header .header-menu .menu>ul {
    column-gap: 30px;
  }
}
@media (max-width: 1100px) {
  .header-wrap header {
    padding: 10px 0;
  }

  .header-wrap header .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  header .logo {
    top: initial;
    left: initial;
    position: relative;
    display: inline-flex;
    margin: 0;
  }

  header .logo a {
    width: 70px;
    height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-toggle button {
    cursor: pointer !important;
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
    color: var(--white);
    width: 32px;
    height: 32px;
  }

  .header-wrap.sticky header>.menu-toggle button {
    color: var(--primary);
  }

  header .header-menu .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: end;
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    padding: 0 15px;
  }

  header .header-menu .menu-toggle button {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--primary);
  }

  header .header-menu {
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    background: var(--white);
    width: 320px;
    padding: 80px 15px 86px;
    z-index: 3;
    transition: var(--transition);
    overflow: hidden;
  }

  header .header-menu:not(.menu-open) {
    right: -320px;
  }

  header .header-menu .menu {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  header .header-menu .menu::-webkit-scrollbar {
    display: none;
  }

  header .header-menu .menu-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--primary);
  }

  header .header-menu .menu li {
    width: 100%;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  header .header-menu .menu>ul {
    flex-direction: column;
  }

  header .header-menu .menu>ul>li .sub-menu li a {
    border: 0;
    padding: 15px 0px;
  }

  header .header-menu .menu>ul>li .sub-menu>li:is(.current-menu-item,
    .current-menu-parent,
    .current-menu-ancestor,
    :hover)>a {
    color: var(--primary) !important;
  }

  header .header-menu .menu>ul>li>a {
    display: block;
    font-size: 16px;
    line-height: 1;
    padding: 17px 0;
    color: var(--primary);
  }

  header .header-menu .menu>ul>li>a:hover {
    color: var(--primary);
  }

  header .header-menu .menu>ul>li {
    display: flex;
    flex-wrap: wrap;
  }

  header .header-menu .menu .sub-menu {
    width: 100%;
    padding: 0 8px;
    display: none;
    position: initial;
    visibility: initial;
    transform: initial;
    min-width: initial;
    opacity: initial;
    box-shadow: initial;
    z-index: initial;
    transition: initial;
  }

  header .header-menu .menu-arrow .icon {
    transition: var(--transition);
  }

  header .header-menu .menu-arrow.active .icon {
    transform: rotate(180deg);
  }

  header .overlay {
    position: fixed;
    inset: 0;
    height: 100vh;
    background: var(--black);
    opacity: 0.7;
    z-index: 2;
    transition: var(--transition);
  }

  header .overlay:not(.active) {
    opacity: 0;
    visibility: hidden;
  }

  header .header-menu .btn-wrap {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
  }

  header .header-menu .btn-wrap .btn {
    width: 100%;
    justify-content: center;
    color: var(--white);
    background: var(--primary);
  }

  .header-wrap.sticky header .logo {
    top: initial;
  }

  .header-wrap.sticky .container>.menu-toggle button {
    color: var(--primary);
  }
  header .header-menu .social {
    position: absolute;
    top: 22px;
    left: 20px;
  }
}

/* === HEADER === */

/* === FOOTER === */
.footer-wrap {
  background: var(--white);
  border-bottom: 5px solid var(--primary-900);
}

.footer-wrap .footer-logo a {
  display: inline-flex;
  width: clamp(100px, 9.24vw, 146px);
  transition: var(--transition);
}

.footer-wrap .footer-logo a img {
  width: 100%;
}

.footer-wrap .about-block {
  max-width: 392px;
  color: var(--black);
  opacity: 0.7;
}

.footer-wrap .footer-menu h3 {
  color: var(--black);
  padding-bottom: 17px;
  font-family: var(--font-outfit);
  font-weight: 500;
}

.footer-wrap .footer-menu ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.footer-wrap .footer-menu ul li {
  display: inline-flex;
}

.footer-wrap .footer-menu ul li a {
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  column-gap: 12px;
  color: rgba(0, 0, 0, 0.7);
  transition: var(--transition);
}

.footer-wrap .footer-menu ul li a:hover {
  color: var(--primary);
}

.footer-wrap .footer-menu ul li a .icon {
  margin-top: 5px;
  flex-shrink: 0;
}

.footer-wrap .footer-menu.contact ul li a {
  font-weight: 400;
}

.footer-wrap .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
  line-height: 15px;
  color: rgba(0, 0, 0, 0.7);
  text-align: center;
  border-top: 1px solid rgba(55, 43, 31, 0.2);

}

.footer-wrap .footer-bottom a {
  color: currentColor;
  transition: var(--transition);
}

.footer-wrap .footer-bottom a:hover {
  color: var(--primary);
}

.footer-wrap .footer-bottom .link {
  display: inline-flex;
  column-gap: 24px;
  row-gap: 10px;
}

.footer-wrap .footer-bottom .link li {
  display: inline-flex;
}

.footer-wrap .footer-bottom .link li a {
  display: inline-flex;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
}

.footer-wrap .footer-bottom .link li a {
  display: inline-block;
  transition: var(--transition);
}

.footer-wrap .footer-bottom .link li a:hover {
  color: var(--primary);
}

.footer-wrap .social {
  display: inline-flex;
  margin-left: auto;
  padding-top: var(--size-20);
}
.footer-wrap .social ul {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
}
.footer-wrap .social ul li {
  display: inline-flex;
  align-items: center;
}
.footer-wrap .social ul li a{
  display: inline-flex;
}



/* === FOOTER === */

/* ===== BANNER ===== */
.banner {
  position: relative;
  overflow: hidden;
}

.banner::after,
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
}

/* .banner::after {
  bottom: 0;
  height: 346px;
} */

.banner .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.banner .container {
  z-index: 1;
}

.banner.hero-banner .banner-content {
  position: relative;
  max-width: 737px;
  padding: clamp(120px, 14.87vw, 235px) 0 clamp(80px, 16.46vw, 260px);
  z-index: 1;
}

.banner.hero-banner .banner-content .banner-title {
  letter-spacing: -0.02em;
}

.banner.hero-banner .banner-content .banner-text {
  padding-top: var(--size-30);
}

.banner.hero-banner .banner-content .btn-wrap {
  gap: 10px;
}

.banner.hero-banner .banner-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 808px;
}

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

.banner.inner-banner {
  padding: clamp(160px, 16.01vw, 253px) 0 clamp(140px, 17.09vw, 270px);
}

.banner.inner-banner .banner-bg img {
  object-position: right center;
}

.banner.inner-banner::after,
.banner.inner-banner::before {
  display: none;
}

.banner.inner-banner .banner-text {
  letter-spacing: -2px;
}

.banner.blog-inner .banner-content .banner-title {
  text-align: center;
  letter-spacing: -2px;
}

.banner.blog-inner .meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.banner.blog-inner .meta li {
  font-size: 18px;
  line-height: 100%;
  font-weight: 500;
  letter-spacing: 0%;
  color: var(--white);
  text-transform: capitalize;
}

.banner.blog-inner .meta li:not(:last-child)::after {
  content: "|";
  margin: 0 10px;
}

/* ===== BANNER ===== */

/* ===== Home ===== */
.awareness-box {
  position: relative;
  padding: var(--size-100) 86px;
  border-radius: 10px;
  background: var(--white);
  border-bottom: 5px solid var(--primary);
  box-shadow: 0px 4px 183.7px 0px rgba(0, 0, 0, 0.1);
  margin-top: -130px;
  z-index: 1;
}

.awareness-box .img-cover {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/0.9890;
}

.awareness-box .content-box {
  color: rgba(45, 45, 45, 0.8);
}

.awareness-box .content-box p+p {
  padding-top: 35px;
}

.awareness-box .content-box .box {
  margin: 35px 0;
  padding-left: 28px;
  border-left: 4px solid rgba(66, 48, 28, 0.3);
}

.awareness-box .content-box .h6 {
  font-weight: 700;
  color: var(--gray-900);
  padding-bottom: clamp(15px, 2.22vw, 35px);
  font-family: var(--font-base);
}

.awareness-box .content-box .h5 {
  font-weight: 700;
  color: var(--gray-900);
  padding: clamp(15px, 1.9vw, 30px) 0;
  font-family: var(--font-tinos);
  color: var(--primary);
}

.we-exist-box {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0px 4px 100px 0px rgba(0, 0, 0, 0.1);
}

.we-exist-box li {
  padding: 24px 0;
  position: relative;
}

.we-exist-box li:first-child {
  padding-top: 0;
}

.we-exist-box li:last-child {
  padding-bottom: 0;
}

.we-exist-box li+li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000000 48.08%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.2;
}

.we-exist-box li .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
  text-align: center;
}

.we-exist-box li .box .icon-box {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 100%;
  background: var(--gray-700);
  margin: 0 auto;
  padding: 16px;
}

.we-exist-box li .box .icon-box img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.we-exist-box li .box h3 {
  color: var(--gray-900);
  font-family: var(--font-base);
}

.we-exist-box li .box p {
  font-size: var(--base);
  line-height: 1.3333;
  color: var(--gray-800);
}

.home-fundraising {
  background: var(--primary-dark) url('../images/fundraising-watermark.svg') no-repeat center / cover;
}

.home-fundraising .shape img {
  transform: rotate(180deg);
}

.home-fundraising .title-wrap {
  max-width: 888px;
}

.fundraising-box {
  padding: 66px;
  border-radius: 20px;
  background: var(--white);
}

.fundraising-box .col {
  flex: initial;
  width: 50%;
}

.fundraising-box .h3 {
  padding-bottom: 26px;
}

.fundraising-box .column {
  margin: 0 -70px;
  row-gap: 30px;
}

.fundraising-box .column>div {
  padding: 0 70px;
}

.fundraising-box ul {
  display: flex;
  flex-direction: column;
  row-gap: 18px;
}

.fundraising-box ul li {
  line-height: 1.334;
  padding: 8px 0 8px 55px;
  position: relative;
}

.fundraising-box ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--primary) url("../images/icons/check-white-icon.svg") no-repeat center center/20px;
}

.home-foundation {
  background: linear-gradient(180deg, rgba(255, 239, 222, 0.33) 0%, #FFEFDE 100%);
}

.home-foundation::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/home-foundation.svg') no-repeat center / cover;
}

.home-foundation .shape {
  bottom: -1px;
}

.home-foundation .title-wrap {
  max-width: 440px;
}

.home-foundation .title-wrap .sub-text {
  color: var(--primary-dark);
}

.home-foundation .accordion {
  display: flex;
  flex-direction: column;
  row-gap: 22px;
}

.home-foundation .accordion .accordion-item {
  border: 0;
  border-radius: 5px;
  border: 1px solid rgba(66, 48, 28, 0.15);
  padding: 24px 30px;
  background: var(--white);
}

.home-foundation .accordion .accordion-item .accordion-header {
  display: flex;
}

.home-foundation .accordion .accordion-item .accordion-header button {
  font-family: var(--font-base);
  width: 100%;
  background: transparent;
  border: 0;
  font-size: var(--h5);
  line-height: 1.461;
  font-weight: 500;
  color: var(--gray-900);
  padding-right: 24px;
  position: relative;
  text-align: left;
}

.home-foundation .accordion .accordion-item .accordion-header button span {
  position: absolute;
  top: 7px;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 100px;
  color: var(--black);
}

.home-foundation .accordion .accordion-item .accordion-header button span::after,
.home-foundation .accordion .accordion-item .accordion-header button span::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 14px;
  height: 2px;
  background: var(--black);
  margin: auto;
  transition: var(--transition);
}

.home-foundation .accordion .accordion-item .accordion-header button.collapsed span::before {
  transform: rotate(90deg);
}

.home-foundation .accordion .accordion-item .accordion-body {
  padding: 15px 0 0;
  color: var(--gray-800);
}

.home-foundation .img-shape-left {
  width: clamp(100px, 18.35vw, 290px);
  z-index: 2;
  left: clamp(1px, 7.91vw, 125px);

}

.home-foundation .img-shape-right {
  width: clamp(120px, 22.78vw, 360px);
  z-index: 2;
  right: clamp(1px, 5.95vw, 94px);
}

.how-it-work .container {
  max-width: 1430px;
}

.how-it-work .title-wrap {
  max-width: 900px;
}

.how-it-work .title-wrap .sub-text {
  color: var(--gray-800);
}

.work-step ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  counter-reset: count;
  position: relative;
}

.work-step ul li {
  width: 25%;
  position: relative;
  counter-increment: count;
  z-index: 1;
}

.work-step ul li .step-box {
  max-width: 250px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  row-gap: 20px;
  padding: 0 20px;

}

.work-step ul li .step-box .icon-box {
  position: relative;
  display: grid;
  place-items: center;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  border: 1px solid var(--gray-500);
  margin: 0 auto;
  background: var(--white);
}

.work-step ul li .step-box .icon-box img {
  width: 50px;
  height: 50px;
}

.work-step ul li .step-box .icon-box::after {
  content: counter(count, decimal-leading-zero) " ";
  position: absolute;
  top: 5px;
  left: 4px;
  font-size: 36px;
  line-height: 1;
  font-family: var(--font-secondary);
  color: var(--primary);
}

.work-step ul li .step-box h3 {
  font-family: var(--font-base);
  color: var(--gray-900);
}

.work-step ul li .step-box p {
  color: var(--gray-800);
}

.join-ark {
  background: no-repeat center / cover;
}

.join-ark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black);
  opacity: 0.66;
}

.join-box {
  height: 100%;
  padding: var(--size-40);
  border-radius: 10px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.join-box .icon-bpx {
  width: var(--size-60);
  height: var(--size-60);
}

.join-box .icon-bpx img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.join-box h3 {
  padding: var(--size-60) 0 25px;
}

.join-box p {
  color: var(--gray-800);
}

.home-ways-give .title-wrap {
  max-width: 900px;
}

.home-ways-give .title-wrap .sub-text {
  color: var(--gray-800);
}

.ways-give-list ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  padding: 60px 0 54px;
  border-radius: 20px;
  border: 1px solid var(--gray-500);
}

.ways-give-list ul li {
  width: 25%;
  padding: 0 60px;
}

.ways-give-list ul li .box {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}

.ways-give-list ul li .box .icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  position: relative;
}

.ways-give-list ul li .box .icon-box img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.ways-give-list ul li .box .icon-box .icon-reflection {
  position: absolute;
  top: 100%;
  left: 0;
}

.why-this-matters,
.home-featured-blog {
  background: var(--gray-700) url('../images/home-featured-blog.svg') no-repeat center / cover;
}

.help-us .shape img {
  margin-bottom: -1px;
}

/* ===== Home ===== */

/* ===== blog ===== */
.blog-box {
  position: relative;
}

.blog-box .img-cover {
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1/0.3492;
}

.blog-box .img-cover a {
  height: 100%;
  display: block;
}

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

.blog-box .img-cover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 14.29%, #000000 100%);
}

.blog-box .img-cover .date {
  position: absolute;
  top: var(--size-20);
  left: 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.35px;
  color: var(--white);
  background: var(--primary);
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 0 10px 10px 0;
}

.blog-box .blog-info {
  position: absolute;
  left: 18px;
  right: 20px;
  bottom: 13px;
}

.blog-box .blog-info .title {
  font-size: 22px;
  line-height: 1.3636;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-base);
  max-width: 235px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-box .blog-info .title a {
  color: currentColor;
  display: block;
  transition: var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-box .blog-info .title a:hover {
  color: var(--primary);
}

.blog-box .blog-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
  justify-content: space-between;
}

.blog-box .blog-info .btn-readmore {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--white);
  background: var(--primary);
  border-radius: 100%;
}

.blog-box.large .img-cover {
  aspect-ratio: 1/0.76190;
}

.blog-box.large .img-cover::after {
  height: 270px;
}

.blog-box.large .img-cover .date {
  top: var(--size-40);
}

.blog-box.large .blog-info {
  left: 28px;
  right: 30px;
  bottom: 30px;
}

.blog-wrap .blog-box .img-cover .date {
  top: 0;
}

.blog-single .awareness-box {
  padding: var(--size-80);
}

.blog-single .awareness-box .img-cover {
  aspect-ratio: 1/0.4203;
}


.blog.custom-content-box .wp-block-columns {
  display: flex;
  flex-direction: column;
  /* row-gap: clamp(35px, 4.75vw, 75px); */
}

.blog.custom-content-box .wp-block-columns h3 {
  font-size: var(--h2);
  color: var(--black);
}

.blog.custom-content-box :is(h3, h4, h5, h6) {
  padding: var(--size-30) 0;
}

.blog.custom-content-box :is(h3, h4, h5, h6):last-child {
  padding-bottom: 0;
}

.blog.custom-content-box :is(h3, h4, h5, h6):first-child {
  padding-top: 0;
}

.blog.custom-content-box p+p {
  padding-top: 25px;
}

.blog.custom-content-box :is(ol, ul) {
  padding: 14px 0;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

.blog.custom-content-box :is(ol, ul):first-child {
  padding-top: 0;
}

.blog.custom-content-box :is(ol, ul):last-child {
  padding-bottom: 0;
}

.blog.custom-content-box .wp-block-image {
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
}

.blog.custom-content-box .wp-block-image img {
  width: 100%;
}

.blog.custom-content-box.bullet ul li:before {
  background: currentColor;
}

.blog.custom-content-box .service-list {
  background: var(--gray-700);
  padding: var(--size-40);
  border-radius: 10px;
}

.blog.custom-content-box .service-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 120px;
  row-gap: 80px;
}

.blog.custom-content-box .service-list ul li {
  line-height: 2;
  position: relative;
  padding: 0;
}

.blog.custom-content-box .service-list ul li:nth-child(odd):after {
  content: "";
  position: absolute;
  background: var(--black);
  opacity: 0.1;
  top: 0;
  bottom: 0;
  right: -60px;
  width: 1px;
}

.blog.custom-content-box .service-list ul li::before {
  top: auto;
  bottom: -40px;
  width: auto;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--black);
  opacity: 0.1;
}

.blog.custom-content-box .service-list ul li h4 {
  font-size: var(--h3);
  font-family: var(--font-secondary);
  padding-bottom: 28px;
}

.blog.custom-content-box .note {
  font-weight: 700;
  color: var(--white);
  background: var(--primary);
  padding: 20px 16px;
  color: var(--white);
  border-radius: 10px;
  margin-top: 25px;
}
.blog-single .simplesocialbuttons {
  padding-top: var(--size-30);
}

.pagination {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.pagination li :is(button, a) {
  border: 1px solid #D9D9D9;
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--black);
  opacity: 0.7;
  background: transparent;
  transition: var(--transition);
}

.pagination li :is(button, a):is(:hover, .current) {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.featured-post {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  border-bottom: 5px solid var(--primary);
  margin-top: -130px;
  background: var(--white);
  z-index: 1;
  box-shadow: 0px 4px 183.7px 0px rgba(0, 0, 0, 0.1);
}

.featured-post .featured-left {
  width: 50%;
}

.featured-post .featured-right {
  width: 50%;
  padding: 86px;
}

.featured-post .blog-info {
  display: flex;
  flex-direction: column;
  row-gap: 23px;
}

.featured-post .blog-info .date {
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0px;
  color: rgba(46, 46, 46, 0.8);
}

.featured-post .text {
  color: rgba(45, 45, 45, 0.8);
}

.featured-post .img-cover {
  aspect-ratio: initial;
  height: 100%;
  min-height: 300px;
}

.featured-post .img-cover a {
  height: 100%;
  display: block;
}

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

.featured-post .img-cover .category {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.35px;
  color: var(--white);
  background: var(--primary);
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 0 10px 10px 0;
}

/* ===== blog ===== */

/* ===== fiduciary page ===== */
.join-box.approach {
  border: 1px solid var(--gray-500);
  box-shadow: 0px 4px 56.9px 0px rgba(0, 0, 0, 0.05);
  border-radius: var(--size-20);
}

.join-box.approach p {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.why-this-matters .container {
  max-width: 1155px;
}

.why-this-matters .shape.shape-top img {
  margin-top: -5px;
}

.why-this-matters .img-cover {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/0.5963;
}

/* ===== fiduciary page ===== */

/* ===== custom-content-box ===== */
.custom-content-box p+p {
  padding-top: 8px;
}

.custom-content-box hr {
  margin: var(--size-40) 0;
}

.custom-content-box h2 {
  font-size: var(--h2);
  font-family: var(--font-secondary);
  padding-bottom: var(--size-30);
}

.custom-content-box h3 {
  font-size: var(--h3);
  font-family: var(--font-secondary);
  padding-bottom: var(--size-20);
}

.custom-content-box h4 {
  font-size: var(--h5);
  font-weight: 700;
  font-family: var(--font-base);
  padding: var(--size-20) 0;
}

/* ===== custom-content-box ===== */

/* ===== contact-us ===== */

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -14px;
  row-gap: 28px;
}

.form-row>div {
  padding: 0 14px;
}

.form-row select.wpcf7-form-control,
.form-row .form-control {
  font-size: var(--h6);
  font-weight: 500;
  color: var(--primary);
  padding: 0 var(--size-30);
  height: 60px;
  width: 100%;
  border: transparent;
  background: var(--primary-600);
  border-radius: 100px;
  outline: none;
  box-shadow: none;
}

.form-row textarea.form-control {
  min-height: 144px;
  padding: 20px;
  border-radius: 10px;
}

.form-row select.wpcf7-form-control,
.form-row select.form-control {
  appearance: none;
  background: url(../images/icons/menu-arrow.svg) no-repeat center right 25px !important;
  padding-right: 30px;
}

.contact-us .contact-info {
  max-width: 438px;
}

.contact-us .contact-info ul {
  display: flex;
  flex-direction: column;
}

.contact-us .contact-info ul li {
  font-size: var(--h5);
  color: rgba(0, 0, 0, 0.7);
  padding: 23px 0;
}

.contact-us .contact-info ul li:not(:last-child) {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 50%, transparent 50%) bottom / 12px 1px repeat-x;
}

.contact-us .contact-info ul li a {
  display: inline-flex;
  align-items: baseline;
  column-gap: 8px;
  color: currentColor;
  transition: var(--transition);
}

.contact-us .contact-info ul li .icon {
  color: var(--primary);
}

.contact-us .form-row {
  row-gap: 10px;
}

.contact-us .form-row select.wpcf7-form-control,
.contact-us .form-row .form-control {
  background: var(--white);
  border: 1px solid var(--primary);
}

.contact-us .form-row textarea.form-control {
  min-height: 213px;
}

/* ===== contact-us ===== */

/* === DONATE === */

.donate-wrap .sub-text {
  max-width: 800px;
}

.donate-wrap .donate-form .radio-btn input {
  display: none;
}

.donate-wrap .donate-form .radio-btn label {
  min-width: 158px;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: 1;
  font-weight: 700;
  color: var(--gray-800);
  border-radius: 5px;
  border: 1px solid var(--gray-800);
  background: var(--white);
  padding: 16px 10px;
  transition: var(--transition);
}

.donate-wrap .donate-form .radio-btn input:checked+label {
  color: var(--white);
  border-color: var(--primary);
  background: var(--primary);
}

.donate-wrap .donate-form {
  max-width: 990px;
  padding: var(--size-40);
  background: var(--gray-700);
}

.donate-wrap .donate-form h4 {
  font-size: clamp(18px, 1.25vw, 24px);
  color: var(--primary);
}

.donate-wrap .donate-form .nav {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  row-gap: 10px;
  border: 0;
}

.donate-wrap .donate-form .nav li {
  width: 50%;
  padding: 0 15px;
}

.donate-wrap .donate-form .nav li button {
  width: 100%;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: 1;
  font-weight: 700;
  color: var(--gray-800);
  border-radius: 5px;
  border: 1px solid var(--gray-800);
  background: var(--white);
  padding: 16px 10px;
  transition: var(--transition);
}

.donate-wrap .donate-form .nav li button:is(:hover, .active) {
  color: var(--white);
  border-color: var(--primary);
  background: var(--primary);
}

.donate-wrap .tab-content .tab-pane ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  row-gap: 10px;
}

.donate-wrap .tab-content .tab-pane ul li {
  padding: 0 15px;
}

.donate-wrap .donate-form .select-ammout {
  padding-bottom: 8px;
  padding-left: 18px;
  padding-right: 18px;
  display: inline-flex;
  font-size: var(--h4);
  line-height: 1;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.donate-wrap .donate-form .remember input {
  display: none;
}

.donate-wrap .donate-form .remember label {
  cursor: pointer;
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary);
  padding: 5px 0 5px 45px;
  position: relative;
}

.donate-wrap .donate-form .remember label::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: clamp(24px, 1.46vw, 28px);
  height: clamp(24px, 1.46vw, 28px);
  background: var(--white);
  border: 1px solid var(--primary);
  border-radius: 5px;
}

.donate-wrap .donate-form .remember label::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 9px;
  width: 10px;
  height: 17px;
  border-right: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  transform: rotate(45deg);
  transition: var(--transition);
  opacity: 0;
}

.donate-wrap .donate-form .remember input:checked+label::after {
  opacity: 1;
}


/* === DONATE === */

/* ===== DONATION PAGE ===== */

/* Intro Box Override */
.donate-intro-box {
  margin-top: -130px;
}

.donate-tagline {
  font-size: var(--text-md);
  font-family: var(--font-secondary);
  color: var(--primary);
  font-style: italic;
  line-height: 1.5;
}

.donate-form-embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* Impact Cards */
.gift-builds-wrap {
  background: var(--gray-600);
}

.impact-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 30px;
  height: 100%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}

.impact-card:hover {
  border-bottom-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(136, 102, 56, 0.15);
}

.impact-card .impact-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 16px;
}

.impact-card .h5 {
  color: var(--gray-900);
  padding-bottom: 12px;
}

.impact-card p {
  color: rgba(45, 45, 45, 0.75);
}

.donate-note {
  color: var(--primary-dark);
  font-family: var(--font-secondary);
}

/* Fundraising Why Section */
.fundraise-why-wrap {
  padding: var(--size-80) 0;
}

.fundraise-why-box {
  background: var(--primary-dark);
  border-radius: 16px;
  padding: var(--size-80) 60px;
}

.fundraise-steps {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.fundraise-step {
  display: flex;
  column-gap: 24px;
  align-items: flex-start;
}

.fundraise-step .step-number {
  font-size: clamp(28px, 3.16vw, 50px);
  font-family: var(--font-secondary);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 56px;
}

.fundraise-step .step-content .h5 {
  padding-bottom: 8px;
}

.fundraise-step .step-content p {
  opacity: 0.8;
}

/* Impact Tiers */
.tier-card {
  background: var(--primary-dark);
  border-radius: 16px;
  padding: 40px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(66, 48, 28, 0.3);
}

.tier-card .tier-amount {
  font-size: clamp(32px, 3.8vw, 60px);
  font-family: var(--font-secondary);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.tier-card .tier-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  padding: 10px 0 16px;
}

.tier-card p {
  color: rgba(255, 255, 255, 0.75);
  flex-grow: 1;
  margin-bottom: 24px;
}

.tier-card .btn.btn-white {
  font-size: 14px;
  padding: 16px 24px;
  margin-top: auto;
}

.tier-card-highlight {
  background: var(--primary);
}

.tier-card-highlight .tier-label {
  color: var(--white);
  opacity: 0.8;
}

.tier-badge {
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--white);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 40px;
  transform: rotate(35deg);
}

/* Monthly Giving Block */
.monthly-giving-box {
  background: var(--gray-600);
  border-radius: 16px;
  padding: var(--size-60) 40px;
  border: 1px solid var(--gray-500);
}

.monthly-icon {
  font-size: 40px;
  line-height: 1;
}

.monthly-giving-box .h4 {
  color: var(--gray-900);
}

.monthly-giving-box p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(45, 45, 45, 0.75);
}

/* Promise Section */
.promise-wrap {
  background: var(--gray-700);
}

.promise-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.promise-icon {
  font-size: 48px;
  line-height: 1;
}

.promise-box .h2 {
  color: var(--primary-dark);
}

.promise-text {
  color: rgba(45, 45, 45, 0.8);
}

.promise-text p {
  font-size: var(--text-md);
  font-family: var(--font-secondary);
  line-height: 1.7;
}

.promise-text .promise-emphasize {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
  padding-top: 16px;
}

.btn-outline-promise {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: transparent;
  border: 2px solid var(--primary-dark);
  border-radius: 100px;
  padding: 20px 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-outline-promise:hover,
.btn-outline-promise:focus {
  color: var(--white);
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 991px) {
  .fundraise-why-box {
    padding: var(--size-60) 30px;
  }

  .impact-card {
    padding: 28px 22px;
  }
}

@media (max-width: 767px) {
  .donate-intro-box {
    margin-top: -60px;
  }

  .fundraise-why-box {
    padding: var(--size-50) 20px;
  }

  .tier-card {
    padding: 32px 22px;
  }

  .monthly-giving-box {
    padding: var(--size-50) 24px;
  }

  .promise-text p {
    font-size: var(--base);
  }
}

/* ===== DONATION PAGE ===== */

/* ===== popup ===== */
.popup {
  max-width: 500px;
  width: 100%;
}
.popup .f-button {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 1;
  color: #000;
  transition: var(--transition);
}
.popup .f-button:hover {
  color: var(--primary);
}
/* ===== popup ===== */