@charset "UTF-8";

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

  /* new-var */
  --primary: #4C711D;
  --primary-light: #F6FFEB;
  --secondary: #573393;
  --secondary-light: #F8F4FF;
  --brown:#764200;
  --brown-light:#FFF3E3;
  --orange:#FD7E37;
  --green:#86C455;
  --dark-olive-green:#0F1B00;
  --lavender-white:#F8F4FF;
  --cream-white:#FFF9F1;

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

  --font-base: "DM Sans", system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-secondary: "Plus Jakarta Sans", system-ui, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  --h1: clamp(30px, 3.797vw, 60px);
  --h2: clamp(22px, 2.532vw, 40px);
  --h3: clamp(20px, 2.025vw, 32px);
  --h4: clamp(18px, 1.646vw, 26px);
  --h5: clamp(18px, 1.519vw, 24px);
  --h6: clamp(16px, 1.266vw, 20px);

  --title-30: clamp(22px, 1.9vw, 30px); 

  --base: clamp(16px, 1.01vw, 16px);
  --text-sm: clamp(16px, 1.14vw, 18px);
  --text-md: clamp(16px, 1.27vw, 20px);
  --text-lg: clamp(17px, 1.39vw, 22px);
  --text-xl: clamp(18px, 1.52vw, 24px);
  --text-2xl: clamp(20px, 1.65vw, 26px);
  --text-3xl: clamp(22px, 1.9vw, 30px);

  --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.70vw, 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.80vw, 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.90vw, 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.875;
  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(--secondary);
  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: 700;
  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: rgba(0, 0, 0, 0.4);
}

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

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

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

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

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

.section {
  position: relative;
}

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

.h1 {
  font-size: var(--h1);
  line-height: 126%;
  letter-spacing: -0.034em;
}

.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: 120%;
}

.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-sm {
  font-size: var(--text-sm);
  line-height: 1.6666;
}

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

.text-lg {
  font-size: var(--text-lg);
  line-height: 1.363;
}

.text-xl {
  font-size: var(--text-xl);
  line-height: 1.4166;
}

.text-2xl {
  font-size: var(--text-2xl);
  line-height: 1.461;
}

.text-3xl {
  font-size: var(--text-3xl);
  line-height: 100%;
}

.opacity-70 {
  opacity: 0.70;
}

.text-primary {
  color: var(--primary) !important;
}

.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-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-0 {
  margin: 0;
  row-gap: 0;
}

.gap-0 > div {
  padding: 0;
}

.text-secondary {
  color: var(--secondary) !important;
}
.text-green {
  color: var(--green) !important;
}

/* 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;
}

.image-box {
  position: relative;
  overflow: hidden;
}

.image-box .image-reveal-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 2;
}

.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: 10px;
  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
==============================================================*/
.footer-wrap .newsletter .ctct-form-wrapper .ctct-form-field.ctct-form-field-submit input[type="submit"],
.btn {
  font-family: var(--font-base);
  font-size: 18px;
  line-height: 1.1112;
  font-weight: 700;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  column-gap: clamp(20px, 2.53vw, 40px); 
  color: var(--white);
  background: var(--primary);
  border-radius: 0px;
  padding: 20px 30px;
  transition: var(--transition);
  box-shadow: none;
  outline: none;
  text-transform: capitalize;
  border: 0;
  text-align: left;
}
.btn .icon{
  width: 20px;
  height: auto;
}

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

.footer-wrap .newsletter .ctct-form-wrapper .ctct-form-field.ctct-form-field-submit input[type="submit"],
.btn.btn-primary,
.btn.btn-secondary:is(:hover, :focus, :active) {
  color: var(--white);
  background: var(--primary);
  border: transparent;
}

.footer-wrap .newsletter .ctct-form-wrapper .ctct-form-field.ctct-form-field-submit input[type="submit"]:is(:hover, :focus, :active),
.btn.btn-secondary,
.btn.btn-primary:is(:hover, :focus, :active) {
  color: var(--white);
  background: var(--secondary);
  border: transparent;
}

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

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

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

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

.btn.btn-link {
  padding: 0;
  background: transparent;
  text-decoration: none;
  column-gap: 6px;
}
.btn.btn-link.btn-secondary{
  color: var(--secondary);
}
.btn.btn-link.btn-secondary.btn:is(:hover, :focus, :active){
  background: transparent;
  color: var(--primary);
}

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

.title-wrap {
  position: relative;
}
.title-wrap .sub-title {
  font-family: var(--font-base);
  font-size: var(--h6);
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: var(--size-20);
}

.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);
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header .logo a {
  width: 319px;
  display: inline-flex;
  transition: var(--transition);
}

header .logo a :is(img, svg) {
  width: 100%;
  height: auto;
}
header .logo a svg path {
  transition: var(--transition);
}

header .header-menu {
  padding: 20px 0 20px 10.4%;
}

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

header .header-menu .menu > ul > li {
  display: inline-flex;
  position: relative;
}

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: 20px 0;
}

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

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:not(.sticky) header .logo a svg path{
  fill: var(--white);
}

.header-wrap.sticky .header-menu .menu > ul > li > a {
  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(--secondary);
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 25px;
}

/* Inputs */
.contact-form .form-group input, .contact-form .form-group textarea {
  width: 100%;
  padding: 25px 32px;
  border: 1px solid #DFDFDF;
  background: transparent;
  font-size: 18px;
  outline: none;
  border-radius: 0px;
}

.contact-form .form-group


.contact-form .form-group .form-control::-webkit-input-placeholder{
  opacity: 1;
  color: var(--black);
}

.contact-form .form-group .form-control:-moz-placeholder {
  opacity: 1;
  color: var(--black);
}

.contact-form .form-group .form-control::-moz-placeholder {
  opacity: 1;
  color: var(--black);
}

.contact-form .form-group .form-control:-ms-input-placeholder {
  opacity: 1;
  color: var(--black);
}
.contact-form .form-group .form-control::placeholder {
  opacity: 1;
  color: var(--black);
}


