:root {
    --blue-color: rgba(77, 106, 143, 1);
    --green-color: rgba(0, 167, 157, 1);
    --lime-color: rgba(228, 238, 113, 1);
    --pink-color: rgba(242, 56, 254, 1);
    --light-blue-color: rgba(240, 249, 253, 1);
    --black-color: rgba(0, 0, 0, 1);
    --blue-2-color: rgba(77, 106, 143, 1);
}

/*
RESET + BASE CSS
*/

/* 1. Box sizing  */
*, *::before, *::after {
    box-sizing: border-box;
}

/* 2. Remove margins and padding */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}

/* 3. HTML5 elements like block */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

@media(min-width: 1200px) {
    .container {
        max-width: 1224px;
    }
}

/* 4. Basic font in body */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Manrope", 'sans-serif';
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: rgba(17, 43, 77, 1);
    background-color: rgba(240, 249, 253, 1);
}


section ,header {
    width: 100%;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    transition: 0.3s all ease-in-out;
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
}

a:hover {
    text-decoration-line: underline;
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
}

h1, h2, h3, h4,h5 {
    font-family: "Parkinsans", sans-serif;
    font-weight: 600;
}

h1 {
    font-size: 60px;
    line-height: 72px;
}

h2 {
    font-size: 50px;
    line-height: 110%;
    letter-spacing: -2px;
}

h3 {
    font-size: 40px;
    line-height: 46px;
}

h4 {
    font-size: 30px;
    line-height: 36px;
}

h5 {
    font-size: 26px;
    line-height: 30px;
}

.parkinsans {
    font-family: "Parkinsans", sans-serif;
}

.regular-small-text {
    font-size: 16px;
    line-height: 22px;
}

.prominent-text {
    font-size: 30px;
    line-height: 41px;
}

/* Buttons on the site */

.button-linear-green {
    padding: 30px 60px;
    display: inline-flex;
    align-items: center;
    column-gap: 20px;
    border-radius: 24px;
    box-shadow: 0px 28px 77px 0px rgba(0, 167, 157, 0.3);
    background: linear-gradient(270.00deg, rgba(228, 238, 113, 1),rgba(0, 167, 157, 1) 100%);
    font-family: Parkinsans;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    color: rgba(255, 255, 255, 1);
}

.button-linear-green:hover {
    border-radius: 24px;
    box-shadow: 0px 28px 77px 0px rgba(0, 167, 157, 0.3);
    background: rgba(17, 43, 77, 1);
}

.button-blue-background {
    padding: 35px 60px;
    border-radius: 24px;
    box-shadow: 0px 15px 25px 0px rgba(17, 43, 77, 0.25);
    background: rgba(17, 43, 77, 1);
    color: var(--light-blue-color);
    font-family: Parkinsans;
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
}

.button-blue-background:hover {
    background-color: var(--green-color);
}

/* Buttons ends */

/* Header starts */

header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
}

.header-banner-text {
    padding: 20px;
    background-color: var(--light-blue-color);
    text-align: center;
    position: relative;
}

.header-banner-text p {
    color: var(--blue-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

.close-header-banner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: rgba(101, 128, 165, 1);
    font-size: 14px;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
}

.close-header-banner:hover {
    transform: translateY(-50%) scale(1.3);
}

nav .row {
    align-items: center;
    justify-content: space-between;
}

nav ul, .right-header-top {
    display: flex;
    align-items: center;
}

.right-header-top {
    justify-content: flex-end;
    column-gap: 30px;
}

header nav {
    padding-inline: 28px;
    border: 1px solid rgba(17, 43, 77, 0.1);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.01);
}

nav ul .sub-menu {
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 10px;
    box-shadow: 0px 28px 40px 0px rgba(17, 43, 77, 0.15);
    background: rgba(255, 255, 255, 1);
    transition: 0.3s all ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 40px;
    width: 350px;
}

nav #primary-menu li {
    position: relative;
}

