body {
/*     font-family: "Nunito Sans", sans-serif; */
/* 	font-family: 'Protest Strike', sans-serif; */
	font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    line-height: 1.5;
    color: #000;
    overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

h1, .hero-title, .section-title {
    font-family: 'Protest Strike', sans-serif;
}

body, p, a, .text-content {
    font-family: 'Open Sans', sans-serif;
}

:root {

    --text-color: #000;
    --primary-color: #44b292;
    --light-gray: #f4f4f4;
    --dark-gray: #373a48;

}


a {
    color: black;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.gray-link {
    display: inline-block;
    line-height: 1;
    padding: .6em 1.2em;
    background-color: var(--dark-gray);
    color: #fff;
}

.gray-link:hover {
    background-color: #4a4a4a;
    color: #fff;
}


.green-link {
    display: inline-block;
    line-height: 1;
    padding: .6em 1.2em;
    background-color: var(--primary-color);
    color: #fff;
}

.green-link:hover {
    background-color: #54d9b2;
    color: #fff;
}



.green-text {
    color: var(--primary-color);
    text-transform: uppercase;
    max-width: 800px;
    margin: 0px auto 10px auto;
}


.white-text {
    color: #fff
}

.width-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.width-700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.width-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.width-1000 {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/***** HEADER / FOOTER *****/

/* Header container */
.the-menu-container {
    background: #fff;
    padding: 15px 0;
}

.the-menu {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
	gap: 40px;
}

/* Menu Mobile */


/* Hamburger Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 10000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    left: 0;
}

.mobile-menu-content {
    padding: 60px 30px 30px;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 36px;
    color: #333;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: #00a9ce;
}

.mobile-menu-contact {
    margin-top: 40px;
    padding-top: 20px;
}

.mobile-menu-contact a {
    font-size: 14px;
    text-decoration: none;
	font-weight: 700;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .the-menu .items.huge {
        display: none;
    }
    
    .the-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}



/* Logo */
.small-logo img {
    max-height: 80px;
    width: auto;
}

/* Menu items container */
.items.huge {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: space-between;
}

.items.huge > div:first-child {
    display: flex;
    gap: 30px;
}

/* Menu links */
.top-item {
    display: inline-block;
}

.top-item a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.top-item a:hover {
    color: #00a9a5;
}

/* Contact email */
.contact a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
	font-weight: 700;
}

.contact a:hover {
    color: #00a9a5;
}

/* Responsive */
@media (max-width: 768px) {
    .the-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .items.huge {
        flex-direction: column;
        gap: 15px;
    }
    
    .items.huge > div:first-child {
        flex-direction: column;
        text-align: center;
    }
}

.theme-header .top-bar {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 5px;
}

.theme-header .top-bar i {
    color: var(--dark-gray);
    font-size: 18px;

}

.theme-header .top-bar .col-contact span {
    display: inline-block;
    margin-right: 10px;
}

.theme-header .top-bar .col-contact a {
    color: #fff;
}

.theme-header .top-bar .col-social {
    text-align: right;
}

.social-bar .col-social {
    text-align: center;
    background-color: var(--primary-color);
}

.social-bar .col-social ul {
    margin: 0px;
    padding: 7px 0px 5px 0;
}

.theme-header .top-bar .col-social li, .social-bar .col-social li {
    display: inline-block;
}

.theme-header .top-bar .col-social li i, .social-bar .col-social li i {
    font-size: 22px;
    line-height: 18px
}

.theme-footer {
    background-color: var(--dark-gray);
    color: #fff;
    text-align: center;

}

.theme-footer .logo img {
    max-width: 300px;
    margin-bottom: 40px;
}

.theme-footer .footermenu {
    margin: 0;
    padding: 0;
    margin-bottom: 40px;
}

.theme-footer .footermenu li {
    display: inline-block;
}

.theme-footer .footermenu li a {
    text-decoration: underline;
    color: var(--primary-color);
    margin: 0 10px
}

.theme-footer .contact {
    font-size: 13px;
    margin-bottom: 20px;
}

.theme-footer .copyright {
    font-size: 12px;
}


.theme-footer .part1 {
    background-image: url(../../../../wp-content/uploads/2025/06/green-bg1.jpg);
    background-size: cover;
    background-position: 50% 100%;
    padding: 60px 15px;
}

.theme-footer .part1>div {
    max-width: 600px;
    margin: auto;
}

.theme-footer.better-exterior .part1>div {
    max-width: 600px;
    margin: auto;
}

.theme-footer .part2 {
    padding: 60px 0px;

}

.theme-footer .green-text {
    color: #fff;
    text-transform: uppercase;
    max-width: 800px;
    margin: 0px auto 10px auto;
}

.theme-footer h2 {
    color: var(--text-color);
    margin-bottom: 20px;
}

.theme-footer a {
    margin-top: 20px;

}

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

.theme-header .col-menu-icon {
    display: none;
}

/* .the-menu-container {
    display: none;
} */

@media (max-width : 767px) {

    .theme-header .col-contact span {
        display: block !important;
    }

    .theme-header .col-menu-icon {
        display: block;
    }

    .mobile-menu-icon {
        display: block;
        text-align: center;
    }

    .mobile-menu-icon .main-menu-icon {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        width: 30px;
        margin: 15px auto 0px 0;
    }

    .mobile-menu-icon .main-menu-icon span {
        width: 30px;
        height: 4px;
        background: #fff;
        transition: .3s;
        border-radius: 2px
    }



/*     .the-menu-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(20, 20, 20, .95);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        flex-direction: column
    }
 */
    .the-menu-container.active {
        display: flex
    }

    .the-menu {
        text-align: center;
        color: #fff;
        position: relative;
        width: 100%
    }

    .the-menu .children {
        width: 300px;
        margin: -5px auto 5px auto;
        line-height: 22px;
    }

    .the-menu .children a {
        font-size: 14px;
        line-height: 22px;
        margin: 0 !important;
    }

    .the-menu .small-logo img {
        margin-bottom: 30px;
    }

    .the-menu .items a {
        display: inline-block;
        margin: 7px 0;
        color: #fff;
        text-decoration: none;
        transition: color .3s ease
    }

    .the-menu .items a:hover {
        color: var(--primary-color)
    }

    .the-menu .items .contact {
        padding-top: 20px;
        line-height: 1.3;
        font-size: 15px
    }

    .the-menu .items .contact span {
        font-weight: 700;
        color: var(--primary-color)
    }

    .the-menu .items .contact a {
        margin: 0;
        color: #fff;
        text-decoration: none;
        transition: color .3s ease
    }

    .the-menu .items .contact {
        padding-top: 0px
    }

    .theme-header .top-bar {
        text-align: right;
        padding-top: 5px;
    }

    .theme-header .top-bar .col-social {
        display: none;
    }


}

/***** MENU/NAVIGATION *****/
.dropdown-menu {
    background-color: #373a48;
}

.dropdown-menu>li a {
    font-size: 14px !important;
    line-height: 25px !important;
}

.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
    background-color: transparent;
    background-image: none;
    filter: none;
}

.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover {
    background-color: transparent;
    background-image: none;
    filter: none;
}


/***** WPBAKERY *****/


.img-grid {
    display: grid;
    grid-gap: 10px;
    margin: 10px auto 0px auto;
    max-width: 1920px;
}

.img-grid .img-elem {
    display: flex;
}


.img-grid .img-elem>div {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    width: 100%;
}

.img-grid.img-grid-3 {
    grid-template-columns: 33.333% 1fr 33.333%;
    grid-template-rows: 250px;
}

.img-grid.img-grid-4 {
    grid-template-columns: 20% 1fr 20% 20% 20%;
    grid-template-rows: 200px 300px;
}

.img-grid.img-grid-4 .img-elem:nth-child(1) {
    grid-column: 1 / span 3;
    grid-row: 1;
}

.img-grid.img-grid-4 .img-elem:nth-child(2) {
    grid-column: 4 / span 2;
    grid-row: 1;
}

.img-grid.img-grid-4 .img-elem:nth-child(3) {
    grid-column: 1 / span 2;
    grid-row: 2;
}

.img-grid.img-grid-4 .img-elem:nth-child(4) {
    grid-column: 3 / span 3;
    grid-row: 2;
}

.img-grid.img-grid-5 {
    grid-template-columns: 20% 1fr 20% 20% 20%;
    grid-template-rows: 200px 300px;
}

.img-grid.img-grid-5 .img-elem:nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}