/* Textarea height */
.contact-form .form-group textarea {
  height: 150px;
  resize: none;
}

/* Label default (inside field) */
.contact-form .form-group label {
  display: none;
  position: absolute;
  top: 50%;
  left: 28px;
  transform: translateY(-50%);
  padding: 0 5px;
  color: #222;
  transition: 0.3s ease;
  pointer-events: none;
  font-size: 18px;
  font-weight: bold;
}
.contact-form {
  margin-top: 20px;
}
/* Red star */
.contact-form .form-group label span {
  color: #f00;
  font-size: 18px;
}

/* On focus OR when filled */
.contact-form .form-group input:focus + label,
.contact-form .form-group input:not(:placeholder-shown) + label,
.contact-form .form-group textarea:focus + label,
.contact-form .form-group textarea:not(:placeholder-shown) + label {
  top: 15px;
  font-size: 12px;
  color: #4b6f1d;
}


.contact-form .form-group .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  font-size: 14px;
}

/* Button */
.btn-submit {
  background: #4b6f1d;
  color: #fff;
  padding: 15px 35px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.btn-submit span {
  margin-left: 10px;
}

.btn-submit:hover {
  background: #3c5a17;
}
.supported-living-content.secondary p.no-margin.mb-20 {
  margin-bottom: 20px;
}
.tribe-events-header__events-bar.tribe-events-c-events-bar.tribe-events-c-events-bar--border {
  border: none;
  padding: 0px;
}
#tribe-events-search-container {
  border: 1px solid #D9D9D9;
  padding: 20px;
}
.tribe-common-form-control-text.tribe-events-c-search__input-control.tribe-events-c-search__input-control--keyword {
  margin: 0px;
}
.tribe-common-c-svgicon.tribe-common-c-svgicon--search.tribe-events-c-search__input-control-icon-svg {
  width: 24px;
  height: 24px;
  color: #4C711D;
}
#tribe-events-events-bar-keyword::placeholder {
  color: white;
}
.tribe-common--breakpoint-medium.tribe-events .tribe-events-header--has-event-search .tribe-events-c-events-bar {
  border: none;
}
.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-view-selector--tabs .tribe-events-c-view-selector__list-item-link {
  padding: 0px !important;
}
/*.tribe-events-c-subscribe-dropdown__container {
  display: none !important;
}*/
#tribe-events-pg-template {
  width: 100%;
  max-width: 100% !important;
  padding: 0px !important;
}
p + p {
  margin: 0px !important;
}
.tribe-events-single-event-description .btn.btn-primary {
  margin-bottom: 40px;
  margin-top: 20px;
}
.tribe-events-event-image img {
  width: 100%;
}
.event-card {
  padding: 40px !important;
  background: white;
}
.tribe-common.tribe-events {
  background: #fcfcfc !important;
}
.custom-event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.event-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.custom-event-grid {
  padding-bottom: 50px !important;
}
.event-image {
  padding-bottom: 30px !important;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.event-content {
    padding: 15px;
}
.tribe-common--breakpoint-full.tribe-events .tribe-events-c-top-bar__datepicker-desktop {
  font-size: 18px !important;
  font-weight: bold;
}
body .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-top-bar__nav {
  display: none !important;
}
.tribe-common--breakpoint-medium.tribe-common .tribe-common-c-btn-border-small, .tribe-common--breakpoint-medium.tribe-common a.tribe-common-c-btn-border-small {
  font-size: 18px !important;
  color: black !important;
  border: none;
  padding: 0px !important;
  margin-right: 25px !important;
}
.event-title {
  font-size: 24px;
  font-weight: bold !important;
}
.event-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px !important;
}
.event-date {
  font-size: 18px;
  color: black;
  margin-bottom: 20px !important;
  line-height: normal;
}
.event-date svg {
  margin-right: 10px;
}

.event-excerpt {
    font-size: 14px;
    margin-bottom: 15px;
}

.event-btn {
    display: inline-block;
    padding: 8px 15px;
    background: #0073aa;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}
.tribe-events .tribe-events-c-search__button, 
.tribe-events button.tribe-events-c-search__button {
  background: #4C711D !important;
  border-radius: 0px !important;
  font-size: 18px !important;
  font-weight: bold !important;
  padding: 15px 25px !important;
}
.tribe-events-c-view-selector__list {
  border: 1px solid #D9D9D9 !important;
}
.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-view-selector--tabs .tribe-events-c-view-selector__list-item--active .tribe-events-c-view-selector__list-item-link span {
  color: #4C711D !important;
}
.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-view-selector--tabs .tribe-events-c-view-selector__list-item-link span {
  font-size: 18px !important;
}
.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-view-selector--tabs .tribe-events-c-view-selector__list li {
  padding: 0px !important;
  min-width: 115px;
  text-align: center;
}
.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-view-selector--tabs .tribe-events-c-view-selector__list-item--active .tribe-events-c-view-selector__list-item-link::after {
  background: #4C711D !important;
}
#tribe-events-events-bar-keyword {
  padding-left: 50px;
  font-size: 18px;
}
.tribe-events-single-event-title {
  font-size: 60px !important;
}
.tribe-events-schedule.tribe-clearfix {
  font-size: 26px !important;
  font-weight: bold;
  margin: 30px 0px !important;
}
.tribe-events-single .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button {
  color: var(--white);
  background: var(--primary);
  border: transparent;
  font-family: var(--font-base);
  font-size: 18px;
  line-height: 1.1112;
  font-weight: 700;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  column-gap: clamp(20px, 2.53vw, 40px);
  color: var(--white);
  background: var(--primary);
  border-radius: 0px;
  padding: 20px 30px;
  transition: var(--transition);
  box-shadow: none;
  outline: none;
  text-transform: capitalize;
  border: 0;
  text-align: left;
  width: auto;
}
.tribe-events-single .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:is(:hover, :focus, :active) {
  color: var(--white);
  background: var(--secondary);
  border: transparent;
}
.tribe-events .tribe-events-c-view-selector__list-item-link {
  white-space: nowrap;
  font-size: 18px !important;
}
.tribe-events .tribe-events-c-view-selector__list-item-icon {
  line-height: 18px !important;
}