nav #primary-menu li.menu-item-has-children .sub-menu li {
    width: 100%;
}

nav #primary-menu {
    justify-content: center;
}

nav #primary-menu li.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    z-index: 1;
    visibility: visible;
}

nav #primary-menu li.menu-item-has-children .sub-menu li a {
    padding: 10px 0;
}

nav #primary-menu li.menu-item-has-children .sub-menu li a:before {
    display: none;
}

nav #primary-menu li.menu-item-has-children .sub-menu li a:hover {
    color: var(--green-color);
}

#primary-menu li a {
    color: rgba(17, 43, 77, 1);
    font-size: 20px;
    font-weight: 600;
    line-height: 34px;
    padding: 40px 25px;
    display: inline-block;
    position: relative;
}

#primary-menu li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(270.00deg, rgba(0, 167, 157, 1),rgba(228, 238, 113, 1) 50%,rgba(242, 56, 254, 1) 100%);
    transition: 0.3s all ease-in-out;
}

#primary-menu li.menu-item-has-children a i {
    transition: 0.3s all ease-in-out;
    color: rgba(17, 43, 77, .2);
    font-size: 14px;
}

#primary-menu li.menu-item-has-children a:hover i {
    rotate: 180deg;
}

#primary-menu li a:hover:before {
    width: 100%;
}

header #social-menu li a {
    color: rgba(54, 64, 101, 1);
    font-size: 25px;
}

header #social-menu {
    column-gap: 20px;
}

.header-login-button a {
    font-size: 14px;
    font-weight: 700;
    line-height: 34px;
    color: rgba(54, 64, 101, 1);
    padding: 12px 40px;
    border: 2px solid rgba(17, 43, 77, 0.2);
    border-radius: 99px;
}

#primary-mobile-menu {
    display: none;
}

/* Header ends */

/* Hero section starts */

.hero-section {
    padding: 410px 0 255px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Hero section ends */

/* Feature Events */

.feature-events {
    padding-top: 10px;
}

.feature-event-wrapper {
    display: flex;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 15px 15px 0px rgba(17, 43, 77, 0.05);
    padding: 10px;
}

.feature-events-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.feature-event-left img {
    height: 100%;
    object-fit: cover;
    height: 300px;
}

.feature-location p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.feature-events .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-events .swiper-button-next, .feature-events .swiper-button-prev {
    position: relative;
}

.feature-events-container {
    margin-top: 70px;
}

.feature-events .swiper-button-next, .feature-events .swiper-button-prev {
    opacity: 1;
}

.feature-events-container .swiper-pagination {
    transform: none;
    position: relative;
    padding: 50px 0 40px;
    column-gap: 30px;
    display: flex;
    justify-content: center;
    column-gap: 30px;
}

.feature-events-container .swiper-pagination-bullet {
    margin: 0 !important;
    background-color: rgba(0, 167, 157, .8);
    border: none !important;
}

.feature-events-container .swiper-pagination-bullet-active {
    background-color: rgba(0, 167, 157, 1);
}
/* Feature Events*/

/* Home volunteer opportunites */

.home-volunteer-op {
    padding-block: 60px;
}

.home-volunteer-op .row {
    align-items: center;
}

.green-gradient-btn {
    padding: 24px 20px;
    color: rgba(240, 249, 253, 1);
    font-size: 16px;
    font-weight: 700;
    line-height: 12px;
    border-radius: 99px;
    box-shadow: 0px 7px 22px 0px rgba(0, 0, 0, 0.12);
    background: linear-gradient(270.00deg, rgba(228, 238, 113, 1),rgba(0, 167, 157, 1) 0%);
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 320px;
    text-transform: uppercase;
}
/* Home volunteer opportunities ends */

/* Get Involved section */
.get-involved {
    padding-block: 100px;
}

.get-involved h2 {
    margin-bottom: 35px;
}

.involved-buttons {
    justify-content: center;
    row-gap: 10px;
}

.involved-buttons a {
    max-width: 100%;
    justify-content: space-between;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    border-radius: 24px;
    box-shadow: 0px 28px 77px 0px rgba(0, 167, 157, 0.3);
    padding: 30px 60px;
    height: 100%;
}

.involved-buttons a span {
    -webkit-mask-repeat: no-repeat;
    display: inline-flex;
    align-items: center;
    background-color: rgba(228, 238, 113, 1);
}

.involved-buttons .button-wrapper:first-of-type a span {
    width: 45px;
    height: 40px;
}

.involved-buttons .button-wrapper:nth-of-type(2) a span {
    width: 51px;
    height: 48px;
}
/* Get Involved section ends */

/* Change section */

.change-section {
    padding-block: 180px;
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
}

.change-inner {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}

.change-inner span {
    font-size: 106px;
    font-weight: 200;
    line-height: 145px;
    letter-spacing: -7px;
    color: rgba(228, 238, 113, 1);
}

.change-wrapper {
    height: 100%;
    padding-inline: 40px;
}

.change-column {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.change-column:last-of-type{
    border-right: 0;
}

.change-inner p {
    font-weight: 400;
}

.change-list {
    justify-content: center;
    margin-top: 80px;
}

#mobile-nav, .mobile-menu-wrapper {
    display: none;
}
/* Change section ends */

.feature-events-mobile {
    display: none;
}

.stories-section {
    padding-top: 100px;
}

.stories-section p:first-of-type {
    width: 700px;
    max-width: 100%;
    margin: 40px auto;
}

.story-slide {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 15px 15px 0px rgba(17, 43, 77, 0.05);
    padding: 10px;
}

.story-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 5px;
}

