.Justly {
    text-align: justify;
}
/* Nav Dropdown */
/* About dropdown */
.ac-has-dropdown{ position:relative; }

.ac-dd-caret{
  margin-left: 8px;
  font-size: 12px;
  opacity: .75;
}

.ac-dropdown{
  position:absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background:#fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
  padding: 10px;
  margin: 0;
  list-style: none;
  display:none;
  z-index: 20000;
}

.ac-dropdown li a{
  display:block;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  color:#111;
  text-decoration:none;
  font-size: 13px;
  letter-spacing: .04em;
}

.ac-dropdown li a:hover{
  background: rgba(225,0,122,.08);
  color: var(--ac-pink);
}

/* Show on hover (desktop) */
@media (min-width: 821px){
  .ac-has-dropdown:hover .ac-dropdown,
  .ac-has-dropdown:focus-within .ac-dropdown{
    display:block;
  }
}

/* Mobile (menu is stacked) – keep dropdown always visible inside open menu */
@media (max-width: 820px){
  .ac-dropdown{
    position: static;
    display: block;
    box-shadow: none;
    border: 0;
    padding: 0;
    margin-top: 6px;
  }
  .ac-dropdown li a{
    padding: 10px 6px;
  }
  .ac-dd-caret{ display:none; }
}

/* Nav */
:root{
  --ac-pink:#e1007a;
  --ac-text:#111827;
  --ac-muted:#6b7280;
  --ac-border:rgba(17,24,39,.10);
  --ac-shadow:0 10px 25px rgba(0,0,0,.08);
  --ac-max:1200px;
}

.ac-container{
  width:min(var(--ac-max), calc(100% - 32px));
  margin:0 auto;
}

.ac-header{ position:relative; z-index:9999; background:#fff; }

/* TOP BAR */
.ac-topbar{
  background:#fff;
  border-bottom:1px solid var(--ac-border);
  will-change: transform, opacity;
  transition: transform .22s ease, opacity .18s ease;
}
.ac-topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:10px 0; /* reduced spacing */
}

.ac-brand{ display:flex; align-items:center; }
.ac-logo{ width:190px; height:auto; display:block; }

.ac-infogrid{
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.ac-info{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:240px;
}

.ac-icon{
  width:44px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--ac-pink);
  color:#fff;
  border-radius:10px;
  flex:0 0 44px;
  box-shadow: 0 10px 22px rgba(225,0,122,.22);
}
.ac-icon i{ font-size:18px; line-height:1; }

.ac-info-title{
  font-weight:800;
  color:var(--ac-text);
  font-size:15px;
  line-height:1.2;
}
.ac-info-sub{
  color:var(--ac-muted);
  font-size:13px;
  line-height:1.2;
  margin-top:2px;
}
.ac-link:hover{ color:var(--ac-pink); text-decoration:underline; }

/* NAV (sticky always) */
#acNavbar.ac-navbar{
  position: sticky;
  top: 0;
  z-index: 10000;
  background:#fff;
  border-bottom:1px solid var(--ac-border);
  transition: box-shadow .18s ease;
}
#acNavbar.ac-navbar.is-elevated{ box-shadow: var(--ac-shadow); }

.ac-navbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:8px 0; /* reduced spacing */
}

/* Menu */
.ac-menu{
  list-style:none;
  display:flex;
  align-items:center;
  gap:22px;
  padding:0;
  margin:0;
}
.ac-menu-link{
  font-weight:700;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:13px;
  color:#111;
  position:relative;
  padding:10px 0;
  transition: color .15s ease;
}
.ac-menu-link:hover,
.ac-menu-link.is-active{ color:var(--ac-pink); }

.ac-menu-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:2px;
  width:0;
  height:2px;
  background:var(--ac-pink);
  transition: width .18s ease;
}
.ac-menu-link:hover::after,
.ac-menu-link.is-active::after{ width:100%; }