@media (max-width: 1680px) { 
  header .logo a {
    width: 250px;
  }
  header .header-menu {
    padding: 15px 0 15px 50px;
  }
  header .header-menu .menu > ul {
    column-gap: 40px;
  }
  header .header-menu .menu > ul > li > a {
    font-size: 17px;
  }
}


@media (max-width: 1280px) {
  header .logo a {
    width: 180px;
  }
  header .header-menu {
    padding: 10px 0 10px 30px;
  }
  header .header-menu .menu > ul {
    column-gap: 20px;
  }
}

@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 {
    margin-left: auto;
  }
  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-arrow {
    display: none;
  }
  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);
  }
}

@media (max-width: 1100px) {
  .header-wrap header {
    padding: 15px;
  }

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

  header .logo a {
    width: 150px;
  }

  .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(--secondary) !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(--secondary);
  }
  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;
  }
  .header-wrap.sticky header .logo {
    top: initial;
  }
  .header-wrap.sticky .container > .menu-toggle button{
    color: var(--secondary);
  }
}
@media (max-width: 1080px) {
  .custom-event-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .content-images-row img,
  .supported-living-content img {
    width: 100%;
  }
  .f-40-heading {
    font-size: 28px !important;
  }
  .custom-event-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .we-help-hero-sec {
    padding: 20px !important;
  }
  .we-help-hero-sec {
    font-size: 22px !important;
  }
}
/* === HEADER === */

/* === FOOTER === */
.footer-wrap {
  background: var(--dark-olive-green);
}

.footer-wrap .shape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(100px, 17.41vw, 275px);
}

.footer-wrap .newsletter {
  display: flex;  
  flex-wrap: wrap;
  row-gap: 20px;
}
.footer-wrap .newsletter .title-30 {
  font-family: var(--font-base);
}
.footer-wrap .newsletter .col-left {
  padding-right: var(--size-80);
  width: 58.144%;
}
.footer-wrap .newsletter .col-right {
  width: 41.856%;
}
.footer-wrap .newsletter .ctct-form-wrapper,
.footer-wrap .newsletter .input-box {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  border: 1px solid var(--white);
}
.footer-wrap .newsletter .ctct-form-wrapper .ctct-form-field {
  margin: 0 !important;
}
.footer-wrap .newsletter .ctct-form-wrapper .ctct-form-field.ctct-form-field-email {
  width: 100%;
}
.footer-wrap .newsletter .ctct-form-wrapper .ctct-label-top > label {
  display: none;
}
.footer-wrap .newsletter .ctct-form-wrapper .ctct-email,
.footer-wrap .newsletter .input-box input.form-control {
  font-size: 20px;
  line-height: 1;
  color: var(--white);
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 5px 0;
  box-shadow: 0;
  outline: none;
}
.footer-wrap .newsletter .ctct-form-wrapper .ctct-email:focus,
.footer-wrap .newsletter .input-box input.form-control:focus{
  outline: none;
  box-shadow: none;
}

.footer-wrap .newsletter .ctct-form-wrapper .ctct-email::-webkit-input-placeholder,
.footer-wrap .newsletter .input-box input.form-control::-webkit-input-placeholder {
  color: var(--white);
}

.footer-wrap .newsletter .ctct-form-wrapper .ctct-email:-moz-placeholder,
.footer-wrap .newsletter .input-box input.form-control:-moz-placeholder {
  color: var(--white);
}

.footer-wrap .newsletter .ctct-form-wrapper .ctct-email::-moz-placeholder,
.footer-wrap .newsletter .input-box input.form-control::-moz-placeholder {
  color: var(--white);
}

.footer-wrap .newsletter .ctct-form-wrapper .ctct-email:-ms-input-placeholder,
.footer-wrap .newsletter .input-box input.form-control:-ms-input-placeholder {
  color: var(--white);
}

.footer-wrap .newsletter .ctct-form-wrapper .ctct-email::placeholder,
.footer-wrap .newsletter .input-box input.form-control::placeholder {
  color: var(--white);
}