.default-arrow {
    opacity: 1 !important;
}

.story-date {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color:  rgba(17, 43, 77, 1);
}

.story-right p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color:  rgba(17, 43, 77, .6);
}

.story-right {
    padding: 40px 40px 40px 60px;
}

.stories-section .story-right p {
    margin: 0;
}

.story-right {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.story-right .fsp-details {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.story-right .fsp-details a {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: rgba(17, 43, 77, 1);
}

.story-right-arrow .fsp-picker-arrow span {
    -webkit-mask: url('/wp-content/uploads/2026/01/arrow-right.svg');
}

.default-arrow span {
    -webkit-mask: url('/wp-content/uploads/2025/12/arrow-left.svg');
    width: 22px;
    height: 15px;
    background-color: rgba(0, 167, 157, 1);
    transition: 0.3s all ease-in-out;
    -webkit-mask-repeat: no-repeat;
	padding: 0;
}

.fsp-picker-arrow.right span, .default-arrow.right span {
    -webkit-mask: url('/wp-content/uploads/2026/01/arrow-right.svg');
    opacity: 1;
}

.default-arrow {
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 69px;
    box-shadow: 0px 9px 15px 0px rgba(0, 0, 0, 0.05);
    background-color: rgba(255,255,255, 1);
    transition: 0.3s all ease-in-out;
    display: inline-flex;
    cursor: pointer;
}

.swiper-stories {
    overflow: visible;
}

.story-right-arrow {
    right: 20px !important;
}

.story-left-arrow {
    left: 20px !important;
}

.stories-pagination {
    position: absolute;
    z-index: 11;
    width: fit-content !important;
    left: calc(50% + 60px) !important;
    bottom: 45px !important;
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.swiper-pagination-bullet.active {
    margin: 0 !important;
    background-color: rgba(0, 167, 157, .8);
    border: none !important;
}

.swiper-pagination-bullet  {
    margin: 0 !important;
    background-color: rgba(0, 167, 157, 1);
    border: none !important;
}

.stories-container {
    max-width: 1305px;
}

.swiper-stories {
    max-width: calc(100% - 245px);
}

.swiper-stories {
    position: static !important;
}

.stories-container {
    max-width: 1440px;
    position: relative;
}

.grey-button {
    font-size: 14px;
    font-weight: 700;
    line-height: 10px;
    color: rgba(54, 64, 101, 1);
    display: inline-block;
    border: 2px solid rgba(17, 43, 77, 0.2);
    border-radius: 99px;
    text-align: center;
    padding: 18px 40px;
    text-transform: uppercase;
}

.button-container .grey-button {
    margin: 40px auto;
}

.button-container .button-wrapper {
    display: flex;
    justify-content: center;
}

.story-right .story-details-bottom {
    display: none;
}

/* Footer */

.footer-icon-list {
    display: flex;
    align-items: center;
    column-gap: 50px;
    padding-block: 32px;
}

.footer-icon-wrapper {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.footer-icon-wrapper p {
    font-weight: 600;
}

footer {
    width: 100%;
}

.footer-bottom {
    background-color: rgba(17, 43, 77, 1);
    color: rgba(77, 106, 143, 1);
    font-size: 14px;
    font-weight: 400;
    line-height: 34px;
    position: relative;
}

.footer-bottom:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(270.00deg, rgba(0, 167, 157, 1),rgba(228, 238, 113, 1) 50%,rgba(242, 56, 254, 1) 100%);
    top: 0;
    left: 0;
}

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

.footer-logos {
    padding-block: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 40px;
}

.footer-bottom-info p, .footer-bottom-info  a, .footer-bottom-info a {
    font-size: 14px;
    font-weight: 400;
    line-height: 34px;
    color: rgba(77, 106, 143, 1);
}

.footer-bottom ul {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
}

.footer-bottom-info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
    column-gap: 30px;
}

.registration-notice {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.registration-notice span {
    position: relative;
}

.registration-notice span:before {
    content: '';
    position: absolute;
    left: -15px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(77, 106, 143, 1);
    top: 50%;
    transform: translateY(-50%);
}

.copyright-wrapper, #privacy-menu li a {
    position: relative;
}

.copyright-wrapper:before, #privacy-menu li a:before {
    content: '';
    position: absolute;
    right: -15px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(77, 106, 143, 1);
    top: 50%;
    transform: translateY(-50%);
}

.footer-bottom-info-mobile {
    display: none;
}


/* Footer ends */


/* =========================
   DEFAULT = MONTHLY VIEW
========================= */

#fsp-calendar,
#fsp-weekdays {
    display: grid;
}

