@font-face {
    font-family: Lato-Medium;
    src: url("../fonts/lato-medium.ttf");
}
@font-face {
    font-family: Lato-Semibold;
    src: url("../fonts/lato-semibold.ttf");
}
@font-face {
    font-family: Lato-Semibold-Italic;
    src: url("../fonts/lato-semibold-italic.ttf");
}
@font-face {
    font-family: Lato-Heavy;
    src: url("../fonts/lato-heavy.ttf");
}

html {
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}
body {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    padding: 0px;
    margin: 0px;
    background-color: #ffff;
    font-size: 18px;
    color: #21391d;
}
a,
a:hover {
    color: inherit;
}
.btn:focus {
    box-shadow: none;
}

.title {
    font-family: "Lato-Heavy", sans-serif;
    font-size: 34px;
    letter-spacing: 2px;
    line-height: 37px;
}

/*Header*/
.header {
    background-color: #ffffff;
    width: 100%;
    transition: all 0.3s ease-in-out;
    position: fixed;
    top: 0px;
    left: 0px;
    height: 170px;
    z-index: 99;
}
.header.sticky-bar {
    background: #ffffff;
    height: 95px;
} 
.header .container {
    align-items: flex-start;
}
/*
    Keep Bootstrap container defaults for all breakpoints,
    but when viewport >= 1920px override to max-width:1500px.
*/
@media (min-width: 1600px) {
    .container {
        max-width: 1500px !important;
    }
}

:root {
    --accent: #7182bf;
    --dropdown-bg: #7182bf;
    --item-hover-bg: #21391d;
    --toggler-bg: #21391d;
}

/* Navbar base */
.navbar {
    --bs-navbar-nav-link-color: #212529;
}

/* ---------- Toggler (animated hamburger) ---------- */
.navbar-toggler-icon {
    display: none;
} /* hide default icon */

.navbar-toggler {
    background: var(--toggler-bg) !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0.375rem 0.6rem;
    width: 48px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.hamburger {
    width: 22px;
    height: 16px;
    position: relative;
    display: inline-block;
}
.hamburger span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #fff;
    display: block;
    transform-origin: center;
    transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.3, 1),
        top 0.32s cubic-bezier(0.2, 0.7, 0.3, 1), opacity 0.2s linear;
}
.hamburger span:nth-child(1) {
    top: 0;
}
.hamburger span:nth-child(2) {
    top: 7px;
}
.hamburger span:nth-child(3) {
    top: 14px;
}

.navbar-toggler.open .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar-toggler.open .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.7);
}
.navbar-toggler.open .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Parent link + caret layout ---------- */
.nav-item .parent-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    width: 100%;
}
.parent-wrap .nav-link {
    padding: 0.5rem 0rem !important;
}
.nav-item {
    margin: 0px 10px;
}

/* caret toggle button on right */
.submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.375rem;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    line-height: 1;
    margin-left: auto; /* push caret right */
}
.submenu-toggle:focus {
    outline: none;
    box-shadow: none;
}

.submenu-toggle svg {
    width: 12px;
    height: 12px;
    display: block;
}
.submenu-toggle svg path {
    fill: currentColor;
}

/* caret + text color change on hover/active */
.nav-item.dropdown:hover > .parent-wrap .nav-link,
.nav-item.dropdown:focus-within > .parent-wrap .nav-link,
.nav-item.dropdown.active > .parent-wrap .nav-link {
    color: var(--accent) !important;
}
.nav-item.dropdown.active > .parent-wrap .submenu-toggle {
    color: #223a1d !important;
}
.nav-item.dropdown:hover > .parent-wrap .submenu-toggle,
.nav-item.dropdown:focus-within > .parent-wrap .submenu-toggle,
.nav-item.dropdown.active > .parent-wrap .submenu-toggle {
    color: var(--accent) !important;
}

/* ---------- Dropdown container & look ---------- */
.dropdown-menu {
    padding: 0;
    background: var(--dropdown-bg);
    border: none;
    border-radius: 0;
    min-width: 220px;
}
.dropdown-menu .dropdown-menu {
    background: var(--dropdown-bg);
    border: none;
    border-radius: 0;
    padding: 0;
}