.img-grid.img-grid-5 .img-elem:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
}

.img-grid.img-grid-5 .img-elem:nth-child(3) {
    grid-column: 4 / span 2;
    grid-row: 1;
}

.img-grid.img-grid-5 .img-elem:nth-child(4) {
    grid-column: 3 / span 2;
    grid-row: 2;
}

.img-grid.img-grid-5 .img-elem:nth-child(5) {
    grid-column: 5;
    grid-row: 2;
}

.wpb_faqs {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.vc_images_carousel .vc_carousel-inner .vc_carousel-slideline .vc_carousel-slideline-inner>.vc_item a>img,
.vc_images_carousel .vc_carousel-inner .vc_carousel-slideline .vc_carousel-slideline-inner>.vc_item img {
    object-fit: cover;
    width: 100% !important;
    aspect-ratio: 1/1;
}


.vc_row.wpb_row.row-pool-expert {
    background-position: 100% 50% !important;
}

@media (max-width : 767px) {

    .vc_item {
        aspect-ratio: 16/9;
        width: calc(50vw - 10px) !important;
    }

}

.vc_row.wpb_row, .vc_row .vc_column-inner {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: 50% 50%;
}


.text-excerpt {
    line-height: 1.5;
}

.text-excerpt .green-text {
    color: var(--primary-color);
    text-transform: uppercase;
    max-width: 800px;
    margin: 0px auto 30px auto;
}

.text-excerpt h2 {
    margin-bottom: 5px;
}

.text-excerpt a {
    margin-top: 20px;
}

.text-excerpt>div:nth-child(1) {
    border-right: 2px solid var(--light-gray);
}

.text-excerpt>div:nth-child(1) .wpb_text_column {
    padding-right: 40px;
}

.text-excerpt>div:nth-child(2) .wpb_text_column {
    padding-left: 40px;
}

@media (max-width:767px) {
    .text-excerpt>div:nth-child(1) .wpb_text_column {
        padding-right: 0px;
    }

    .text-excerpt>div:nth-child(2) .wpb_text_column {
        padding-left: 0px;
    }

}

.wpb-pagebanner {
    text-align: center;
    color: #fff;
    padding: 40px 0 40px 0;
    min-height: 500px;
    background-size: cover;
    background-position: 50% 50%;
}

.wpb-pagebanner .navbar-brand, .wpb-pagebanner.navbar-nav>li>a {
    text-shadow: none
}

.wpb-pagebanner .nav>li>a:focus,
.wpb-pagebanner .nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
}