.footer-wrap .newsletter .ctct-form-wrapper .ctct-form-field.ctct-form-field-submit input[type="submit"],
.footer-wrap .newsletter .input-box input.btn {
  flex-shrink: 0;
  padding: 12px 25px;
}
.footer-wrap .footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-wrap .footer-center {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-wrap .footer-logo a {
  display: inline-flex;
  width: clamp(220px, 20.44vw, 323px);
  transition: var(--transition);
}
.footer-wrap .footer-logo a img {
  width: 100%;
}
.footer-wrap .footer-menu h3{
  color: var(--white);
  padding-bottom: var(--size-20);
}
.footer-wrap .footer-menu ul{
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.footer-wrap .footer-menu ul li{
  display: inline-flex;
}
.footer-wrap .footer-menu ul li a {
  display: inline-flex;
  color: var(--white);
  transition: var(--transition);
}
.footer-wrap .footer-menu ul li a:hover {
  color: var(--primary);
}
.footer-wrap .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
  line-height: 15px;
  color: var(--white);
  text-align: center;
}
.footer-wrap .footer-bottom a {
  color: var(--white);
  transition: var(--transition);
}
.footer-wrap .footer-bottom a:hover {
  color: var(--primary);
}
.footer-wrap .footer-bottom p + p{
  padding: 0;
}

/* === 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(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.banner::after{
  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 {
  position: relative;
  z-index: 1;
}

.banner.hero-banner .banner-content {
  max-width: 737px;
  padding: clamp(120px, 16.27vw, 257px) 0 clamp(80px, 10.76vw, 170px);
}

.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: -11%;
  bottom: 0;
  max-width: 707px;
}

/*.banner.inner-banner .banner-bg img {
  object-position: center right;
}*/
.banner.inner-banner {
  padding: clamp(160px, 16.46vw, 280px) 0 28px;
}
.banner.inner-banner nav {
  padding-top: clamp(70px, 13.04vw, 206px);
}
.banner.inner-banner nav ol {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
}
.banner.inner-banner nav ol li {
  font-size: var(--text-sm);
  line-height: 1.666;
  color: var(--white);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  padding: 0;
}
.banner.inner-banner nav ol li a {
  color: currentColor;
  transition: var(--transition);
}
.banner.inner-banner nav ol li a:hover{
  color: var(--secondary);
}
.banner.inner-banner nav ol li:not(:last-child)::after{
  content: "";
  width: 20px;
  height: 20px;
  margin: 0 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='20' viewBox='0 0 19 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.78955 15.8337L8.74788 10.0003L4.78955 4.16699H6.72913L10.6875 10.0003L6.72913 15.8337H4.78955ZM9.49997 15.8337L13.4583 10.0003L9.49997 4.16699H11.4396L15.3979 10.0003L11.4396 15.8337H9.49997Z' fill='%23E8EAED'/%3E%3C/svg%3E%0A");
}
.banner.inner-banner nav ol li::before{
  display: none;
}

.banner.inner-banner::before {
  z-index: 1;
  opacity: 0.8;
  background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);

}
.banner.inner-banner::after {
  z-index: 1;
  opacity: 0.8;
  background: linear-gradient(180deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.banner.inner-banner .shape {
  position: absolute;
  bottom: 0;
  right: 8vw;
  max-width: 645px;
  mix-blend-mode: soft-light;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0.5;
}

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

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

/* ===== DONATE BANNER ===== */
.donate-banner .bg-image {
  position: absolute;
  top: var(--size-60);
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.donate-banner .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.donate-banner .container{
  display: flex;
  justify-content: space-between;
}
.donate-banner .banner-info {
  flex-shrink: 0;
  position: relative;
  padding: var(--size-200) 0 var(--size-150);
  z-index: 1;
  max-width: 520px;
  color: var(--black);
  font-weight: 700;
}
.donate-banner .banner-info h2 {
  padding-bottom: var(--size-40);
}
.donate-banner .banner-info .btn-wrap {
  padding-top: var(--size-40);
}
.donate-banner .img-box {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-right: -25%;
}
.donate-banner .img-box img {
  width: 100%;
}
/* ===== DONATE BANNER ===== */

/* ===== news blog event ===== */
.news-box {
  height: 100%;
 width: 100%; 
 padding: var(--size-40);
 background: var(--white);
 box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.05);
 display: flex;
 flex-direction: column;
 row-gap: var(--size-30);
}
.news-box .news-img {
  aspect-ratio: 1/1.0331;
} 
.news-box .category {
  position: absolute;
  top: 50px;
  left: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.news-box .category li {
  display: inline-flex;
}
.news-box .category li a { 
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  padding: 10px 15px;
  color: var(--black);
  background: var(--white);
}
.news-box .news-content .news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.news-box .news-content .news-meta li {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: var(--black);
  display: inline-flex;
  column-gap: 10px;
}

.news-box .news-content .news-meta li a {
  color: currentColor;
  transition: var(--transition);
}
.news-box .news-content .news-meta li a:hover {
  color: var(--primary);
}
.news-box .news-content .news-meta li .icon {
  opacity: 0.5;
}
.news-box .news-content .news-title {
  padding-top: var(--size-20);
}
.news-box .news-content .news-title a {
  display: inline-flex;
  color: currentColor;
  transition: var(--transition);
}
.news-box .news-content .news-title a:hover {
  color: var(--primary);
}
 
.latest-news {
  overflow: hidden;
}
.latest-news .title-column {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.latest-news .title-column .btn-wrap {
  display: inline-flex;
  column-gap: 10px;
}
.latest-news .title-column .btn-wrap button {
  display: inline-flex;
  border: 0;
  background: transparent;
  color: var(--primary);
}
.latest-news .title-column .btn-wrap button .icon{
  width: var(--size-50);
}
.latest-news-slider.swiper {
  overflow: visible;
}
.latest-news-slider.swiper .swiper-slide{
  height: initial;
}
/* ===== news blog event ===== */

/* ===== HOMEPAGE ===== */

.about-content .check-list ul {
  display: flex;
  flex-direction: column;
  margin: -33px 0;
}
.about-content .check-list ul li {
  padding: 33px 0;
  font-size: var(--h4);
  line-height: 1.461;
  font-weight: 700;
  color: var(--secondary);
  padding-left: 50px;
  background: url("../images/icons/check-icon.svg") no-repeat  left top 33px;
}
.about-content .check-list ul li + li {
  border-top: 1px solid;
  border-image-source: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  border-image-slice: 1;
}
.about-content .shape.shape-right{
  top: 50%;
}

.how-we-help {
  padding-bottom: clamp(180px, 42.66vw, 462px);
}
.how-we-help .shape.shape-circle {
  bottom: 24%;
  left: 4%;
  width: clamp(180px, 19.68vw, 311px);
}
.how-we-help .shape.shape-leaf {
  bottom: 0;
}
.how-we-help .shape.shape-leaf .icon{
  mix-blend-mode: soft-light;
}

.how-we-help .bg-image {
  position: absolute;
  top: 321px;
  left: 0;
  right: 0;
  bottom: 0;
}
.how-we-help .bg-image::after,
.how-we-help .bg-image::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}
.how-we-help .bg-image >img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.how-we-help .bg-image .image {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  text-align: center;
}

.how-we-help-box {
  position: relative;
  z-index: 1;
  border-top: 4px solid var(--brown);
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  box-shadow: 0px -40px 120px -20px #00000014;
  padding: var(--size-55) var(--size-80) var(--size-80);
}
.how-we-help-box .help-list ul {
  border-top: 1px solid #D9D9D9;
  border-left: 1px solid #D9D9D9;
}
.how-we-help-box .help-list ul li {
  border-right: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
}
.how-we-help-box .help-list ul li .help-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 27px 38px;
  align-items: center;
}
.how-we-help-box .help-list ul li .help-box .icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
}
.how-we-help-box .help-list ul li .help-box .icon img{
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.how-we-help-box .help-list ul li .help-box h3 { 
  color: var(--brown);
  font-family: var(--font-base);
  padding-top: 10px;
}
.how-we-help-box .help-list ul li .help-box p{
  line-height: 120%;
}

.our-impact .title-wrap .sub-title {
  padding-bottom: var(--size-40);
}
.our-impact .col{
  flex: initial;
  width: 100%;
}
.our-impact .img-cover-1 {
  aspect-ratio: 1/0.64869;
}
.our-impact .img-cover-2 {
  aspect-ratio: 1/1.21382;
}
.our-impact .wheelchair-icon {
  background: var(--white);
  position: absolute;
  top: clamp(100px, 15.7vw, 248px);
  right: 0;
  width: 100px;
  height: 100%;
}
.our-impact .wheelchair-icon .icon {
  width: 100%;
  height: 100px;
  display: grid;
  place-items: center;
  background: var(--secondary);
}

.our-impact .dash-list {
  padding: 125px 0 0 187px;
}
.our-impact .dash-list ul {
  display: flex;
  flex-direction: column;
  row-gap: 37px;
}
.our-impact .dash-list ul li {
  font-size: var(--h4);
  line-height: 1.4615;
  color: var(--secondary);
  padding-left: 37px;
  position: relative;
}
.our-impact .dash-list ul li::before {
  content: "";
  position: absolute;
  top: clamp(12px, 1.14vw, 18px);
  left: 0;
  width: 16px;
  height: 3px;
  background: currentColor;
}

.envision-action .shape.shape-leaf-2{
  z-index: 1;
  bottom: var(--size-120);
  opacity: 0.1;
}

.envision-action .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: var(--size-120);
  background: var(--secondary);
}
.envision-action .bg-image img {
  opacity: 0.2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.envision-action .bg-image::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 57%;
  background: linear-gradient(270deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.67;
  transform: rotate(-180deg);
}

.envision-action .title-wrap{
  max-width: 822px;
  margin: 0 auto;
}
.envision-action .envision-action-box {
  display: flex;
  flex-direction: column;
  row-gap: var(--size-40);
  position: relative;
  text-align: center;
  background: var(--white);
  border-bottom: 3px solid var(--secondary);
  padding: var(--size-90) var(--size-200) var(--size-100);
  z-index: 1;
  box-shadow: 0px 4px 100px 0px rgba(0, 0, 0, 0.1);
}
.envision-action .envision-action-box h3{
  font-size: var(--title-30);
  font-family: var(--font-base);
}
.envision-action .envision-action-box p {
  font-style: italic;
  text-align: center;
  line-height: 125%;
}

.mission-vision-wrap .shape.shape-right{
  bottom: var(--size-50);
}
.mission-vision-wrap .shape.shape-left{
  top: clamp(80px, 14.62vw, 231px);
}

.mission-vision {
  min-height: 341px;
  position: relative;
  padding: 45px 60px 60px;
  overflow: hidden;
}
.values-accordion > h3,
.mission-vision h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  position: relative;
  color: currentColor;
}
.values-accordion > h3 .icon,
.mission-vision h3 .icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
}
.values-accordion > h3 .icon img,
.mission-vision h3 .icon img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.mission-vision h3::after{
  content: "";
  position: absolute;
  top: 16px;
  left: -60px;
  height: 45px;
  width: 5px;
  background: currentColor;
}
.mission-vision p{
  color: var(--black);
}