/* dropdown item — single link */
.dropdown-item {
    padding: 10px 20px !important; /* requested padding */
    color: #ffffff !important; /* white text */
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    white-space: nowrap;
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
    background: var(--item-hover-bg) !important;
    color: #ffffff !important;
    text-decoration: none;
}

/* dropdown-row: whole row hoverable (for items with nested submenu) */
.dropdown-row {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    cursor: pointer;
    white-space: nowrap;
}
.dropdown-row .row-link {
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 700;
    color: inherit;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: inline-block;
}
.dropdown-row:hover,
.dropdown-row:focus-within,
.dropdown-row.active {
    background: var(--item-hover-bg);
    color: #ffffff;
}
.dropdown-row .submenu-toggle {
    color: inherit;
    margin-left: auto;
}

/* nested caret points downward (no rotation) */
.nested-caret svg {
    transform: none;
}

/* nested submenu positioning on desktop */
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    margin-right: 0.1rem;
}

/* show dropdowns on hover for large screens */
@media (min-width: 1400px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
    }
    .navbar .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
    .parent-wrap .nav-link {
        padding: 1.5rem 0rem 1.5rem !important;
    }
    .navbar {
        padding: 50px 0px 0px 0px;
        transition: all 0.3s ease-in-out;
    }
    .header.sticky-bar .navbar {
        padding: 25px 0px 0px 0px;
    }
}

.nav-link.dropdown-toggle::after {
    display: none !important;
}
.dropdown-menu.show {
    display: block;
}

/* menu alignment: left on mobile, right on large screens */
.navbar-nav {
    width: 100%;
}
@media (min-width: 1400px) {
    .navbar-nav {
        width: auto;
    }
}

/* small accessibility tweak: focus visible */
.submenu-toggle:focus-visible,
.nav-link:focus-visible,
.dropdown-row:focus-visible {
    outline: 2px solid rgba(113, 130, 191, 0.25);
    outline-offset: 2px;
}

.h-logo {
    width: 200px;
    transition: all 0.3s ease-in-out;
}
.header.sticky-bar .h-logo {
    width: 110px;
}
.navbar-collapse {
    margin-top: 30px;
    transition: all 0.3s ease-in-out;
}
.header.sticky-bar .navbar-collapse {
    margin-top: 0px;
}

.navbar-nav .nav-link {
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 700;
    color: #21391d;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #7182bf;
}
.btn-donate {
    background-color: #ffaf00;
    padding: 2px 12px;
    color: #fffffb;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    border-radius: 0px;
}
.btn.btn-donate:hover {
    background-color: #21391d;
    color: #fffffb;
}
.navbar-nav .nav-item:first-child {
    margin-left: 0px;
}
.navbar-nav .nav-item:last-child {
    margin-right: 0px;
}

/*Hero Section*/
.hero-sec {
    position: relative;
    min-height: calc(100vh - 170px);
    background-size: cover;
    background-position: center;
}
.hero-content {
    position: absolute;
    bottom: 55px;
    left: 0px;
}
.hero-box {
    font-size: 32px;
    font-family: "Lato-Medium", sans-serif;
    color: #ffffff;
    background-color: #21391d;
    letter-spacing: 0.5px;
    padding: 20px 30px 20px 100px;
}

/*Three Text Box*/
.box001 {
    padding: 30px;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.box001 h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 0px;
    position: relative;
}
.box001 h2::after{
    content: '';
    width: 0%;
    height: 3px;
    background-color: #ffffff;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
}
.box001:hover h2::after, 
.box001.nav-link.active h2::after{
    width: 100%;
}
.bg-purple {
    background-color: #7c99cf;
}
.bg-green {
    background-color: #596b56;
}
.bg-maroon {
    background-color: #975167;
}

/*Our Mission*/
.our-mission {
    background-color: #f2f2f2;
    padding: 150px 0px;
    position: relative;
}
.our-mission-box {
    display: flex;
    justify-content: space-between;
}
.our-mission::after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50%;
    height: 100%;
    background-color: #e8ebe8;
}
.btn-theme {
    background-color: transparent;
    color: #000000;
    font-size: 22px;
    letter-spacing: 1px;
    padding: 8px 25px;
    border: 1px solid #000000;
    line-height: normal;
    border-radius: 0px;
    transition: all 0.3s ease-in-out;
}
.btn.btn-theme:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}
.max-width {
    max-width: 573px;
}