#fsp-daily-view,
#fsp-daily-view-wrapper,
.fsp-small-weekdays,
#small-calendar-grid {
    display: none;
}


/* =========================
   DAILY VIEW
========================= */

body[data-calendar-view="daily"] #fsp-calendar,
body[data-calendar-view="daily"] #fsp-weekdays {
    display: none;
}

body[data-calendar-view="daily"] #fsp-daily-view {
    display: flex;
}

body[data-calendar-view="daily"] #fsp-daily-view-wrapper {
    display: block;
}


body[data-calendar-view="daily"] #small-calendar-grid {
    display: grid;
}





.green-border-btn  {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    padding: 13px 20px;
    width: 100%;
    display: block;
    border: 2px solid var(--green-color);
    border-radius: 99px;
    text-transform: uppercase;
    color: rgba(240, 249, 253, 1);
}

.green-border-btn:hover {
    background-color: var(--green-color);
    color: #ffffff;
}

.blue-btn-icon {
    padding: 35px 60px;
    background-color: rgba(17, 43, 77, 1);
    font-family: 'Parkinsans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    color: rgba(240, 249, 253, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 24px;
    box-shadow: 0px 15px 25px 0px rgba(17, 43, 77, 0.25);
}

.blue-btn-icon:hover {
    background-color: var(--green-color);
}

.no-events {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 20px;
    text-transform: uppercase;
    width: 100%;
    font-weight: 700;
}

@media(max-width: 1200px) {
    .footer-icon-list {
        column-gap: 12px;
    }

    .blue-btn-icon {
        padding-inline: 30px;
    }
}

