@font-face {
    font-family: 'Clarendon Regular';
    src: url('../fonts/Clarendon-Regular.woff2') format('woff2'),
        url('../fonts/Clarendon-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Clarendon Bold';
    src: url('../fonts/Clarendon-Bold.woff2') format('woff2'),
        url('../fonts/Clarendon-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

:root {
    --primary-dark: #1A2A10;
    --primary-mid: #2E4A1E;
    --secondary-gold: #B68600;
    --accent-blue: #5B7B92;
    --bg-cream: #F6F3E5;
    --text-dark: #243222;
    --font-heading: 'Clarendon Regular', serif;
    --font-heading-bold: 'Clarendon Bold', serif;
    --font-body: "Jost", sans-serif;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
a:hover {
	text-decoration:none !important;
}
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.serif-font {
    font-family: var(--font-heading);
    font-weight: 600;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1440px;
}

/* Navbar */
.topbar {
    background-color: #2F4E2A;
    color: #fff;
}
header .top-header ul.uk-navbar li a:hover {
    color: var(--secondary-gold);
}
.topbar_inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.topbar .top_nav {
    margin-right: 20px;
}

.topbar ul {
    list-style: none;
    padding: 0px 0px;
    margin: 0;
    display: flex;
}

.topbar ul li {
    display: inline-block;
    padding: 10px 15px;
}

.top_social li {
    border-left: 1px solid #ffffff80;
}


.topbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
}

.topbar ul li a:hover {
    color: var(--secondary-gold);
}

.search-btn {
    background-color: transparent;
    border: none;
    margin-left: 10px;
}


header .top-header {
    padding: 10px 0;
}


.navbar {
    /* background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
    padding: 10px 0;
}

.navbar .navbar-brand {
    position: absolute;
    left: 20px;
    top: -30px;
    width: 150px;
    transition: all 0.4s ease-in-out;
}

.navbar.header-sticky .navbar-brand {
    top: -5px;
    transform: scale(0.95);
}


.navbar-brand img {
    width: 100%;
}

.nav-link {
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 10px;
    font-size: 1.2rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

.nav-link:hover {
    color: var(--secondary-gold);
}

.btn-cta {
    background-color: var(--secondary-gold);
    color: #fff;
    font-weight: 600;
    padding: 1.3rem 4.3rem;
    border-radius: 0;
    text-transform: capitalize;
    font-size: 1rem;
    border: none;
    transition: 0.3s;
    text-decoration: none;
    letter-spacing: 0.3px;
    position:relative;
    z-index:3;
}

.btn-cta:hover {
    background-color: var(--primary-dark);
    color: #fff;
}

/* Hero Section */
.about_banner {
    position: relative;
    background: url('../images/about-banner.png');
    background-size: cover;
    background-position: 0% 40%;
    height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.about_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.about_banner .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.about_banner h1 {
    font-size: 4rem;
    line-height: 4.5rem;
    color: #F6F3E5;
    font-family: var(--font-heading-bold) !important;
    margin-bottom: 0px;
}

/* Intro Section */
.about_intro {
    background-color: var(--bg-cream);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_intro::before {
    content: '';
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    height: 90%;
    width: 100%;
    background: var(--bg-cream);
    background: url(../images/about_intro_bg.png);
    opacity: 1;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(1);
}

.about_intro .intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    margin-top: 2rem;
}

.about_intro .intro-title {
    font-size: 1.7rem;
    line-height: 2.5rem;
    font-weight: 200;
    margin-bottom: 2rem;
}

.about_intro .intro-title strong {
    font-weight: 700;
}

.about_intro .intro-text p {
    font-size: 1.45rem;
    line-height: 2.1rem;
    max-width: 90%;
    margin-inline: auto;
}

.about_intro .left-mask {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 310px;
    height: 100%;
}

.about_intro .left-mask img,
.about_intro .right-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.about_intro .right-mask {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 310px;
    height: 100%;
}


/* Who We Serve */
.who-we-serve {
    /* background-image: linear-gradient(to right, #405A3A, #29710069), url(../images/serve-bg.png); */
    background-image: url(../images/serve-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.who-we-serve .container {
    max-width: 1150px;
    margin-inline: auto;
}

.who-we-serve::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(64, 90, 58, 1) 60%, rgba(64, 90, 58, 0.6) 100%);
}

.section-title-bg {
    position: absolute;
    top: 13%;
    left: 50%;
    transform: translate(-40%, -50%);
    font-size: 13rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    font-family: var(--font-heading-bold);
    letter-spacing: 8px;
}

.section_title {
    font-size: 3.45rem;
    line-height: 4rem;
    font-family: var(--font-heading-bold);
}

.section_title span {
    color: var(--secondary-gold);
}

.serve_card_wrapper {
    display: flex;
    gap: 20px;
    padding-inline: 20px;
}


.card-serve {
    background-color: rgb(0 0 0 / 30%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3.5rem 4rem 4rem;
    transition: 0.3s;
}

.card-serve:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: translateY(-5px);
}

.card-serve h4 {
    color: #ffffff;
    /* text-transform: uppercase; */
    letter-spacing: 1.5px;
    font-size: 1.9rem;
    line-height: 2.5rem;
    margin-bottom: 2.95rem;
}

.card-serve h4 span {
    color: var(--secondary-gold);
}

.card-serve p {
    font-size: 1.4rem;
    line-height: 2rem;
    margin-bottom: 0px;
}


/* What We Do */
.what-we-do {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.do-card-main {
    background-color: var(--primary-dark);
    color: var(--bg-cream);
    border-radius: 15px;
    padding: 4rem 6rem;
    margin-bottom: 30px;
}

.destination-left {
    padding-right: 10rem;
}

.do-card-main h3 {
    font-size: 2.2rem;
    line-height: 3rem;
    letter-spacing: 3px;
    margin-bottom: 25px;
    color: var(--bg-cream);
}

.do-card-main ul li {
    font-size: 1.18rem;
    line-height: 2rem;
    font-family: var(--font-body);
    color: var(--bg-cream);
}


.do-card-small {
    border-radius: 15px;
    padding: 40px 25px;
    height: 100%;
    color: var(--bg-cream);
    display: flex;
    flex-direction: column;
}

.do-card-small.forest {
    background-color: #2F4E2A;
}

.do-card-small.gold {
    background-color: #B68600;
}

.do-card-small.blue {
    background-color: #3E5F82;
}

.do-card-small.green {
    background-color: #6FA96D;
}

.do-card-small h4 {
    color: #F6F3E5;
    font-size: 1.9rem;
    margin-bottom: 1rem;
    line-height: 2.5rem;
    letter-spacing: 3px;
    min-height: 100px;
    word-wrap: break-word;
}

.do-card-small p {
    color: #F6F3E5;
    font-size: 1.25rem;
    line-height: 2rem;
}

/* Funded Section */
.funded-section {
    background-color: var(--bg-cream);
    /* padding: 100px 0; */
}

.funded-section .container,
.mission-vision .container {
    width: 77.5%;
}

.funded-section .funded_upper {
    padding: 4rem 0px;
}

.funded-section .funded_left {
    max-width: 440px;
    width: 100%;
}

.funded-section .funded_left p {
    font-size: 1.25rem;
    line-height: 2rem;
    margin-bottom: 0px;
}

.funded-section .funded_right p {
    font-size: 1.25rem;
    line-height: 2rem;
    font-weight: 600;
}

.funded-section .funded-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    margin-bottom: 0px;
}

.funded-section .funded-list li {
    font-size: 1.2rem;
    line-height: 1.7rem;
}

.funded_bottom {
    background-color: #D9D8CA;
    padding: 5rem 5rem 4rem;
    border-radius: 20px;
    position: relative;
    z-index: 3;
}

.funded_bottom .funded_text {
    padding-right: 50px;
}


.funded_bottom p {
    font-size: 1.25rem;
    line-height: 2.1rem;
    margin-bottom: 0px;
}

.funded_bottom .bottom_right {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    align-items: flex-start;
}

.funded_bottom .bottom_right p {
    line-height: 1.8rem;
}



/* Mission Vision */
.mission-vision {
    background-color: var(--bg-cream);
    color: #fff;
    padding: 10rem 0rem 5rem;
    position: relative;
    margin-top: 0rem;
    z-index: 0;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: -10rem;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../images/mission-bg.png);
    background-repeat: no-repeat;
    z-index: -1;
}

.box-mission {
    background: rgba(255, 255, 255, 0.1);
    padding: 7rem 5.3rem;
    border-radius: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    row-gap: 3rem;
}

.box-mission h3 {
    color: #fff;
    margin-bottom: 0;
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.box-mission p {
    font-size: 1.55rem;
    line-height: 2.5rem;
    margin-bottom: 0px;
}



.mission_img img {
    width: 100%;
}

.leadership-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    text-align: left;
    padding: 7rem 5.3rem;
}

.leadership-card .leader_title {
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 35px;
}


.leadership-card p {
    font-size: 1.9rem;
    line-height: 2.5rem;
    margin-bottom: 10px;
    text-align: left;
    color: #ffffff;
    font-weight: 400;
}

.leadership-card .leader_subtitle {
    color: #222832;
    font-weight: 800;
}

/* Board Section */
.board-section {
    padding: 3rem 0;
    background-color: var(--bg-cream);
}

.board_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 8px;
    margin-bottom: 5rem;
}

.board_header .board_subtitle {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 2.6rem;
    color: #243222;
    margin-bottom: 0px;
}

.board_header .board_title {
    font-size: 3.2rem;
    line-height: 3.8rem;
    color: #243222;
    font-family: var(--font-heading-bold);
}

.board_header .board_text {
    max-width: 850px;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 0px;
}

.officers_inner {
    width: 100%;
    max-width: 920px;
    margin-inline: auto;
    margin-bottom: 4rem;
}

.board-card {
    text-align: center;
    margin: 0px 10px 40px;
}

.board-card img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 20px;
    object-position: 0% 10%;
}

.director_title {
    font-size: 1.9rem;
    line-height: 2.5rem;
    margin-bottom: 2rem;
}

.board-card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.board-card p {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin: 0;
}

.director_inner {
    max-width: 1150px;
    margin-inline: auto;
}

.director_inner .board-card {
    margin: 0px 0px 40px;
}

/* Trip inspiration */


.site-main .video-events.plan_trip .video-text::before {
    content: "Plan";
    text-align:left;
}


/*
.trip_inspiration {
    background-color: var(--bg-cream);
    padding: 6rem 0rem;
    position: relative;
    overflow: hidden;
}
*/


.plan_trip {
    padding-top: 50px;
}
.site-main .video-events.plan_trip .video-text{
	margin-top:0px;
}


.trip_inspiration .section-title-bg {
    position: absolute;
    top: -11%;
    left: 50%;
    transform: translate(-41%, 0%);
    font-size: 16.9rem;
    color: rgb(47 78 42 / 5%);
    font-family: var(--font-heading-bold);
    text-transform: uppercase;
}

.trip_inspiration .container {
    position: relative;
    z-index: 3;
}

.trip_inspiration .swiper {
    margin-top: 4rem;
}

.trip_inspiration .insta_slider_section {
    background-color: var(--bg-cream);
    padding: 0 0 6rem 0;
    overflow: hidden;
}

.trip_inspiration .instaSwiper {
    padding: 0px 30% 0px 0% !important;
    overflow: hidden !important;
    position: relative;
}

.trip_inspiration .instaSwiper:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 15%;
    height: 64%;
    background: #000;
    background: linear-gradient(90deg, rgb(0 0 0 / 58%) 13%, rgb(0 0 0 / 0%) 100%);
    z-index: 3;
}

.trip_inspiration .instaSwiper:after {
    content: '';
    position: absolute;
    right: 0px;
    top: 0px;
    width: 15%;
    height: 64%;
    background: #000;
    background: linear-gradient(270deg, rgb(0 0 0 / 58%) 13%, rgb(0 0 0 / 0%) 100%);
    z-index: 3;
}

.trip_inspiration .instaSwiper .swiper-wrapper {
    align-items: flex-start;
}

.trip_inspiration.insta_card {
    position: relative;
    border-radius: 0;
    overflow: visible;
    transition: transform 0.3s ease;
    margin: 5px;
}

.trip_inspiration .insta_card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.trip_inspiration .insta_info {
    padding: 20px 10px;
}

.trip_inspiration .insta_info h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    font-family: var(--font-headings);
    margin: 0;
    text-align: left;
    font-weight: 600;
}