/* Button */
.ac-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  background:var(--ac-pink);
  color:#fff;
  font-weight:800;
  letter-spacing:.06em;
  border-radius:8px;
  box-shadow: 0 12px 24px rgba(225,0,122,.22);
  transition: transform .14s ease, box-shadow .14s ease, opacity .14s ease;
  white-space:nowrap;
}
.ac-btn:hover{
  transform: translateY(-1px);
  opacity:.96;
  box-shadow: 0 16px 28px rgba(225,0,122,.26);
}

/* Spacer (IMPORTANT: nav height only -> no big blank space) */
.ac-header-spacer{ height: 0px; }

/* Hide top bar class (applied by JS) */
.ac-topbar.is-hidden{
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Mobile */
.ac-burger{
  display:none;
  border:0;
  background:transparent;
  padding:10px;
  cursor:pointer;
  border-radius:10px;
}
.ac-burger span{
  display:block;
  width:22px;
  height:2px;
  background:#111;
  margin:5px 0;
  border-radius:2px;
}

@media (max-width: 900px){
  .ac-topbar-inner{ flex-direction:column; align-items:flex-start; }
  .ac-infogrid{ width:100%; justify-content:flex-start; margin-top:8px; }
}
@media (max-width: 820px){
  .ac-burger{ display:inline-flex; align-items:center; justify-content:center; }
  .ac-navbar-inner{ position:relative; }

  .ac-menu{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    top:100%;
    width:min(var(--ac-max), calc(100% - 32px));
    background:#fff;
    border:1px solid var(--ac-border);
    border-radius:14px;
    box-shadow: var(--ac-shadow);
    padding:12px 14px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    margin-top:10px;
  }
  .ac-menu.is-open{ display:flex; }
  .ac-menu-link{ width:100%; padding:10px 6px; }
  .ac-menu-link::after{ display:none; }
}


/* Events */
/* --- Shared spacing (blog-like) --- */
.section-lg { padding: 60px 0; }
.af-page-gap { padding-top: 60px; padding-bottom: 70px; }
.af-row-gap { row-gap: 28px; }

/* --- Card look --- */
.af-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:10px;
  box-shadow:0 10px 28px rgba(0,0,0,.06);
}
.af-card-pad{ padding: 22px; }
.af-radius{ border-radius: 10px; }
.af-divider{ border-color: rgba(0,0,0,.06); }

/* --- Event page typography --- */
.af-lead{
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0,0,0,.72);
}
.af-content p{ line-height: 1.8; margin-bottom: 14px; }

/* --- Sidebar details panel --- */
.af-side-title{
  margin: 0 0 18px;
  font-weight: 700;
}
.af-side-list{ display: grid; gap: 16px; }
.af-side-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.af-ico{
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.04);
}
.af-side-label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(0,0,0,.55);
  margin-bottom: 2px;
}
.af-side-value{
  font-size: 15px;
  color: rgba(0,0,0,.82);
}

/* Keep sidebar visible on wide screens */
@media (min-width: 992px){
  .af-sticky{ position: sticky; top: 110px; }
}

/* --- Events listing tweaks --- */
.af-event-card .af-title a{ color: inherit; text-decoration: none; }
.af-event-card .af-title a:hover{ text-decoration: underline; }
.af-meta{
  font-size: 13px;
  color: rgba(0,0,0,.60);
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap: 8px;
}
.af-dot{ opacity: .6; }
.af-excerpt{
  color: rgba(0,0,0,.70);
  line-height: 1.75;
  margin-bottom: 0;
}
.af-pagination-wrap{ margin-top: 10px; }


/* Events – match the clean blog card feel */
.zozo-event-grid-wrapper .event-content-wrapper{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  padding:18px 18px 14px;
  border-radius:6px;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
  height:100%;
}
.zozo-event-grid-wrapper .event-item-img img{
  border-radius:6px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}
.zozo-event-grid-wrapper .grid-event-excerpts p{
  margin-bottom:0;
}