.mission-vision .shape-icon {
  position: absolute;
  right: 0;
  bottom: 0px;
  color: var(--black);
}

.mission-vision.mission{
  color: var(--secondary);
  background: var(--secondary-light);
}
.mission-vision.mission .shape-icon{
  mix-blend-mode: soft-light;
}
.mission-vision.vision{
  color: var(--primary);
  background: var(--primary-light);
}
.mission-vision.vision .shape-icon{
  opacity: 0.02;
}
.mission-vision.values{
  color: var(--brown);
  background: var(--brown-light);
}
.mission-vision-wrap .list{
  row-gap: var(--size-50);
} 
.values-accordion h3 {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  padding-bottom: 28px;
  position: relative;
  color: var(--brown);
}
.values-accordion .accordion {
  display: flex;
  flex-direction: column;
}
.values-accordion .accordion .accordion-item {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--brown);
  padding: 24px 0;
}
.values-accordion .accordion .accordion-item:first-child {
  border-top: 1px solid var(--brown);
}
.values-accordion .accordion .accordion-item .accordion-header button {
  width: 100%;
  background: transparent;
  border: 0;
  font-size: var(--h4);
  line-height: 1.461;
  font-weight: 700;
  color: var(--brown);
  padding-right: 40px;
  position: relative;
  text-align: left;
}
.values-accordion .accordion .accordion-item .accordion-header button .icon {
  position: absolute;
  top: 0;
  right: 0;
  color: currentColor;
  z-index: 1;
  transition: var(--transition);
}
.values-accordion .accordion .accordion-item .accordion-header button:not(.collapsed) .icon{
  transform: rotate(180deg);
}
.values-accordion .accordion .accordion-item .accordion-body {
  padding: 15px 0 0;
  color: var(--black);
}