/* Swiper Navigation Customization */
.instaSwiper .swiper-button-next,
.instaSwiper .swiper-button-prev {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    top: 40%;
}

.instaSwiper .swiper-button-next::after,
.instaSwiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.instaSwiper .swiper-button-prev {
    left: 5%;
}

.instaSwiper .swiper-button-next {
    right: 5%;
}


/* Newsletter */

/*
.newsletter {
    background-color: var(--secondary-gold);
    padding: 100px 0 150px;
    text-align: center;
    color: #fff;
    position: relative;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/newsletter-bg.png);
    background-size: cover;
    background-position: center;
    z-index: 0;
}
*/


.newsletter h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.newsletter p {
    font-size: 1.35rem;
    max-width: 900px;
    margin: 25px auto;
}

.newsletter .form-newsletter {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter .form-newsletter input {
    padding: 15px 20px;
    border-radius: 3px;
    border: none;
    flex-grow: 1;
    background-color: rgb(255 241 201 / 29%);
    color: #fff;
}

.newsletter .form-newsletter input::placeholder {
    color: #fff;
}

.newsletter .form-newsletter input:focus-visible {
    outline: none;
    box-shadow: none;
}

.newsletter .form-newsletter button {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 0 40px;
    border-radius: 3px;
    border: none;
    font-weight: 700;
}

/* Footer */
footer {
    background-color: #243921;
    color: #fff;
    padding: 140px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url(https://sugarriverregion.org/wp-content/uploads/2026/03/footer_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
footer .container{
	position:relative;
    z-index:3;
}
.footer_subtitle {
    color: var(--bg-cream);
    font-size: 1.25rem;
    font-family: var(--font-body);
    margin-bottom: 20px;
}

.footer_top {
    position: relative;
    top: 0rem;
    margin-top: -12rem;
}


footer ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

footer ul li {
    color: var(--bg-cream);
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 1.1rem;
}

footer a {
    color: var(--bg-cream);
    text-decoration: none;
    transition: 0.3s;
}

footer .social_icons_wrapper {
    flex-direction: row;
    column-gap: 15px;
    margin-top: 10px;
}

footer a:hover {
    color: var(--secondary-gold);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

.footer_multilogos {
    display: flex;
    align-items: center;
    column-gap: 3rem;
}

.footer_multilogos .footer_img {
    width: 140px;
}

.footer-bottom .copyright_text {
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: 0.3px;
    text-align: right;
    margin-bottom: 0px;
}



/* Things To Do Page Styles */
.things-todo-intro {
    padding: 120px 0 80px;
    background-color: #fff;
    /* Design shows white/cream */
}

.things-todo-intro .intro_title {
    font-size: 3.5rem;
    line-height: 4.2rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading-bold);
    color: var(--text-dark);
}

.things-todo-intro .intro_title strong {
    color: var(--secondary-gold);
}

.things-todo-intro .intro_text {
    font-size: 1.4rem;
    line-height: 2.1rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

/* Seasonal Sections */
.seasonal-sections {
    overflow: visible;
}

.seasonal-item {
    padding: 150px 0;
    position: relative;
    z-index: 1;
    margin-top: -100px;
    /* Overlap */
}

/* Wavy Dividers */
.seasonal-item::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.spring {
    background-color: #D3E4CD;
    border-radius: 0 0 100% 100% / 0 0 10% 10%;
    z-index: 1;
}

.summer {
    background-color: #F6F3E5;
    border-radius: 0 0 100% 100% / 0 0 10% 10%;
    z-index: 2;
}

.fall {
    background-color: #2E4A1E;
    border-radius: 0 0 100% 100% / 0 0 10% 10%;
    z-index: 3;
}

.winter {
    background-color: #5B7B92;
    border-radius: 0 0 100% 100% / 0 0 10% 10%;
    z-index: 4;
}

/* Masking for wave effect */
.seasonal-item {
    margin-top: -100px;
    /* Overlap */
}

.spring {
    clip-path: ellipse(150% 90% at 50% 100%);
}

.summer {
    clip-path: ellipse(150% 90% at 50% 100%);
    margin-top: -100px;
    padding-top: 150px;
}

.fall {
    clip-path: ellipse(150% 90% at 50% 100%);
    margin-top: -100px;
    padding-top: 150px;
}

.winter {
    clip-path: ellipse(150% 90% at 50% 100%);
    margin-top: -100px;
    padding-top: 150px;
}

.seasonal-content .season-icon {
    font-size: 2rem;
    color: var(--secondary-gold);
    margin-bottom: 0.5rem;
}

.seasonal-content .season-name {
    font-size: 3.5rem;
    font-family: var(--font-heading-bold);
    margin-bottom: 0.5rem;
}

.seasonal-content .season-subtitle {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
}

.seasonal-content p {
    font-size: 1.1rem;
    line-height: 1.8rem;
    opacity: 0.9;
}

.seasonal-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.seasonal-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.seasonal-image:hover img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
}

.play-btn:hover {
    color: var(--secondary-gold);
    transform: translate(-50%, -50%) scale(1.1);
}


.fall .season-icon,
.winter .season-icon {
    color: var(--secondary-gold);
}

/* Page Specific Newsletter */
.things-to-do-page .newsletter {
    clip-path: polygon(0 10%, 5% 8%, 10% 12%, 15% 7%, 20% 11%, 25% 9%, 30% 13%, 35% 8%, 40% 12%, 45% 9%, 50% 11%, 55% 8%, 60% 12%, 65% 9%, 70% 13%, 75% 8%, 80% 12%, 85% 9%, 90% 11%, 95% 8%, 100% 12%, 100% 100%, 0 100%);
    margin-top: -80px;
    padding-top: 180px;
    position: relative;
    z-index: 10;
}

.things-to-do-page .trip_inspiration {
    background-color: #F6F3E5;
    padding-bottom: 150px;
}

/* Media Queries Adjustment */

@media (max-width: 991px) {
    .things-todo-intro .intro_title {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .seasonal-image img {
        height: 400px;
        margin-bottom: 30px;
    }

    .seasonal-item {
        padding: 60px 0;
    }
}

/* Media Queries */

@media (max-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }

    .leadership-card {
        padding: 5rem 3.3rem;
    }

    .leadership-card .leader_title {
        margin-bottom: 20px;
    }

    .leadership-card p {
        font-size: 1.5rem;
        line-height: 2rem;
        margin-bottom: 10px;
    }

    .mission-vision::before {
        top: -14rem;
    }

    .box-mission {
        padding: 7rem 2.3rem;
        justify-content: flex-start;
    }

    .mission-vision {
        padding: 8rem 0rem 5rem;
    }

    .mission-vision .row {
        row-gap: 2.5rem;
    }

    .do-card-small h4 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 2.2rem;
        letter-spacing: 2px;
        min-height: 80px;
    }

    .do-card-small p {
        font-size: 1.15rem;
        line-height: 1.7rem;
    }

    .do-card-main h3 {
        font-size: 1.9rem;
        line-height: 2.5rem;
        margin-bottom: 20px;
    }

    .funded-section .funded_upper {
        padding: 0rem 0px 4rem;
    }

    .board_header .board_subtitle {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }

    .section_title {
        font-size: 3.3rem;
        line-height: 3.7rem;
    }

    .funded_bottom {
        padding: 4rem 4rem 3rem;
    }

    .director_title {
        font-size: 1.6rem;
        line-height: 2.5rem;
        margin-bottom: 1.2rem;
    }

    .board-card h4 {
        font-size: 1.25rem;
    }

    .trip_inspiration .insta_info h3 {
        font-size: 1.25rem;
    }

    .newsletter h2 {
        font-size: 2.2rem;
    }

    .instaSwiper .swiper-button-next,
    .instaSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .instaSwiper .swiper-button-next::after,
    .instaSwiper .swiper-button-prev::after {
        font-size: 15px;
    }

    .newsletter h2 {
        font-size: 1.9rem;
    }

    .newsletter p {
        font-size: 1.25rem;
        max-width: 820px;
    }
}

@media (max-width: 1199px) {
    .container {
        padding-inline: 20px;
    }

    .about_banner h1 {
        font-size: 3rem;
        line-height: 3.5rem;
    }

    .about_intro .intro-text {
        max-width: 740px;
    }

    .about_intro .intro-title {
        font-size: 1.4rem;
        line-height: 2.5rem;
    }

    .about_intro .intro-text p {
        font-size: 1.25rem;
        line-height: 2rem;
    }

    .card-serve h4 {
        font-size: 1.6rem;
        line-height: 2.2rem;
        margin-bottom: 1.95rem;
    }

    .card-serve p {
        font-size: 1.15rem;
        line-height: 2rem;
    }

    .section-title-bg {
        font-size: 10rem;
    }


    .do-card-main {
        padding: 4rem 4rem;
    }

    .do-card-small h4 {
        min-height: 50px;
    }



    .destination-left {
        padding-right: 5rem;
    }

    .do-card-small h4 {
        font-size: 1.4rem;
        line-height: 2.2rem;
    }

    .funded-section .funded_left {
        max-width: 380px;
        width: 100%;
    }

    .funded-section .funded-list {
        row-gap: 20px;
    }

    .funded-section .funded_left p {
        font-size: 1.15rem;
        line-height: 2rem;
    }

    .funded-section .funded-list li {
        font-size: 1.15rem;
        line-height: 2rem;
    }

    .funded_bottom {
        padding: 4rem 2rem 3rem;
    }

    .box-mission h3 {
        font-size: 1.9rem;
    }

    .box-mission {
        padding: 4rem 2.3rem;
        row-gap: 2rem;
    }

    .box-mission p {
        font-size: 1.15rem;
        line-height: 2rem;
    }

    .mission-vision::before {
        background-size: cover;
    }

    .leadership-card {
        padding: 3rem 1.3rem;
    }

    .leadership-card .leader_title {
        font-size: 1.9rem;
    }

    .leadership-card p {
        font-size: 1.25rem;
        line-height: 1.8rem;
    }

    .board_header .board_subtitle {
        font-size: 1.25rem;
        line-height: 2.2rem;
    }

    .section_title {
        font-size: 2.8rem;
        line-height: 3.5rem;
    }

    .board_header .board_text {
        font-size: 1.25rem;
    }

}

@media (max-width: 991px) {
    .navbar .container-fluid {
        justify-content: flex-end;
    }

    .navbar .navbar-toggler {
        background-color: transparent;
        border: none;
        box-shadow: none;
    }

    .navbar .navbar-brand {
        width: 120px;
    }

    .navbar .navbar-collapse {
        position: absolute;
        top: 58px;
        background-color: #fff;
        width: 100%;
        left: 0px;
        padding: 60px 30px 30px;
        z-index: -1;
    }

    .navbar .navbar-nav {
        margin-bottom: 10px;
    }

    .about_intro {
        height: auto;
    }

    .card-serve {
        padding: 3.5rem 2rem 3rem;
    }


    .about_banner h1 {
        font-size: 3rem;
        line-height: 3.5rem;
    }

    .funded-section .funded_left {
        max-width: 100%;
    }

    .mb-5 {
        margin-bottom: 1.5rem !important;
    }

    .funded_bottom .funded_text {
        padding-right: 20px;
    }

    .funded_bottom {
        padding: 3rem 1rem 3rem;
    }

    .btn-cta {
        padding: 1.15rem 3.3rem;
    }

    .trip_inspiration .btn-cta {
        display: inline-flex;
        margin-top: 15px;
    }

    .trip_inspiration .text-center {
        text-align: left !important;
    }

    .funded_bottom p {
        font-size: 1.15rem;
        line-height: 2rem;
    }

    .funded-section .container,
    .mission-vision .container {
        width: 85%;
    }

    .section-title-bg {
        font-size: 8rem;
    }

    .leadership-card {
        padding: 3rem 1.5rem;
    }

    .mission-vision {
        padding: 5rem 0rem 1rem;
    }

    .mission-vision .row {
        row-gap: 0rem;
    }

    .officers_inner {
        margin-bottom: 2rem;
    }

    .trip_inspiration .section-title-bg {
        top: -3%;
        left: 50%;
        transform: translate(-31%, 0%);
        font-size: 10rem;
    }

    .board-section {
        padding: 5rem 0px 0rem;
        background-color: var(--bg-cream);
    }

    footer .row {
        row-gap: 3rem;
    }

    .section_title {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .newsletter h2 {
        font-size: 1.5rem;
    }

    .newsletter p {
        font-size: 1.15rem;
        max-width: 720px;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .navbar .navbar-collapse {
        top: 50px;
    }

    .funded-section .container,
    .mission-vision .container {
        width: 100%;
    }

    .topbar ul li {
        display: inline-block;
        padding: 5px 5px;
    }

    .topbar ul li a {
        font-size: 12px;
        line-height: 18px;
    }

    .navbar-toggler-icon {
        display: inline-block;
        width: 1.2em;
        height: 1.2em;
    }


    .about_intro .left-mask,
    .about_intro .right-mask {
        opacity: 0.5;
    }

    .about_banner h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .about_intro .intro-title {
        font-size: 1.18rem;
        line-height: 2rem;
    }



    .about_intro .intro-text p {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .about_intro::before {
        height: 55%;
    }

    .card-serve h4 {
        font-size: 1.25rem;
        line-height: 2.2rem;
        margin-bottom: 1rem;
    }

    .serve_card_wrapper {
        flex-direction: column;
        padding-inline: 0px;
    }


    .card-serve {
        padding: 3rem 2.5rem 3rem;
    }

    .do-card-small {
        padding: 40px 2.5rem;
    }

    .do-card-main {
        padding: 3rem 2.5rem;
    }

    .do-card-main h3 {
        font-size: 1.6rem;
        line-height: 2.5rem;
    }

    .destination-left {
        padding-right: 0;
    }

    .lead {
        font-size: 1.15rem;
    }

    .section-title-bg {
        font-size: 5.5rem;
        transform: translate(-45%, -50%);
    }


    .what-we-do {
        padding: 70px 0;
    }

    .funded_bottom .funded_text {
        padding-right: 0px;
        padding-bottom: 25px;
    }

    .box-mission h3 {
        font-size: 1.6rem;
    }

    .box-mission {
        row-gap: 1rem;
    }

    .leadership-card {
        padding: 1.5rem;
    }

    .mission-vision {
        padding: 5rem 0rem 5rem;
    }

    .funded_bottom {
        padding: 3rem 1.5rem 3rem;
        margin-inline: 0px;
    }

    .board-card h4 {
        font-size: 1.15rem;
    }

    .board-card p {
        font-size: 1rem;
    }

    .trip_inspiration .text-center {
        text-align: left !important;
    }



    .trip_inspiration .section-title-bg {
        top: 0%;
        font-size: 9rem;
    }

    .trip_inspiration .instaSwiper {
        padding: 0px 6% 0px 10% !important;
    }

    .footer_multilogos {
        justify-content: center;
    }


    .footer-bottom .copyright_text {
        text-align: center;
    }

    footer .footer-bottom .row {
        row-gap: 2rem;
    }

    .insta_info h3 {
        font-size: 1.2rem;
    }

    .instaSwiper .swiper-button-next,
    .instaSwiper .swiper-button-prev {
        width: 45px;
        height: 45px;
    }

    .instaSwiper .swiper-button-next::after,
    .instaSwiper .swiper-button-prev::after {
        font-size: 18px;
    }

}


@media (max-width: 576px) {
    .container {
        padding-inline: 12px;
    }

    .topbar .top_nav {
        display: none;
    }

    .topbar ul li {
        display: inline-block;
        padding: 5px 12px;
    }

    .navbar .navbar-brand {
        width: 100px;
        top: -20px;
    }

    .section_title {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }

    .about_intro::before {
        height: 30%;
    }

    .about_banner h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .about_intro,
    .who-we-serve,
    .what-we-do {
        padding: 60px 0;
    }

    .section-title-bg {
        font-size: 3.2rem;
        letter-spacing: 0px;
        transform: translate(-40%, 0%);
        top: 3%;
    }

    .card-serve,
    .do-card-main,
    .do-card-small,
    .funded_bottom,
    .box-mission {
        padding: 2rem 1.5rem;
    }

    .funded_bottom .col-12 {
        padding: 0px;
    }

    .funded-section .funded_right p,
    .card-serve p,
    .do-card-small p,
    .funded-section .funded_left p,
    .funded-section .funded-list li,
    .funded_bottom p,
    .box-mission p,
    .board_header .board_text,
    .lead,
    .do-card-main ul li {
        font-size: 1rem;
        line-height: 1.6rem;
    }

    .funded-section .funded-list {
        row-gap: 10px;
    }

    .funded-section .funded_left {
        margin-bottom: 15px;
    }

    .do-card-main h3,
    .do-card-small h4,
    .box-mission h3,
    .leadership-card .leader_title {
        font-size: 1.25rem;
        line-height: 2rem;
        letter-spacing: 2px;
    }

    .leadership-card .leader_title {
        margin-bottom: 10px;
    }

    .do-card-small h4 {
        min-height: auto;
    }

    .leadership-card p {
        font-size: 1rem;
        line-height: 1.8rem;
        margin-bottom: 0px;
    }

    .mb-5 {
        margin-bottom: 1rem !important;
    }

    .btn-cta {
        padding: 1rem 2.5rem;
    }

    .board-section {
        padding: 4rem 0px 0rem;
    }

    .board_header .board_subtitle {
        font-size: 1.15rem;
        line-height: 2.2rem;
    }

    .board_header {
        margin-bottom: 3rem;
    }

    .director_title {
        font-size: 1.4rem;
        line-height: 2rem;
    }

    .board-card {
        margin: 0px 0px 40px;
    }

    .trip_inspiration {
        padding: 3rem 0rem;
    }

    .trip_inspiration .section-title-bg {
        font-size: 6rem;
    }

    .trip_inspiration .instaSwiper {
        padding: 0px 0% 0px 0% !important;
    }

    .instaSwiper .swiper-button-next,
    .instaSwiper .swiper-button-prev {
        width: 30px;
        height: 30px;
    }

    .instaSwiper .swiper-button-next::after,
    .instaSwiper .swiper-button-prev::after {
        font-size: 14px;
    }

    .trip_inspiration .insta_info h3 {
        font-size: 1rem;
    }

    .trip_inspiration .insta_info {
        padding: 20px 10px;
    }

    .newsletter {
        padding: 60px 0 100px;
    }

    .newsletter h2 {
        font-size: 1.4rem;
        line-height: 2rem;
    }

    .newsletter .form-newsletter {
        flex-direction: column;
    }

    .newsletter .form-newsletter button {
        padding: 15px 40px;
    }

    .footer_top {
        margin-top: -9rem;
    }

    .footer_multilogos {
        flex-direction: column;
        row-gap: 30px;
    }
}