@media(max-width: 991px) {

    body[data-calendar-view="daily"] .fsp-small-weekdays {
        display: grid;
    }

    section {
        overflow: visible;
    }

    h2 {
        line-height: 120%;
    }

    #desktop-nav {
        display: none;
    }

    /* Mobile menu */

    .header-banner-text {
        display: none;
    }

    #mobile-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
    }

   .hamburger-menu {
       width: 30px;
       height: 19px;
       position: relative;
   }

   .hamburger-menu span {
       position: absolute;
       width: 100%;
       height: 3px;
       border-radius: 6px;
       background-color: rgba(17, 43, 77, .3);
       left: 0;
       transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;

   }

   .hamburger-menu span:nth-of-type(1) {
       top: 0;
   }

   .hamburger-menu span:nth-of-type(2) {
       top: 8px;
   }

   .hamburger-menu span:nth-of-type(3) {
       top: 16px;
   }

   .mobile-logo a {
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .mobile-menu-wrapper {
       display: block;
       position: fixed;
       top: 72px;
       background-color: rgba(17, 43, 77, 1);
       width: 100%;
       height: calc(100vh - 72px);
       z-index: 100;
       padding: 30px 10px 10px;
       transform: translateX(100%);
       transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
   }

   body.open .mobile-menu-wrapper {
       transform: translateX(0);
   }

   .mobile-menu-wrapper:before {
       content: '';
       position: absolute;
       width: 100%;
       height: 5px;
       background: linear-gradient(270.00deg, rgba(0, 167, 157, 1),rgba(228, 238, 113, 1) 50%,rgba(242, 56, 254, 1) 100%);
       top: 0;
       left: 0;
   }

    #primary-mobile-menu {
       display: flex;
       flex-direction: column;
       row-gap: 2px;
       justify-content: center;
       align-items: center;
       text-align: center;
   }

   #primary-mobile-menu li {
       width: 100%;
   }

   #primary-mobile-menu li a {
       color: rgba(146, 184, 234, 1);
       font-size: 20px;
       font-weight: 600;
       line-height: 34px;
       width: 100%;
       display: block;
       padding-block: 30px;
       background-color: rgba(77, 106, 143, 0.1);
       border-radius: 10px;
   }

   .mobile-menu .sub-menu {
       display: none;
   }


   .mobile-menu li.menu-item-has-children.active a {
       background-color: rgba(169, 206, 255, 1);
       color: rgba(17, 43, 77, 1);
   }

   .mobile-menu li.active {
       border: 2px solid rgb(146, 184, 234);
       border-radius: 10px;
   }

   .mobile-menu li.active .sub-menu {
       display: block;
   }


   .mobile-menu li.active > a {
       border-bottom: 1px solid rgba(146, 184, 234, 0.1);
   }


   .mobile-menu a i {
       font-size: 15px;
       color: rgba(146, 184, 234, .2);
   }

   .mobile-menu li.active a i {
       rotate: 180deg;
   }

   body.open {
       overflow: hidden;
   }

    body.open .hamburger-menu span:nth-child(1) {
        transform: translateY(8px) rotate(-45deg);
    }

    body.open .hamburger-menu span:nth-child(2) {
        opacity: 0;
    }

    body.open .hamburger-menu span:nth-child(3) {
        transform: translateY(-8px) rotate(45deg);
    }

    body.open .hamburger-menu span {
        background-color: rgba(17, 43, 77, 1);
    }

    .right-header-top {
        justify-content: flex-start;
        row-gap: 30px;
        flex-direction: column-reverse;
        margin-top: 30px;
    }

    .mobile-menu-wrapper #header-login-button {
        padding: 20px;
        width: 50%;
        border: 2px solid rgba(77, 106, 143, 0.2);
        border-radius: 222px;
        font-size: 20px;
        font-weight: 600;
        line-height: 34px;
        color: rgba(146, 184, 234, 1);
        text-align: center;
        display: block;
    }

    .mobile-menu-wrapper #social-menu {
        display: flex;
        align-items: center;
        flex-direction: row;
        column-gap: 20px;
    }

    .mobile-menu-wrapper #social-menu a {
        color: rgba(146, 184, 234, 1);
        font-size: 40px;
    }

    .header-login-button {
        width: 100%;
    }


    /* Mobile menu */

    .change-section {
        padding-block: 100px;
    }

    .change-wrapper {
        width: 100%;
        padding-inline: 0;
    }

    .change-inner {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .change-column {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .change-column:last-of-type {
        border: 0;
        margin-bottom: 0;
    }

    .change-inner span {
        font-size: 28px;
        line-height: 52px;
        letter-spacing: 0;
    }

    .change-inner p {
        color: rgba(146, 184, 234, 1);
    }


    .hero-section {
        padding: 222px 0 150px;
    }

    .feature-events-row {
        display: flex;
        flex-direction: column;
        row-gap: 4px;
    }

    .feature-events-container {
        display: flex;
        flex-direction: column;
        row-gap: 4px;
    }

    .feature-events-container {
        margin-top: 30px;
    }

    .feature-events .container {
        justify-content: center;
    }

    .feature-events .swiper-button-next, .feature-events .swiper-button-prev {
        display: none;
    }

    .feature-events {
        display: none;
    }

    .feature-events-mobile {
        display: block;
    }

    .fsp-daily-right {
        height: auto;
    }

    .fsp-location {
        margin-top: 6px;
    }

    .feature-event-wrapper {
        padding: 4px;
    }

    .fsp-details a {
        line-height: 0;
    }

    .new-group {
        display: none;
    }

    .new-group.show {
        display: block;
    }

    #show-more {
        font-size: 14px;
        font-weight: 700;
        line-height: 10px;
        color: rgba(54, 64, 101, 1);
        display: block;
        width: 100%;
        border: 2px solid rgba(17, 43, 77, 0.2);
        border-radius: 99px;
        text-align: center;
        padding-block: 18px;
        margin-top: 20px;
    }

    .home-volunteer-op .row {
        justify-content: center;
        text-align: center;
        row-gap: 30px;
    }

    .story-slide {
        display: block !important;
    }

    .story-slide img {
        height: 330px;
    }

    .stories-container .default-arrow {
        display: none;
    }

    .swiper-stories {
        max-width: 100%;
    }

  .story-right .story-details-bottom {
        display: flex;
        justify-content: space-between;
    }

    .story-right .story-desktop-details {
        display: none;
    }

    .story-right .read-more {
        display: flex;
        align-items: center;
        column-gap: 10px;
    }

    .stories-pagination {
        position: relative !important;
        bottom: unset !important;
        margin-top: 20px;
        left: unset !important;
        width: 100% !important;
        justify-content: center;
    }

    .story-right {
        padding: 20px;
    }

    .story-slide {
        padding: 4px;
    }

    .footer-icon-list {
        width: 100%;
        flex-direction: column;
        padding-bottom: 0;
    }

    .footer-icon-wrapper {
        width: 100%;
        justify-content: space-between;
        padding-block: 30px;
        border-bottom: 1px solid rgba(17, 43, 77, .05);
        align-items: center;
        flex-direction: row-reverse;
    }

    .footer-icon-wrapper:last-of-type {
        border: 0;
    }

    .registration-notice span {
        display: block;
    }

    .registration-notice span:before {
        display: none;
    }

    .registration-notice {
        flex-direction: column;
        row-gap: 30px;
        margin-bottom: 30px;
    }

    .fsp-small-weekdays-mobile {
        padding: 25px 0;
        margin: 0;
    }

    .fsp-small-calendar-day {
        height: 50px;
    }

    .fsp-custom-calendar .container-fluid {
        padding-inline: 0;
    }

    .fsp-calendar-container > .container {
        background-color: rgb(11,33,61);
    }

    .small-calendar-holder {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        background: rgba(17, 43, 77, 1);
        max-width: 100%;
        margin-inline: auto;
    }
}