.mission-vision.step1{
  color: var(--secondary);
  background: var(--secondary-light);
}
.mission-vision.step1 .shape-icon{
  opacity: 0.02;
}
.mission-vision.step2{
  color: var(--primary);
  background: var(--primary-light);
}
.mission-vision.step2 .shape-icon{
  opacity: 0.02;
}
.mission-vision.step3{
  color: var(--brown);
  background: var(--brown-light);
}
.mission-vision.step3 .shape-icon{
  opacity: 0.02;
}
.steps-row .mission-vision {
  padding: 80px 60px 60px 60px;
  text-align: center;
  min-height: 252px;
  position: relative;
  overflow: inherit;
  width: 100%;
}
.text-title-green span {
  font-size: 24px;
  font-weight: bold;
  line-height: 38px;
}
.contact-content p {
  margin-bottom: 15px !important;
  font-size: 18px;
  color: #000;
  padding-top: 0px;
}
.content-subtitle {
  color: #4C711D;
  font-weight: bold;
  font-size: 26px;
  line-height: 38px;
}
.social.social-contact-form ul li a {
  color: black;
  border: 1px solid black;
}
.contact-content p a {
  color: black;
  text-decoration: underline;
}
.mission-step-count {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,-40px);
  z-index: 1111;
  width: 78px;
  height: 78px;
  text-align: center;
  line-height: 78px;
  font-size: 24px;
  font-weight: bold;
  border-radius: 100%;
  border: 5px solid white;
}
.steps-row .h1 {
  text-align: center;
}
.mission-step-count.step1{
  color: var(--secondary);
  background: var(--secondary-light);
}
.mission-step-count.step2{
  color: var(--primary);
  background: var(--primary-light);
}
.mission-step-count.step3{
  color: var(--brown);
  background: var(--brown-light);
}
.steps-row .mission-vision p {
  font-size: 24px;
  font-weight: bold;
  line-height: normal;
}
.mission-vision.step1 p {
  color: var(--secondary);
}
.mission-vision.step2 p {
  color: var(--primary);
}
.mission-vision.step3 p {
  color: var(--brown);
}
.envision-box {
  position: relative;
}
.envision-box .img-cover {
  aspect-ratio: 1/1.15625;
}

.envision-box.stl-1 .img-cover {
  background: var(--primary);
}
.envision-box.stl-2 .img-cover {
  background: var(--secondary);
}
.envision-box.stl-3 .img-cover {
  background: var(--brown);
}
.envision-box.stl-4 .img-cover {
  background: var(--orange);
}

.envision-box .img-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.envision-box .img-cover img {
  mix-blend-mode: luminosity;
}

.envision-box .envision-content {
  position: absolute;
  inset: 0;
  padding: var(--size-30) var(--size-70) var(--size-75);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  row-gap: 24px;
}

.envision-box .envision-content .h5 {
  color: var(--white);
  font-size: var(--title-30);
  font-family: var(--font-base);
}

.envision-wrap .envision-column {
  display: flex;
  flex-wrap: wrap;
}
.envision-wrap .envision-column .envision-item {
  width: 33.333%;
}
.envision-wrap .envision-column.col-50 .envision-item {
  width: 50%;
}
/* ===== HOMEPAGE ===== */


/* ===== Team page ===== */
.team-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding: var(--size-50);
  background: var(--white);
  text-align: center;
}
.team-box .team-img {
  aspect-ratio: 1/1;
}
.team-box .team-content .h5 {
  line-height: 1;
  font-family: var(--font-base);
}
.team-box .team-content p{
  font-size: var(--h6);
  color: rgba(0, 0, 0, 0.5);
}

.home.meet-team {
  background:var(--cream-white);
}

.home.meet-team .shape {
  position: absolute;
}
.home.meet-team .shape.shape-right {
  top: var(--size-160);
}
.home.meet-team .shape.shape-left {
  bottom: 0;
}

/* ===== Team page ===== */
/* ===== content-image ===== */
.content-image .img-cover {
  aspect-ratio: 1/0.8;
}
.content-image .content-box strong {
  color: var(--secondary);
}
/* ===== content-image ===== */