/* Projects section background control */
.ac-projects-section{
  background: var(--ac-projects-bg, #F5429B) !important; /* change this */
}

/* Ensure header title always readable */
.ac-projects-section .parallax-title{
  color: #fff !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.ac-projects-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  margin-top:22px;
}
@media (max-width:1199px){ .ac-projects-grid{ grid-template-columns:repeat(3,minmax(0,1fr)); } }
@media (max-width:991px){ .ac-projects-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:575px){ .ac-projects-grid{ grid-template-columns:1fr; } }

.ac-project-card{
  border-radius:12px;
  overflow:hidden;
  background:rgba(255,255,255,0.06);
}

.ac-project-media{
  position:relative;
  display:block;
  text-decoration:none;
  color:inherit;
}

.ac-project-media img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  transform:scale(1);
  transition:transform 400ms ease;
}
@media (max-width:575px){ .ac-project-media img{ height:220px; } }

.ac-project-shade{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0.05) 20%, rgba(0,0,0,0.80) 100%);
}

/* Overlay is ALWAYS visible (title), extra content reveals on hover */
.ac-project-overlay{
  position:absolute;
  inset:auto 0 0 0;
  padding:14px 14px 12px;
  z-index:2;
  color:#fff;
}

.ac-project-title{
  margin:0;
  font-size:18px;
  line-height:1.2;
  color:#fff;
  text-shadow:0 2px 12px rgba(0,0,0,.35);
}

/* extra content collapsed until hover */
.ac-project-more{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transform:translateY(6px);
  transition:max-height 300ms ease, opacity 300ms ease, transform 300ms ease;
  margin-top:8px;
}

.ac-project-excerpt{
  margin:0 0 12px 0;
  font-size:14px;
  line-height:1.4;
  color:rgba(255,255,255,0.88);
}

.ac-project-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.ac-project-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:34px;
  padding:0 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  background:rgba(255,255,255,0.12);
  color:#fff;
  border:1px solid rgba(255,255,255,0.18);
}

.ac-project-btn-primary{
  background:rgba(255,255,255,0.92);
  color:#111;
  border-color:rgba(255,255,255,0.92);
}

.ac-project-media:hover img{ transform:scale(1.06); }
.ac-project-media:hover .ac-project-more{
  max-height:160px;
  opacity:1;
  transform:translateY(0);
}


/* slider */

/* HERO: force all text white */
.simple-hero,
.simple-hero *{
  color: #fff !important;
}

/* HERO BUTTON: stop theme full-width styles */
.ac-hero-btn-wrap{
  display: flex;
  justify-content: center; /* center like your screenshot */
}