/*Land Water Community*/
.box002 {
    width: 100%;
    height: 580px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    border-left: 1px solid #000000b3;
    position: relative;
}
.box002 h2 {
    font-size: 58px;
    font-family: "Lato-Heavy", sans-serif;
    letter-spacing: 2px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 16px;
}
.btn-theme-white {
    background-color: transparent;
    color: #ffffff;
    font-size: 22px;
    letter-spacing: 1px;
    padding: 8px 25px;
    border: 1px solid #ffffff;
    line-height: normal;
    border-radius: 0px;
    transition: all 0.3s ease-in-out;
}
.btn.btn-theme-white:hover {
    background-color: #ffffff;
    color: #000;
    border-color: #ffffff;
}
.z-1 {
    position: relative;
    z-index: 1;
}

/*Spacer*/
.spacer {
    padding: 28px 0px;
    background-color: #21391d;
}

/*Get Involved*/
.box002.get-involved {
    height: 430px;
}
.get-involved .title {
    font-family: "Lato-Heavy", sans-serif;
    font-size: 34px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.ft-24 {
    font-family: "Lato-Medium", sans-serif;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}
.get-involved p {
    color: #ffffff;
}
.our-mission p {
    color: #21391d;
}

/*Footer*/
.footer {
    background-color: #596a55;
    padding: 100px 0px;
}
.f-ul {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.f-ul a {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.5px;
    line-height: normal;
    transition: all 0.3s ease-in-out;
}
.f-ul a:hover,
.f-link:hover {
    color: #21391d;
}
.f-ul .btn-donate {
    padding: 2px 6px;
}
.f-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: normal;
    margin-bottom: 7px;
    letter-spacing: 0.5px;
}
.f-text {
    font-size: 18px;
    color: #ffffff;
    line-height: normal;
    margin-bottom: 7px;
}
.f-link {
    font-size: 18px;
    color: #ffffff;
    line-height: normal;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}
.footer hr {
    opacity: 1;
    color: #fff;
    max-width: 20px;
}
.social-box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.social-icon img {
    width: 30px;
    transition: all 0.3s ease-in-out;
}
.social-icon {
    transition: all 0.3s ease-in-out;
}
.social-icon:hover img {
    opacity: 0.7;
}
.social-icon:hover {
    margin-top: -14px;
}
.newsletter .form-control {
    background-color: #ffffff;
    color: #000000;
    border: 0px;
    border-radius: 0px;
    font-family: "Lato-Medium", sans-serif;
    font-size: 18px;
    padding: 8px 10px;
}
.newsletter .form-control::placeholder {
    color: #c9c9c9;
}
.newsletter .btn-theme-white {
    font-size: 18px;
    padding: 4px 18px;
    font-weight: 400;
}
.form-control:focus {
    box-shadow: none;
}
.copirights {
    font-size: 15px;
    color: #ffffff;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.5px;
}

.text-green {
    color: #21391d !important;
}
.sec-pad {
    padding: 150px 0px;
}
.main-title {
    font-size: 58px;
    font-family: "Lato-Heavy", sans-serif;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 0px;
}
.ft-30 {
    font-family: "Lato-Semibold-Italic", sans-serif;
    font-size: 30px;
    line-height: normal;
    letter-spacing: 0.5px;
}
.btn-theme-green {
    color: #21391d;
    padding: 8px 20px;
    border: 1px solid #21391d;
    transition: all 0.3s ease-in-out;
}
.btn.btn-theme-green:hover {
    background-color: #21391d;
    border-color: #21391d;
}
.cust-gap {
    --bs-gutter-x: 90px;
    --bs-gutter-y: 90px;
}
.history p {
    margin-bottom: 50px;
}
.history p:last-child {
    margin-bottom: 0px;
}

/*Mission Page*/
.bg-theme {
    background-color: #21391d;
    color: #ffffff;
}
.side-img {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

@media (min-width: 992px) {
    .container.right-side,
    .container.left-side {
        max-width: 100% !important;
    }

    .right-side-text {
        padding-right: calc(((100% - 960px) / 2) + 0.75rem);
    }

    .left-side-text {
        padding-left: calc(((100% - 960px) / 2) + 0.75rem);
    }
}

@media (min-width: 1200px) {
    .right-side-text {
        padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
    }

    .left-side-text {
        padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
    }
}

@media (min-width: 1400px) {
    .right-side-text {
        padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
    }

    .left-side-text {
        padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
    }
}

@media (min-width: 1600px) {
    .right-side-text {
        padding-right: calc(((100% - 1500px) / 2) + 0.75rem);
    }

    .left-side-text {
        padding-left: calc(((100% - 1500px) / 2) + 0.75rem);
    }
}

.right-side .left-pad {
    padding-left: 188px;
}
.left-side .right-pad {
    padding-right: 188px;
}
.cust-ul {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.cust-ul li {
    font-family: "Lato-Medium", sans-serif;
    font-size: 24px;
    line-height: 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.cust-ul li::before {
    content: "";
    min-width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #21391d;
    margin-top: 10px;
}
.background-img {
    background-size: cover;
    background-position: center;
}
.bg-grey1 {
    background-color: #f1f1f1;
}
.bg-grey2 {
    background-color: #e9ebe8;
}
.bg-grey3 {
    background-color: #f2f2f2;
}
.btn-theme.btn-donate {
    background-color: #f3b333;
    color: #ffffff;
    border-color: #f3b333;
}
.btn-theme.btn-donate:hover {
    background-color: #21391d;
    color: #ffffff;
    border-color: #21391d;
}
.btn-sec {
    display: flex;
    align-items: center;
    gap: 25px;
}
.br-bottom {
    border-bottom: 2px solid #21391d;
}
.pb-40 {
    padding-bottom: 40px;
}

/*Donate Page*/
.accordion-item {
    border: 0px;
    color: #21391d;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-button {
    background-color: #e8ebe8;
    box-shadow: none;
    padding: 70px 100px;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}
.accordion-button:not(.collapsed) {
    background-color: #e8ebe8;
    box-shadow: none;
}
.accordion-button .title {
    color: #21391d;
}
.accordion-body {
    background-color: #f1f1f1;
    border-bottom: 1px solid #fff;
    padding: 85px 175px;
}
.accordion-button::after {
    display: none;
}
.accordion-button:not(.collapsed)::after {
    display: none;
}
.accordion-button .faq-icon {
    width: 53px;
    transition: all 0.3s ease-in-out;
}
.accordion-button:not(.collapsed) .faq-icon {
    transform: rotate(180deg);
}
.accordion-body .ft-30 {
    font-style: normal;
}
.cust-ul.two-column-list li::before {
    display: none;
}
.two-column-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    display: block;
}
.two-column-list li {
    margin-bottom: 20px;
}
.bg-blue {
    background-color: #7c99cf;
}
.event-box {
    background-color: #f2f2f2;
    height: 100%;
}
.event-img {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}
.event-detail-box {
    padding: 50px;
}

.owl-carousel .item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    cursor: pointer;
}
.owl-stage {
    padding-left: 0 !important;
}
.owl-carousel .owl-prev,
.owl-carousel .owl-next {
    width: 75px;
    height: 75px;
    background: #ffffff !important;
    border-radius: 50% !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.owl-carousel .owl-prev {
    left: 15px;
}
.owl-carousel .owl-next {
    right: 15px;
}
.owl-carousel .owl-prev img,
.owl-carousel .owl-next img {
    width: 22px;
}
.owl-carousel .owl-next img {
    margin-left: 5px;
}
.owl-carousel .owl-prev img {
    margin-left: -5px;
}
.bg-grey4 {
    background-color: #f0f0f0;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.page-btn {
    cursor: pointer;
    color: #000000;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
}

.page-number.active {
    color: #21391d;
}
.pagination {
    gap: 8px; /* modern browsers only */
}
.cust-ul.four-column-list li::before {
    display: none;
}
.four-column-list {
    columns: 4;
    -webkit-columns: 4;
    -moz-columns: 4;
    display: block;
}
.four-column-list li {
    margin-bottom: 50px;
}
.archives-link {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    text-decoration: none;
    font-style: italic;
    transition: all 0.3s ease-in-out;
}
.archives-link:hover {
    text-decoration: underline;
}
.bg-dark-red {
    background-color: #8c5567;
}
.small-sec-pad {
    padding: 100px 0px;
}
.bg-grey5 {
    background-color: #e8ebe8;
}
.ft-48 {
    font-family: "Lato-Heavy", sans-serif;
    font-size: 48px;
    letter-spacing: 2px;
}
.cust-gap-y {
    --bs-gutter-y: 100px;
}
.event-detail-box .ft-48.bold {
    line-height: 45px;
}
.our-mission.left::after {
    right: auto;
    left: 0px;
}
.spacer.cust-pad {
    padding: 45px 0px;
}
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 40%;
    overflow: hidden;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 100%;
    border: 0;
}
.cust-ul.marker-white li::before {
    background-color: #ffffff;
}
.link {
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}
.link:hover {
    text-decoration: none;
}
.key-element .title {
    margin-bottom: 10px;
}
.key-element p {
    margin-left: 42px;
}
.key-element p:last-child {
    margin-bottom: 0px;
}
.main-title.br-bottom {
    border-bottom: 4px solid #21391d;
    padding-bottom: 8px;
}

.cust-check {
    display: block;
    position: relative;
    padding-left: 33px;
    cursor: pointer;
    font-size: 24px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-style: italic;
}
.cust-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.cust-check .checkmark {
    position: absolute;
    top: 8px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    border: 1px solid #c7c8ca;
}
.cust-check:hover input ~ .checkmark {
    background-color: #21391d;
}
.cust-check input:checked ~ .checkmark {
    background-color: #21391d;
    border-color: #21391d;
}
.cust-check .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.cust-check input:checked ~ .checkmark:after {
    display: block;
}
.cust-check .checkmark:after {
    left: 7px;
    top: 1px;
    width: 5px;
    height: 13px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.form-lable {
    font-size: 28px;
    font-family: "Lato-Medium", sans-serif;
    margin-bottom: 10px;
}
.form-control {
    font-size: 24px;
    background-color: #ffffff;
    border: 1px solid #c7c8ca;
    border-radius: 0px;
    padding: 15px 20px;
    color: #21391d;
}
textarea {
    resize: none;
}
.form-control::placeholder {
    color: #21391d;
    opacity: 1;
    font-style: italic;
}
.form-control:focus {
    border-color: #21391d;
}
.ft-28 {
    font-size: 28px;
    font-family: "Lato-Heavy", sans-serif;
    line-height: 28px;
}
.ft-28.br-bottom {
    border-bottom: 3px solid #21391d;
    padding-bottom: 24px;
    margin-bottom: 24px;
}
.ft-22 {
    font-size: 22px;
    line-height: 25px;
    font-family: "Lato-Heavy", sans-serif;
}
.underline {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.underline:hover {
    text-decoration: underline;
}

.big-sec-pad {
    padding: 180px 0px;
    position: relative;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}
.sowa-logo {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}
.sowa-logo img {
    width: 200px;
}
.bg-light-green {
    background-color: #285127;
}
.speakers-gap {
    --bs-gutter-x: 160px;
}
hr {
    color: #21391d;
    margin: 24px 0px;
    opacity: 1;
}
.past-metting .accordion-item {
    margin-bottom: 15px;
}
.past-metting .accordion-body {
    margin-top: 15px;
    padding: 70px 100px;
    background-color: #e8ebe8;
}
.resources-box {
    padding: 135px 30px;
    text-align: center;
    height: 100%;
    width: 100%;
    background-color: #c7e5d4;
}
.resources-box.white {
    background-color: #ffffff;
}
.resources-box p {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/*Timeline*/
.timeline{
    position: relative;
    margin: auto;
    padding: 0px 0;
}
.timeline::before {
    /*content: "";*/
    position: absolute;
    top: 35px;
    left: 50%;
    width: 15px;
    height: 92.6%;
    background: linear-gradient(
        to bottom,
        #7181bf 0%,
        #7181bf 18%,
        /* till 2005 */ #975167 0%,
        #975167 33.3%,
        /* till 2014 */ #21391d 0%,
        #21391d 100%
    );
    transform: translateX(-50%);
}
.timeline-line {
    position: absolute;
    left: 50%;
    width: 10px;
    z-index: 1;
    height: 100%;
}

.timeline-item {
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin: 40px 0px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item .content {
    position: relative;
}
.line {
    height: 2px;
    background: #21391d;
    width: 100%;
    position: relative;
}
.timeline-item.left .content h2 {
    text-align: left;
    margin-bottom: 5px;
    margin-left: 20px;
    font-family: "Lato-Heavy", sans-serif;
    font-size: 34px;
    letter-spacing: 2px;
    line-height: 37px;
}
.timeline-item.right .content h2 {
    text-align: right;
    margin-bottom: 5px;
    margin-right: 20px;
    font-family: "Lato-Heavy", sans-serif;
    font-size: 34px;
    letter-spacing: 2px;
    line-height: 37px;
}
.timeline .line::after {
    content: "";
    position: absolute;
    left: 0px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background-color: #21391d;
}
.timeline .timeline-item.left .line::after {
    left: 0px;
}
.timeline .timeline-item.right .line::after {
    right: 0px;
    left: auto;
}
.timeline .line::before {
    content: "";
    position: absolute;
    left: 0px;
    top: -11px;
    width: 26px;
    height: 26px;
    border-radius: 50px;
    background-color: #fff;
    border: 2px solid #21391d;
    z-index: 1;
}
.timeline .timeline-item.left .line::before {
    right: -13px;
    left: auto;
}
.timeline .timeline-item.right .line::before {
    left: -13px;
}
.sub-event.timeline-item.left {
    margin-top: 73px;
    padding-right: 100px;
}
.sub-event.timeline-item.right {
    margin-top: 100px;
    padding-left: 100px;
}
.timeline-item.sub-event.se-mt-long {
    margin-top: 120px;
}
.sub-event .line {
}
.sub-event .line::after,
.sub-event .line::before {
    display: none;
}
.sub-event.timeline-item.left .c-des {
    padding-right: 0px;
}
.sub-event.timeline-item.right .c-des {
    padding-left: 0px;
}
.sub-event.timeline-item.left .left-image {
    top: -65px;
}
.sub-event.timeline-item.right .right-image {
    top: -75px;
}
.timeline-item.left .c-des {
    padding-right: 100px;
    padding-left: 120px;
    padding-top: 30px;
}
.timeline-item.right .c-des {
    padding-left: 100px;
    padding-right: 120px;
    padding-top: 30px;
}
.timeline-item.left .content.image h2 {
    margin-left: 175px;
}
.timeline-item.right .content.image h2 {
    margin-right: 175px;
}
.timeline-hr {
    width: 141px;
    background-color: #21391d;
    height: 2px;
    margin-left: auto;
    margin-top: 24px;
    margin-bottom: 24px;
}
.timeline-item.right .timeline-hr {
    margin-left: 0px;
}
.tt-ps {
    padding-left: 100px;
}
.left-image,
.right-image {
    width: 90px;
    height: 90px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    position: absolute;
    left: 0px;
/*    top: -25px;*/
    z-index: 1;
    border: 4px solid #21391d;
    display: flex;
    flex: none;
    position: relative;
}
.right-image {
    right: 0px;
    left: auto;
}
.timeline-item.image img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
}

.timeline-item.sub-event .content::after {
    display: none;
    margin-top: 30px;
}

.timeline-item.overlap {
    margin-top: -166px;
}
.overlap-clear {
    margin-top: 166px;
}
.se-long-overlap {
    margin-top: -350px;
}
.timeline-item p {
    font-family: "Lato-Semibold", sans-serif;
    font-size: 30px;
    line-height: normal;
    letter-spacing: 0.5px;
}
.timeline-item small {
    font-family: "Lato-Semibold", sans-serif;
    font-size: 20px;
    line-height: normal;
    letter-spacing: 0.5px;
}

/*Board Page*/
.staff-item {
    position: relative;
}
.staff-trigger {
    cursor: pointer;
    color: #21391d;
}
.staff-trigger:hover {
    text-decoration: underline;
}
.staff-popup {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    z-index: 10;
    display: none;
    background: #f2f2f2;
    animation: fadeIn 0.15s ease-in-out;
    padding: 20px;
}
.staff-title{
    font-family: "Lato-Heavy", sans-serif;
    text-transform: uppercase;
}
.btn-close:focus {
    box-shadow: none;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.btn-close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
}
.avatar-80 {
    width: 80px;
    height: 80px;
    object-fit: cover;
}
.avatar-150 {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

/* Custom Modal */
.custom-modal {
  max-width: 1240px;
  width: 100%;
  border-radius: 0;
  padding: 40px;
  margin: auto;
  position: relative;
}

/* Close button position */
.custom-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1051;
}
.mx-d-900{
    max-width: 900px;
    width: 100%;
}
.blog-data-img{
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 350px;
}
.more-blog-data-img{
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 340px;
}

#jobs .modal-dialog {
    max-width: 576px !important;
    margin: 0 auto;
}

.nav-pills .nav-item{
    margin: 0px;
}

.nav-pills .nav-link{
    border-radius: 0px;
}
.nav-pills .nav-link.active{
    background-color: inherit;
}
.nav-link.active.bg-purple{
    background-color: #7c99cf;
}
.nav-link.active.bg-green{
    background-color: #596b56;
}
.nav-link.active.bg-maroon{
    background-color: #975167;
}
.cust-ul.white-marker li::before {
    background-color: #FFFFFF;
}
.two-column-list-dot {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    display: block;
}
.two-column-list-dot li {
    margin-bottom: 20px;
}
.btn-theme.bg-theme:hover{
    background-color: transparent;
    color: #21391d;
}

.green-bg{
    background-color: #46873f;
}
.upcoming-events-list{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 16px;
}
.upcoming-events-list li{
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-style: italic;
}
.upcoming-events-list li .location-icon{
    max-width: 20px;
    margin-top: 4px;
}
.future-events .br-bottom:last-child{
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 0px;
}



.lato-medium {
    font-family: "Lato-Medium", sans-serif;
}
.lato-semibold {
    font-family: "Lato-Semibold", sans-serif;
}
.lato-semibold-italic {
    font-family: "Lato-Semibold-Italic", sans-serif;
}
.lato-heavy {
    font-family: "Lato-Heavy", sans-serif;
}

.regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
}
.bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
}
.mb-100 {
    margin-bottom: 100px;
}
.mb-70 {
    margin-bottom: 70px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-35{
    margin-bottom: 35px;
}
.mb-10 {
    margin-bottom: 10px;
}
.text-pink{
    color: #ff00ff;
}

.navbar-brand{
    position: absolute;
}


.gallery-img-box{
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 300px;
}


/*New Timeline*/
/* Timeline Container */
.timeline-container {
    position: relative;
    width: 100%;
    margin: 50px 0;


}

/* Timeline Line */
.timeline-line1 {
    display: flex;
    height: 10px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.timeline-line1 div {
    flex: 1;
}

.timeline-line1 .pink { background: #ff6fa3; }
.timeline-line1 .blue { background: #4a90e2; }
.timeline-line1 .green { background: #7ed321; }

/* Timeline Item */
.timeline-item1 {
    position: relative;
    display: inline-block;
    text-align: center;
    cursor: pointer;

}

.timeline-item1.empty {
    pointer-events: none;
    visibility: hidden;
}

.pos-1 {
    position: absolute;
    top: -13px;
}
.timeline-item1 .year-desc.left {
    left: auto;
    right: 38px;
    text-align: right;
}
.timeline-item1 .year-desc.left h4,
.timeline-item1 .year-desc.left p {
    text-align: right;
}
/* Year Circle */
.timeline-item1 .circle {
    width: 14px;
    height: 14px;
    background: #ffffff;
    border: 1px solid #191717;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Year Line */
.timeline-item1 .year-line {
    width: 1.2px;
    background: #333;
    left: 50%;
    transform: translateX(-50%);
    height: 20px;
    transition: height 0.3s;
}

.timeline-item1.active .year-line {
    height: 80px;
}

/* Year Label */
.timeline-item1 .year-label {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    transition: opacity 0.3s;
    opacity: 1;
}

.timeline-item1.active .year-label {
    opacity: 0;
}

.timeline-item1 .year-desc {
    position: absolute;
    top: 75px;
    left: 1px;
    transform: translate(0px, 4px) scale(0.98);
    width: 480px;
    background-color: #edebeb;
    padding: 20px 25px;
    text-align: left;
    font-size: 14px;
    opacity: 1;
    display: none;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        height 0.3s;
}

.timeline-item1.active .year-desc {
    opacity: 1;
    display: block;
    transform: translate(0px, 0px) scale(1);
}
/* Base line style */
.timeline-item1 .year-line {
    width: 1.2px;
    background: #333;
    left: 50%;
    transform: translateX(-50%);
    height: 20px;
    transition: height 0.3s ease;
}

.timeline-item1 .year-desc h4 {
    margin: 0 0 15px;
    font-family: Lato-Heavy;
    font-size: 22px;
    font-weight: bold;
}

.timeline-item1 .year-desc p {
    font-size: 18px;
    line-height: 1.4;
}
.timeline-item1 .year-desc p:last-child {
    margin: 0;
}

.timeline-item1 .year-label{
    font-size: 16px;
}

.sec-pad.timeline-sec-pad{
    padding: 150px 0px 400px;
}


/* Layout */
.timeline1 {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.timeline-item1 .year-desc .timeline-title {
    font-family: "Lato-Semibold", sans-serif;
    font-size: 22px;
    line-height: normal;
    letter-spacing: 0.5px;
}
@media (max-width: 1300px){
.timeline-item1 .year-label{
    font-size: 11px;
}
}

/* Vertical Timeline for screens <= 992px */
@media (max-width: 992px) {
    .timeline-container {
    
/*    overflow-x: hidden !important;*/
}.timeline-item1 .year-desc.left {
    text-align: left;
}
.timeline-item1 .year-desc.left h4, .timeline-item1 .year-desc.left p {
    text-align: left;
}

    .timeline1 {
        flex-direction: column;
        align-items: flex-start; /* align left */
        position: relative;

    }
    .timeline-item1, .pos-1{
         width: calc(100vw - 80px);
    }

    .timeline-item1 .year-label{
        font-size: 15px;
    }

    .timeline-item1 .year-desc h4 {
        font-size: 18px;
    }

    .timeline-item1 .year-desc p {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .timeline-line1 {
        width: 6px;   /* vertical line */
        height: 100%;
        flex-direction: column;
        position: absolute;
        left: 20px;  /* adjust as needed */
        top: 0;
    }

    .timeline-line1 div {
        height: 33.33%; /* divide line into 3 colors */
        width: 100%;
    }

    .timeline-item1 {
        display: flex;
        align-items: flex-start;
        margin-bottom: 50px;
        position: relative;
        padding-bottom: 13px;
    }

    .pos-1 {
        position: relative;
        top: 0;
        left: 40px; /* spacing from vertical line */
    }

    .timeline-item1 .circle {
                      top: 1px;
        left: -24px;

        transform: none;
        position: absolute;
    }

        .timeline-item1 .year-line {
        position: absolute;
        top: 8px;
        left: -11px;
        width: 30px;           /* short horizontal line */
                height: 1.2px !important;
        background: #333;
        transform: none;        /* remove rotation */
        transform-origin: left center;
        transition: width 0.3s ease;
      }
.timeline-item1.empty {
    pointer-events: none;
    visibility: hidden;
    margin-bottom: 10px;
}
      .timeline-item1.active .year-line {
        width: 80px;            /* extend line when active */
      }

    .timeline-item1.active .year-line {
        height: 1.2px !important; /* dynamic height handled by JS */
    }

    .timeline-item1 .year-label
    {
               left: 27px;
        top: -1px;
        transform: none;
        text-align: left;
        position: absolute;
    }
    /*
    .timeline-item1 .year-desc {
               left: 27px;
        top: -1px;
        transform: none;
        text-align: left;
        position: absolute;
    }*/

   /* .timeline-item1 .year-desc.left {
        right: auto;
        left: 50px;
        text-align: left;
    }*/
    .timeline-item1 .year-desc {
      position: absolute; /* override absolute */
      left: 0;
      top: 10px;
      padding: 10px;
                 width: calc(100% - 0px) !important;/* now it will take full width of parent column */
      max-width: none;
      transform: none;
      text-align: left;
      background: #edebeb;
      margin-top: 15px;
      z-index: 1;
  }

  /* optional small tweak for spacing */
  .timeline-item1 .year-desc.left {
      left: 0;
      right: auto;
  }
   .timeline-item1.last{
        height: 0px;
    margin-bottom: 4px;
  }
.sec-pad.timeline-sec-pad{
    padding: 30px 0px 30px;
}
}

.timeline-model .btn-close {
    position: absolute;
    top: 21px;
    right: 0.75rem;
}