/* ===== section-impact ===== */
.section-impact .title-wrap {
  padding-bottom: clamp(30px, 4vw, 60px);
}
.impact-stats {
  display: flex;
  flex-direction: column;
}
.impact-stats .stat-number {
  font-family: var(--font-secondary);
  font-size: clamp(60px, 6vw, 100px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
}
.impact-stats .stat-title {
  font-family: var(--font-base);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: var(--size-40);
}
.impact-stats .progress-wrap {
  margin-bottom: var(--size-30);
}
.impact-stats .progress-wrap:last-child {
  margin-bottom: 0;
}
.impact-stats .progress-text {
  margin-bottom: 10px;
}
.impact-stats .progress-text p {
  font-size: var(--base);
  color: var(--black);
  max-width: 80%;
  line-height: 1.5;
}
.impact-stats .progress-text strong {
  font-size: var(--text-lg);
  color: var(--black);
  font-weight: 700;
  line-height: 1;
}
.impact-stats .progress {
  height: 10px;
  background-color: var(--primary-light);
  border-radius: 0;
  overflow: hidden;
}
.impact-stats .progress-bar {
  height: 100%;
  background-color: var(--primary);
}
.impact-video .img-cover {
  aspect-ratio: 16/9;
}
/* ===== section-impact ===== */

/* ===== section-our-programs ===== */
.program-card {
  background: #F2EBFF;
  box-shadow: 0px 4px 100px 0px rgba(0, 0, 0, 0.1);
}
.promo-content {
  padding: 40px;
}
.promo-content h5 {
  font-family: var(--font-base);
  color: #593593;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
.promo-content p {
  font-family: var(--font-base);
  color: #79757f;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
}
/* ===== section-our-programs ===== */

.supported-living-content p {
  margin-bottom: 40px;
  font-family: var(--font-base);
  font-size: 18px;
  line-height: 30px;
  padding: 0px;
}
.why-choose-us {
  background: #f2ebff;
  text-align: center;
}
.icon.mb-40 {
  margin-bottom: 40px;
}
.stat-number {
  font-size: 60px;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 40px;
}
.stat-label {
  font-size: 22px;
  color: #0E0D10;
  line-height: 28px;
}
.stat-label small {
  font-size: 18px;
}
.we-offer p {
  font-size: 18px;
}
.we-offer .text-base {
  max-width: 865px;
  margin: auto;
}
.we-offer .how-we-help-box {
  border-color: #4C711D;
}
.we-offer .how-we-help-box .help-list ul li .help-box p {
  font-weight: bold;
}
.we-offer .how-we-help-box .help-list ul li .help-box {
  padding: 40px 38px;
}
.how-we-help.we-offer {
  padding-bottom: clamp(180px, 42.66vw, 331px);
}
.join-reasons-sec .values-accordion .accordion .accordion-item {
  border-color: rgba(118, 66, 0, 0.2);
}
.values-accordion .accordion .accordion-item .accordion-body p {
  font-size: 18px;
}
.we-help-hero-sec-main {
  position: absolute;
  bottom: -100px;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}
.we-help-hero-sec {
  width: 100%;
  background: #593593;
  overflow: hidden;
  padding: 62px 250px;
  font-size: 30px;
  text-align: center;
  line-height: 38px;
  color: white;
}
.leaf-svg-back {
  position: absolute;
  opacity: 0.05;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.supported-living-content.join-our-team p {
  margin-bottom: 30px;
}
.supported-living-content p.subtitle {
  font-size: 26px;
}
.supported-living-content p.highlighted {
  color: #573393;
  font-weight: bold;
}
.supported-living-content img {
  float: right;
}
.learn-more-banner {
  background: #F2EBFF;
  padding: 50px;
  text-align: center;
}
.learn-more-banner h3 {
  color: #573393;
  font-size: 24px;
  font-weight: bold;
  line-height: 38px;
  font-family: var(--font-base);
  margin-bottom: 49px;
}
.bg-yellow {
  background: linear-gradient(180deg, #FFF9F1 0%, #FFF9F1 100%);
}
.sec-tagline {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 30px;
  color: #573393;
}
.impact.how-we-help-box {
  border-color: #593593;
}
.impact.how-we-help-box .impact-video img {
  height: auto;
  position: inherit;
}
.content-dtod-row .img-cover img {
  height: auto;
  position: inherit;
}
.bg-purple {
  background: linear-gradient(90deg, #fff 0%, #f2ebff 100%);
}
.bg-purple-solid {
  background: #f2ebff;
}
.envision-box.sml-image .img-cover {
  aspect-ratio: 1/0.8;
}
.content-images-row img {
  padding-bottom: 20px;
}
.supported-living-content p.no-margin {
  margin: 0px;
}
.supported-living-content.secondary p.no-margin {
  margin-bottom: 40px;
}
.supported-living-content p.no-margin + ul {
  margin-bottom: 40px;
}
.supported-living-content p.no-margin + ul li {
  font-weight: bold;
  color: black;
}
.supported-living-content p.no-margin + ul {
  margin-bottom: 40px;
  list-style: disc;
  list-style-position: inside;
  padding-left: 10px;
}
.supported-living-content.secondary p.no-margin.mb-20,
.supported-living-content p.no-margin.mb-20 + ul {
  margin-bottom: 20px;
}
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tag {
  background-color: #F2EBFF; /* light purple */
  color: #573393; /* darker purple text */
  padding: 2px 10px;
  border-radius: 0px;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  line-height: 30px;
}
.two-column-list {
  column-count: 2;
  column-gap: 30px;
}
.f-40-heading {
  font-size: 40px;
  line-height: normal;
  font-weight: bold;
  margin-bottom: 60px;
}
.back-each-sec {
  background: white;
  border-bottom: 2px solid #573393;
  text-align: center;
  padding: 80px 120px;
  box-shadow: 0px 84px 120px -20px rgba(0, 0, 0, 0.08);
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.5s;
}
.our-partners .org .back-each-sec img {
  transition: all 0.5s;
}
.our-partners .org .back-each-sec:hover img {
  transition: all 0.5s;
  transform: scale(1.3);
}
.back-each-sec.pad-change {
  padding: 62px 80px;
}
.partnerSwiper .swiper-slide:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: #ececec; /* border color */
}
.partnerSwiper .swiper-slide {
  padding-right: 37px;
}
.partnerSwiper .swiper-slide {
  height: 120px;              /* adjust as per design */
  display: flex;
  align-items: center;        /* vertical center */
  justify-content: center;    /* horizontal center */
  position: relative;
}
.content-box .h1.pb-30 {
  padding-bottom: 44px !important;
}
.staff-card {
  background: #573393;
  padding: 50px;
  text-align: center;
}
.staff-card img {
  margin-bottom: 28px;
}
.staff-name {
  font-size: 24px;
  font-weight: bold;
  color: white;
  line-height: 30px;
  margin-bottom: 5px;
}
.staff-position {
  color: #ab99c9;
  font-size: 20px;
  font-weight: normal;
  line-height: normal;
}
.board {
  column-count: 2;
  column-gap: 60px;
}

.board-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #f8f4ff 0%, #ffffff 100%);
  padding: 15px 25px;
  border-left: 3px solid #573393; /* purple line */
  font-size: 18px;
  break-inside: avoid;
  margin-bottom: 12px;
}

.name {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
}

.role {
  color: #777;
  font-size: 20px;
}
@media (min-width: 768px) {
  .border-md-start {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border-md-end {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 768px) {
  .board {
    column-count: 1;
  }
  .tribe-events .tribe-events-c-view-selector--tabs .tribe-events-c-view-selector__content {
    border: none !important;
    padding: 0px !important;
  }
}

/* ===== our story ===== */
.value-box {
  height: 100%;
  position: relative;
  padding: 60px 60px 90px;
}
.value-box span {
  position: absolute;
  top: -29px;
  left: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 100%;
  color: var(--white);
  padding: 15px 20px;
}
.value-box .icon {
  width: 47px;
  height: 45px;
  display: grid;
  place-content: center;
}
.value-box .icon img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.value-box h3 {
  font-size: clamp(18px, 1.77vw, 28px);
  line-height: 1.2;
  padding-top: var(--size-30);
  position: relative;
}
.value-box h3::after {
  content: "";
  position: absolute;
  top: 38px;
  left: -60px;
  width: 5px;
  height: 21px;
  background: currentColor;
}
.value-box .shape-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.02;
  overflow: hidden;
  width: 160px;
  height: 184px;
}
.value-box .shape-icon svg {
  position: relative;
  width: 100%;
  height: 100%;
  right: -38px;
}


.value-box.stl-1 {
  background: var(--secondary-light);
}
.value-box.stl-1 > span {
  background: #573393;
}
.value-box.stl-1 h3 {
  color: #573393;
}


.value-box.stl-2 {
  background: var(--primary-light);
}
.value-box.stl-2 > span {
  background: var(--primary);
}
.value-box.stl-2 h3 {
  color: var(--primary);
}

.value-box.stl-3 {
  background: var(--brown-light);
}
.value-box.stl-3 > span {
  background: var(--brown);
}
.value-box.stl-3 h3 {
  color: var(--brown);
}

.people-served-box{
  border-top: 4px solid var(--brown);
  box-shadow: 0px 0px 122.1px 0px rgba(0, 0, 0, 0.051);
}
.people-served-box .content-box {
  padding: var(--size-100) var(--size-60);
}
.people-served-box .img-cover {
  width: 100%;
}

.about-content.value .content-box p strong {
  color: var(--secondary);
}

/* ===== our story ===== */

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

.pagination li :is(button, a) {
  display: grid;
  place-items: center;
  height: 47px;
  border: 1px solid #D9D9D9;
  font-family: var(--font-base);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--black);
  background: transparent;
  transition: var(--transition);
}

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

.blog-single .blog-meta ul {
  display: inline-flex;
  flex-wrap: wrap;
  row-gap: 12px;
}
.blog-single .blog-meta ul li {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: var(--black);
}
.blog-single .blog-meta ul li:not(:last-child)::after {
  content: "|";
  margin: 0 23px;
}
.blog-single .blog-content :is(h3, h4, h5, h6, ul, ol) {
  padding: 30px 0 10px; 
  font-weight: 700;
}
.blog-single .blog-content :is(h3, h4, h5, h6, ul, ol):last-child {
  padding-bottom: 0;
}
.blog-single .blog-content :is(h3, h4, h5, h6, ul, ol):first-child {
  padding-top: 0;
}
.blog-single .blog-content :is(h3, h4, h5, h6) + :is(ul, ol){
  padding-top: 0;
}

.blog-single .blog-content h3,
.blog-single .blog-content p {
  font-size: 18px;
  line-height: 1.666;
  color: var(--black);
}
.blog-single .blog-content p + p {
  padding-top: 15px;
}
.blog-single .blog-content .category {
  display: flex;
  flex-wrap: wrap;
  gap: var(--size-20);
}
.blog-single .blog-content .category li {
  display: inline-flex;
  padding: 0;
}
.blog-single .blog-content .category li::after,
.blog-single .blog-content .category li::before {
  display: none;
}

.blog-single .blog-content .category li a {
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  color: var(--black);
  background: var(--img);
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
}
.blog-single .blog-content .category li a:hover{
  color: var(--white);
  background: var(--primary);
}

.blog-single .blog-content a {
  display: inline-block;
  color: currentColor;
  text-decoration: underline;
  transition: var(--transition);
}
.blog-single .blog-content a:hover {
  color: var(--primary);
}
.blog-single .blog-content :is(ul, ol) li {
  font-weight: 400;
}
.blog-single .blog-content.bullet > ul li:before {
  top: 12px;
  width: 5px;
  height: 5px;
  background: currentColor;
}
.blog-single .blog-content.bullet > ol li {
  margin-bottom: 0;
}
.blog-single .blog-content.bullet > ol li:before {
  color: currentColor;
}

/* === blog === */

.about-history img {
  float: right;
  margin: 0px 0 30px 30px;
}

@media (max-width: 991px) {
  .how-we-help.we-offer {
      padding-bottom: clamp(180px, 42.66vw, 462px);
  }
  .we-help-hero-sec-main {
    position: inherit;
    transform: none;
    left: auto;
    bottom: auto;
    padding: 0px;
  }
}



/* ===== Inquiry Section Start ===== */
.inquiry-form-wrap {
  background: var(--white, #fff);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.inquiry-form .input-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.inquiry-form label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color, #333);
  margin-bottom: 8px;
}

.inquiry-form .form-control {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  color: var(--text-color, #333);
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.inquiry-form .form-control:focus {
  border-color: var(--primary, #0751a5);
  background: var(--white, #fff);
  outline: none;
  box-shadow: 0 0 0 3px rgba(7, 81, 165, 0.1);
}

.form-fieldset {
  margin-bottom: 30px;
  padding: 24px;
  background: #f4f7fb;
  border-radius: 8px;
  border: 1px solid #e6ecf2;
}

.form-legend {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary, #0751a5);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  user-select: none;
}

.checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 2px solid #cbd5e1;
  border-radius: 4px;
  margin-right: 12px;
  transition: all 0.2s ease;
}

.checkbox-label:hover input ~ .checkmark {
  border-color: var(--primary, #0751a5);
}

.checkbox-label input:checked ~ .checkmark {
  background-color: var(--primary, #0751a5);
  border-color: var(--primary, #0751a5);
}

.radiomark {
  border-radius: 50%;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark:after {
  display: block;
}

.mt-30 {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .inquiry-form-wrap {
    padding: 24px 16px;
  }
  .checkbox-group {
    grid-template-columns: 1fr;
  }
}
/* ===== Inquiry Section End ===== */


.right-img-content-full .img-cover {
  width: 50%;
  margin: 0 0 30px 30px;
  float: right;
}