@media(max-width: 768px) {
    .change-section {
        padding-block: 60px;
    }

    .footer-bottom-info-desktop {
        display: none;
    }

    .footer-bottom-info-mobile {
        display: block;
    }

    .copyright-block {
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 30px;
    }
}

@media(max-width: 575px) {
    h1 {
        font-size: 32px;
        line-height: 38px;
        letter-spacing: 0;
    }

    h2 {
        font-size: 32px;
        line-height: 38px;
        letter-spacing: 0;
    }

    h3 {
        font-size: 26px;
        line-height: 31px;
        letter-spacing: 0;
    }

    h4 {
        font-size: 22px;
        line-height: 26px;
    }

    h5 {
        font-size: 20px;
        line-height: 24px;
    }

    p {
        font-size: 16px;
        line-height: 24px;
    }


    .regular-small-text {
        font-size: 14px;
        line-height: 19px;
    }

    .prominent-text {
        font-size: 18px;
        line-height: 24px;
    }

    .change-section {
        padding-block: 40px;
    }

    .change-list {
        margin-top: 20px;
    }

    .hero-section {
        padding: 144px 0 72px;
    }

    .hero-logo img {
        width: 360px;
        max-width: 100%;
        margin-inline: auto;
    }

    .feature-event-left {
        height: 120px;
    }

    .feature-event-left img {
        height: 100%;
    }

    .fsp-daily-left {
        width: 90px;
    }

    .fsp-daily-right {
        width: calc(100% - 90px);
    }

    .fsp-daily-right {
        padding: 16px;
    }

    .home-volunteer-op {
        padding-block: 40px;
    }

    .get-involved {
        padding-block: 40px;
    }

    .involved-buttons a {
        padding: 20px;
        font-size: 18px;
        line-height: 22px;
    }

    .involved-buttons .button-wrapper:first-of-type a span {
        width: 31px;
        height: 27px;
        -webkit-mask-size: contain !important;
        -webkit-mask-repeat: no-repeat !important;
    }

    .involved-buttons .button-wrapper:nth-of-type(2) a span {
        width: 32px;
        height: 30px;
        -webkit-mask-size: contain !important;
        -webkit-mask-repeat: no-repeat !important;
    }

    .stories-section p:first-of-type {
        margin-block: 20px;
    }

    .stories-section {
        padding-top: 40px;
    }

    .story-slide img {
        height: 200px;
    }

    .copyright-wrapper:before, #privacy-menu li a:before {
        display: none;
    }

    .footer-bottom ul li {
        text-align: center;
        line-height: 20px;
    }

    .footer-bottom ul li a {
        line-height: 20px;
    }

    .footer-bottom ul {
        padding-inline: 40px;
        margin-bottom: 30px;
    }

    .footer-bottom-info-mobile {
        position: relative;
        padding-top: 30px;
    }

    .footer-bottom-info-mobile:before {
        content: '';
        position: absolute;
        width: calc(100% + 24px);
        left: -12px;
        top: 0;
        height: 1px;
        background-color: rgba(255,255,255,.05);
    }
}

@media(max-width: 400px) {

    .feature-event-right h5 {
        font-size: 12px;
        line-height: 14px;
    }

    .fsp-location p {
        font-size: 10px;
        font-weight: 400;
        line-height: 14px;
    }

    .fsp-location {
        column-gap: 6px;
    }

    .fsp-daily-bottom p, .fsp-daily-bottom a {
        font-size: 10px;
        line-height: 14px;
    }

    .fsp-daily-bottom p {
        display: flex;
        align-items: center;
    }

    .feature-location img {
        width: 7px;
    }

    .fsp-daily-right {
        padding: 10px;
    }

    .footer-logos {
        flex-wrap: wrap;
    }

    .footer-logo-wrapper {
        width: calc(50% - 40px);
    }


}