a.ac-hero-btn{
  display: inline-flex !important;
  width: auto !important;
  max-width: fit-content !important;
  padding: 8px 16px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

/* In case theme applies block to .btn */
.simple-hero .btn,
.simple-hero a.btn{
  display: inline-flex !important;
  width: auto !important;
}

.simple-hero{
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  background: #000;
}
@media (max-width: 991px){ .simple-hero{ height: 450px; } }
@media (max-width: 767px){ .simple-hero{ height: 350px; } }

.simple-hero-track{
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(0);
  transition: transform 700ms ease;
  will-change: transform;
}

.simple-hero-slide{
  position: relative;
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.simple-hero-overlay{ position:absolute; inset:0; background: rgba(0,0,0,0.45); }

.simple-hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.simple-hero-kicker{ font-weight:700; letter-spacing:.5px; font-size:18px; margin-bottom:10px; }
.simple-hero-title{ font-weight:700; font-size:48px; line-height:1.1; margin:0 0 12px 0; }
.simple-hero-subtitle{ font-size:22px; margin:0 auto 18px auto; max-width:900px; }
@media (max-width: 767px){
  .simple-hero-title{ font-size:30px; }
  .simple-hero-subtitle{ font-size:18px; }
}

.simple-hero-cta .btn{ display:inline-block; padding:12px 28px; border-radius:6px; }

.simple-hero-dots{
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.simple-hero-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
}
.simple-hero-dot.is-active{
  background: rgba(255,255,255,0.9);
}

/* Reduced motion: no animation */
@media (prefers-reduced-motion: reduce){
  .simple-hero-track{ transition: none; }
}

/* wp-block-library-inline-css */
:root {
    --wp-block-synced-color: #7a00df;
    --wp-block-synced-color--rgb: 122, 0, 223;
    --wp-bound-block-color: var(--wp-block-synced-color);
    --wp-editor-canvas-background: #ddd;
    --wp-admin-theme-color: #007cba;
    --wp-admin-theme-color--rgb: 0, 124, 186;
    --wp-admin-theme-color-darker-10: #006ba1;
    --wp-admin-theme-color-darker-10--rgb: 0, 107, 160.5;
    --wp-admin-theme-color-darker-20: #005a87;
    --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
    --wp-admin-border-width-focus: 2px
}

@media (min-resolution:192dpi) {
    :root {
        --wp-admin-border-width-focus: 1.5px
    }
}

.wp-element-button {
    cursor: pointer
}

:root .has-very-light-gray-background-color {
    background-color: #eee
}

:root .has-very-dark-gray-background-color {
    background-color: #313131
}

:root .has-very-light-gray-color {
    color: #eee
}

:root .has-very-dark-gray-color {
    color: #313131
}

:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {
    background: linear-gradient(135deg, #00d084, #0693e3)
}

:root .has-purple-crush-gradient-background {
    background: linear-gradient(135deg, #34e2e4, #4721fb 50%, #ab1dfe)
}

:root .has-hazy-dawn-gradient-background {
    background: linear-gradient(135deg, #faaca8, #dad0ec)
}

:root .has-subdued-olive-gradient-background {
    background: linear-gradient(135deg, #fafae1, #67a671)
}

:root .has-atomic-cream-gradient-background {
    background: linear-gradient(135deg, #fdd79a, #004a59)
}

:root .has-nightshade-gradient-background {
    background: linear-gradient(135deg, #330968, #31cdcf)
}

:root .has-midnight-gradient-background {
    background: linear-gradient(135deg, #020381, #2874fc)
}

:root {
    --wp--preset--font-size--normal: 16px;
    --wp--preset--font-size--huge: 42px
}

.has-regular-font-size {
    font-size: 1em
}

.has-larger-font-size {
    font-size: 2.625em
}

.has-normal-font-size {
    font-size: var(--wp--preset--font-size--normal)
}

.has-huge-font-size {
    font-size: var(--wp--preset--font-size--huge)
}

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

.has-text-align-left {
    text-align: left
}

.has-text-align-right {
    text-align: right
}

.has-fit-text {
    white-space: nowrap !important
}

#end-resizable-editor-section {
    display: none
}

.aligncenter {
    clear: both
}

.items-justified-left {
    justify-content: flex-start
}

.items-justified-center {
    justify-content: center
}

.items-justified-right {
    justify-content: flex-end
}

.items-justified-space-between {
    justify-content: space-between
}

.screen-reader-text {
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important
}

.screen-reader-text:focus {
    background-color: #ddd;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000
}

html :where(.has-border-color) {
    border-style: solid
}

html :where([style*=border-top-color]) {
    border-top-style: solid
}

html :where([style*=border-right-color]) {
    border-right-style: solid
}

html :where([style*=border-bottom-color]) {
    border-bottom-style: solid
}

html :where([style*=border-left-color]) {
    border-left-style: solid
}

html :where([style*=border-width]) {
    border-style: solid
}

html :where([style*=border-top-width]) {
    border-top-style: solid
}

html :where([style*=border-right-width]) {
    border-right-style: solid
}

html :where([style*=border-bottom-width]) {
    border-bottom-style: solid
}

html :where([style*=border-left-width]) {
    border-left-style: solid
}

html :where(img[class*=wp-image-]) {
    height: auto;
    max-width: 100%
}

:where(figure) {
    margin: 0 0 1em
}

html :where(.is-position-sticky) {
    --wp-admin--admin-bar--position-offset: var(--wp-admin--admin-bar--height, 0px)
}

@media screen and (max-width:600px) {
    html :where(.is-position-sticky) {
        --wp-admin--admin-bar--position-offset: 0px
    }
}

/* global-styles-inline-css */
:root {
    --wp--preset--aspect-ratio--square: 1;
    --wp--preset--aspect-ratio--4-3: 4/3;
    --wp--preset--aspect-ratio--3-4: 3/4;
    --wp--preset--aspect-ratio--3-2: 3/2;
    --wp--preset--aspect-ratio--2-3: 2/3;
    --wp--preset--aspect-ratio--16-9: 16/9;
    --wp--preset--aspect-ratio--9-16: 9/16;
    --wp--preset--color--black: #000000;
    --wp--preset--color--cyan-bluish-gray: #abb8c3;
    --wp--preset--color--white: #ffffff;
    --wp--preset--color--pale-pink: #f78da7;
    --wp--preset--color--vivid-red: #cf2e2e;
    --wp--preset--color--luminous-vivid-orange: #ff6900;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--color--light-green-cyan: #7bdcb5;
    --wp--preset--color--vivid-green-cyan: #00d084;
    --wp--preset--color--pale-cyan-blue: #8ed1fc;
    --wp--preset--color--vivid-cyan-blue: #0693e3;
    --wp--preset--color--vivid-purple: #9b51e0;
    --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%);
    --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
    --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgb(252, 185, 0) 0%, rgb(255, 105, 0) 100%);
    --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgb(255, 105, 0) 0%, rgb(207, 46, 46) 100%);
    --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
    --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
    --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
    --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
    --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
    --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
    --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
    --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
    --wp--preset--font-size--small: 13px;
    --wp--preset--font-size--medium: 20px;
    --wp--preset--font-size--large: 36px;
    --wp--preset--font-size--x-large: 42px;
    --wp--preset--spacing--20: 0.44rem;
    --wp--preset--spacing--30: 0.67rem;
    --wp--preset--spacing--40: 1rem;
    --wp--preset--spacing--50: 1.5rem;
    --wp--preset--spacing--60: 2.25rem;
    --wp--preset--spacing--70: 3.38rem;
    --wp--preset--spacing--80: 5.06rem;
    --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
    --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
    --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
    --wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);
    --wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);
}

:where(.is-layout-flex) {
    gap: 0.5em;
}

:where(.is-layout-grid) {
    gap: 0.5em;
}

body .is-layout-flex {
    display: flex;
}

.is-layout-flex {
    flex-wrap: wrap;
    align-items: center;
}

.is-layout-flex> :is(*, div) {
    margin: 0;
}

body .is-layout-grid {
    display: grid;
}

.is-layout-grid> :is(*, div) {
    margin: 0;
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
    gap: 2em;
}

:where(.wp-block-post-template.is-layout-flex) {
    gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
    gap: 1.25em;
}

.has-black-color {
    color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-color {
    color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-color {
    color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-color {
    color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-color {
    color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-color {
    color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-color {
    color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-color {
    color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-color {
    color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-color {
    color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-color {
    color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-color {
    color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-background-color {
    background-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-background-color {
    background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-background-color {
    background-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-background-color {
    background-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-background-color {
    background-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-background-color {
    background-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-background-color {
    background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-background-color {
    background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-background-color {
    background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-background-color {
    background-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-border-color {
    border-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-border-color {
    border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-border-color {
    border-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-border-color {
    border-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-border-color {
    border-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-border-color {
    border-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-border-color {
    border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-border-color {
    border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-border-color {
    border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-border-color {
    border-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
    background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
}

.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
    background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
}

.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
}

.has-luminous-vivid-orange-to-vivid-red-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
}

.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
    background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
}

.has-cool-to-warm-spectrum-gradient-background {
    background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
}

.has-blush-light-purple-gradient-background {
    background: var(--wp--preset--gradient--blush-light-purple) !important;
}

.has-blush-bordeaux-gradient-background {
    background: var(--wp--preset--gradient--blush-bordeaux) !important;
}

.has-luminous-dusk-gradient-background {
    background: var(--wp--preset--gradient--luminous-dusk) !important;
}

.has-pale-ocean-gradient-background {
    background: var(--wp--preset--gradient--pale-ocean) !important;
}

.has-electric-grass-gradient-background {
    background: var(--wp--preset--gradient--electric-grass) !important;
}

.has-midnight-gradient-background {
    background: var(--wp--preset--gradient--midnight) !important;
}

.has-small-font-size {
    font-size: var(--wp--preset--font-size--small) !important;
}

.has-medium-font-size {
    font-size: var(--wp--preset--font-size--medium) !important;
}

.has-large-font-size {
    font-size: var(--wp--preset--font-size--large) !important;
}

.has-x-large-font-size {
    font-size: var(--wp--preset--font-size--x-large) !important;
}

/* classic-theme-styles-inline-css */

.wp-block-button__link {
    color: #fff;
    background-color: #32373c;
    border-radius: 9999px;
    box-shadow: none;
    text-decoration: none;
    padding: calc(.667em + 2px) calc(1.333em + 2px);
    font-size: 1.125em
}

.wp-block-file__button {
    background: #32373c;
    color: #fff;
    text-decoration: none
}

/* woocommerce-inline-inline-css */

.woocommerce form .form-row .required {
    visibility: visible;
}

/* wp-emoji-styles-inline-css */

img.wp-smiley,
img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

/* wp-img-auto-sizes-contain-inline-css */
img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}

/* charitable-highlight-colour-styles */

.campaign-progress-bar .bar,
.donate-button,
.charitable-donation-form .donation-amount.selected,
.charitable-donation-amount-form .donation-amount.selected {
    background-color: #f89d35;
}

.charitable-donation-form .donation-amount.selected,
.charitable-donation-amount-form .donation-amount.selected,
.charitable-notice,
.charitable-drag-drop-images li:hover a.remove-image,
.supports-drag-drop .charitable-drag-drop-dropzone.drag-over {
    border-color: #f89d35;
}

/* wp-custom-css */

.gosolar-campaigns .campaign-loop.campaign-grid {
    display: flex;
}

.gosolar-campaigns .campaign-loop.campaign-grid li.campaign .campaign-thumbnail-wrap img {
    padding-bottom: 0;
    width: 100%;
}

.gosolar-campaigns .campaign-loop.campaign-grid li.campaign {
    padding: 0;
    border: unset;
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

/* vc_shortcodes */

.vc_do_btn {
    margin-bottom: 22px;
}

.vc_custom_1627397865358 {
    /* background-image: url(../assets/uploads/sites/3/2021/07/bg-541f1.jpg?id=1568) !important; */
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.vc_custom_1627397885806 {
    /* background-image: url(../assets/uploads/sites/3/2021/07/young-plantation-1724x1148-1.jpg?id=1569) !important; */
    background-position: center;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.vc_custom_1499673787702 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.vc_custom_1568880219160 {
    padding-bottom: 45px !important;
}

.vc_custom_1496899831348 {
    padding-bottom: 70px !important;
}

.vc_custom_1499661319201 {
    margin-bottom: 32px !important;
}

.vc_custom_1721475590330 {
    margin-top: -65px !important;
    margin-bottom: -75px !important;
}

.wpb_animate_when_almost_visible {
    opacity: 1;
}

/* rs-plugin-settings-inline-css */

#rev_slider_4_1_wrapper .uranus.tparrows {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0)
}

#rev_slider_4_1_wrapper .uranus.tparrows:before {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 40px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s
}

#rev_slider_4_1_wrapper .uranus.tparrows.rs-touchhover:before {
    opacity: 0.75
}

/* rocket-lazyrender-inline-css */

[data-wpr-lazyrender] {
    content-visibility: auto;
}