.wpb-pagebanner .mainmenu {
    margin: 30px 0 100px 0;
    padding: 0;
    float: none;
    display: flex;
    justify-content: center;
}

.wpb-pagebanner .mainmenu li {
    display: inline-block;
}

.wpb-pagebanner .mainmenu li a {
    text-decoration: none;
    color: #fff;
    margin: 0 10px;
    text-transform: uppercase;
    font-size: 18px;
}

.wpb-pagebanner .mainmenu li:after {
    content: "|";
    position: absolute;
    left: -2px;
    top: 13px;
}

.wpb-pagebanner .mainmenu li:first-child::after {
    display: none;
}


.wpb-pagebanner .green-text {
    color: var(--primary-color);
    text-transform: uppercase;
    max-width: 800px;
    margin: 0px auto 30px auto;
}

.wpb-pagebanner .green-text h5 {
    color: var(--primary-color);
}

.wpb-pagebanner .title {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.wpb-pagebanner h1 {
    font-size: 60px;
    font-family: 'Roboto';
    font-weight: 900;
}


@media (max-width : 767px) {
    .wpb-pagebanner h1 {
        font-size: 40px;
        font-family: 'Roboto';
        font-weight: 900;
    }

    .wpb-pagebanner h5 {
        margin-top: 40px;
        margin-bottom: -20px;
    }

    .wpb-pagebanner .the-logo img {
        width: 240px;
        margin-bottom: 20px;
    }

    .wpb-pagebanner {
        min-height: 200px;
    }
}


.wpcf7 label {
    margin-bottom: 20px;
    width: calc(50% - 30px) !important;
    display: inline-block;
    margin: 15px;

}

.wpcf7 label.l100 {
    margin-bottom: 20px;
    width: 100% !important;
    display: inline-block;
    margin: 15px;
}

.wpcf7-form-control {
    width: 100%;
    padding: 4px 10px;
    background-color: #fff;
    border: none;
    border: 1px solid #ccc;
    font-weight: 300;
    margin-bottom: 15px !important;

}

.wpcf7-textarea {
    height: 200px;
}

.wpcf7-form-control-wrap.your-message {
    width: 100% !important;
}

.wpcf7-submit {
    width: auto !important;
    margin: 20px auto;

    font-size: 17px;
    display: inline-block;
    line-height: 1;
    padding: .6em 1.2em;
    background-color: var(--primary-color);
    color: #fff;
}

.wpcf7 input, .wpcf7 textarea {
    font-size: 15px;
    line-height: 30px;
}

.wpcf7 .col-md-12 {
    text-align: center !important
}

.wpcf7-spinner {
    display: block;
}

@media (max-width : 991px) {
    .wpcf7-form-control-wrap {
        margin: 0px 0px 20px 0px;
        width: 100% !important;
        display: block;
    }
}

/***** PAGES *****/


.align-right {
    margin-right: 0px;
    margin-left: auto;
}


.image-round-bottom .align-right>.wpb_wrapper {
    padding: 50px 80px 50px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 460px;
}

.align-right.no-padding>.wpb_wrapper {
    padding-right: 0px
}

.align-left {
    margin-left: 0px;
    margin-right: auto;
    padding-left: 0px !important;
}



.image-round-bottom .align-left>.wpb_wrapper {
    padding: 50px 0px 50px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 460px;
}


.align-left.no-padding>.wpb_wrapper {
    padding-left: 0px
}

.align-right.no-padding, .align-left.no-padding {
    padding: 0px !important;
}

.align-right.text-center>.wpb_wrapper, .align-left.text-center>.wpb_wrapper {
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
}

@media (max-width : 1200px) {

    .align-left {
        margin-left: unset;
        margin-right: unset;
        padding-left: 15px !important;
    }


    .align-left>.wpb_wrapper {
        padding-left: 0px;
    }

    .align-right>.wpb_wrapper {
        padding-right: 0px;
    }

    .image-round-bottom>.vc_column_container {
        width: 100% !important
    }

    .image-round-bottom>.vc_column_container .half-container {
        width: 100%;
    }

    .image-round-bottom div:not(.align-right):not(.align-left).wpb_wrapper {
        min-height: 200px;
    }

    .image-round-bottom.image-left .vc_column_container {
        order: 1
    }

    .image-round-bottom.image-right .vc_column_container:nth-child(2),
    .image-round-bottom.image-left .vc_column_container:nth-child(1) {
        order: 2;
    }

    .image-round-bottom .align-right>.wpb_wrapper, .image-round-bottom .align-left>.wpb_wrapper {
        padding: 10px 0px 10px 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: unset;
    }


}

@media (max-width:767px) {

    .half-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .third-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .two-thirds-container, .align-left.two-thirds {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }





}

@media (min-width:768px) {
    .half-page-padding {
        width: calc(50vw - 375px);
        padding: 0px 15px;
    }

    .third-page-padding {
        width: calc(33.33vw - 250px);
        padding: 0px 15px;
    }


    .half-container {
        /*	width: 750px*/
        width: 375px;
        padding: 0px 15px;
    }

    .third-container {
        /*	width: 750px*/
        width: 250px;
        padding: 0px 15px;
    }

    .two-thirds-container {
        /*	width: 750px*/
        width: 500px;
        padding: 0px 15px;
    }
}

@media (min-width:1200px) {
    .half-page-padding {
        width: calc(50vw - 585px);
    }

    .third-page-padding {
        width: calc(50vw - 390px);
    }

    .half-container {
        /*	width: 1170px*/
        width: 585px;
        padding: 0px 15px;
    }


    .third-container {
        /*	width: 1170px*/
        width: 390;
        padding: 0px 15px;
    }

    .two-thirds-container {
        /*	width: 1170px*/
        width: 780;
        padding: 0px 15px;
    }
}

@media (min-width: 1360px) {
    .half-page-padding {
        width: calc(50vw - 647px);
    }

    .third-page-padding {
        width: calc(50vw - 431px);
    }

    .half-container {
        /*width: 1295px;*/
        width: 648px;
        padding: 0px 15px;
    }

    .third-container {
        /*width: 1295px;*/
        width: 431px;
        padding: 0px 15px;
    }

    .two-thirds-container {
        /*width: 1295px;*/
        width: 862px;
        padding: 0px 15px;
    }
}



/***** ANIMATIONS *****/

.animationRun {
    animation-play-state: running !important;
}

.animationHighlight {
    background-size: 400% 400%;
    background-image: linear-gradient(to left, #fff 0%, #fff 50%, #e5f0c3 50%, #e5f0c3 100%);
    animation: animationHighlightFrames 2s ease;
    animation-play-state: paused;
}

@keyframes animationHighlightFrames {
    0% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.animationTextIn {
    animation: animationTextInFrames 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation-play-state: paused;
}



@keyframes animationTextInFrames {
    0% {
        letter-spacing: 1em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        letter-spacing: normal;
        opacity: 1;
    }
}


.animationFocusIn {
    animation: animationFocusInFrames 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    animation-play-state: paused;
}

@keyframes animationFocusInFrames {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.animationSlideInRight {
    animation: animationSlideInRightFrames 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-play-state: paused;
}

@keyframes animationSlideInRightFrames {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}


.animationSlideInLeft {
    animation: animationSlideInRightFrames 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-play-state: paused;
}

@keyframes animationSlideInRightFrames {
    0% {
        -webkit-transform: translateX(-500px);
        transform: translateX(-500px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

.animationFadeIn {
    animation: animationFadeInFrames 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation-play-state: paused;
    animation-delay: 0.6s;
}

@keyframes animationFadeInFrames {
    0% {
        -webkit-transform: translateZ(-80px);
        transform: translateZ(-80px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

.animationHeartBeat {
    animation: animationHeartBeatFrames 0.4s both;
    animation-play-state: paused;
    animation-delay: 0.6s;
}

@keyframes animationHeartBeatFrames {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}



/* Hero Section */

.hero-title {
	font-size: 75px;
	color: #00abf6;
}

.hero-subtitle {
	font-size: 35px;
	max-width: 450px;
}

.vc_row.wpb_row.vc_custom_1759422238662 {
	background-size: 100% 50px !important;
}

.image-text-section .wpb_content_element {
	margin-bottom: 0;
}

.image-text-section img {
	border-radius: 30px;
}

/* Quote */

.quote-five.vc_custom_1759422238662 {
    background-position: center 65px;
}
    

.content-block h2 {
    color: #00abf6;
    font-size: 40px;
    font-weight: 800;
/* 	margin-bottom: 60px; */
	max-width: 430px;
}

.content-block .block p:first-of-type {
	font-size: 20px;
	max-width: 450px;
}

.content-block .vc_col-has-fill .vc_column-inner {
    border-radius: 30px;
    padding: 30px !important;
    height: 100%;
}

.content-block .vc_column_container:not(.vc_col-has-fill) .vc_column-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.content-block .vc_col-has-fill .wpb_text_column > .wpb_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.content-block .vc_col-has-fill .wpb_wrapper,
.content-block .vc_col-has-fill .wpb_text_column {
    height: 100%;
}

.content-block .vc_row-flex {
    flex-direction: row !important;
}

.content-block .vc_rtl-columns-reverse {
    flex-direction: row !important;
}

.content-block .vc_column_container:not(.vc_col-has-fill) .wpb_text_column {
    height: 100%;
}

.content-block .vc_column_container:not(.vc_col-has-fill) .wpb_text_column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
	max-height: 425px;
}

.video-placeholder {
    background: #e0e0e0;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-align: center;
    padding: 20px;
	width: 80%;
	max-width: 1000px;
    margin: 0 auto;

}

.video-placeholder p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.icons-feature-wrapper {
	 max-width: 1000px !important;
    /* margin: 0 auto !important; */
    /* justify-content: space-between; */
    width: 100%;
    /* display: flex !important
; */
    gap: 50px;
    flex-wrap: nowrap !important;
	margin: 60px auto !important
}

.icons-feature-wrapper .vc_column-inner {
	display: flex;
	justify-content: center;
}

.icon-feature {
    text-align: center;
    padding: 60px 20px;
    background: #e9f6ff;
    border-radius: 16px;
    max-height: 275px;
/*     max-width: 300px; */
}

.icon-circle {
/*     width: 120px;
    height: 120px; */
/*     background: #E8F7FF; */
/*     border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-circle img {
    max-width: 60px;
    max-height: 60px;
}

.icon-feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.icon-link {
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid #00abf6;
    border-radius: 20px;
    padding: 4px 14px;
    display: inline-block;
    transition: all 0.3s;
}

/* .icon-link:hover {
    background: #00a9ce;
    color: white;
    text-decoration: none;
}
 */


/* .charities-section {
    padding: 0 40px 0 0;
} */

 .charities-section {
            scroll-margin-top: 50px;
        }

.charity-section.us-section,
        .charity-section.canadian-section {
            padding: 40px 0 60px;
        }

        .charity-section.us-section > .wpb_column:first-child {
            padding-right: 40px;
        }

        .charity-section.us-section .charity-img {
            padding-left: 40px;
        }

        .charity-section.canadian-section > .wpb_column:first-child {
            padding-right: 20px;
        }

        .charity-section.canadian-section > .wpb_column:last-child {
            padding-left: 20px;
        }

        .charities-section h2 {
            font-size: 40px;
            line-height: 46px;
            color: #00abf6;
            font-weight: 800;
        }

        .charities-section .subtitle {
            font-size: 20px;
            margin-bottom: 80px;
        }

        .charities-section .intro-text {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .divider {
            border: none;
            border-top: 1px solid #8d8d8d;
            margin: 20px 0;
        }

        .divider.is-active {
            border-top-color: #000;
        }

        .charity-item {
            margin: 30px 0;
        }

        .charity-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 0;
            cursor: pointer;
            border: none;
            background: none;
            padding: 0;
            font: inherit;
            text-align: left;
            position: relative;
        }

        .charity-header:hover,
        .charity-header:focus-visible {
            color: #0089c0;
        }

        .charity-header:focus-visible {
            outline: 2px solid #00a9ce;
            outline-offset: 4px;
        }

        .charity-header h3 {
            font-size: 20px;
            font-weight: 700;
            margin: 0;
            flex: 1;
            color: #8d8d8d;
        }

        .charity-logo {
            max-height: 40px;
            margin-left: 12px;
        }

        .toggle-icon {
            margin-left: 12px;
            font-size: 24px;
            line-height: 1;
        }

        .toggle-icon::before {
            content: '+';
        }

        .charity-item.is-open .toggle-icon::before {
            content: '\2212';
        }

        .charity-content {
            display: none;
            margin-top: 10px;
        }

        .charity-content[hidden] {
            display: none;
        }

        .charity-item.is-open .charity-header h3 {
            color: #000;
        }

        .charity-item.is-open .charity-content {
            display: block;
        }

        .charity-link {
            color: #00a9ce;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
        }

        .charity-link:hover {
            text-decoration: underline;
        }

        .charity-address {
            font-size: 14px;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .charity-description {
            font-size: 15px;
            line-height: 1.6;
            color: #333;
        }

        .charity-name {
            font-size: 18px;
            font-weight: 600;
            color: #8d8d8d;
            margin: 10px 0;
        }

        .vc_row[data-vc-stretch-content] .vc_inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .charity-section .charity-img img {
            min-height: 600px;
            object-fit: cover;
            width: 100%;
            border-radius: 30px;
        }

.footer-section {
    background: #e9f6ff;
    padding: 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-menu a {
    font-size: 16px;
    transition: color 0.3s;
	text-decoration: underline;
}

.footer-menu a:hover {
    color: #00a9ce;
}

.footer-copyright {
    font-size: 14px;
    color: #666;
    margin: 0;
}

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

@media  (max-width: 1200px) {
	.charity-section.us-section > .wpb_column:first-child,
	.charity-section.us-section .charity-img {
		padding: 0 15px;
	}
	
	.charity-section.canadian-section > .wpb_column:first-child {
		padding-left: 15px;
	}
	
	.charities-section.canadian-charities {
		padding-right: 15px;
	}
}

@media (max-width: 768px) {
/* 	.charity-section.us-section > .wpb_column:first-child,
	.charity-section.us-section .charity-img {
		padding: 0 15px;
	} */
	
	.bg-text {
		padding: 0 15px !important;
	}
	
	 .quote-section br {
		display: none;
	  }
	
	.quote-section cite {
		display: block;  
		margin-top: 0.5em; 
	  }
	
	.content-block .vc_row-flex {
		gap: 20px;
	}
	
	.content-block .vc_column_container:not(.vc_col-has-fill) .wpb_text_column img {
		max-height: 300px;
	}
	
	.video-placeholder {
		width: 100%;
	}
	
	.icons-feature-wrapper {
		flex-wrap: wrap !important;
		gap: 0px;
	}
	
	.icon-feature {
		max-width: 250px;
    	margin: 0 auto;
	}
	
	.charity-section.canadian-section > .wpb_column:first-child,
	.charity-section.canadian-section > .wpb_column:last-child {
		padding: 0;
	}
	
	.charity-section.canadian-section {
		display: flex;
		flex-direction: column-reverse;
		padding: 0 15px;
	}
	
	.charity-section .charity-img img {
		min-height: 100%;
		max-height: 375px;
	}
	
	.charities-section .subtitle {
		margin-bottom: 40px;
	}
	
    .footer-menu {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width : 1359px) {}

@media (max-width : 1200px) {}

@media (max-width : 991px) {}

@media (max-width : 767px) {}